From c7542de6bef46d1f12309f91be5599069429835e Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Thu, 26 May 2022 16:14:40 -0400 Subject: [PATCH 01/18] [ML] Add in rest of unit tests --- .gitignore | 3 + .../azure-ai-ml/tests/automl_job/__init__.py | 0 .../azure-ai-ml/tests/automl_job/conftest.py | 180 + .../tests/automl_job/test_utilities.py | 55 + .../tests/automl_job/unittests/__init__.py | 0 .../test_automl_image_classification.py | 130 + ..._automl_image_classification_multilabel.py | 137 + ...test_automl_image_instance_segmentation.py | 125 + .../test_automl_image_object_detection.py | 133 + .../unittests/test_automl_image_schema.py | 374 + .../unittests/test_automl_nlp_schema.py | 261 + .../unittests/test_automl_tabular_schema.py | 379 + .../unittests/test_classification_job.py | 98 + .../unittests/test_forecasting_job.py | 90 + .../unittests/test_forecasting_settings.py | 172 + .../unittests/test_regression_job.py | 78 + .../test_tabular_featurization_settings.py | 82 + .../unittests/test_tabular_limit_settings.py | 51 + ...est_tabular_n_cross_validation_settings.py | 150 + .../unittests/test_text_classification_job.py | 205 + ...test_text_classification_multilabel_job.py | 201 + .../automl_job/unittests/test_text_ner_job.py | 195 + .../tests/batch_online_common/__init__.py | 0 .../batch_online_common/unittests/__init__.py | 0 .../unittests/test_code_configuration.py | 18 + .../unittests/test_deployment_entity.py | 280 + .../unittests/test_endpoint_entity.py | 93 + .../tests/batch_services/__init__.py | 0 .../batch_services/unittests/__init__.py | 0 .../unittests/test_batch_deployment.py | 131 + .../unittests/test_batch_deployment_schema.py | 34 + .../unittests/test_batch_endpoints.py | 327 + .../azure-ai-ml/tests/code_asset/__init__.py | 0 .../tests/code_asset/unittests/__init__.py | 0 .../unittests/test_code_operations.py | 76 + .../azure-ai-ml/tests/command_job/__init__.py | 0 .../tests/command_job/unittests/__init__.py | 0 .../unittests/test_command_job_entity.py | 158 + .../unittests/test_command_job_schema.py | 181 + .../azure-ai-ml/tests/component/__init__.py | 0 .../tests/component/unittests/__init__.py | 0 .../test_command_component_entity.py | 305 + .../unittests/test_component_operations.py | 146 + .../unittests/test_component_schema.py | 354 + .../test_parallel_component_entity.py | 119 + .../test_parallel_component_operations.py | 112 + .../test_parallel_component_schema.py | 116 + sdk/ml/azure-ai-ml/tests/compute/__init__.py | 0 .../tests/compute/unittests/__init__.py | 0 .../compute/unittests/test_compute_entity.py | 131 + .../unittests/test_compute_operations.py | 101 + sdk/ml/azure-ai-ml/tests/dataset/__init__.py | 0 .../tests/dataset/unittests/__init__.py | 0 .../dataset/unittests/test_data_operations.py | 156 + .../dataset/unittests/test_data_schema.py | 57 + .../dataset/unittests/test_data_utils.py | 66 + .../unittests/test_dataset_operations.py | 137 + .../dataset/unittests/test_dataset_schema.py | 76 + .../azure-ai-ml/tests/datastore/__init__.py | 0 .../tests/datastore/unittests/__init__.py | 0 .../unittests/test_datastore_operations.py | 74 + .../unittests/test_datastore_schema.py | 258 + .../tests/internal_utils/__init__.py | 0 .../internal_utils/unittests/__init__.py | 0 .../unittests/test_arm_id_utils.py | 13 + .../unittests/test_artifact_entity.py | 12 + .../unittests/test_asset_entity.py | 17 + .../unittests/test_asset_utils.py | 112 + .../unittests/test_experimental_utils.py | 179 + .../internal_utils/unittests/test_fields.py | 187 + .../unittests/test_file_utils.py | 45 + .../unittests/test_ml_client.py | 291 + .../unittests/test_operation_orchestrator.py | 553 + .../unittests/test_registry_utils.py | 37 + .../internal_utils/unittests/test_smoke.py | 61 + .../internal_utils/unittests/test_utils.py | 50 + .../azure-ai-ml/tests/job_common/__init__.py | 0 .../tests/job_common/unittests/__init__.py | 0 .../unittests/test_job_operations.py | 219 + .../unittests/test_job_ops_helper.py | 311 + .../unittests/test_local_job_invoker.py | 59 + .../job_common/unittests/test_vcr_utils.py | 27 + .../tests/local_endpoint/__init__.py | 0 .../local_endpoint/unittests/__init__.py | 0 .../unittests/test_devcontainer_properties.py | 98 + .../unittests/test_devcontainer_resolver.py | 129 + .../unittests/test_docker_client.py | 265 + .../unittests/test_dockerfile_instructions.py | 42 + .../unittests/test_dockerfile_resolver.py | 74 + .../unittests/test_endpoint_stub.py | 60 + .../test_local_endpoint_validator.py | 249 + sdk/ml/azure-ai-ml/tests/model/__init__.py | 0 .../tests/model/unittests/__init__.py | 0 .../model/unittests/test_model_operations.py | 212 + .../model/unittests/test_model_schema.py | 25 + .../tests/online_services/__init__.py | 0 .../online_services/unittests/__init__.py | 0 .../unittests/test_deployment_executor.py | 59 + .../unittests/test_deployment_operations.py | 39 + .../unittests/test_deployment_schema.py | 29 + .../unittests/test_online_deployments.py | 171 + .../unittests/test_online_endpoints.py | 463 + .../test_resource_requirements_settings.py | 20 + .../unittests/test_scale_settings.py | 33 + .../unittests/test_scale_settings_schema.py | 73 + .../tests/pipeline_job/__init__.py | 0 .../azure-ai-ml/tests/pipeline_job/_util.py | 46 + .../tests/pipeline_job/unittests/__init__.py | 0 .../unittests/test_pipeline_job_entity.py | 574 + .../unittests/test_pipeline_job_schema.py | 1388 + .../azure-ai-ml/tests/sweep_job/__init__.py | 0 .../tests/sweep_job/unittests/__init__.py | 0 .../sweep_job/unittests/test_sweep_job.py | 279 + .../unittests/test_sweep_job_schema.py | 376 + .../automl_job/automl_beer_job.yml | 35 + .../automl_image_classification_job_mock.yaml | 51 + ...ge_classification_multilabel_job_mock.yaml | 51 + ..._image_instance_segmentation_job_mock.yaml | 46 + ...utoml_image_object_detection_job_mock.yaml | 46 + .../automl_job_missing_required_fields.yaml | 24 + .../automl_job/automl_job_mock_auto.yaml | 32 + .../automl_job_mock_classification.yaml | 75 + .../automl_job_mock_forecasting.yaml | 83 + .../automl_job_mock_regression.yaml | 74 + .../automl_job_text_classification_mock.yaml | 24 + ...b_text_classification_multilabel_mock.yaml | 24 + .../automl_job/automl_job_text_ner_mock.yaml | 23 + .../automl_classification_job.yaml | 46 + .../e2e_configs/automl_forecasting_job.yaml | 35 + .../e2e_configs/automl_regression_job.yaml | 40 + .../automl_text_classification_job.yaml | 27 + .../automl_job/featurization_config.json | 63 + .../automl_job/rest_featurization_config.json | 62 + .../bank_marketing/train/MLTable | 7 + .../bank_marketing/valid/MLTable | 7 + .../beer_forecasting/train/MLTable | 7 + .../test_datasets/conll2003/train/MLTable | 4 + .../test_datasets/conll2003/valid/MLTable | 4 + .../credit_card_fraud/test/MLTable | 7 + .../credit_card_fraud/train/MLTable | 7 + .../credit_card_fraud/valid/MLTable | 7 + .../test_datasets/house_pricing/test/MLTable | 7 + .../house_pricing/test/house_pricing_test.csv | 13 + .../test_datasets/house_pricing/train/MLTable | 7 + .../train/house_pricing_train.csv | 1460 + .../test_datasets/house_pricing/valid/MLTable | 7 + .../valid/house_pricing_valid.csv | 13 + .../image_classification/train/MLTable | 10 + .../image_classification/valid/MLTable | 10 + .../train/MLTable | 10 + .../valid/MLTable | 10 + .../image_instance_segmentation/train/MLTable | 10 + .../train/train_annotations.jsonl | 102 + .../image_instance_segmentation/valid/MLTable | 10 + .../valid/validation_annotations.jsonl | 26 + .../image_object_detection/train/MLTable | 10 + .../image_object_detection/valid/MLTable | 10 + .../test_datasets/machine_data/train/MLTable | 7 + .../test_datasets/newsgroup/train/MLTable | 7 + .../test_datasets/newsgroup/valid/MLTable | 7 + .../paper_categorization/train/MLTable | 7 + .../paper_categorization/valid/MLTable | 7 + .../training_mltable_folder/MLTable | 6 + .../bank_marketing_train_data.csv | 30000 ++++++++++++++++ .../mnist-tf.model.data-00000-of-00001 | Bin 0 -> 1066440 bytes .../batch_endpoint_model/mnist-tf.model.index | Bin 0 -> 295 bytes .../batch_endpoint_model/mnist-tf.model.meta | Bin 0 -> 30157 bytes .../batch_endpoint_model/saved_model.pb | Bin 0 -> 34258 bytes .../sklearn_regression_model.pkl | Bin 0 -> 658 bytes .../test_configs/batch_setup/conda_file.yml | 17 + .../tests/test_configs/batch_setup/lgb.yml | 8 + .../binary_classification/README.md | 27 + .../binary_classification/binary.test | 500 + .../binary_classification/binary.test.weight | 500 + .../binary_classification/binary.train | 7000 ++++ .../binary_classification/binary.train.weight | 7000 ++++ .../binary_classification/forced_splits.json | 12 + .../binary_classification/predict.conf | 5 + .../binary_classification/train.conf | 111 + .../light_gbm_examples/python-guide/README.md | 62 + .../python-guide/advanced_example.py | 211 + .../python-guide/logistic_regression.py | 101 + .../python-guide/plot_example.py | 60 + .../python-guide/simple_example.py | 45 + .../python-guide/sklearn_example.py | 72 + .../command_job_environment_version.yml | 3 + .../command_job_inline_inputs_test.yml | 13 + .../command_job/command_job_input_types.yml | 18 + .../command_job_inputs_dataset_test.yml | 13 + ...nd_job_inputs_incorrect_datastore_test.yml | 14 + .../command_job/command_job_inputs_rest.yml | 58 + .../command_job/command_job_inputs_test.yml | 12 + .../command_job/command_job_output.yml | 14 + .../command_job/command_job_output_types.yml | 14 + .../command_job_quick_with_output.yml | 7 + .../command_job_relative_inputs_test.yml | 13 + .../command_job/command_job_rest.yml | 57 + .../command_job_rest_amltoken_identity.yml | 57 + .../command_job_rest_msi_identity.yml | 58 + .../command_job/command_job_test.yml | 16 + .../command_job_test_amltoken_identity.yml | 9 + .../command_job_test_msi_identity.yml | 10 + .../command_job_test_with_dataset.yml | 13 + .../command_job_test_with_inputs.yml | 14 + .../command_job_test_with_local_dataset.yml | 12 + .../command_job/command_job_test_yaml_ref.yml | 9 + .../command_job_with_virtualcluster.yaml | 11 + .../command_job_with_virtualcluster_2.yaml | 11 + .../test_configs/command_job/dist_job_1.yml | 14 + .../test_configs/command_job/dist_job_2.yml | 14 + .../test_configs/command_job/dist_job_3.yml | 15 + .../test_configs/command_job/dist_job_bad.yml | 10 + .../command_job/inlined_assets.yaml | 16 + .../test_configs/command_job/local_job.yaml | 8 + .../rest_command_job_env_var_command.json | 50 + .../rest_command_job_legacy1_command.json | 50 + .../rest_command_job_legacy2_command.json | 50 + .../command_job/simple_train_conda.yml | 11 + .../command_job/simple_train_test.yml | 8 + .../test_configs/components/1in1out.yaml | 15 + .../test_configs/components/1in2out.yaml | 18 + .../basic_component_code_arm_id.yml | 22 + .../basic_component_code_local_path.yml | 22 + .../basic_parallel_component_score.yml | 53 + .../basic_parallel_component_score_rest.json | 72 + .../test_configs/components/component_e2e.yml | 10 + .../components/component_no_version.yml | 9 + .../components/default_optional_component.yml | 42 + .../components/helloworld_component.yml | 34 + .../components/helloworld_component_alt1.yml | 32 + .../helloworld_component_for_sweep.yml | 53 + .../components/helloworld_component_mpi.yml | 38 + .../helloworld_component_multiple_data.yml | 95 + .../helloworld_component_no_paths.yml | 22 + .../helloworld_component_pytorch.yml | 39 + .../helloworld_component_registry.yml | 30 + .../components/helloworld_component_rest.json | 54 + .../helloworld_component_tensorflow.yml | 39 + ...oworld_component_with_input_and_output.yml | 40 + .../helloworld_component_with_paths.yml | 24 + ...loworld_component_with_uppercase_input.yml | 34 + .../helloworld_components_with_env/conda.yml | 11 + .../helloworld_component_env_inline.yml | 47 + .../helloworld_component_env_path_0.yml | 36 + .../helloworld_component_env_path_1.yml | 36 + .../components/helloworld_parallel.yml | 35 + .../components/input_types_component.yml | 48 + .../input_types_component_rest.json | 77 + .../components/invalid/code.name_only.yml | 10 + .../test_configs/components/invalid/combo.yml | 10 + .../test_configs/components/invalid/empty.yml | 1 + .../invalid/environment.name_only.yml | 10 + .../components/invalid/error_format.yml | 1 + ...world_component_with_blank_input_names.yml | 54 + ...orld_component_with_blank_output_names.yml | 48 + ...oworld_component_with_dash_input_names.yml | 54 + ...world_component_with_dash_output_names.yml | 48 + ...ent_with_special_character_input_names.yml | 54 + ...nt_with_special_character_output_names.yml | 48 + ..._component_with_start_dash_input_names.yml | 54 + ...component_with_start_dash_output_names.yml | 48 + ...omponent_with_start_number_input_names.yml | 54 + ...mponent_with_start_number_output_names.yml | 48 + .../components/invalid/name_none.yml | 10 + .../components/invalid/no_environment.yml | 9 + .../components/invalid/non_dict.yml | 1 + .../components/invalid/unsupported_fields.yml | 11 + .../components/merge_outputs_component.yml | 33 + .../parallel_component_with_file_input.yml | 39 + .../components/type_contract/custom_model.yml | 40 + .../components/type_contract/mlflow_model.yml | 30 + .../components/type_contract/mltable.yml | 37 + .../components/type_contract/object.yml | 68 + .../components/type_contract/path.yml | 32 + .../compute/compute-aml-no-identity.yaml | 13 + .../test_configs/compute/compute-aml.yaml | 17 + .../compute/compute-ci-schedules.yaml | 22 + .../test_configs/compute/compute-ci-unit.yaml | 16 + .../test_configs/compute/compute-ci.yaml | 9 + .../compute/compute-kubernetes.yaml | 6 + .../test_configs/compute/compute-vm.yaml | 11 + .../test_configs/compute/ssh_fake_key.txt | 1 + .../tests/test_configs/data/sample1.csv | 9 + .../tests/test_configs/dataset/data_file.yaml | 5 + .../test_configs/dataset/data_local_path.yaml | 5 + .../dataset/data_local_path_mltable.yaml | 5 + .../data_local_path_with_datastore.yaml | 5 + .../dataset/data_missing_path_test.yml | 4 + .../dataset/dataset_empty_paths_test.yml | 5 + .../test_configs/dataset/dataset_file.yaml | 5 + .../dataset/dataset_file_test.yml | 5 + .../dataset_folder_multiple_folder_test.yml | 6 + .../dataset_folder_multiple_paths_test.yml | 6 + .../dataset/dataset_folder_test.yml | 5 + .../dataset/dataset_local_path.yaml | 4 + .../dataset_local_path_with_datastore.yaml | 4 + .../dataset_no_paths_and_local_path_test.yml | 3 + .../dataset/dataset_whitespace_file_test.yml | 5 + .../dataset_whitespace_folder_test.yml | 5 + .../dataset/dataset_with_file_and_folder.yml | 6 + .../dataset/invalid-mltable/MLTable | 7 + .../dataset/invalid-mltable/iris.csv | 151 + .../test_configs/dataset/iris-mltable/MLTable | 7 + .../dataset/iris-mltable/iris.csv | 151 + .../test_configs/dataset/mnist-data/0.png | Bin 0 -> 223 bytes .../test_configs/dataset/mnist-data/1.png | Bin 0 -> 255 bytes .../test_configs/dataset/mnist-data/2.png | Bin 0 -> 181 bytes .../test_configs/dataset/mnist-data/3.png | Bin 0 -> 266 bytes .../test_configs/dataset/mnist-data/MLTable | 5 + .../dataset/mnist-mltable/MLTable | 2 + .../dataset/mnist-mltable/mnist/0.png | Bin 0 -> 223 bytes .../dataset/mnist-mltable/mnist/1.png | Bin 0 -> 255 bytes .../dataset/mnist-mltable/mnist/2.png | Bin 0 -> 181 bytes .../dataset/mnist-mltable/mnist/3.png | Bin 0 -> 266 bytes .../dataset/mnist-mltable/mnist/4.png | Bin 0 -> 251 bytes .../dataset/mnist-mltable/mnist/5.png | Bin 0 -> 199 bytes .../dataset/mnist-mltable/mnist/6.png | Bin 0 -> 260 bytes .../dataset/mnist-mltable/mnist/7.png | Bin 0 -> 257 bytes .../dataset/mnist-mltable/mnist/8.png | Bin 0 -> 263 bytes .../dataset/mnist-mltable/mnist/9.png | Bin 0 -> 299 bytes .../dataset/neural-iris-mltable/MLTable | 7 + .../dataset/neural-iris-mltable/iris.csv | 75 + .../test_configs/datastore/adls_gen1.yml | 7 + .../test_configs/datastore/adls_gen2.yml | 8 + .../test_configs/datastore/blob_store.yml | 6 + .../datastore/credential_less_adls_gen1.yml | 3 + .../datastore/credential_less_adls_gen2.yml | 4 + .../datastore/credential_less_blob_store.yml | 4 + .../test_configs/datastore/file_store.yml | 6 + .../datastore/hdfs_kerberos_keytab.yml | 10 + .../datastore/hdfs_kerberos_keytab2.yml | 10 + .../datastore/hdfs_kerberos_minimal.yml | 9 + .../datastore/hdfs_kerberos_pw.yml | 10 + .../datastore/hdfs_kerberos_pw2.yml | 10 + .../deployments/batch/batch_deployment_1.yaml | 24 + .../deployments/batch/batch_deployment_2.yaml | 20 + .../batch_deployment_anon_env_with_conda.yaml | 26 + ...batch_deployment_anon_env_with_docker.yaml | 27 + .../batch_deployment_anon_env_with_image.yaml | 25 + .../batch/batch_deployment_anon_model.yaml | 22 + .../batch/batch_deployment_mlflow.yaml | 16 + .../batch/batch_deployment_mlflow_new.yaml | 19 + .../batch/batch_deployment_no_action.yaml | 23 + .../batch/batch_deployment_no_file.yaml | 23 + .../batch/batch_deployment_quick.yaml | 13 + .../deployments/byoc/sklearn/Dockerfile | 3 + .../online_deployment_byoc_sklearn.yaml | 23 + .../deployments/byoc/sklearn/score.py | 32 + .../half_plus_two/00000123/assets/foo.txt | 1 + .../half_plus_two/00000123/assets/license.txt | 201 + .../half_plus_two/00000123/saved_model.pb | Bin 0 -> 12107 bytes .../variables/variables.data-00000-of-00001 | Bin 0 -> 20 bytes .../00000123/variables/variables.index | Bin 0 -> 172 bytes .../online_deployment_tfserving.yaml | 26 + .../byoc/tfserving/sample_request.json | 1 + .../endpoint_scoring/do_nothing.py | 5 + .../deployments/endpoint_scoring/main.py | 29 + .../endpoint_scoring/sample-request.json | 4 + .../model/sklearn_regression_model.pkl | Bin 0 -> 658 bytes .../model-1/onlinescoring/score.py | 32 + .../deployments/model-1/sample-request.json | 4 + .../model/sklearn_regression_model.pkl | Bin 0 -> 658 bytes .../model-2/onlinescoring/score.py | 32 + .../deployments/model-2/sample-request.json | 4 + .../deployments/model-3/conda.yml | 16 + .../test_configs/deployments/model-3/score.py | 32 + .../model-3/sklearn_regression_model.pkl | Bin 0 -> 658 bytes .../online/online_deployment_1.yaml | 19 + .../online/online_deployment_1_update.yaml | 18 + ...online_deployment_1_update_incomplete.yaml | 17 + .../online/online_deployment_2.yaml | 16 + .../online/online_deployment_blue.yaml | 30 + .../online/online_deployment_blue_k8s.yaml | 41 + .../online/online_deployment_green_1.yaml | 24 + .../online/online_deployment_k8s.yaml | 43 + .../online/online_deployment_k8s_1.yaml | 45 + .../online/online_deployment_mir.yaml | 29 + .../online/online_deployment_mir_private.yaml | 21 + .../online_deployment_model_code_overlap.yaml | 17 + .../online/online_deployment_pe_1.yaml | 20 + ...nline_deployment_registered_artifacts.yaml | 9 + .../online_deployment_registered_code.yaml | 16 + .../online_deployment_registered_env.yaml | 12 + .../online_deployment_registered_model.yaml | 14 + .../online/online_deployment_schema.yaml | 17 + ...online_endpoint_deployment_k8s_minimum.yml | 18 + .../online/simple_online_endpoint_mir.yaml | 3 + .../basic_dsl_component_primitive_inputs.py | 38 + .../dsl_component/basic_dsl_components.py | 89 + .../dsl_component_code_specified/conda.yaml | 10 + .../inner_folder/basic_component.py | 10 + .../inner_folder2/basic_component.py | 7 + .../inner_folder3/basic_component.py | 7 + .../inner_folder3/conda.yaml | 10 + .../dsl_component_hello_world/hello_world.py | 29 + .../inner_folder/basic_component.py | 10 + .../inner_folder2/basic_component.py | 14 + .../inner_folder3/basic_component.py | 13 + .../inner_folder4/basic_component.py | 13 + .../dsl_component_with_env/conda.yaml | 17 + .../inner_folder/basic_component.py | 10 + .../inner_folder2/basic_component.py | 13 + .../inner_folder3/basic_component.py | 10 + .../inner_folder4/basic_component.py | 10 + .../basic_component.py | 13 + .../duplicate_component_name.py | 6 + .../dynamic_dsl_with_name.py | 6 + .../dynamic_dsl_component/source_func.py | 27 + .../automl_job_in_pipeline/pipeline.py | 52 + .../automl_job_in_pipeline/pipeline.yml | 52 + .../basic_component/component.yml | 12 + .../dsl_pipeline/basic_component/pipeline.py | 24 + .../dsl_pipeline/basic_component/pipeline.yml | 9 + .../dsl_pipeline/basic_component/src/hello.py | 3 + .../components/component.yml | 12 + .../components/src/hello.py | 3 + .../pipeline.py | 24 + .../pipeline.yml | 14 + .../basic_pipeline/componentA.yml | 12 + .../basic_pipeline/componentA_src/hello.py | 3 + .../basic_pipeline/componentB.yml | 12 + .../basic_pipeline/componentB_src/hello.py | 2 + .../basic_pipeline/componentC.yml | 12 + .../basic_pipeline/componentC_src/hello.py | 3 + .../dsl_pipeline/basic_pipeline/pipeline.py | 26 + .../dsl_pipeline/basic_pipeline/pipeline.yml | 16 + .../command_job_in_pipeline/data/sample1.csv | 10 + .../command_job_in_pipeline/eval_src/eval.py | 25 + .../hello-world-data-dependency.yml | 18 + .../command_job_in_pipeline/hello-world.yml | 14 + .../command_job_in_pipeline/pipeline.py | 98 + .../command_job_in_pipeline/pipeline.yml | 72 + .../score_src/score.py | 29 + .../train_command_job.yml | 28 + .../train_src/train.py | 43 + .../train_src/train1.py | 49 + .../component_with_input_output/component.yml | 25 + .../data/sample.csv | 10 + .../component_with_input_output/pipeline.py | 34 + .../component_with_input_output/pipeline.yml | 24 + .../component_with_input_output/src/hello.py | 33 + .../data_binding_expression/__init__.py | 12 + .../data_binding_expression/component.yml | 54 + .../data_binding_expression/input_basic.py | 41 + .../data_binding_expression/input_basic.yml | 42 + .../input_literal_cross_type.py | 36 + .../input_literal_cross_type.yml | 30 + .../input_literal_meta.py | 36 + .../input_literal_meta.yml | 30 + .../data_binding_expression/input_path.py | 36 + .../data_binding_expression/input_path.yml | 32 + .../input_path_concatenate.py | 36 + .../input_path_concatenate.yml | 30 + .../input_reason_expression.py | 37 + .../input_reason_expression.yml | 34 + .../input_string_concatenate.py | 36 + .../input_string_concatenate.yml | 30 + .../run_settings_compute.py | 35 + .../run_settings_compute.yml | 29 + .../run_settings_literal.py | 35 + .../run_settings_literal.yml | 31 + .../run_settings_sweep_choice.py | 55 + .../run_settings_sweep_choice.yml | 51 + .../run_settings_sweep_limits.py | 55 + .../run_settings_sweep_limits.yml | 51 + .../run_settings_sweep_literal.py | 55 + .../run_settings_sweep_literal.yml | 52 + .../dsl_pipeline/dataset_input/component.yml | 28 + .../dsl_pipeline/dataset_input/data.yml | 4 + .../dataset_input/data/sample.csv | 10 + .../dsl_pipeline/dataset_input/pipeline.py | 54 + .../dsl_pipeline/dataset_input/pipeline.yml | 35 + .../dsl_pipeline/dataset_input/src/hello.py | 33 + .../datastore_datapath_uri_file/component.yml | 25 + .../datastore_datapath_uri_file/data.yml | 3 + .../data/sample.csv | 10 + .../datastore_datapath_uri_file/pipeline.py | 41 + .../datastore_datapath_uri_file/pipeline.yml | 25 + .../datastore_datapath_uri_file/src/hello.py | 40 + .../component.yml | 25 + .../datastore_datapath_uri_folder/data.yml | 3 + .../data/sample.csv | 10 + .../datastore_datapath_uri_folder/pipeline.py | 42 + .../pipeline.yml | 25 + .../src/hello.py | 33 + .../e2e_inline_components/data/sample1.csv | 10 + .../e2e_inline_components/eval_src/eval.py | 25 + .../e2e_inline_components/pipeline.py | 95 + .../e2e_inline_components/pipeline.yml | 115 + .../pipeline_dsl_component.py | 147 + .../e2e_inline_components/score_src/score.py | 29 + .../e2e_inline_components/train_src/train.py | 43 + .../e2e_local_components/data.yml | 7 + .../e2e_local_components/data/sample1.csv | 10 + .../e2e_local_components/eval.yml | 16 + .../e2e_local_components/eval_src/eval.py | 25 + .../e2e_local_components/pipeline.py | 58 + .../e2e_local_components/pipeline.yml | 61 + .../e2e_local_components/score.yml | 19 + .../e2e_local_components/score_src/score.py | 29 + .../e2e_local_components/train.yml | 27 + .../train_command_job.yml | 32 + .../e2e_local_components/train_src/train.py | 43 + .../e2e_registered_components/data.yml | 7 + .../data/sample1.csv | 10 + .../e2e_registered_components/eval.yml | 16 + .../eval_src/eval.py | 25 + .../e2e_registered_components/pipeline.py | 70 + .../e2e_registered_components/pipeline.yml | 53 + .../e2e_registered_components/score.yml | 19 + .../score_src/score.py | 29 + .../e2e_registered_components/train.yml | 27 + .../train_src/train.py | 43 + .../local_data_input/component.yml | 25 + .../local_data_input/data/sample.csv | 10 + .../dsl_pipeline/local_data_input/pipeline.py | 34 + .../local_data_input/pipeline.yml | 22 + .../local_data_input/src/hello.py | 33 + .../mpi_hello_world/component.yml | 19 + .../dsl_pipeline/mpi_hello_world/pipeline.py | 27 + .../dsl_pipeline/mpi_hello_world/pipeline.yml | 15 + .../data/greenTaxiData.csv | 5001 +++ .../data/yellowTaxiData.csv | 5001 +++ .../nyc_taxi_data_regression/green_data.yml | 12 + .../nyc_taxi_data_regression/pipeline.py | 55 + .../nyc_taxi_data_regression/pipeline.yml | 80 + .../nyc_taxi_data_regression/predict.yml | 24 + .../predict_src/predict.py | 68 + .../nyc_taxi_data_regression/prep.yml | 21 + .../nyc_taxi_data_regression/prep_src/prep.py | 119 + .../nyc_taxi_data_regression/score.yml | 24 + .../score_src/score.py | 67 + .../nyc_taxi_data_regression/train.yml | 24 + .../train_src/train.py | 69 + .../nyc_taxi_data_regression/transform.yml | 21 + .../transform_src/transform.py | 136 + .../nyc_taxi_data_regression/yellow_data.yml | 12 + .../parallel_component/convert_data.yml | 24 + .../dataset/iris-mltable/MLTable | 7 + .../dataset/iris-mltable/iris.csv | 75 + .../dataset/mnist-data/0.png | Bin 0 -> 223 bytes .../dataset/mnist-data/1.png | Bin 0 -> 255 bytes .../dataset/mnist-data/2.png | Bin 0 -> 181 bytes .../dataset/mnist-data/3.png | Bin 0 -> 266 bytes .../dataset/mnist-data/MLTable | 5 + .../environment_parallel.yml | 16 + .../file_batch_inference.yml | 34 + .../parallel_component/get_data.yml | 27 + .../model/iris_model/MLmodel | 11 + .../model/iris_model/model.pkl | Bin 0 -> 1929 bytes .../parallel_component/pipeline.py | 66 + .../parallel_component/pipeline.yml | 89 + .../parallel_component/src/convert_data.py | 35 + .../src/file_batch_inference.py | 38 + .../parallel_component/src/get_data.py | 56 + .../src/tabular_batch_inference.py | 39 + .../tabular_batch_inference.yml | 43 + .../convert_data.yml | 24 + .../dataset/mnist-data/0.png | Bin 0 -> 223 bytes .../dataset/mnist-data/1.png | Bin 0 -> 255 bytes .../dataset/mnist-data/2.png | Bin 0 -> 181 bytes .../dataset/mnist-data/3.png | Bin 0 -> 266 bytes .../dataset/mnist-data/MLTable | 5 + .../pipeline.py | 47 + .../pipeline.yml | 52 + .../score.yml | 34 + .../src/convert_data.py | 35 + .../src/score.py | 38 + .../dataset/iris-mltable/MLTable | 7 + .../dataset/iris-mltable/iris.csv | 75 + .../environment_parallel.yml | 16 + .../model/iris_model/MLmodel | 11 + .../model/iris_model/model.pkl | Bin 0 -> 1929 bytes .../pipeline.py | 36 + .../pipeline.yml | 35 + .../src/tabular_run_with_model.py | 39 + .../tabular_input_e2e.yml | 45 + .../conda.yaml | 16 + .../dsl_component.py | 123 + .../pipeline.py | 52 + .../pipline_with_data/componentA.yml | 20 + .../pipline_with_data/componentA_src/hello.py | 30 + .../pipline_with_data/componentB.yml | 20 + .../pipline_with_data/componentB_src/hello.py | 30 + .../pipline_with_data/componentC.yml | 20 + .../pipline_with_data/componentC_src/hello.py | 30 + .../pipline_with_data/data/sample.csv | 10 + .../pipline_with_data/pipeline.py | 32 + .../pipline_with_data/pipeline.yml | 40 + .../pytorch_hello_world/component.yml | 22 + .../pytorch_hello_world/pipeline.py | 32 + .../pytorch_hello_world/pipeline.yml | 15 + .../dsl_pipeline/tf_hello_world/component.yml | 19 + .../dsl_pipeline/tf_hello_world/pipeline.py | 30 + .../dsl_pipeline/tf_hello_world/pipeline.yml | 15 + .../dsl_pipeline/tf_mnist/component.yml | 38 + .../dsl_pipeline/tf_mnist/pipeline.py | 29 + .../dsl_pipeline/tf_mnist/pipeline.yml | 20 + .../dsl_pipeline/tf_mnist/src/train.py | 124 + .../dsl_pipeline/web_url_input/component.yml | 25 + .../web_url_input/data/sample.csv | 10 + .../dsl_pipeline/web_url_input/pipeline.py | 34 + .../dsl_pipeline/web_url_input/pipeline.yml | 28 + .../dsl_pipeline/web_url_input/src/hello.py | 39 + .../endpoints/batch/batch_endpoint.yaml | 8 + .../batch/batch_endpoint_mlflow.yaml | 3 + .../batch/batch_endpoint_mlflow_new.yaml | 3 + .../batch/batch_endpoint_mlflow_remote.yaml | 6 + .../batch/simple_batch_endpoint.yaml | 7 + .../test_configs/endpoints/online/data.json | 6 + .../online/online-endpoint-with-blue.yaml | 5 + .../online/online_endpoint_create_aks_bad.yml | 6 + .../online/online_endpoint_create_k8s.yml | 3 + .../online/online_endpoint_create_mir.yml | 9 + .../online_endpoint_create_mir_private.yml | 10 + .../online/online_endpoint_minimal.yaml | 3 + .../online_endpoint_update_incomplete.yml | 1 + .../online/online_endpoint_update_k8s.yml | 7 + .../online/online_endpoint_update_mir.yml | 9 + .../online/online_endpoint_update_tags.yml | 6 + .../online/sklearn_regression_model.pkl | Bin 0 -> 658 bytes .../mnist-tf.model.data-00000-of-00001 | Bin 0 -> 1066440 bytes .../mnist_models/mnist-tf.model.index | Bin 0 -> 295 bytes .../mnist_models/mnist-tf.model.meta | Bin 0 -> 30157 bytes .../test_configs/mnist_models/saved_model.pb | Bin 0 -> 34258 bytes .../test_configs/model/iris_model/MLmodel | 11 + .../test_configs/model/iris_model/model.pkl | Bin 0 -> 1929 bytes .../model/lightgbm_mlflow_model/MLmodel | 31 + .../model/lightgbm_mlflow_model/conda.yaml | 12 + .../lightgbm_mlflow_model/input_example.json | 1 + .../model/lightgbm_mlflow_model/model.lgb | 1113 + .../lightgbm_mlflow_model/requirements.txt | 5 + .../tests/test_configs/model/model.pkl | 1 + .../tests/test_configs/model/model_bad.yml | 3 + .../tests/test_configs/model/model_env1.yml | 3 + .../tests/test_configs/model/model_env2.yml | 3 + .../tests/test_configs/model/model_full.yml | 15 + .../test_configs/model/model_minimal.yml | 3 + .../test_configs/model/model_no_version.yml | 2 + .../tests/test_configs/model/model_path.yml | 14 + .../test_configs/model/model_path_url.yml | 14 + .../pipeline_jobs/component_from_registry.yml | 19 + .../pipeline_jobs/helloworld_pipeline_job.yml | 39 + ...oworld_pipeline_job_comps_data_options.yml | 30 + ...line_job_comps_data_options_no_outputs.yml | 20 + .../helloworld_pipeline_job_cron_schedule.yml | 43 + .../helloworld_pipeline_job_data_options.yml | 161 + ...d_pipeline_job_data_options_no_outputs.yml | 101 + ...ipeline_job_dataset_options_no_outputs.yml | 47 + .../helloworld_pipeline_job_defaults.yml | 72 + .../helloworld_pipeline_job_defaults_e2e.yml | 54 + ...line_job_defaults_with_command_job_e2e.yml | 58 + ...efaults_with_command_job_e2e_short_uri.yml | 55 + ..._parallel_job_file_component_input_e2e.yml | 29 + ...th_parallel_job_file_dataset_input_e2e.yml | 55 + ...aults_with_parallel_job_file_input_e2e.yml | 52 + ...ts_with_parallel_job_tabular_input_e2e.yml | 53 + ...orld_pipeline_job_environment_variable.yml | 16 + .../helloworld_pipeline_job_inline_comps.yml | 55 + ...loworld_pipeline_job_inline_file_comps.yml | 27 + ...orld_pipeline_job_inline_file_parallel.yml | 29 + .../helloworld_pipeline_job_no_paths.yml | 50 + .../helloworld_pipeline_job_no_paths_e2e.yml | 74 + ...b_no_paths_expected_settings_override.json | 24 + ...loworld_pipeline_job_quick_with_output.yml | 37 + ...urrence_schedule_no_recurrence_pattern.yml | 44 + ...ence_schedule_recurrence_pattern_lists.yml | 47 + ...e_schedule_recurrence_pattern_literals.yml | 48 + .../helloworld_pipeline_job_resolve_reuse.yml | 50 + ...b_with_command_job_with_deep_reference.yml | 101 + ...b_with_command_job_with_inputs_outputs.yml | 84 + ...rld_pipeline_job_with_component_output.yml | 94 + ...peline_job_with_distribution_component.yml | 63 + .../helloworld_pipeline_job_with_paths.yml | 44 + ...elloworld_pipeline_job_with_sweep_node.yml | 120 + ...ipeline_job_without_component_snapshot.yml | 34 + .../invalid/non_existent_compute.yml | 29 + .../invalid/non_existent_remote_component.yml | 29 + .../invalid/non_existent_remote_version.yml | 29 + .../invalid/with_invalid_component.yml | 29 + .../component.yml | 15 + .../pipeline.yml | 10 + .../src/hello.py | 1 + .../automl_node_with_command_node.json | 130 + .../automl_regression_with_command_node.yml | 54 + ..._regression_with_pipeline_level_output.yml | 51 + .../onejob_automl_classification.yml | 43 + .../onejob_automl_forecasting.yml | 40 + ...job_automl_image_instance_segmentation.yml | 55 + ...automl_image_multiclass_classification.yml | 54 + ...automl_image_multilabel_classification.yml | 54 + .../onejob_automl_image_object_detection.yml | 55 + .../onejob_automl_regression.json | 102 + .../onejob_automl_regression.yml | 46 + .../onejob_automl_regression_machine_data.yml | 59 + .../onejob_automl_text_classification.yml | 36 + ..._automl_text_classification_multilabel.yml | 33 + .../onejob_automl_text_ner.yml | 34 + .../rest_pipeline_with_automl_output.json | 92 + ...t_pipeline_with_automl_output_binding.json | 116 + ...b_with_command_job_with_input_bindings.yml | 54 + ..._with_parallel_job_with_input_bindings.yml | 45 + .../rest_pipeline_with_automl_output.json | 116 + .../pipeline_jobs/sample_pipeline_job.yml | 61 + .../type_contract/custom_model.yml | 40 + .../type_contract/mlflow_model.yml | 37 + .../pipeline_jobs/type_contract/mltable.yml | 56 + .../pipeline_jobs/type_contract/object.yml | 72 + .../pipeline_jobs/type_contract/path.yml | 50 + .../tests/test_configs/python/sample1.csv | 9 + .../tests/test_configs/python/simple_train.py | 38 + .../tests/test_configs/python/sweep_script.py | 24 + .../python/sweep_script_search.py | 109 + .../tests/test_configs/python/train.py | 28 + .../script_parallel/digit_identification.py | 45 + .../script_parallel/pass_through.py | 39 + .../script_parallel/tabular_run_with_model.py | 39 + .../tests/test_configs/storage/.amlignore | 3 + .../tests/test_configs/storage/.gitignore | 1 + .../storage/dont_include_us/test_file.txt | 0 .../storage/gitignore_only/.gitignore | 1 + .../tests/test_configs/storage/test_file.txt | 0 .../test_configs/storage/test_file_2.txt | 0 .../sweep_job/corrupt_mfe_data_sweep_job.json | 78 + .../expected_recursive_search_space.json | 250 + ...job_bayesian_sampling_algorithm_object.yml | 27 + ...eep_job_grid_sampling_algorithm_object.yml | 27 + ...p_job_random_sampling_algorithm_object.yml | 27 + .../sweep_job_random_rule.yml | 28 + .../sweep_job_random_seed.yml | 28 + ...job_bayesian_sampling_algorithm_string.yml | 26 + ...eep_job_grid_sampling_algorithm_string.yml | 26 + .../test_configs/sweep_job/sweep-bandit.yaml | 35 + .../test_configs/sweep_job/sweep-median.yaml | 33 + .../test_configs/sweep_job/sweep-search.yaml | 36 + .../sweep_job/sweep-truncation.yaml | 34 + .../sweep_job/sweep_job_input_types.yml | 31 + .../sweep_job/sweep_job_minimal_outputs.yaml | 32 + .../sweep_job/sweep_job_minimal_test.yaml | 26 + .../sweep_job_minimal_test_input.yaml | 35 + .../sweep_job/sweep_job_output_types.yml | 27 + .../sweep_job_recursive_search_space.yaml | 132 + .../sweep_job_search_space_choice_string.yml | 40 + .../sweep_job/sweep_job_test.yaml | 35 + .../sweep_job/sweep_job_test_inputs.yaml | 32 + 745 files changed, 89260 insertions(+) create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/conftest.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/test_utilities.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_classification.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_classification_multilabel.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_instance_segmentation.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_object_detection.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_nlp_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_tabular_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_classification_job.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_forecasting_job.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_forecasting_settings.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_regression_job.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_featurization_settings.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_limit_settings.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_n_cross_validation_settings.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_classification_job.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_classification_multilabel_job.py create mode 100644 sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_ner_job.py create mode 100644 sdk/ml/azure-ai-ml/tests/batch_online_common/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_code_configuration.py create mode 100644 sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_deployment_entity.py create mode 100644 sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_endpoint_entity.py create mode 100644 sdk/ml/azure-ai-ml/tests/batch_services/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/batch_services/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_deployment.py create mode 100644 sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_deployment_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_endpoints.py create mode 100644 sdk/ml/azure-ai-ml/tests/code_asset/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/code_asset/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/code_asset/unittests/test_code_operations.py create mode 100644 sdk/ml/azure-ai-ml/tests/command_job/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/command_job/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/command_job/unittests/test_command_job_entity.py create mode 100644 sdk/ml/azure-ai-ml/tests/command_job/unittests/test_command_job_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/component/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/component/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/component/unittests/test_command_component_entity.py create mode 100644 sdk/ml/azure-ai-ml/tests/component/unittests/test_component_operations.py create mode 100644 sdk/ml/azure-ai-ml/tests/component/unittests/test_component_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_entity.py create mode 100644 sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_operations.py create mode 100644 sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/compute/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/compute/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/compute/unittests/test_compute_entity.py create mode 100644 sdk/ml/azure-ai-ml/tests/compute/unittests/test_compute_operations.py create mode 100644 sdk/ml/azure-ai-ml/tests/dataset/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/dataset/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_operations.py create mode 100644 sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_utils.py create mode 100644 sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_operations.py create mode 100644 sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/datastore/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/datastore/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/datastore/unittests/test_datastore_operations.py create mode 100644 sdk/ml/azure-ai-ml/tests/datastore/unittests/test_datastore_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_arm_id_utils.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_artifact_entity.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_asset_entity.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_asset_utils.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_experimental_utils.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_fields.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_file_utils.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_operation_orchestrator.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_registry_utils.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_smoke.py create mode 100644 sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_utils.py create mode 100644 sdk/ml/azure-ai-ml/tests/job_common/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/job_common/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/job_common/unittests/test_job_operations.py create mode 100644 sdk/ml/azure-ai-ml/tests/job_common/unittests/test_job_ops_helper.py create mode 100644 sdk/ml/azure-ai-ml/tests/job_common/unittests/test_local_job_invoker.py create mode 100644 sdk/ml/azure-ai-ml/tests/job_common/unittests/test_vcr_utils.py create mode 100644 sdk/ml/azure-ai-ml/tests/local_endpoint/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_devcontainer_properties.py create mode 100644 sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_devcontainer_resolver.py create mode 100644 sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_docker_client.py create mode 100644 sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_dockerfile_instructions.py create mode 100644 sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_dockerfile_resolver.py create mode 100644 sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_endpoint_stub.py create mode 100644 sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_local_endpoint_validator.py create mode 100644 sdk/ml/azure-ai-ml/tests/model/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/model/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/model/unittests/test_model_operations.py create mode 100644 sdk/ml/azure-ai-ml/tests/model/unittests/test_model_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/online_services/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/online_services/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_executor.py create mode 100644 sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_operations.py create mode 100644 sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/online_services/unittests/test_online_deployments.py create mode 100644 sdk/ml/azure-ai-ml/tests/online_services/unittests/test_online_endpoints.py create mode 100644 sdk/ml/azure-ai-ml/tests/online_services/unittests/test_resource_requirements_settings.py create mode 100644 sdk/ml/azure-ai-ml/tests/online_services/unittests/test_scale_settings.py create mode 100644 sdk/ml/azure-ai-ml/tests/online_services/unittests/test_scale_settings_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/pipeline_job/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/pipeline_job/_util.py create mode 100644 sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_entity.py create mode 100644 sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/sweep_job/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/sweep_job/unittests/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/sweep_job/unittests/test_sweep_job.py create mode 100644 sdk/ml/azure-ai-ml/tests/sweep_job/unittests/test_sweep_job_schema.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_beer_job.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_classification_job_mock.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_classification_multilabel_job_mock.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_instance_segmentation_job_mock.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_object_detection_job_mock.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_missing_required_fields.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_auto.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_classification.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_forecasting.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_regression.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_classification_mock.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_classification_multilabel_mock.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_ner_mock.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_classification_job.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_forecasting_job.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_regression_job.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_text_classification_job.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/featurization_config.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/rest_featurization_config.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/bank_marketing/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/bank_marketing/valid/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/beer_forecasting/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/conll2003/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/conll2003/valid/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/test/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/valid/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/test/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/test/house_pricing_test.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/train/house_pricing_train.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/valid/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/valid/house_pricing_valid.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification/valid/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification_multilabel/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification_multilabel/valid/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/train/train_annotations.jsonl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/valid/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/valid/validation_annotations.jsonl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_object_detection/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_object_detection/valid/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/machine_data/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/newsgroup/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/newsgroup/valid/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/paper_categorization/train/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/paper_categorization/valid/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/training_mltable_folder/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/training_mltable_folder/bank_marketing_train_data.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_endpoint_model/mnist-tf.model.data-00000-of-00001 create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_endpoint_model/mnist-tf.model.index create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_endpoint_model/mnist-tf.model.meta create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_endpoint_model/saved_model.pb create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/batch_endpoint_model/sklearn_regression_model.pkl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/conda_file.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/lgb.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/binary_classification/README.md create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/binary_classification/binary.test create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/binary_classification/binary.test.weight create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/binary_classification/binary.train create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/binary_classification/binary.train.weight create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/binary_classification/forced_splits.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/binary_classification/predict.conf create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/binary_classification/train.conf create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/README.md create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/advanced_example.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/logistic_regression.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/plot_example.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/simple_example.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/sklearn_example.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_environment_version.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inline_inputs_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_input_types.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_dataset_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_incorrect_datastore_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_rest.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_output.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_output_types.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_quick_with_output.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_relative_inputs_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest_amltoken_identity.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest_msi_identity.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_amltoken_identity.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_msi_identity.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_dataset.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_inputs.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_local_dataset.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_yaml_ref.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_with_virtualcluster.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_with_virtualcluster_2.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_1.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_2.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_3.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_bad.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/inlined_assets.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/local_job.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_env_var_command.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_legacy1_command.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_legacy2_command.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/simple_train_conda.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/command_job/simple_train_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/1in1out.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/1in2out.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/basic_component_code_arm_id.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/basic_component_code_local_path.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/basic_parallel_component_score.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/basic_parallel_component_score_rest.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/component_e2e.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/component_no_version.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/default_optional_component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_alt1.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_for_sweep.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_mpi.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_multiple_data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_no_paths.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_pytorch.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_registry.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_rest.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_tensorflow.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_input_and_output.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_paths.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_uppercase_input.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/conda.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_inline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_path_0.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_path_1.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_parallel.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/input_types_component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/input_types_component_rest.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/code.name_only.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/combo.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/empty.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/environment.name_only.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/error_format.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_blank_input_names.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_blank_output_names.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_dash_input_names.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_dash_output_names.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_special_character_input_names.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_special_character_output_names.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_dash_input_names.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_dash_output_names.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_number_input_names.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_number_output_names.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/name_none.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/no_environment.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/non_dict.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/unsupported_fields.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/merge_outputs_component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/parallel_component_with_file_input.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/custom_model.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/mlflow_model.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/mltable.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/object.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/path.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-aml-no-identity.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-aml.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci-schedules.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci-unit.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-kubernetes.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-vm.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/compute/ssh_fake_key.txt create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/data/sample1.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_file.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path_mltable.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path_with_datastore.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_missing_path_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_empty_paths_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_file.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_file_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_multiple_folder_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_multiple_paths_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_local_path.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_local_path_with_datastore.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_no_paths_and_local_path_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_whitespace_file_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_whitespace_folder_test.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_with_file_and_folder.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/invalid-mltable/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/invalid-mltable/iris.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/iris-mltable/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/iris-mltable/iris.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/0.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/1.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/2.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/3.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/0.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/1.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/2.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/3.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/4.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/5.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/6.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/7.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/8.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/9.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/neural-iris-mltable/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dataset/neural-iris-mltable/iris.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/adls_gen1.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/adls_gen2.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/blob_store.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_adls_gen1.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_adls_gen2.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_blob_store.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/file_store.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_keytab.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_keytab2.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_minimal.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_pw.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_pw2.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_1.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_2.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_conda.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_docker.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_image.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_model.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_mlflow.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_mlflow_new.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_no_action.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_no_file.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_quick.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/Dockerfile create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/online_deployment_byoc_sklearn.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/score.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/assets/foo.txt create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/assets/license.txt create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/saved_model.pb create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/variables/variables.data-00000-of-00001 create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/variables/variables.index create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/online_deployment_tfserving.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/sample_request.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/endpoint_scoring/do_nothing.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/endpoint_scoring/main.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/endpoint_scoring/sample-request.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-1/model/sklearn_regression_model.pkl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-1/onlinescoring/score.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-1/sample-request.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-2/model/sklearn_regression_model.pkl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-2/onlinescoring/score.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-2/sample-request.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-3/conda.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-3/score.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-3/sklearn_regression_model.pkl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_1.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_1_update.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_1_update_incomplete.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_2.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_blue.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_blue_k8s.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_green_1.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_k8s.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_k8s_1.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_mir.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_mir_private.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_model_code_overlap.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_pe_1.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_registered_artifacts.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_registered_code.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_registered_env.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_registered_model.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_deployment_schema.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/online_endpoint_deployment_k8s_minimum.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/online/simple_online_endpoint_mir.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/basic_dsl_component_primitive_inputs.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/basic_dsl_components.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_code_specified/conda.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_code_specified/inner_folder/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_code_specified/inner_folder2/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_code_specified/inner_folder3/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_code_specified/inner_folder3/conda.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_hello_world/hello_world.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_with_distribution/inner_folder/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_with_distribution/inner_folder2/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_with_distribution/inner_folder3/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_with_distribution/inner_folder4/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_with_env/conda.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_with_env/inner_folder/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_with_env/inner_folder2/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_with_env/inner_folder3/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_with_env/inner_folder4/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dsl_component_with_resources/basic_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dynamic_dsl_component/duplicate_component_name.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dynamic_dsl_component/dynamic_dsl_with_name.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_component/dynamic_dsl_component/source_func.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/automl_job_in_pipeline/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/automl_job_in_pipeline/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/components/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/components/src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentA.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentA_src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentB.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentB_src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentC.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentC_src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/data/sample1.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/eval_src/eval.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/hello-world-data-dependency.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/hello-world.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/score_src/score.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_command_job.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_src/train.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_src/train1.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/data/sample.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/__init__.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_basic.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_basic.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_cross_type.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_cross_type.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_meta.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_meta.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path_concatenate.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path_concatenate.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_reason_expression.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_reason_expression.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_string_concatenate.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_string_concatenate.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_compute.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_compute.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_literal.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_literal.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_choice.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_choice.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_limits.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_limits.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_literal.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_literal.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/data/sample.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/data/sample.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/data/sample.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/data/sample1.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/eval_src/eval.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline_dsl_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/score_src/score.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/train_src/train.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/data/sample1.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/eval.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/eval_src/eval.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/score.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/score_src/score.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train_command_job.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train_src/train.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/data/sample1.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/eval.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/eval_src/eval.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/score.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/score_src/score.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/train.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/train_src/train.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/data/sample.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/data/greenTaxiData.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/data/yellowTaxiData.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/green_data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/predict.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/predict_src/predict.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/prep.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/prep_src/prep.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/score.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/score_src/score.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/train.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/train_src/train.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/transform.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/transform_src/transform.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/yellow_data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/convert_data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/iris-mltable/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/iris-mltable/iris.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/0.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/1.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/2.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/3.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/environment_parallel.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/file_batch_inference.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/get_data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/model/iris_model/MLmodel create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/model/iris_model/model.pkl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/convert_data.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/file_batch_inference.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/get_data.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/tabular_batch_inference.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/tabular_batch_inference.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/convert_data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/0.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/1.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/2.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/3.png create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/score.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/src/convert_data.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/src/score.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/dataset/iris-mltable/MLTable create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/dataset/iris-mltable/iris.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/environment_parallel.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/model/iris_model/MLmodel create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/model/iris_model/model.pkl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/src/tabular_run_with_model.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/tabular_input_e2e.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/conda.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/dsl_component.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentA.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentA_src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentB.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentB_src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentC.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentC_src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/data/sample.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/src/train.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/data/sample.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/pipeline.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow_new.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow_remote.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/simple_batch_endpoint.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/data.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online-endpoint-with-blue.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_aks_bad.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_k8s.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_mir.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_mir_private.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_minimal.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_incomplete.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_k8s.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_mir.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_tags.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/sklearn_regression_model.pkl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/mnist_models/mnist-tf.model.data-00000-of-00001 create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/mnist_models/mnist-tf.model.index create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/mnist_models/mnist-tf.model.meta create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/mnist_models/saved_model.pb create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/iris_model/MLmodel create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/iris_model/model.pkl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/MLmodel create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/conda.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/input_example.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/model.lgb create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/requirements.txt create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/model.pkl create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/model_bad.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/model_env1.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/model_env2.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/model_full.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/model_minimal.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/model_no_version.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/model_path.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/model/model_path_url.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/component_from_registry.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_comps_data_options.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_comps_data_options_no_outputs.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_cron_schedule.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_data_options.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_data_options_no_outputs.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_dataset_options_no_outputs.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_e2e.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_command_job_e2e.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_command_job_e2e_short_uri.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_component_input_e2e.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_dataset_input_e2e.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_input_e2e.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_tabular_input_e2e.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_environment_variable.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_comps.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_file_comps.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_file_parallel.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths_e2e.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths_expected_settings_override.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_quick_with_output.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_no_recurrence_pattern.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_recurrence_pattern_lists.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_recurrence_pattern_literals.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_resolve_reuse.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_deep_reference.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_inputs_outputs.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_component_output.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_distribution_component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_paths.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_sweep_node.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_without_component_snapshot.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_compute.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_remote_component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_remote_version.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/with_invalid_component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/component.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/pipeline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/src/hello.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_node_with_command_node.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_command_node.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_pipeline_level_output.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_classification.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_forecasting.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_instance_segmentation.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multiclass_classification.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multilabel_classification.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_object_detection.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression_machine_data.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification_multilabel.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_ner.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/rest_pipeline_with_automl_output.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/rest_pipeline_with_automl_output_binding.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/pipeline_job_with_command_job_with_input_bindings.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/pipeline_job_with_parallel_job_with_input_bindings.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/rest_pipeline_with_automl_output.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/sample_pipeline_job.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/custom_model.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/mlflow_model.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/mltable.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/object.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/path.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/python/sample1.csv create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/python/simple_train.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/python/sweep_script.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/python/sweep_script_search.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/python/train.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/digit_identification.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/pass_through.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/tabular_run_with_model.py create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/storage/.amlignore create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/storage/.gitignore create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/storage/dont_include_us/test_file.txt create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/storage/gitignore_only/.gitignore create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/storage/test_file.txt create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/storage/test_file_2.txt create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/corrupt_mfe_data_sweep_job.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/expected_recursive_search_space.json create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_bayesian_sampling_algorithm_object.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_grid_sampling_algorithm_object.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_random_sampling_algorithm_object.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sampling_algorithm_properties/sweep_job_random_rule.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sampling_algorithm_properties/sweep_job_random_seed.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/string_sampling_algorithm/sweep_job_bayesian_sampling_algorithm_string.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/string_sampling_algorithm/sweep_job_grid_sampling_algorithm_string.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-bandit.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-median.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-search.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-truncation.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_input_types.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_outputs.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_test.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_test_input.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_output_types.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_recursive_search_space.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_search_space_choice_string.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_test.yaml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_test_inputs.yaml diff --git a/.gitignore b/.gitignore index fb2bd94d5afa..6ca25c21c4b0 100644 --- a/.gitignore +++ b/.gitignore @@ -102,6 +102,9 @@ sdk/storage/azure-storage-queue/tests/settings/settings_real.py sdk/storage/azure-storage-file-share/tests/settings/settings_real.py sdk/storage/azure-storage-file-datalake/tests/settings/settings_real.py +# azure-ai-ml test configs +!sdk/ml/azure-ai-ml/tests/test_configs/environment/* + # The locations below are deprecated - keep to prevent any accidental secrets leakage ========== sdk/storage/azure-storage-blob/tests/_shared/settings_real.py diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/__init__.py b/sdk/ml/azure-ai-ml/tests/automl_job/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py b/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py new file mode 100644 index 000000000000..a77ed0787ed1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py @@ -0,0 +1,180 @@ +import pytest + +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.entities._job.automl.tabular.forecasting_settings import ForecastingSettings +from tests.automl_job.test_utilities import download_dataset + +from typing import Tuple +import os + +TEST_CONFIG_PATH = "tests/test_configs/automl_job" +TEST_DATASETS_PATH = TEST_CONFIG_PATH + "/" + "test_datasets" + +BANK_MARKETING_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "bank_marketing/train" +BANK_MARKETING_TEST_DATASET_PATH = TEST_DATASETS_PATH + "/" + "bank_marketing/valid" + +BEER_FORECASTING_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "beer_forecasting/train" + +CONLL_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "conll2003/train" +CONLL_VALID_DATASET_PATH = TEST_DATASETS_PATH + "/" + "conll2003/valid" + +CREDIT_CARD_FRAUD_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "credit_card_fraud/train" +CREDIT_CARD_FRAUD_TEST_DATASET_PATH = TEST_DATASETS_PATH + "/" + "credit_card_fraud/test" +CREDIT_CARD_FRAUD_VALID_DATASET_PATH = TEST_DATASETS_PATH + "/" + "credit_card_fraud/valid" + +MACHINE_DATA_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "machine_data/train" + +NEWSGROUP_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "newsgroup/train" +NEWSGROUP_VALID_DATASET_PATH = TEST_DATASETS_PATH + "/" + "newsgroup/valid" + +PAPER_CATEGORIZATION_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "paper_categorization/train" +PAPER_CATEGORIZATION_VALID_DATASET_PATH = TEST_DATASETS_PATH + "/" + "paper_categorization/valid" + +IMAGE_CLASSIFICATION_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "image_classification/train" +IMAGE_CLASSIFICATION_VALID_DATASET_PATH = TEST_DATASETS_PATH + "/" + "image_classification/valid" + +IMAGE_CLASSIFICATION_MULTILABEL_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "image_classification_multilabel/train" +IMAGE_CLASSIFICATION_MULTILABEL_VALID_DATASET_PATH = TEST_DATASETS_PATH + "/" + "image_classification_multilabel/valid" + +IMAGE_OBJECT_DETECTION_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "image_object_detection/train" +IMAGE_OBJECT_DETECTION_VALID_DATASET_PATH = TEST_DATASETS_PATH + "/" + "image_object_detection/valid" + +IMAGE_SEGMENTATION_TRAIN_DATASET_PATH = TEST_DATASETS_PATH + "/" + "image_instance_segmentation/train" +IMAGE_SEGMENTATION_VALID_DATASET_PATH = TEST_DATASETS_PATH + "/" + "image_instance_segmentation/valid" + +ROOT_DIR = os.path.realpath(os.path.join(os.path.dirname(__file__), "../../..")) + + +@pytest.fixture +def bankmarketing_dataset() -> Tuple[Input, Input, str]: + # Classification Dataset + training_data = Input(type=AssetTypes.MLTABLE, path=os.path.join(ROOT_DIR, BANK_MARKETING_TRAIN_DATASET_PATH)) + validation_data = Input(type=AssetTypes.MLTABLE, path=os.path.join(ROOT_DIR, BANK_MARKETING_TEST_DATASET_PATH)) + label_column_name = "y" + return training_data, validation_data, label_column_name + + +@pytest.fixture +def credit_card_fraud_dataset() -> Tuple[Input, Input, str]: + # Classification Dataset + training_data = Input(type=AssetTypes.MLTABLE, path=CREDIT_CARD_FRAUD_TRAIN_DATASET_PATH) + validation_data = Input(type=AssetTypes.MLTABLE, path=CREDIT_CARD_FRAUD_VALID_DATASET_PATH) + label_column_name = "Class" + return training_data, validation_data, label_column_name + + +@pytest.fixture +def machinedata_dataset() -> Tuple[Input, str]: + # Regression Dataset + training_data = Input(type=AssetTypes.MLTABLE, path=os.path.join(ROOT_DIR, MACHINE_DATA_TRAIN_DATASET_PATH)) + label_column_name = "ERP" + return training_data, label_column_name + + +@pytest.fixture +def beer_forecasting_dataset() -> Tuple[Input, ForecastingSettings, str]: + # Forecasting Dataset + training_data = Input(type=AssetTypes.MLTABLE, path=os.path.join(ROOT_DIR, BEER_FORECASTING_TRAIN_DATASET_PATH)) + label_column_name = "BeerProduction" + time_column_name = "DATE" + forecast_horizon = 12 + frequency = "MS" + forecasting_settings = ForecastingSettings( + time_column_name=time_column_name, forecast_horizon=forecast_horizon, frequency=frequency + ) + + return training_data, forecasting_settings, label_column_name + + +@pytest.fixture +def image_classification_dataset() -> Tuple[str, str]: + # Download data + download_url = "https://cvbp-secondary.z19.web.core.windows.net/datasets/image_classification/fridgeObjects.zip" + data_file = "./fridgeObjects.zip" + download_dataset(download_url=download_url, data_file=data_file) + + # Classification dataset MLTable paths + train_path = os.path.join(ROOT_DIR, IMAGE_CLASSIFICATION_TRAIN_DATASET_PATH) + val_path = os.path.join(ROOT_DIR, IMAGE_CLASSIFICATION_VALID_DATASET_PATH) + return train_path, val_path + + +@pytest.fixture +def image_classification_multilabel_dataset() -> Tuple[str, str]: + # Download data + download_url = ( + "https://cvbp-secondary.z19.web.core.windows.net/datasets/image_classification/multilabelFridgeObjects.zip" + ) + data_file = "./multilabelFridgeObjects.zip" + download_dataset(download_url=download_url, data_file=data_file) + + # Multilabel classification dataset MLTable paths + train_path = os.path.join(ROOT_DIR, IMAGE_CLASSIFICATION_MULTILABEL_TRAIN_DATASET_PATH) + val_path = os.path.join(ROOT_DIR, IMAGE_CLASSIFICATION_MULTILABEL_VALID_DATASET_PATH) + return train_path, val_path + + +@pytest.fixture +def image_object_detection_dataset() -> Tuple[str, str]: + # Download data + download_url = "https://cvbp-secondary.z19.web.core.windows.net/datasets/object_detection/odFridgeObjects.zip" + data_file = "./odFridgeObjects.zip" + download_dataset(download_url=download_url, data_file=data_file) + + # Image Object Dataset + train_path = os.path.join(ROOT_DIR, IMAGE_OBJECT_DETECTION_TRAIN_DATASET_PATH) + val_path = os.path.join(ROOT_DIR, IMAGE_OBJECT_DETECTION_VALID_DATASET_PATH) + return train_path, val_path + + +@pytest.fixture +def image_segmentation_dataset() -> Tuple[str, str]: + # Download data + download_url = "https://cvbp-secondary.z19.web.core.windows.net/datasets/object_detection/odFridgeObjectsMask.zip" + data_file = "./odFridgeObjectsMask.zip" + download_dataset(download_url=download_url, data_file=data_file) + + # Image Object Dataset + train_path = os.path.join(ROOT_DIR, IMAGE_SEGMENTATION_TRAIN_DATASET_PATH) + val_path = os.path.join(ROOT_DIR, IMAGE_SEGMENTATION_VALID_DATASET_PATH) + return train_path, val_path + + +# Text Classification Dataset +@pytest.fixture +def newsgroup() -> Tuple[Input, Input, str]: + training_data = Input(type=AssetTypes.MLTABLE, path=os.path.join(ROOT_DIR, NEWSGROUP_TRAIN_DATASET_PATH)) + validation_data = Input(type=AssetTypes.MLTABLE, path=os.path.join(ROOT_DIR, NEWSGROUP_TRAIN_DATASET_PATH)) + target_column_name = "y" + + return training_data, validation_data, target_column_name + + +# Text Classification Multilabel Dataset +@pytest.fixture +def paper_categorization() -> Tuple[Input, Input, str]: + training_data = Input(type=AssetTypes.MLTABLE, path=os.path.join(ROOT_DIR, PAPER_CATEGORIZATION_TRAIN_DATASET_PATH)) + validation_data = Input( + type=AssetTypes.MLTABLE, path=os.path.join(ROOT_DIR, PAPER_CATEGORIZATION_VALID_DATASET_PATH) + ) + target_column_name = "terms" + + return training_data, validation_data, target_column_name + + +# Text NER Dataset +@pytest.fixture +def conll() -> Tuple[Input, Input]: + training_data = Input(type=AssetTypes.MLTABLE, path=os.path.join(ROOT_DIR, CONLL_TRAIN_DATASET_PATH)) + validation_data = Input(type=AssetTypes.MLTABLE, path=os.path.join(ROOT_DIR, CONLL_VALID_DATASET_PATH)) + + return training_data, validation_data + + +@pytest.fixture(scope="session") +def check_completed_run(pytestconfig): + # For pytests marked with pytest.mark.e2etest, only test up to creating the job + if "e2etest" in pytestconfig.getoption("-m"): + return False + return True diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/test_utilities.py b/sdk/ml/azure-ai-ml/tests/automl_job/test_utilities.py new file mode 100644 index 000000000000..dc6ceca26dd3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/test_utilities.py @@ -0,0 +1,55 @@ +import os +import time +import urllib.request as urllib +from zipfile import ZipFile + +from azure.ai.ml.entities._job.automl.automl_job import AutoMLJob +from azure.ai.ml._operations.job_ops_helper import _wait_before_polling +from azure.ai.ml._operations.run_history_constants import RunHistoryConstants +from azure.ai.ml import MLClient + + +def assert_final_job_status(job, client: MLClient, job_type: AutoMLJob, expected_terminal_status: str): + assert isinstance(job, job_type) + assert job.status == "NotStarted" + + poll_start_time = time.time() + while job.status not in RunHistoryConstants.TERMINAL_STATUSES: + time.sleep(_wait_before_polling(time.time() - poll_start_time)) + job = client.jobs.get(job.name) + + assert job.status == expected_terminal_status, f"Job status mismatch. Job created: {job}" + + +def assert_created_job(job, client: MLClient, job_type: AutoMLJob): + assert isinstance(job, job_type) + assert job.status == "NotStarted" + # After checking the job is created successfully, we don't need job running anymore; + # try canceling the job + try: + client.jobs.cancel(job.name) + except Exception: + print(f"Canceling {job.name} failed") + + +def get_properties(): + properties = { + "_automl_internal_enable_mltable_quick_profile": True, + "_automl_internal_label": "latest", + "_automl_internal_save_mlflow": True, + } + return properties + + +def download_dataset(download_url: str, data_file: str): + + # download data + urllib.urlretrieve(download_url, filename=data_file) + + # extract files + with ZipFile(data_file, "r") as zip: + print("extracting files...") + zip.extractall() + print("done") + # delete zip file + os.remove(data_file) diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_classification.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_classification.py new file mode 100644 index 000000000000..e525224bfe34 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_classification.py @@ -0,0 +1,130 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + +import pytest +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + MLTableJobInput, + ClassificationPrimaryMetrics, + SamplingAlgorithmType, + UserIdentity, +) +from azure.ai.ml.automl import image_classification +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.sweep import ( + BanditPolicy, + Choice, + Uniform, +) + +from azure.ai.ml.entities._job.automl.image import ( + ImageClassificationJob, + ImageClassificationSearchSpace, +) + + +@pytest.mark.unittest +class TestAutoMLImageClassification: + def test_image_classification_task(self): + identity = UserIdentity() + # Create AutoML Image Classification task + image_classification_job = image_classification( + training_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/train.csv"), + target_column_name="label", + primary_metric=ClassificationPrimaryMetrics.ACCURACY, + validation_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/valid.csv"), + # Job attributes + compute="gpu_cluster", + name="image_classifier_job", + experiment_name="foo_exp", + tags={"foo_tag": "bar"}, + identity = identity, + ) # type: ImageClassificationJob + + # image_classification_job.limits = {"timeout": 60, "max_trials": 1, "max_concurrent_trials": 1} + image_classification_job.set_limits(timeout_minutes=60) + + early_termination_policy = BanditPolicy(evaluation_interval=10, slack_factor=0.2) + # image_classification_job.sweep = { + # "max_concurrent_trials": 4, + # "max_trials": 20, + # "sampling_algorithm": SamplingAlgorithmType.GRID, + # "early_termination": early_termination_policy, + # } + image_classification_job.set_sweep( + sampling_algorithm=SamplingAlgorithmType.GRID, + max_concurrent_trials=4, + max_trials=20, + early_termination=early_termination_policy, + ) + + # image_classification_job.image_model = { + # "checkpoint_frequency": 1, + # "early_stopping": True, + # "early_stopping_delay": 2, + # "early_stopping_patience": 2, + # "evaluation_frequency": 1, + # } + image_classification_job.set_image_model( + checkpoint_frequency=1, + early_stopping=True, + early_stopping_delay=2, + early_stopping_patience=2, + evaluation_frequency=1, + ) + + """ + image_classification_job.search_space = [ + { + "model_name": Choice(['vitb16r224', 'vits16r224']), + "learning_rate": Uniform(0.001, 0.01), + "number_of_epochs": Choice([15, 30]), + }, + { + "model_name": Choice(['seresnext', 'resnest50']), + "learning_rate": Uniform(0.001, 0.01), + "layers_to_freeze": Choice([0, 2]), + }, + ] + """ + search_sub_space_1 = ImageClassificationSearchSpace( + model_name=Choice(["vitb16r224", "vits16r224"]), + learning_rate=Uniform(0.001, 0.01), + number_of_epochs=Choice([15, 30]), + ) + search_sub_space_2 = ImageClassificationSearchSpace( + model_name=Choice(["seresnext", "resnest50"]), + learning_rate=Uniform(0.001, 0.01), + layers_to_freeze=Choice([0, 2]), + ) + image_classification_job.extend_search_space([search_sub_space_1, search_sub_space_2]) + + # check the rest object + rest_obj = image_classification_job._to_rest_object() + assert rest_obj.properties.identity == identity + def _check_data_type(data, expected_type, expected_path, msg): + if expected_type == MLTableJobInput: + assert isinstance(data, MLTableJobInput), "{} data is not MLTableJobInput".format(msg) + elif expected_type == Input: + assert isinstance(data, Input), "{} data is not Input".format(msg) + assert data.type == AssetTypes.MLTABLE, "{} data type not set correctly".format(msg) + assert data.path == expected_path, "{} data path not set correctly".format(msg) + + _check_data_type( + rest_obj.properties.task_details.data_settings.training_data.data, MLTableJobInput, None, "Training" + ) + _check_data_type( + rest_obj.properties.task_details.data_settings.validation_data.data, MLTableJobInput, None, "Validation" + ) + + original_obj = ImageClassificationJob._from_rest_object(rest_obj) + assert image_classification_job == original_obj, "Conversion to/from rest object failed" + assert original_obj.compute == "gpu_cluster", "Compute not set correctly" + assert original_obj.name == "image_classifier_job", "Name not set correctly" + assert original_obj.experiment_name == "foo_exp", "Experiment name not set correctly" + assert original_obj.tags == {"foo_tag": "bar"}, "Tags not set correctly" + assert original_obj.identity == identity + # check if the original job inputs were restored + _check_data_type(original_obj._data.training_data.data, Input, "https://foo/bar/train.csv", "Training") + _check_data_type(original_obj._data.validation_data.data, Input, "https://foo/bar/valid.csv", "Validation") diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_classification_multilabel.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_classification_multilabel.py new file mode 100644 index 000000000000..70f80f9c62a1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_classification_multilabel.py @@ -0,0 +1,137 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + +import pytest +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + MLTableJobInput, + ClassificationMultilabelPrimaryMetrics, + SamplingAlgorithmType, + UserIdentity, +) +from azure.ai.ml.automl import image_classification_multilabel +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.sweep import ( + BanditPolicy, + Choice, + Uniform, +) +from azure.ai.ml.entities._job.automl.image import ( + ImageClassificationMultilabelJob, + ImageClassificationSearchSpace, +) + + +@pytest.mark.unittest +class TestAutoMLImageClassificationMultilabel: + def test_image_classification_multilabel_task(self): + # Create AutoML Image Classification Multilabel task + identity = UserIdentity() + image_classification_multilabel_job = image_classification_multilabel( + training_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/train.csv"), + target_column_name="label", + primary_metric=ClassificationMultilabelPrimaryMetrics.IOU, + validation_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/valid.csv"), + # Job attributes + compute="gpu_cluster", + name="image_classifier_multilabel_job", + experiment_name="foo_exp", + tags={"foo_tag": "bar"}, + identity = identity, + ) # type: ImageClassificationMultilabelJob + + # image_classification_multilabel_job.limits = {"timeout": 60, "max_trials": 1, "max_concurrent_trials": 1} + image_classification_multilabel_job.set_limits(timeout_minutes=60) + + early_termination_policy = BanditPolicy(evaluation_interval=10, slack_factor=0.2) + # image_classification_multilabel_job.sweep = { + # "max_concurrent_trials": 4, + # "max_trials": 20, + # "sampling_algorithm": SamplingAlgorithmType.GRID, + # "early_termination": early_termination_policy, + # } + image_classification_multilabel_job.set_sweep( + sampling_algorithm=SamplingAlgorithmType.GRID, + max_concurrent_trials=4, + max_trials=20, + early_termination=early_termination_policy, + ) + + # image_classification_multilabel_job.image_model = { + # "checkpoint_frequency": 1, + # "early_stopping": True, + # "early_stopping_delay": 2, + # "early_stopping_patience": 2, + # "evaluation_frequency": 1, + # } + image_classification_multilabel_job.set_image_model( + checkpoint_frequency=1, + early_stopping=True, + early_stopping_delay=2, + early_stopping_patience=2, + evaluation_frequency=1, + ) + + """ + image_classification_multilabel_job.search_space = [ + { + "model_name": 'vitb16r224', + "learning_rate": Uniform(0.005, 0.05), + "number_of_epochs": Choice([15, 30]), + "gradient_accumulation_step": Choice([1, 2]), + }, + { + "model_name": 'seresnext', + "learning_rate": Uniform(0.005, 0.05), + "validation_resize_size": Choice([288, 320, 352]), + "validation_crop_size": Choice([224, 256]), + "training_crop_size": Choice([224, 256]), + }, + ] + """ + + search_sub_space_1 = ImageClassificationSearchSpace( + model_name="vitb16r224", + learning_rate=Uniform(0.005, 0.05), + number_of_epochs=Choice([15, 30]), + gradient_accumulation_step=Choice([1, 2]), + ) + search_sub_space_2 = ImageClassificationSearchSpace( + model_name="seresnext", + learning_rate=Uniform(0.005, 0.05), + validation_resize_size=Choice([288, 320, 352]), + validation_crop_size=Choice([224, 256]), + training_crop_size=Choice([224, 256]), + ) + image_classification_multilabel_job.extend_search_space([search_sub_space_1, search_sub_space_2]) + + # check the rest object + rest_obj = image_classification_multilabel_job._to_rest_object() + assert rest_obj.properties.identity == identity + + def _check_data_type(data, expected_type, expected_path, msg): + if expected_type == MLTableJobInput: + assert isinstance(data, MLTableJobInput), "{} data is not MLTableJobInput".format(msg) + elif expected_type == Input: + assert isinstance(data, Input), "{} data is not Input".format(msg) + assert data.type == AssetTypes.MLTABLE, "{} data type not set correctly".format(msg) + assert data.path == expected_path, "{} data path not set correctly".format(msg) + + _check_data_type( + rest_obj.properties.task_details.data_settings.training_data.data, MLTableJobInput, None, "Training" + ) + _check_data_type( + rest_obj.properties.task_details.data_settings.validation_data.data, MLTableJobInput, None, "Validation" + ) + + original_obj = ImageClassificationMultilabelJob._from_rest_object(rest_obj) + assert image_classification_multilabel_job == original_obj, "Conversion to/from rest object failed" + assert original_obj.compute == "gpu_cluster", "Compute not set correctly" + assert original_obj.name == "image_classifier_multilabel_job", "Name not set correctly" + assert original_obj.experiment_name == "foo_exp", "Experiment name not set correctly" + assert original_obj.tags == {"foo_tag": "bar"}, "Tags not set correctly" + assert original_obj.identity == identity + # check if the original job inputs were restored + _check_data_type(original_obj._data.training_data.data, Input, "https://foo/bar/train.csv", "Training") + _check_data_type(original_obj._data.validation_data.data, Input, "https://foo/bar/valid.csv", "Validation") diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_instance_segmentation.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_instance_segmentation.py new file mode 100644 index 000000000000..009111c9efab --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_instance_segmentation.py @@ -0,0 +1,125 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + +import pytest +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + MLTableJobInput, + InstanceSegmentationPrimaryMetrics, + SamplingAlgorithmType, + UserIdentity, +) +from azure.ai.ml.automl import image_instance_segmentation +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.sweep import ( + BanditPolicy, + Choice, + Uniform, +) +from azure.ai.ml.entities._job.automl.image import ( + ImageInstanceSegmentationJob, + ImageObjectDetectionSearchSpace, +) + + +@pytest.mark.unittest +class TestAutoMLImageInstanceSegmentation: + def test_image_instance_segmentation_task(self): + # Create AutoML Image Object Detection task + identity = UserIdentity() + image_instance_segmentation_job = image_instance_segmentation( + training_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/train.csv"), + target_column_name="label", + primary_metric=InstanceSegmentationPrimaryMetrics.MEAN_AVERAGE_PRECISION, + validation_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/valid.csv"), + # Job attributes + compute="gpu_cluster", + name="image_instance_segmentation_job", + experiment_name="foo_exp", + tags={"foo_tag": "bar"}, + identity = identity, + ) # type: ImageInstanceSegmentationJob + + # image_instance_segmentation_job.limits = {"timeout": 60, "max_trials": 1, "max_concurrent_trials": 1} + image_instance_segmentation_job.set_limits(timeout_minutes=60) + + early_termination_policy = BanditPolicy(evaluation_interval=10, slack_factor=0.2) + # image_instance_segmentation_job.sweep = { + # "max_concurrent_trials": 4, + # "max_trials": 20, + # "sampling_algorithm": SamplingAlgorithmType.GRID, + # "early_termination": early_termination_policy, + # } + image_instance_segmentation_job.set_sweep( + sampling_algorithm=SamplingAlgorithmType.GRID, + max_concurrent_trials=4, + max_trials=20, + early_termination=early_termination_policy, + ) + + # image_instance_segmentation_job.image_model = { + # "checkpoint_frequency": 1, + # "early_stopping": True, + # "early_stopping_delay": 2, + # "early_stopping_patience": 2, + # "evaluation_frequency": 1, + # } + image_instance_segmentation_job.set_image_model( + checkpoint_frequency=1, + early_stopping=True, + early_stopping_delay=2, + early_stopping_patience=2, + evaluation_frequency=1, + ) + + """ + image_instance_segmentation_job.search_space = [ + { + "model_name": 'maskrcnn_resnet50_fpn', + "learning_rate": Uniform(0.0001, 0.001), + "warmup_cosine_lr_warmup_epochs": Choice([0, 3]), + "optimizer": Choice(['sgd', 'adam', 'adamw']), + "min_size": Choice([600, 800]), + }, + ] + """ + + search_sub_space = ImageObjectDetectionSearchSpace( + model_name="maskrcnn_resnet50_fpn", + learning_rate=Uniform(0.0001, 0.001), + warmup_cosine_lr_warmup_epochs=Choice([0, 3]), + optimizer=Choice(["sgd", "adam", "adamw"]), + min_size=Choice([600, 800]), + ) + image_instance_segmentation_job.extend_search_space(search_sub_space) + + # check the rest object + rest_obj = image_instance_segmentation_job._to_rest_object() + assert rest_obj.properties.identity == identity + + def _check_data_type(data, expected_type, expected_path, msg): + if expected_type == MLTableJobInput: + assert isinstance(data, MLTableJobInput), "{} data is not MLTableJobInput".format(msg) + elif expected_type == Input: + assert isinstance(data, Input), "{} data is not Input".format(msg) + assert data.type == AssetTypes.MLTABLE, "{} data type not set correctly".format(msg) + assert data.path == expected_path, "{} data path not set correctly".format(msg) + + _check_data_type( + rest_obj.properties.task_details.data_settings.training_data.data, MLTableJobInput, None, "Training" + ) + _check_data_type( + rest_obj.properties.task_details.data_settings.validation_data.data, MLTableJobInput, None, "Validation" + ) + + original_obj = ImageInstanceSegmentationJob._from_rest_object(rest_obj) + assert image_instance_segmentation_job == original_obj, "Conversion to/from rest object failed" + assert original_obj.compute == "gpu_cluster", "Compute not set correctly" + assert original_obj.identity == identity + assert original_obj.name == "image_instance_segmentation_job", "Name not set correctly" + assert original_obj.experiment_name == "foo_exp", "Experiment name not set correctly" + assert original_obj.tags == {"foo_tag": "bar"}, "Tags not set correctly" + # check if the original job inputs were restored + _check_data_type(original_obj._data.training_data.data, Input, "https://foo/bar/train.csv", "Training") + _check_data_type(original_obj._data.validation_data.data, Input, "https://foo/bar/valid.csv", "Validation") diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_object_detection.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_object_detection.py new file mode 100644 index 000000000000..9badb96ca22c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_object_detection.py @@ -0,0 +1,133 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + +import pytest +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + MLTableJobInput, + ObjectDetectionPrimaryMetrics, + SamplingAlgorithmType, + UserIdentity, +) +from azure.ai.ml.automl import image_object_detection +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.sweep import ( + BanditPolicy, + Choice, + Uniform, +) +from azure.ai.ml.entities._job.automl.image import ( + ImageObjectDetectionJob, + ImageObjectDetectionSearchSpace, +) + + +@pytest.mark.unittest +class TestAutoMLImageObjectDetection: + def test_image_object_detection_task(self): + # Create AutoML Image Object Detection task + identity = UserIdentity() + image_object_detection_job = image_object_detection( + training_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/train.csv"), + target_column_name="label", + primary_metric=ObjectDetectionPrimaryMetrics.MEAN_AVERAGE_PRECISION, + validation_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/valid.csv"), + # Job attributes + compute="gpu_cluster", + name="image_object_detection_job", + experiment_name="foo_exp", + tags={"foo_tag": "bar"}, + identity = identity, + ) # type: ImageObjectDetectionJob + + # image_object_detection_job.limits = {"timeout": 60, "max_trials": 1, "max_concurrent_trials": 1} + image_object_detection_job.set_limits(timeout_minutes=60) + + early_termination_policy = BanditPolicy(evaluation_interval=10, slack_factor=0.2) + # image_object_detection_job.sweep = { + # "max_concurrent_trials": 4, + # "max_trials": 20, + # "sampling_algorithm": SamplingAlgorithmType.GRID, + # "early_termination": early_termination_policy, + # } + image_object_detection_job.set_sweep( + sampling_algorithm=SamplingAlgorithmType.GRID, + max_concurrent_trials=4, + max_trials=20, + early_termination=early_termination_policy, + ) + + # image_object_detection_job.image_model = { + # "checkpoint_frequency": 1, + # "early_stopping": True, + # "early_stopping_delay": 2, + # "early_stopping_patience": 2, + # "evaluation_frequency": 1, + # } + image_object_detection_job.set_image_model( + checkpoint_frequency=1, + early_stopping=True, + early_stopping_delay=2, + early_stopping_patience=2, + evaluation_frequency=1, + ) + + """ + image_object_detection_job.search_space = [ + { + "model_name": 'yolov5', + "learning_rate": Uniform(0.0001, 0.01), + "model_size": Choice(['small', 'medium']), + }, + { + "model_name": 'fasterrcnn_resnet50_fpn', + "learning_rate": Uniform(0.0001, 0.01), + "optimizer": Choice(['sgd', 'adam', 'adamw']), + "min_size": Choice([600, 800]), + }, + ] + """ + + search_sub_space_1 = ImageObjectDetectionSearchSpace( + model_name="yolov5", + learning_rate=Uniform(0.0001, 0.01), + model_size=Choice(["small", "medium"]), + ) + search_sub_space_2 = ImageObjectDetectionSearchSpace( + model_name="fasterrcnn_resnet50_fpn", + learning_rate=Uniform(0.0001, 0.01), + optimizer=Choice(["sgd", "adam", "adamw"]), + min_size=Choice([600, 800]), + ) + image_object_detection_job.extend_search_space([search_sub_space_1, search_sub_space_2]) + + # check the rest object + rest_obj = image_object_detection_job._to_rest_object() + assert rest_obj.properties.identity == identity + + def _check_data_type(data, expected_type, expected_path, msg): + if expected_type == MLTableJobInput: + assert isinstance(data, MLTableJobInput), "{} data is not MLTableJobInput".format(msg) + elif expected_type == Input: + assert isinstance(data, Input), "{} data is not Input".format(msg) + assert data.type == AssetTypes.MLTABLE, "{} data type not set correctly".format(msg) + assert data.path == expected_path, "{} data path not set correctly".format(msg) + + _check_data_type( + rest_obj.properties.task_details.data_settings.training_data.data, MLTableJobInput, None, "Training" + ) + _check_data_type( + rest_obj.properties.task_details.data_settings.validation_data.data, MLTableJobInput, None, "Validation" + ) + + original_obj = ImageObjectDetectionJob._from_rest_object(rest_obj) + assert image_object_detection_job == original_obj, "Conversion to/from rest object failed" + assert original_obj.compute == "gpu_cluster", "Compute not set correctly" + assert original_obj.name == "image_object_detection_job", "Name not set correctly" + assert original_obj.experiment_name == "foo_exp", "Experiment name not set correctly" + assert original_obj.tags == {"foo_tag": "bar"}, "Tags not set correctly" + assert original_obj.identity == identity + # check if the original job inputs were restored + _check_data_type(original_obj._data.training_data.data, Input, "https://foo/bar/train.csv", "Training") + _check_data_type(original_obj._data.validation_data.data, Input, "https://foo/bar/valid.csv", "Validation") diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_schema.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_schema.py new file mode 100644 index 000000000000..1b73614bdfe3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_image_schema.py @@ -0,0 +1,374 @@ +import os +from pathlib import Path +from typing import List +import pytest +from unittest.mock import patch +from azure.ai.ml._utils.utils import to_iso_duration_format_mins +from azure.ai.ml.constants import AZUREML_PRIVATE_FEATURES_ENV_VAR +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml._restclient.v2022_02_01_preview.models._models_py3 import ( + AutoMLJob as RestAutoMLJob, + BanditPolicy as RestBanditPolicy, + ClassificationPrimaryMetrics, + ClassificationMultilabelPrimaryMetrics, + ImageClassificationMultilabel as RestImageClassificationMultilabel, + ImageObjectDetection as RestImageObjectDetection, + ImageInstanceSegmentation as RestImageInstanceSegmentation, + ImageClassification as RestImageClassification, + ImageLimitSettings as RestImageLimitSettings, + ImageSweepSettings as RestImageSweepSettings, + ImageSweepLimitSettings as RestImageSweepLimitSettings, + ImageModelDistributionSettingsClassification as RestImageClassificationSearchSpace, + ImageModelDistributionSettingsObjectDetection as RestImageObjectDetectionSearchSpace, + ImageModelSettings, + ImageModelSettingsClassification, + ImageVerticalDataSettings as RestImageVerticalDataSettings, + InstanceSegmentationPrimaryMetrics, + JobBaseData, + LogVerbosity, + MLTableJobInput, + ObjectDetectionPrimaryMetrics, + TestDataSettings, + TrainingDataSettings, + ImageVerticalValidationDataSettings, +) +from azure.ai.ml.entities import Job +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.entities._job.automl.automl_job import AutoMLJob +from azure.ai.ml.automl import ( + ImageLimitSettings, + ImageSweepSettings, + ImageClassificationSearchSpace, + ImageObjectDetectionSearchSpace, +) + + +@pytest.fixture(autouse=True) +def set_env_var() -> None: + with patch.dict(os.environ, {AZUREML_PRIVATE_FEATURES_ENV_VAR: "True"}): + yield + + +@pytest.fixture +def compute_binding_expected(mock_workspace_scope: OperationScope) -> str: + return "/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/computes/cpu-cluster" + + +@pytest.fixture +def expected_image_limits() -> RestImageLimitSettings: + return RestImageLimitSettings( + timeout=to_iso_duration_format_mins(60), + max_concurrent_trials=1, + max_trials=1, + ) + + +@pytest.fixture +def expected_image_data_settings() -> RestImageVerticalDataSettings: + training_data = TrainingDataSettings( + data=Input( + path="/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/data/image-training-data/versions/1", + type="mltable", + ), + ) + validation_data = ImageVerticalValidationDataSettings( + data=Input( + path="/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/data/image-validation-data/versions/1", + type="mltable", + ), + ) + data = RestImageVerticalDataSettings( + target_column_name="label", + training_data=training_data, + validation_data=validation_data, + ) + # update data + data.training_data.data = MLTableJobInput(uri=data.training_data.data.path) + data.validation_data.data = MLTableJobInput(uri=data.validation_data.data.path) + return data + + +@pytest.fixture +def expected_image_sweep_settings() -> RestImageSweepSettings: + return RestImageSweepSettings( + limits=RestImageSweepLimitSettings( + max_concurrent_trials=4, + max_trials=20, + ), + sampling_algorithm="grid", + early_termination=RestBanditPolicy( + slack_factor="0.2", + evaluation_interval=10, + ), + ) + + +@pytest.fixture +def expected_image_model_settings_classification() -> ImageModelSettings: + return ImageModelSettingsClassification( + checkpoint_frequency=1, + early_stopping=True, + early_stopping_delay=2, + early_stopping_patience=2, + evaluation_frequency=1, + ) + + +@pytest.fixture +def expected_image_search_space_settings() -> List[RestImageClassificationSearchSpace]: + return [ + RestImageClassificationSearchSpace( + gradient_accumulation_step="choice(1,2)", + learning_rate="uniform(0.005,0.05)", + model_name="choice('vitb16r224','vits16r224')", + number_of_epochs="choice(15,30)", + ), + RestImageClassificationSearchSpace( + learning_rate="uniform(0.005,0.05)", + model_name="choice('seresnext','resnest50')", + training_crop_size="choice(224,256)", + validation_crop_size="choice(224,256)", + validation_resize_size="choice(288,320,352)", + ), + ] + + +@pytest.fixture +def expected_image_object_detection_search_space_settings() -> List[RestImageObjectDetectionSearchSpace]: + return [ + RestImageObjectDetectionSearchSpace( + model_name="choice('maskrcnn_resnet50_fpn')", + learning_rate="uniform(0.005,0.05)", + warmup_cosine_lr_warmup_epochs="choice(0,3)", + optimizer="choice('sgd','adam','adamw')", + min_size="choice(600,800)", + ), + ] + + +@pytest.fixture +def expected_image_classification_job( + mock_workspace_scope: OperationScope, + expected_image_data_settings: RestImageVerticalDataSettings, + expected_image_limits: RestImageLimitSettings, + expected_image_sweep_settings: RestImageSweepSettings, + expected_image_model_settings_classification: ImageModelSettings, + expected_image_search_space_settings: List[RestImageClassificationSearchSpace], + compute_binding_expected: str, +) -> JobBaseData: + return _get_rest_automl_job( + RestImageClassification( + data_settings=expected_image_data_settings, + limit_settings=expected_image_limits, + sweep_settings=expected_image_sweep_settings, + model_settings=expected_image_model_settings_classification, + search_space=expected_image_search_space_settings, + primary_metric=ClassificationPrimaryMetrics.ACCURACY, + log_verbosity=LogVerbosity.DEBUG, + ), + compute_id=compute_binding_expected, + name="simpleautomlimagejob", + ) + + +@pytest.fixture +def expected_image_classification_multilabel_job( + mock_workspace_scope: OperationScope, + expected_image_data_settings: RestImageVerticalDataSettings, + expected_image_limits: RestImageLimitSettings, + expected_image_sweep_settings: RestImageSweepSettings, + expected_image_model_settings_classification: ImageModelSettings, + expected_image_search_space_settings: List[RestImageClassificationSearchSpace], + compute_binding_expected: str, +) -> JobBaseData: + return _get_rest_automl_job( + RestImageClassificationMultilabel( + data_settings=expected_image_data_settings, + limit_settings=expected_image_limits, + sweep_settings=expected_image_sweep_settings, + model_settings=expected_image_model_settings_classification, + search_space=expected_image_search_space_settings, + primary_metric=ClassificationMultilabelPrimaryMetrics.IOU, + log_verbosity=LogVerbosity.DEBUG, + ), + compute_id=compute_binding_expected, + name="simpleautomlimagejob", + ) + + +@pytest.fixture +def expected_image_object_detection_job( + mock_workspace_scope: OperationScope, + expected_image_data_settings: RestImageVerticalDataSettings, + expected_image_limits: RestImageLimitSettings, + expected_image_sweep_settings: RestImageSweepSettings, + expected_image_model_settings_classification: ImageModelSettings, + expected_image_object_detection_search_space_settings: List[RestImageObjectDetectionSearchSpace], + compute_binding_expected: str, +) -> JobBaseData: + return _get_rest_automl_job( + RestImageObjectDetection( + data_settings=expected_image_data_settings, + limit_settings=expected_image_limits, + sweep_settings=expected_image_sweep_settings, + model_settings=expected_image_model_settings_classification, + search_space=expected_image_object_detection_search_space_settings, + primary_metric=ObjectDetectionPrimaryMetrics.MEAN_AVERAGE_PRECISION, + log_verbosity=LogVerbosity.DEBUG, + ), + compute_id=compute_binding_expected, + name="simpleautomlimagejob", + ) + + +@pytest.fixture +def expected_image_instance_segmentation_job( + mock_workspace_scope: OperationScope, + expected_image_data_settings: RestImageVerticalDataSettings, + expected_image_limits: RestImageLimitSettings, + expected_image_sweep_settings: RestImageSweepSettings, + expected_image_model_settings_classification: ImageModelSettings, + expected_image_object_detection_search_space_settings: List[RestImageObjectDetectionSearchSpace], + compute_binding_expected: str, +) -> JobBaseData: + return _get_rest_automl_job( + RestImageInstanceSegmentation( + data_settings=expected_image_data_settings, + limit_settings=expected_image_limits, + sweep_settings=expected_image_sweep_settings, + model_settings=expected_image_model_settings_classification, + search_space=expected_image_object_detection_search_space_settings, + primary_metric=InstanceSegmentationPrimaryMetrics.MEAN_AVERAGE_PRECISION, + log_verbosity=LogVerbosity.DEBUG, + ), + compute_id=compute_binding_expected, + name="simpleautomlimagejob", + ) + + +def _get_rest_automl_job(automl_task, name, compute_id): + properties = RestAutoMLJob( + experiment_name="automl", + compute_id=compute_id, + task_details=automl_task, + properties={}, + outputs={}, + tags={}, + ) + result = JobBaseData(properties=properties) + result.name = name + return result + + +@pytest.fixture +def loaded_image_classification_job(mock_machinelearning_client: OperationScope) -> AutoMLJob: + test_schema_path = Path("./tests/test_configs/automl_job/automl_image_classification_job_mock.yaml") + job = Job.load(test_schema_path) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + return job + + +@pytest.fixture +def loaded_image_classification_multilabel_job(mock_machinelearning_client: OperationScope) -> AutoMLJob: + test_schema_path = Path("./tests/test_configs/automl_job/automl_image_classification_multilabel_job_mock.yaml") + job = Job.load(test_schema_path) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + return job + + +@pytest.fixture +def loaded_image_object_detection_job(mock_machinelearning_client: OperationScope) -> AutoMLJob: + test_schema_path = Path("./tests/test_configs/automl_job/automl_image_object_detection_job_mock.yaml") + job = Job.load(test_schema_path) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + return job + + +@pytest.fixture +def loaded_image_instance_segmentation_job(mock_machinelearning_client: OperationScope) -> AutoMLJob: + test_schema_path = Path("./tests/test_configs/automl_job/automl_image_instance_segmentation_job_mock.yaml") + job = Job.load(test_schema_path) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + return job + + +@pytest.mark.unittest +class TestAutoMLImageSchema: + def test_deserialized_image_classification_job( + self, + mock_workspace_scope: OperationScope, + expected_image_classification_job: JobBaseData, + loaded_image_classification_job: AutoMLJob, + ): + self._validate_automl_image_classification_jobs(loaded_image_classification_job) + assert ( + loaded_image_classification_job._to_rest_object().as_dict() == expected_image_classification_job.as_dict() + ) + + def test_deserialized_image_classification_multilabel_job( + self, + mock_workspace_scope: OperationScope, + expected_image_classification_multilabel_job: JobBaseData, + loaded_image_classification_multilabel_job: AutoMLJob, + ): + self._validate_automl_image_classification_jobs(loaded_image_classification_multilabel_job) + assert ( + loaded_image_classification_multilabel_job._to_rest_object().as_dict() + == expected_image_classification_multilabel_job.as_dict() + ) + + def test_deserialized_image_object_detection_job( + self, + mock_workspace_scope: OperationScope, + expected_image_object_detection_job: JobBaseData, + loaded_image_object_detection_job: AutoMLJob, + ): + self._validate_automl_image_object_detection_jobs(loaded_image_object_detection_job) + assert ( + loaded_image_object_detection_job._to_rest_object().as_dict() + == expected_image_object_detection_job.as_dict() + ) + + def test_deserialized_image_instance_segmentation_job( + self, + mock_workspace_scope: OperationScope, + expected_image_instance_segmentation_job: JobBaseData, + loaded_image_instance_segmentation_job: AutoMLJob, + ): + self._validate_automl_image_object_detection_jobs(loaded_image_instance_segmentation_job) + assert ( + loaded_image_instance_segmentation_job._to_rest_object().as_dict() + == expected_image_instance_segmentation_job.as_dict() + ) + + def _validate_automl_image_classification_jobs(self, automl_job): + assert isinstance(automl_job, AutoMLJob) + assert automl_job._data and isinstance(automl_job._data, RestImageVerticalDataSettings) + assert automl_job.limits and isinstance(automl_job.limits, ImageLimitSettings) + assert automl_job.compute and isinstance(automl_job.compute, str) + assert automl_job.image_model and isinstance(automl_job.image_model, ImageModelSettings) + assert automl_job.sweep and isinstance(automl_job.sweep, ImageSweepSettings) + assert automl_job.search_space and isinstance(automl_job.search_space, List) + for item in automl_job.search_space: + assert isinstance(item, ImageClassificationSearchSpace) + + def _validate_automl_image_object_detection_jobs(self, automl_job): + assert isinstance(automl_job, AutoMLJob) + assert automl_job._data and isinstance(automl_job._data, RestImageVerticalDataSettings) + assert automl_job.limits and isinstance(automl_job.limits, ImageLimitSettings) + assert automl_job.compute and isinstance(automl_job.compute, str) + assert automl_job.image_model and isinstance(automl_job.image_model, ImageModelSettings) + assert automl_job.sweep and isinstance(automl_job.sweep, ImageSweepSettings) + assert automl_job.search_space and isinstance(automl_job.search_space, List) + for item in automl_job.search_space: + assert isinstance(item, ImageObjectDetectionSearchSpace) + + def test_deserialize_image_classification_job( + self, + mock_workspace_scope, + expected_image_classification_job: JobBaseData, + loaded_image_classification_job: AutoMLJob, + ): + # test expected job when deserialized is same as loaded one. + from_rest_job = AutoMLJob._from_rest_object(expected_image_classification_job) + assert from_rest_job == loaded_image_classification_job diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_nlp_schema.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_nlp_schema.py new file mode 100644 index 000000000000..45d685bae444 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_nlp_schema.py @@ -0,0 +1,261 @@ +import os +from pathlib import Path +import pytest +from unittest.mock import patch +from azure.ai.ml._utils.utils import to_iso_duration_format_mins +from azure.ai.ml.constants import AZUREML_PRIVATE_FEATURES_ENV_VAR +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml._restclient.v2022_02_01_preview.models._models_py3 import ( + AutoMLJob as RestAutoMLJob, + ClassificationPrimaryMetrics, + DataSettings, + JobBaseData, + LogVerbosity, + MLTableJobInput, + NlpVerticalDataSettings as RestNlpVerticalDataSettings, + NlpVerticalFeaturizationSettings as RestNlpFeaturizationSettings, + NlpVerticalLimitSettings as RestNlpVerticalLimitSettings, + ValidationDataSettings, + TrainingDataSettings, + TextClassification as RestTextClassification, + TextClassificationMultilabel as RestTextClassificationMultilabel, + TextNer as RestTextNer, +) + +from azure.ai.ml.entities import Job +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.entities._job.automl.automl_job import AutoMLJob +from azure.ai.ml.automl import NlpFeaturizationSettings, NlpLimitSettings + + +@pytest.fixture(autouse=True) +def set_env_var() -> None: + with patch.dict(os.environ, {AZUREML_PRIVATE_FEATURES_ENV_VAR: "True"}): + yield + + +@pytest.fixture +def compute_binding_expected(mock_workspace_scope: OperationScope) -> str: + return "/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/computes/cpu-cluster" + + +@pytest.fixture +def nlp_limits_expected() -> RestNlpVerticalLimitSettings: + return RestNlpVerticalLimitSettings( + timeout=to_iso_duration_format_mins(30), + max_concurrent_trials=2, + ) + + +@pytest.fixture +def nlp_featurization_settings_expected() -> RestNlpFeaturizationSettings: + return RestNlpFeaturizationSettings( + dataset_language="eng", + ) + + +@pytest.fixture +def expected_nlp_data_settings(mock_workspace_scope: OperationScope) -> DataSettings: + training_data = TrainingDataSettings( + data=Input( + path="/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/data/nlp-training-data/versions/1", + type="mltable", + ) + ) + validation_data = ValidationDataSettings( + data=Input( + path="/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/data/nlp-validation-data/versions/1", + type="mltable", + ), + ) + data = RestNlpVerticalDataSettings( + target_column_name="label_column", + training_data=training_data, + validation_data=validation_data, + ) + # update data + data.training_data.data = MLTableJobInput(uri=data.training_data.data.path) + data.validation_data.data = MLTableJobInput(uri=data.validation_data.data.path) + return data + + +@pytest.fixture +def expected_ner_data_settings(mock_workspace_scope: OperationScope) -> DataSettings: + training_data = TrainingDataSettings( + data=Input( + path="/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/data/nlp-training-data/versions/1", + type="mltable", + ) + ) + validation_data = ValidationDataSettings( + data=Input( + path="/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/data/nlp-validation-data/versions/1", + type="mltable", + ), + ) + data = RestNlpVerticalDataSettings( + target_column_name="label", # This can be removed once REST API is updated + training_data=training_data, + validation_data=validation_data, + ) + # update data + data.training_data.data = MLTableJobInput(uri=data.training_data.data.path) + data.validation_data.data = MLTableJobInput(uri=data.validation_data.data.path) + return data + + +@pytest.fixture +def expected_text_classification_job( + mock_workspace_scope: OperationScope, + nlp_limits_expected: RestNlpVerticalLimitSettings, + nlp_featurization_settings_expected: RestNlpFeaturizationSettings, + expected_nlp_data_settings: DataSettings, + compute_binding_expected: str, +) -> JobBaseData: + return _get_rest_automl_job( + RestTextClassification( + data_settings=expected_nlp_data_settings, + featurization_settings=nlp_featurization_settings_expected, + limit_settings=nlp_limits_expected, + primary_metric=ClassificationPrimaryMetrics.ACCURACY, + log_verbosity=LogVerbosity.DEBUG, + ), + compute_id=compute_binding_expected, + name="simpleautomlnlpjob", + ) + + +@pytest.fixture +def expected_text_classification_multilabel_job( + mock_workspace_scope: OperationScope, + nlp_limits_expected: RestNlpVerticalLimitSettings, + nlp_featurization_settings_expected: RestNlpFeaturizationSettings, + expected_nlp_data_settings: DataSettings, + compute_binding_expected: str, +) -> JobBaseData: + return _get_rest_automl_job( + RestTextClassificationMultilabel( + data_settings=expected_nlp_data_settings, + featurization_settings=nlp_featurization_settings_expected, + limit_settings=nlp_limits_expected, + primary_metric=ClassificationPrimaryMetrics.ACCURACY, + log_verbosity=LogVerbosity.DEBUG, + ), + compute_id=compute_binding_expected, + name="simpleautomlnlpjob", + ) + + +@pytest.fixture +def expected_text_ner_job( + mock_workspace_scope: OperationScope, + nlp_limits_expected: RestNlpVerticalLimitSettings, + nlp_featurization_settings_expected: RestNlpFeaturizationSettings, + expected_ner_data_settings: DataSettings, + compute_binding_expected: str, +) -> JobBaseData: + return _get_rest_automl_job( + RestTextNer( + data_settings=expected_ner_data_settings, + featurization_settings=nlp_featurization_settings_expected, + limit_settings=nlp_limits_expected, + primary_metric=ClassificationPrimaryMetrics.ACCURACY, + log_verbosity=LogVerbosity.DEBUG, + ), + compute_id=compute_binding_expected, + name="simpleautomlnlpjob", + ) + + +def _get_rest_automl_job(automl_task, name, compute_id): + properties = RestAutoMLJob( + experiment_name="automl", + compute_id=compute_id, + task_details=automl_task, + properties={}, + outputs={}, + tags={}, + ) + result = JobBaseData(properties=properties) + result.name = name + return result + + +@pytest.fixture +def loaded_text_classification_job(mock_machinelearning_client: OperationScope) -> AutoMLJob: + return _load_automl_job_from_path( + mock_machinelearning_client, + Path("./tests/test_configs/automl_job/automl_job_text_classification_mock.yaml"), + ) + + +@pytest.fixture +def loaded_text_classification_multilabel_job(mock_machinelearning_client: OperationScope) -> AutoMLJob: + return _load_automl_job_from_path( + mock_machinelearning_client, + Path("./tests/test_configs/automl_job/automl_job_text_classification_multilabel_mock.yaml"), + ) + + +@pytest.fixture +def loaded_text_ner_job(mock_machinelearning_client: OperationScope) -> AutoMLJob: + return _load_automl_job_from_path( + mock_machinelearning_client, + Path("./tests/test_configs/automl_job/automl_job_text_ner_mock.yaml"), + ) + + +def _load_automl_job_from_path(mock_machinelearning_client: OperationScope, schema_path: Path) -> AutoMLJob: + job = Job.load(schema_path) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + return job + + +@pytest.mark.unittest +class TestAutoMLNLPSchema: + def test_deserialized_nlp_text_classification_job( + self, + mock_workspace_scope: OperationScope, + loaded_text_classification_job: AutoMLJob, + expected_text_classification_job: JobBaseData, + ): + self._validate_automl_nlp_job(loaded_text_classification_job) + assert loaded_text_classification_job._to_rest_object().as_dict() == expected_text_classification_job.as_dict() + + def test_deserialized_nlp_text_classification_multilabel_job( + self, + mock_workspace_scope: OperationScope, + loaded_text_classification_multilabel_job: AutoMLJob, + expected_text_classification_multilabel_job: JobBaseData, + ): + self._validate_automl_nlp_job(loaded_text_classification_multilabel_job) + assert ( + loaded_text_classification_multilabel_job._to_rest_object().as_dict() + == expected_text_classification_multilabel_job.as_dict() + ) + + def test_deserialized_nlp_text_ner_job( + self, + mock_workspace_scope: OperationScope, + loaded_text_ner_job: AutoMLJob, + expected_text_ner_job: JobBaseData, + ): + self._validate_automl_nlp_job(loaded_text_ner_job) + assert loaded_text_ner_job._to_rest_object().as_dict() == expected_text_ner_job.as_dict() + + def _validate_automl_nlp_job(self, automl_job): + assert isinstance(automl_job, AutoMLJob) + assert automl_job._data and isinstance(automl_job._data, DataSettings) + assert automl_job.limits and isinstance(automl_job.limits, NlpLimitSettings) + assert automl_job.featurization and isinstance(automl_job.featurization, NlpFeaturizationSettings) + assert automl_job.compute and isinstance(automl_job.compute, str) + + def test_deserialize_text_classification_job( + self, + mock_workspace_scope, + expected_text_classification_job: JobBaseData, + loaded_text_classification_job: AutoMLJob, + ): + # test expected_job when deserialized is same as loaded one. + from_rest_job = AutoMLJob._from_rest_object(expected_text_classification_job) + assert from_rest_job == loaded_text_classification_job diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_tabular_schema.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_tabular_schema.py new file mode 100644 index 000000000000..9b797752409c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_automl_tabular_schema.py @@ -0,0 +1,379 @@ +import os +from pathlib import Path +import pytest +import json +from marshmallow.exceptions import ValidationError +import yaml +from unittest.mock import patch +from azure.ai.ml._utils.utils import to_iso_duration_format_mins +from azure.ai.ml.constants import AutoMLConstants, AZUREML_PRIVATE_FEATURES_ENV_VAR +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.constants import BASE_PATH_CONTEXT_KEY +from azure.ai.ml._restclient.v2022_02_01_preview.models._models_py3 import ( + AutoMLJob as RestAutoMLJob, + Classification as RestClassification, + ClassificationPrimaryMetrics, + ColumnTransformer as RestColumnTransformer, + DataSettings, + Forecasting as RestForecasting, + ForecastingPrimaryMetrics, + ForecastingSettings as RestForecastingSettings, + JobBaseData, + LogVerbosity, + MLTableJobInput, + Regression as RestRegression, + RegressionPrimaryMetrics, + TableVerticalDataSettings, + TableVerticalFeaturizationSettings as RestTableFeaturizationSettings, + TableVerticalLimitSettings as RestTableVerticalLimitSettings, + TableVerticalValidationDataSettings, + TrainingDataSettings, + TestDataSettings, + TrainingSettings as RestTrainingSettings, + CustomNCrossValidations, + AutoNCrossValidations, +) +from azure.ai.ml._schema.automl.table_vertical.regression import AutoMLRegressionSchema +from azure.ai.ml.entities import Job +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.entities._job.automl.automl_job import AutoMLJob +from azure.ai.ml.entities._job.automl.tabular.forecasting_settings import ForecastingSettings +from azure.ai.ml.entities._job.automl.tabular.featurization_settings import TabularFeaturizationSettings + +from azure.ai.ml.entities._job.automl.tabular.limit_settings import TabularLimitSettings +from azure.ai.ml.entities._job.automl.training_settings import TrainingSettings + + +@pytest.fixture(autouse=True) +def set_env_var() -> None: + with patch.dict(os.environ, {AZUREML_PRIVATE_FEATURES_ENV_VAR: "True"}): + yield + + +@pytest.fixture +def limits_expected() -> RestTableVerticalLimitSettings: + return RestTableVerticalLimitSettings( + max_trials=40, + timeout=to_iso_duration_format_mins(180), + max_concurrent_trials=5, + enable_early_termination=True, + exit_score=0.85, + ) + + +@pytest.fixture +def training_settings_expected() -> RestTrainingSettings: + return RestTrainingSettings( + enable_dnn_training=True, + enable_model_explainability=True, + ensemble_model_download_timeout="PT2M", + ) + + +@pytest.fixture +def featurization_settings_expected() -> RestTableFeaturizationSettings: + with open("./tests/test_configs/automl_job/featurization_config.json", "r") as f: + cfg = json.load(f) + transformer_dict = {} + for key, item in cfg["transformer_params"].items(): + transformer_dict[key] = [RestColumnTransformer(fields=o["fields"], parameters=o["parameters"]) for o in item] + return RestTableFeaturizationSettings( + blocked_transformers=cfg["blocked_transformers"], + column_name_and_types=cfg["column_name_and_types"], + dataset_language=cfg["dataset_language"], + enable_dnn_featurization=cfg["enable_dnn_featurization"], + mode=AutoMLConstants.CUSTOM, + transformer_params=transformer_dict, + ) + + +@pytest.fixture +def compute_binding_expected(mock_workspace_scope: OperationScope) -> str: + return "/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/computes/cpu-cluster" + + +@pytest.fixture +def expected_data_settings(mock_workspace_scope: OperationScope) -> DataSettings: + training_data = TrainingDataSettings( + data=Input( + path="/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/data/insurance-training-data/versions/1", + type="mltable", + ) + ) + validation_data = TableVerticalValidationDataSettings( + data=Input( + path="/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/data/insurance-validation-data/versions/1", + type="mltable", + ), + cv_split_column_names=["Quantity"], + n_cross_validations=CustomNCrossValidations(value=2), + validation_data_size=0.2, + ) + test_data = TestDataSettings( + data=Input( + path="/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/data/insurance-test-data/versions/1", + type="mltable", + ) + ) + + data = TableVerticalDataSettings( + target_column_name="safedriver", + training_data=training_data, + validation_data=validation_data, + test_data=test_data, + ) + # update data + data.training_data.data = MLTableJobInput(uri=data.training_data.data.path) + data.validation_data.data = MLTableJobInput(uri=data.validation_data.data.path) + data.test_data.data = MLTableJobInput(uri=data.test_data.data.path) + return data + + +@pytest.fixture +def expected_forecasting_settings(mock_workspace_scope: OperationScope) -> RestForecastingSettings: + from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + CustomTargetLags, + CustomForecastHorizon, + CustomTargetRollingWindowSize, + ) + + return RestForecastingSettings( + country_or_region_for_holidays="US", + forecast_horizon=CustomForecastHorizon(value=10), + target_lags=CustomTargetLags(values=[20]), + target_rolling_window_size=CustomTargetRollingWindowSize(value=3), + time_column_name="abc", + time_series_id_column_names=["xyz"], + ) + + +@pytest.fixture +def expected_regression_job( + mock_workspace_scope: OperationScope, + limits_expected: RestTableVerticalLimitSettings, + training_settings_expected: RestTrainingSettings, + featurization_settings_expected: RestTableFeaturizationSettings, + expected_data_settings: DataSettings, + compute_binding_expected: str, +) -> JobBaseData: + return _get_rest_automl_job( + RestRegression( + data_settings=expected_data_settings, + featurization_settings=featurization_settings_expected, + limit_settings=limits_expected, + training_settings=training_settings_expected, + primary_metric=RegressionPrimaryMetrics.NORMALIZED_MEAN_ABSOLUTE_ERROR, + log_verbosity=LogVerbosity.DEBUG, + ), + compute_id=compute_binding_expected, + name="simpleautomljob", + ) + + +@pytest.fixture +def expected_classification_job( + mock_workspace_scope: OperationScope, + limits_expected: RestTableVerticalLimitSettings, + training_settings_expected: RestTrainingSettings, + featurization_settings_expected: RestTableFeaturizationSettings, + expected_data_settings: DataSettings, + compute_binding_expected: str, +) -> JobBaseData: + return _get_rest_automl_job( + RestClassification( + data_settings=expected_data_settings, + featurization_settings=featurization_settings_expected, + limit_settings=limits_expected, + training_settings=training_settings_expected, + primary_metric=ClassificationPrimaryMetrics.ACCURACY, + log_verbosity=LogVerbosity.DEBUG, + ), + compute_id=compute_binding_expected, + name="simpleautomljob", + ) + + +@pytest.fixture +def expected_forecasting_job( + mock_workspace_scope: OperationScope, + limits_expected: RestTableVerticalLimitSettings, + training_settings_expected: RestTrainingSettings, + featurization_settings_expected: RestTableFeaturizationSettings, + expected_forecasting_settings: RestForecastingSettings, + expected_data_settings: DataSettings, + compute_binding_expected: str, +) -> JobBaseData: + return _get_rest_automl_job( + RestForecasting( + data_settings=expected_data_settings, + featurization_settings=featurization_settings_expected, + limit_settings=limits_expected, + training_settings=training_settings_expected, + primary_metric=ForecastingPrimaryMetrics.R2_SCORE, + forecasting_settings=expected_forecasting_settings, + log_verbosity=LogVerbosity.DEBUG, + ), + compute_id=compute_binding_expected, + name="simpleautomljob", + ) + + +def _get_rest_automl_job(automl_task, name, compute_id): + properties = RestAutoMLJob( + experiment_name="automl", + compute_id=compute_id, + task_details=automl_task, + properties={}, + outputs={}, + tags={}, + ) + result = JobBaseData(properties=properties) + result.name = name + return result + + +@pytest.fixture +def loaded_regression_full_job(mock_machinelearning_client: OperationScope) -> AutoMLJob: + test_schema_path = Path("./tests/test_configs/automl_job/automl_job_mock_regression.yaml") + job = Job.load(test_schema_path) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + return _add_automl_default_properties(job) + + +@pytest.fixture +def loaded_classification_full_job(mock_machinelearning_client: OperationScope) -> AutoMLJob: + test_schema_path = Path("./tests/test_configs/automl_job/automl_job_mock_classification.yaml") + job = Job.load(test_schema_path) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + return _add_automl_default_properties(job) + + +@pytest.fixture +def loaded_forecasting_full_job(mock_machinelearning_client: OperationScope) -> AutoMLJob: + test_schema_path = Path("./tests/test_configs/automl_job/automl_job_mock_forecasting.yaml") + job = Job.load(test_schema_path) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + return _add_automl_default_properties(job) + + +def _add_automl_default_properties(automl_job): + automl_job.training.enable_onnx_compatible_models = False + automl_job.training.enable_stack_ensemble = True + automl_job.training.enable_vote_ensemble = True + automl_job.limits.max_cores_per_trial = -1 + automl_job.limits.trial_timeout_minutes = 30 + return automl_job + + +# AutoMLJob Yaml with auto values for target_lags and featurization_config +@pytest.fixture +def loaded_regression_job_auto_fields(mock_machinelearning_client) -> AutoMLJob: + test_schema_path = Path("./tests/test_configs/automl_job/automl_job_mock_auto.yaml") + job = Job.load(test_schema_path) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + return job + + +@pytest.mark.unittest +class TestAutoMLTabularSchema: + def _validate_automl_tabular_job(self, automl_job): + assert isinstance(automl_job, AutoMLJob) + assert automl_job._data and isinstance(automl_job._data, DataSettings) + assert automl_job.limits and isinstance(automl_job.limits, TabularLimitSettings) + assert automl_job.training and isinstance(automl_job.training, TrainingSettings) + assert automl_job.featurization and isinstance(automl_job.featurization, TabularFeaturizationSettings) + assert automl_job.compute and isinstance(automl_job.compute, str) + + def test_deserialized_classification_job( + self, + mock_workspace_scope: OperationScope, + loaded_classification_full_job: AutoMLJob, + expected_classification_job: JobBaseData, + ): + self._validate_automl_tabular_job(loaded_classification_full_job) + assert loaded_classification_full_job._to_rest_object().as_dict() == expected_classification_job.as_dict() + + def test_deserialized_forecasting_job( + self, + mock_workspace_scope: OperationScope, + loaded_forecasting_full_job: AutoMLJob, + expected_forecasting_job: JobBaseData, + ): + self._validate_automl_tabular_job(loaded_forecasting_full_job) + assert loaded_forecasting_full_job.forecasting_settings and isinstance( + loaded_forecasting_full_job.forecasting_settings, ForecastingSettings + ) + assert loaded_forecasting_full_job._to_rest_object().as_dict() == expected_forecasting_job.as_dict() + + def test_deserialized_regression_job( + self, + mock_workspace_scope: OperationScope, + loaded_regression_full_job: AutoMLJob, + expected_regression_job: JobBaseData, + ): + self._validate_automl_tabular_job(loaded_regression_full_job) + assert loaded_regression_full_job._to_rest_object().as_dict() == expected_regression_job.as_dict() + + def test_deserialize_regression_job( + self, + mock_workspace_scope, + expected_regression_job: JobBaseData, + loaded_regression_full_job: AutoMLJob, + ): + # test deserialzing an AutoML job from REST with the REST formatted featurization config + from_rest_job = AutoMLJob._from_rest_object(expected_regression_job) + assert from_rest_job == loaded_regression_full_job + + def test_auto_off_field_job( + self, mock_workspace_scope: OperationScope, loaded_regression_job_auto_fields: AutoMLJob + ) -> None: + rest_job = loaded_regression_job_auto_fields._to_rest_object() + # Change to REST representation to test the from REST behavior + assert rest_job.properties.task_details.featurization_settings.mode == "auto" + # # MFE returns just the string "auto" for the featurization_config + rest_job.properties.task_details.featurization_settings.mode = "auto" + from_rest_job = AutoMLJob._from_rest_object(rest_job) + assert from_rest_job.featurization.mode == AutoMLConstants.AUTO + serialized_job = from_rest_job._to_dict() + assert serialized_job[AutoMLConstants.FEATURIZATION_YAML]["mode"] == AutoMLConstants.AUTO + + # test what happens when featurization config is 'off' in featurization settings. the value should be sent as is + loaded_regression_job_auto_fields.featurization.mode = AutoMLConstants.OFF + rest_job_with_off = loaded_regression_job_auto_fields._to_rest_object() + assert rest_job_with_off.properties.task_details.featurization_settings.mode == "off" + # MFE returns just the string "auto" for the featurization_config + rest_job_with_off.properties.task_details.featurization_settings.mode = "off" + from_rest_job_with_off = AutoMLJob._from_rest_object(rest_job_with_off) + assert from_rest_job_with_off.featurization.mode == AutoMLConstants.OFF + + def test_invalid_yaml(self): + test_schema_path = Path("./tests/test_configs/automl_job/automl_job_missing_required_fields.yaml") + context = {BASE_PATH_CONTEXT_KEY: Path(test_schema_path).parent} + schema = AutoMLRegressionSchema(context=context) + with open(test_schema_path, "r") as f: + cfg = yaml.safe_load(f) + with pytest.raises(ValidationError) as ve: + AutoMLJob(**schema.load(cfg)) + error_dict = json.loads(str.replace(str(ve.value), "'", '"')) + assert error_dict["task"][0] == "Missing data for required field." + assert error_dict["training_data"][0] == "Field may not be null." + assert error_dict["target_column_name"][0] == "Missing data for required field." + + def test_auto_n_cv_schema( + self, + loaded_classification_full_job: AutoMLJob, + ): + loaded_classification_full_job._data.validation_data.n_cross_validations = "auto" + obj = loaded_classification_full_job._to_rest_object() + assert isinstance( + obj.properties.task_details.data_settings.validation_data.n_cross_validations, AutoNCrossValidations + ), "N cross validations not an object of AutoNCrossValidations" + + def test_value_n_cv_schema( + self, + loaded_classification_full_job: AutoMLJob, + ): + obj = loaded_classification_full_job._to_rest_object() + assert isinstance( + obj.properties.task_details.data_settings.validation_data.n_cross_validations, CustomNCrossValidations + ), "N cross validations not an object of CustomNCrossValidations" diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_classification_job.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_classification_job.py new file mode 100644 index 000000000000..a22df0c6b122 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_classification_job.py @@ -0,0 +1,98 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- +from typing import Any, Tuple + +import pytest +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + CustomNCrossValidations, + MLTableJobInput, + UserIdentity, +) +from azure.ai.ml.automl import classification, ClassificationPrimaryMetrics, ClassificationModels +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.entities._job.automl.tabular import ClassificationJob + + +@pytest.mark.unittest +class TestAutoMLClassification: + def test_classification_task(self): + # Create AutoML Classification Task + identity = UserIdentity() + classification_job = classification( + training_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/train.csv"), + target_column_name="target", + enable_model_explainability=True, + test_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/test.csv"), + validation_data_size=0.2, + # Job attributes + compute="cpucluster", + name="classifier_job", + experiment_name="foo_exp", + tags={"foo_tag": "bar"}, + properties={"_automl_internal_some_flag": True}, + identity = identity, + ) # type: ClassificationJob + # classification_task.set_limits(timeout=60, max_trials=100, max_concurrent_trials=4) + classification_job.limits = {"timeout_minutes": 60, "max_trials": 100, "max_concurrent_trials": 4} + classification_job.set_training( + enable_onnx_compatible_models=True, blocked_training_algorithms=[ClassificationModels.LOGISTIC_REGRESSION] + ) + classification_job.set_featurization(enable_dnn_featurization=True) + + rest_obj = classification_job._to_rest_object() + assert rest_obj.properties.identity == identity + assert isinstance( + rest_obj.properties.task_details.data_settings.training_data.data, MLTableJobInput + ), "Training data is not MLTableJobInput" + assert isinstance( + rest_obj.properties.task_details.data_settings.test_data.data, MLTableJobInput + ), "Test data is not MLTableJobInput" + + original_obj = ClassificationJob._from_rest_object(rest_obj) + assert classification_job == original_obj, "Conversion to/from rest object failed" + assert original_obj.compute == "cpucluster", "Compute not set correctly" + assert original_obj.name == "classifier_job", "Name not set correctly" + assert original_obj.experiment_name == "foo_exp", "Experiment name not set correctly" + assert original_obj.tags == {"foo_tag": "bar"}, "Tags not set correctly" + assert original_obj.properties == {"_automl_internal_some_flag": True}, "Properties not set correctly" + assert original_obj.identity == identity + # check if the original job inputs were restored + assert original_obj.primary_metric == ClassificationPrimaryMetrics.ACCURACY, "Primary metric is not ACCURACY" + assert isinstance(original_obj._data.training_data.data, Input), "Training data is not Input" + assert original_obj._data.training_data.data.type == AssetTypes.MLTABLE, "Training data type not set correctly" + assert ( + original_obj._data.training_data.data.path == "https://foo/bar/train.csv" + ), "Training data path not set correctly" + assert isinstance(original_obj._data.test_data.data, Input), "Test data is not Input" + assert original_obj._data.test_data.data.type == AssetTypes.MLTABLE, "Test data type not set correctly" + assert original_obj._data.test_data.data.path == "https://foo/bar/test.csv", "Test data path not set correctly" + assert original_obj.training.blocked_training_algorithms == [ + ClassificationModels.LOGISTIC_REGRESSION + ], "Blocked models not set correctly" + + @pytest.mark.parametrize( + "n_cross_validations", + [ + (5, CustomNCrossValidations(value=5)), + (None, None), + ], + ) + def test_n_cross_validations_to_rest(self, n_cross_validations: Tuple[int, Any]): + # Create AutoML Classification Task + classification_job = classification( + training_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/train.csv"), + target_column_name="target", + n_cross_validations=n_cross_validations[0], + ) + + rest_obj = classification_job._to_rest_object() + assert isinstance( + rest_obj.properties.task_details.data_settings.validation_data.n_cross_validations, + type(n_cross_validations[1]), + ), "Validation data is not CustomNCrossValidations" + if n_cross_validations[0] is not None: + assert ( + rest_obj.properties.task_details.data_settings.validation_data.n_cross_validations.value == 5 + ), "N cross validations not set correctly" diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_forecasting_job.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_forecasting_job.py new file mode 100644 index 000000000000..a95a02ebd0d9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_forecasting_job.py @@ -0,0 +1,90 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + +import pytest + +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + MLTableJobInput, + UserIdentity, +) +from azure.ai.ml.automl import ( + forecasting, + ForecastingModels, + ShortSeriesHandlingConfiguration, + ForecastingPrimaryMetrics, +) +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.entities._job.automl.tabular import ForecastingJob + + +@pytest.mark.unittest +class TestAutoMLForecasting: + def test_forecasting_task(self): + # Create AutoML Forecasting Task + identity = UserIdentity() + forecasting_job = forecasting( + training_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/train.csv"), + target_column_name="target", + primary_metric=ForecastingPrimaryMetrics.NORMALIZED_MEAN_ABSOLUTE_ERROR, + enable_model_explainability=True, + validation_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/valid.csv"), + # Job attributes + compute="cluster-forecasting", + name="forecasting_job", + experiment_name="foo_exp", + tags={"foo_tag": "bar"}, + identity = identity, + ) # type: ForecastingJob + forecasting_job.set_limits(timeout_minutes=60, max_trials=100, max_concurrent_trials=4) + forecasting_job.set_training( + enable_onnx_compatible_models=True, blocked_training_algorithms=[ForecastingModels.AVERAGE] + ) + forecasting_job.set_featurization(enable_dnn_featurization=True) + forecasting_job.set_forecast_settings( + time_column_name="time", + forecast_horizon=20, + target_lags=[1, 2, 3], + time_series_id_column_names=["tid1", "tid2", "tid2"], + frequency="W-THU", + target_rolling_window_size=4, + short_series_handling_config=ShortSeriesHandlingConfiguration.DROP, + use_stl="season", + seasonality=3, + ) + + # check if stack ensemble was disabled + assert forecasting_job.training.enable_stack_ensemble is False, "enable_stack_ensemble should default to False" + + # serialize and deserialize again and compare + rest_obj = forecasting_job._to_rest_object() # serialize to rest object + assert rest_obj.properties.identity == identity + assert isinstance( + rest_obj.properties.task_details.data_settings.training_data.data, MLTableJobInput + ), "Training data is not MLTableJobInput" + assert isinstance( + rest_obj.properties.task_details.data_settings.validation_data.data, MLTableJobInput + ), "Validation data is not MLTableJobInput" + + original_obj = ForecastingJob._from_rest_object(rest_obj) # deserialize from rest object + assert forecasting_job == original_obj, "Conversion to/from rest object failed" + assert ( + original_obj.primary_metric == ForecastingPrimaryMetrics.NORMALIZED_MEAN_ABSOLUTE_ERROR + ), "Primary metric is not set" + assert original_obj.compute == "cluster-forecasting", "Compute not set correctly" + assert original_obj.name == "forecasting_job", "Name not set correctly" + assert original_obj.experiment_name == "foo_exp", "Experiment name not set correctly" + assert original_obj.tags == {"foo_tag": "bar"}, "Tags not set correctly" + # check if the original job inputs were restored + assert isinstance(original_obj._data.training_data.data, Input), "Training data is not Input" + assert original_obj._data.training_data.data.type == AssetTypes.MLTABLE, "Training data type not set correctly" + assert original_obj.identity == identity + assert ( + original_obj._data.training_data.data.path == "https://foo/bar/train.csv" + ), "Training data path not set correctly" + assert isinstance(original_obj._data.validation_data.data, Input), "Validation data is not Input" + assert original_obj._data.validation_data.data.type == AssetTypes.MLTABLE, "Test data type not set correctly" + assert ( + original_obj._data.validation_data.data.path == "https://foo/bar/valid.csv" + ), "Test data path not set correctly" diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_forecasting_settings.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_forecasting_settings.py new file mode 100644 index 000000000000..bb0ce74d5dfe --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_forecasting_settings.py @@ -0,0 +1,172 @@ +from typing import Any, List, Tuple + +import pytest +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + AutoForecastHorizon, + AutoSeasonality, + AutoTargetLags, + AutoTargetRollingWindowSize, + CustomForecastHorizon, + CustomSeasonality, + CustomTargetLags, + CustomTargetRollingWindowSize, +) +from azure.ai.ml._restclient.v2022_02_01_preview.models import ForecastingSettings as RestForecastingSettings +from azure.ai.ml._restclient.v2022_02_01_preview.models import ShortSeriesHandlingConfiguration +from azure.ai.ml.entities._job.automl.tabular.forecasting_settings import ForecastingSettings + + +@pytest.mark.unittest +class TestForecastingSettings: + @pytest.mark.parametrize( + "settings", + [ + RestForecastingSettings(time_series_id_column_names=["xxx"]), + RestForecastingSettings(time_series_id_column_names=[]), + RestForecastingSettings(time_series_id_column_names=None), + ], + ) + def test_forecast_settings_from_object(self, settings: RestForecastingSettings): + actual_obj = ForecastingSettings._from_rest_object(obj=settings) + assert actual_obj.time_series_id_column_names == settings.time_series_id_column_names + + @pytest.mark.parametrize( + "settings", + [ + (ForecastingSettings(time_series_id_column_names=["xxx"]), ["xxx"]), + (ForecastingSettings(time_series_id_column_names=[]), []), + (ForecastingSettings(time_series_id_column_names=None), None), + (ForecastingSettings(time_series_id_column_names="xxx"), ["xxx"]), + ], + ) + def test_forecast_settings_to_rest_object(self, settings: Tuple[ForecastingSettings, List[str]]): + input_settings, expected = settings + actual = input_settings._to_rest_object() + assert actual.time_series_id_column_names == expected + + @pytest.mark.parametrize( + "settings", + [ + (RestForecastingSettings(forecast_horizon=CustomForecastHorizon(value=10)), 10), + (RestForecastingSettings(forecast_horizon=AutoForecastHorizon()), "auto"), + (RestForecastingSettings(forecast_horizon=None), None), + ], + ) + def test_forecast_horizon_from_rest(self, settings: Tuple[RestForecastingSettings, Any]): + actual_obj = ForecastingSettings._from_rest_object(obj=settings[0]) + assert actual_obj.forecast_horizon == settings[1], "actual: {}, expected: {}".format( + actual_obj.forecast_horizon, settings[1] + ) + + @pytest.mark.parametrize( + "settings", + [ + (ForecastingSettings(forecast_horizon=10), CustomForecastHorizon(value=10)), + (ForecastingSettings(forecast_horizon="auto"), AutoForecastHorizon()), + (ForecastingSettings(forecast_horizon=None), None), + ], + ) + def test_forecast_horizon_to_rest(self, settings: Tuple[ForecastingSettings, List[str]]): + input_settings, expected = settings + actual = input_settings._to_rest_object() + assert actual.forecast_horizon == expected + + # test target_lags from rest + @pytest.mark.parametrize( + "settings", + [ + (RestForecastingSettings(target_lags=CustomTargetLags(values=[10, 20])), [10, 20]), + (RestForecastingSettings(target_lags=AutoTargetLags()), "auto"), + (RestForecastingSettings(target_lags=None), None), + ], + ) + def test_target_lags_from_rest(self, settings: Tuple[RestForecastingSettings, Any]): + actual_obj = ForecastingSettings._from_rest_object(obj=settings[0]) + assert actual_obj.target_lags == settings[1], "actual: {}, expected: {}".format( + actual_obj.target_lags, settings[1] + ) + + @pytest.mark.parametrize( + "settings", + [ + (ForecastingSettings(target_lags=10), CustomTargetLags(values=[10])), + (ForecastingSettings(target_lags=[10, 20, 30]), CustomTargetLags(values=[10, 20, 30])), + (ForecastingSettings(target_lags="auto"), AutoTargetLags()), + ], + ) + def test_target_lags_to_rest(self, settings: Tuple[ForecastingSettings, List[int]]): + input_settings, expected = settings + actual = input_settings._to_rest_object() + assert actual.target_lags == expected, "actual: {}, expected: {}".format(actual, expected) + + # test target_rolling_window_size from rest + @pytest.mark.parametrize( + "settings", + [ + (RestForecastingSettings(target_rolling_window_size=CustomTargetRollingWindowSize(value=10)), 10), + (RestForecastingSettings(target_rolling_window_size=AutoTargetRollingWindowSize()), "auto"), + (RestForecastingSettings(target_rolling_window_size=None), None), + ], + ) + def test_target_rolling_window_size_from_rest(self, settings: Tuple[RestForecastingSettings, Any]): + actual_obj = ForecastingSettings._from_rest_object(obj=settings[0]) + assert actual_obj.target_rolling_window_size == settings[1], "actual: {}, expected: {}".format( + actual_obj.target_rolling_window_size, settings[1] + ) + + @pytest.mark.parametrize( + "settings", + [ + (ForecastingSettings(target_rolling_window_size=10), CustomTargetRollingWindowSize(value=10)), + (ForecastingSettings(target_rolling_window_size="auto"), AutoTargetRollingWindowSize()), + ], + ) + def test_target_rolling_window_size_to_rest(self, settings: Tuple[ForecastingSettings, List[int]]): + input_settings, expected = settings + actual = input_settings._to_rest_object() + assert actual.target_rolling_window_size == expected, "actual: {}, expected: {}".format(actual, expected) + + # test seasonality from rest + @pytest.mark.parametrize( + "settings", + [ + (RestForecastingSettings(seasonality=CustomSeasonality(value=10)), 10), + (RestForecastingSettings(seasonality=AutoSeasonality()), "auto"), + (RestForecastingSettings(seasonality=None), None), + ], + ) + def test_seasonality_from_rest(self, settings: Tuple[RestForecastingSettings, Any]): + actual_obj = ForecastingSettings._from_rest_object(obj=settings[0]) + assert actual_obj.seasonality == settings[1], "actual: {}, expected: {}".format( + actual_obj.seasonality, settings[1] + ) + + @pytest.mark.parametrize( + "settings", + [ + (ForecastingSettings(seasonality=10), CustomSeasonality(value=10)), + (ForecastingSettings(seasonality="auto"), AutoSeasonality()), + ], + ) + def test_seasonality_to_rest(self, settings: Tuple[ForecastingSettings, List[int]]): + input_settings, expected = settings + actual = input_settings._to_rest_object() + assert actual.seasonality == expected, "actual: {}, expected: {}".format(actual, expected) + + def test_forecast_settings_equality(self): + settings = ForecastingSettings( + time_column_name="time", + forecast_horizon=20, + target_lags=[1, 2, 3], + time_series_id_column_names=["tid1", "tid2", "tid2"], + frequency="W-THU", + target_rolling_window_size=4, + short_series_handling_config=ShortSeriesHandlingConfiguration.DROP, + use_stl="season", + seasonality=3, + ) + + # serialize and deserialize again + settings_rest = settings._to_rest_object() + settings_rest_2 = ForecastingSettings._from_rest_object(obj=settings_rest) + assert settings == settings_rest_2, "actual: {}, expected: {}".format(settings, settings_rest_2) diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_regression_job.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_regression_job.py new file mode 100644 index 000000000000..f6cd8fa3fbbe --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_regression_job.py @@ -0,0 +1,78 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + +import pytest + +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + MLTableJobInput, + UserIdentity, +) +from azure.ai.ml.automl import regression, RegressionModels, RegressionPrimaryMetrics +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.entities._job.automl.tabular import RegressionJob + + +@pytest.mark.unittest +class TestAutoMLRegression: + def test_regression_task(self): + # Create AutoML Regression Task + identity = UserIdentity() + regression_job = regression( + training_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/train.csv"), + target_column_name="target", + primary_metric="spearman_correlation", + enable_model_explainability=True, + test_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/test.csv"), + validation_data_size=0.2, + # Job attributes + compute="cluster-regression", + name="regression_job", + experiment_name="foo_exp", + tags={"foo_tag": "bar"}, + identity = identity, + ) # type: RegressionJob + regression_job.set_limits(timeout_minutes=60, max_trials=100, max_concurrent_trials=4) + regression_job.set_training( + enable_onnx_compatible_models=True, blocked_training_algorithms=[RegressionModels.RANDOM_FOREST] + ) + regression_job.set_featurization(enable_dnn_featurization=True) + regression_job.training.allowed_training_algorithms = [ + RegressionModels.RANDOM_FOREST, + RegressionModels.LIGHT_GBM, + ] + + # check the rest object + rest_obj = regression_job._to_rest_object() # serialize to rest object + assert rest_obj.properties.identity == identity + assert isinstance( + rest_obj.properties.task_details.data_settings.training_data.data, MLTableJobInput + ), "Training data is not MLTableJobInput" + assert isinstance( + rest_obj.properties.task_details.data_settings.test_data.data, MLTableJobInput + ), "Test data is not MLTableJobInput" + + original_obj = RegressionJob._from_rest_object(rest_obj) # deserialize from rest object + assert regression_job == original_obj, "Conversion to/from rest object failed" + assert ( + original_obj.primary_metric == RegressionPrimaryMetrics.SPEARMAN_CORRELATION + ), "Primary metric is not correct" + assert original_obj.compute == "cluster-regression", "Compute not set correctly" + assert original_obj.name == "regression_job", "Name not set correctly" + assert original_obj.experiment_name == "foo_exp", "Experiment name not set correctly" + assert original_obj.tags == {"foo_tag": "bar"}, "Tags not set correctly" + # check if the original job inputs were restored + assert isinstance(original_obj._data.training_data.data, Input), "Training data is not Input" + assert original_obj._data.training_data.data.type == AssetTypes.MLTABLE, "Training data type not set correctly" + assert original_obj.identity == identity + assert ( + original_obj._data.training_data.data.path == "https://foo/bar/train.csv" + ), "Training data path not set correctly" + assert isinstance(original_obj._data.test_data.data, Input), "Training data is not Input" + assert original_obj._data.test_data.data.type == AssetTypes.MLTABLE, "Test data type not set correctly" + assert original_obj._data.test_data.data.path == "https://foo/bar/test.csv", "Test data path not set correctly" + assert original_obj.training.allowed_training_algorithms == [ + RegressionModels.RANDOM_FOREST, + RegressionModels.LIGHT_GBM, + ], "Allowed models not set correctly" diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_featurization_settings.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_featurization_settings.py new file mode 100644 index 000000000000..8ae8ba375593 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_featurization_settings.py @@ -0,0 +1,82 @@ +import pytest +from azure.ai.ml._restclient.v2022_02_01_preview.models import ColumnTransformer as RestColumnTransformer +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + TableVerticalFeaturizationSettings as RestTabularFeaturizationSettings, +) +from azure.ai.ml.entities._job.automl.tabular import ColumnTransformer, TabularFeaturizationSettings + + +@pytest.mark.unittest +class TestFeaturizationSettings: + def test_to_rest(self) -> None: + featurization_settings = self._get_entity_obj() + rest_obj = featurization_settings._to_rest_object() + assert rest_obj == self._get_rest_obj(), "actual: {}, expected: {}".format(rest_obj, self._get_rest_obj()) + + def test_from_rest(self) -> None: + rest_obj = self._get_rest_obj() + featurization_settings = TabularFeaturizationSettings._from_rest_object(rest_obj) + assert featurization_settings == self._get_entity_obj(), "actual: {}, expected: {}".format( + featurization_settings, self._get_entity_obj() + ) + + def test_equality(self) -> None: + featurization_settings = self._get_entity_obj() + rest_obj = featurization_settings._to_rest_object() + featurization_settings_2 = TabularFeaturizationSettings._from_rest_object(rest_obj) + assert featurization_settings == featurization_settings_2, "actual: {}, expected: {}".format( + featurization_settings_2, featurization_settings + ) + + def _get_rest_obj(self) -> RestTabularFeaturizationSettings: + tp = { + "imputer": [ + RestColumnTransformer(fields=["col3", "col4"], parameters={"strategy": "constant", "fill_value": 0.0}), + RestColumnTransformer(fields=["col5"], parameters={"strategy": "median"}), + ], + "hash_one_hot_encoder": [ + RestColumnTransformer(fields=["col6"], parameters={"number_of_bits": 3}), + ], + } + return RestTabularFeaturizationSettings( + blocked_transformers=["LabelEncoder", "WordEmbedding"], + column_name_and_types={ + "col1": "CategoricalHash", + "col2": "Numeric", + "col3": "Categorical", + }, + dataset_language="English", + transformer_params=tp, + mode="custom", + enable_dnn_featurization=True, + ) + + def _get_entity_obj(self) -> TabularFeaturizationSettings: + ct1 = ColumnTransformer( + fields=["col3", "col4"], + parameters={"strategy": "constant", "fill_value": 0.0}, + ) + ct2 = ColumnTransformer( + fields=["col5"], + parameters={"strategy": "median"}, + ) + ct3 = ColumnTransformer( + fields=["col6"], + parameters={"number_of_bits": 3}, + ) + + return TabularFeaturizationSettings( + blocked_transformers=["LabelEncoder", "WordEmbedding"], + column_name_and_types={ + "col1": "CategoricalHash", + "col2": "Numeric", + "col3": "Categorical", + }, + dataset_language="English", + transformer_params={ + "imputer": [ct1, ct2], + "hash_one_hot_encoder": [ct3], + }, + mode="custom", + enable_dnn_featurization=True, + ) diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_limit_settings.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_limit_settings.py new file mode 100644 index 000000000000..26bdde3e8b15 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_limit_settings.py @@ -0,0 +1,51 @@ +import pytest +from azure.ai.ml._restclient.v2022_02_01_preview.models import TableVerticalLimitSettings as RestTabularLimitSettings +from azure.ai.ml.entities._job.automl.tabular import TabularLimitSettings + + +@pytest.mark.unittest +class TestLimitSettings: + def test_limit_from_rest(self): + limit_settings_rest = self._get_rest_obj() + limit_settings_obj = TabularLimitSettings._from_rest_object(limit_settings_rest) + assert limit_settings_obj == self._get_entity_obj(), "actual: {}, expected: {}".format( + limit_settings_obj, self._get_entity_obj() + ) + + def test_limit_to_rest(self): + limit_settings_obj = self._get_entity_obj() + limit_settings_rest = limit_settings_obj._to_rest_object() + assert limit_settings_rest == self._get_rest_obj(), "actual: {}, expected: {}".format( + limit_settings_rest, self._get_rest_obj() + ) + + def test_equality(self): + limit_settings_obj = self._get_entity_obj() + # serialize and deserialize to ensure equality + limit_settings_rest = TabularLimitSettings._to_rest_object(limit_settings_obj) + limit_settings_obj_2 = TabularLimitSettings._from_rest_object(limit_settings_rest) + assert limit_settings_obj == limit_settings_obj_2, "actual: {}, expected: {}".format( + limit_settings_obj, limit_settings_obj_2 + ) + + def _get_rest_obj(self): + return RestTabularLimitSettings( + enable_early_termination=True, + exit_score=0.5, + max_concurrent_trials=10, + max_cores_per_trial=2, + max_trials=100, + timeout="PT10H", + trial_timeout="PT20M", + ) + + def _get_entity_obj(self): + return TabularLimitSettings( + enable_early_termination=True, + exit_score=0.5, + max_concurrent_trials=10, + max_cores_per_trial=2, + max_trials=100, + timeout_minutes=600, + trial_timeout_minutes=20, + ) diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_n_cross_validation_settings.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_n_cross_validation_settings.py new file mode 100644 index 000000000000..99df9531b60f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_tabular_n_cross_validation_settings.py @@ -0,0 +1,150 @@ +import pytest +from azure.ai.ml.constants import AssetTypes +from typing import Union +from azure.ai.ml.automl import classification, regression, forecasting +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + CustomNCrossValidations, + AutoNCrossValidations, + JobBaseData, +) +from azure.ai.ml.entities._job.automl.automl_job import AutoMLJob +from azure.ai.ml.entities._job.automl.tabular.classification_job import ClassificationJob +from azure.ai.ml.entities._job.automl.tabular.regression_job import RegressionJob +from azure.ai.ml.entities._job.automl.tabular.forecasting_job import ForecastingJob + + +@pytest.mark.unittest +class TestNCrossValidationSettings: + JOBS = [classification, regression, forecasting] + + def get_job_rest_object( + self, + n_cross_validation: Union[str, int, None], + automl_job: Union[classification, regression, forecasting], + validation_data_size: float = None, + from_rest_obj: bool = False, + ) -> Union[JobBaseData, ClassificationJob, RegressionJob, ForecastingJob]: + # Create an AutoML Job + + job = automl_job( + training_data=Input(type=AssetTypes.MLTABLE, path="https://foo/bar/train.csv"), + target_column_name="target", + enable_model_explainability=True, + n_cross_validations=n_cross_validation, + validation_data_size=validation_data_size, + ) + + job.limits = {"timeout_minutes": 60, "max_trials": 100, "max_concurrent_trials": 4} + + if automl_job == forecasting: + job.set_forecast_settings( + time_column_name="time", + ) + + rest_obj = job._to_rest_object() + + if from_rest_obj: # from rest obj + rest_obj = AutoMLJob._from_rest_object(rest_obj) + + return rest_obj + + def test_auto_n_cv_to_rest(self): + # Test with auto n cross validations (to_rest_object) + rest_objs = [ + self.get_job_rest_object("auto", self.JOBS[0]), + self.get_job_rest_object("auto", self.JOBS[1]), + self.get_job_rest_object("auto", self.JOBS[2]), + ] + + for obj in rest_objs: + assert isinstance( + obj.properties.task_details.data_settings.validation_data.n_cross_validations, AutoNCrossValidations + ), "N cross validations not an object of AutoNCrossValidations in {} job".format( + obj.properties.task_details.task_type + ) + + def test_auto_n_cv_from_rest(self): + # Test with auto n cross validations (from_rest_object) + rest_objs = [ + self.get_job_rest_object("auto", self.JOBS[0], from_rest_obj=True), + self.get_job_rest_object("auto", self.JOBS[1], from_rest_obj=True), + self.get_job_rest_object("auto", self.JOBS[2], from_rest_obj=True), + ] + + for obj in rest_objs: + assert ( + obj._data.validation_data.n_cross_validations == "auto" + ), "N cross validations incorrectly deserializing in {} job".format(obj.task_type) + + def test_value_n_cv_to_rest(self): + # Test with int value n cross validations (to_rest_obj) + rest_objs = [ + self.get_job_rest_object(2, self.JOBS[0]), + self.get_job_rest_object(2, self.JOBS[1]), + self.get_job_rest_object(2, self.JOBS[2]), + ] + + for obj in rest_objs: + assert isinstance( + obj.properties.task_details.data_settings.validation_data.n_cross_validations, CustomNCrossValidations + ), "N cross validations not an object of CustomNCrossValidations in {} job".format( + obj.properties.task_details.task_type + ) + + def test_value_n_cv_from_rest(self): + # Test with auto n cross validations (from_rest_object) + rest_objs = [ + self.get_job_rest_object(2, self.JOBS[0], from_rest_obj=True), + self.get_job_rest_object(2, self.JOBS[1], from_rest_obj=True), + self.get_job_rest_object(2, self.JOBS[2], from_rest_obj=True), + ] + + for obj in rest_objs: + assert ( + obj._data.validation_data.n_cross_validations == 2 + ), "N cross validations incorrectly deserializing in {} job".format(obj.task_type) + + def test_none_n_cv_to_rest(self): + # Test with None value n cross validations + rest_objs = [ + self.get_job_rest_object(None, self.JOBS[0]), + self.get_job_rest_object(None, self.JOBS[1]), + self.get_job_rest_object(None, self.JOBS[2]), + ] + + for obj in rest_objs: + assert ( + obj.properties.task_details.data_settings.validation_data.n_cross_validations is None + ), "N cross validations not None" + + def test_none_n_cv_from_rest(self): + # Test with auto n cross validations (from_rest_object) + rest_objs = [ + self.get_job_rest_object(None, self.JOBS[0], from_rest_obj=True), + self.get_job_rest_object(None, self.JOBS[1], from_rest_obj=True), + self.get_job_rest_object(None, self.JOBS[2], from_rest_obj=True), + ] + + for obj in rest_objs: + assert ( + obj._data.validation_data.n_cross_validations is None + ), "N cross validations not None in {} job".format(obj.task_type) + + def test_monte_carlo_cv(self): + # Test with monte carlo cv + rest_objs = [ + self.get_job_rest_object(10, self.JOBS[0], 0.2), + self.get_job_rest_object(10, self.JOBS[1], 0.2), + self.get_job_rest_object(10, self.JOBS[2], 0.2), + ] + + for obj in rest_objs: + assert isinstance( + obj.properties.task_details.data_settings.validation_data.n_cross_validations, CustomNCrossValidations + ), "N cross validations not an object of CustomNCrossValidations in {} job".format( + obj.properties.task_details.task_type + ) + assert ( + obj.properties.task_details.data_settings.validation_data.validation_data_size == 0.2 + ), "Validation data size not being assigned in {} job".format(obj.properties.task_details.task_type) diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_classification_job.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_classification_job.py new file mode 100644 index 000000000000..6feddf98479e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_classification_job.py @@ -0,0 +1,205 @@ +import pytest + +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + AutoMLJob as RestAutoMLJob, + JobBaseData, + LogVerbosity, + MLTableJobInput, + NlpVerticalFeaturizationSettings, + NlpVerticalDataSettings, + NlpVerticalLimitSettings, + NlpVerticalValidationDataSettings, + TextClassification, + TrainingDataSettings, + ValidationDataSettings, + UserIdentity, +) +from azure.ai.ml._restclient.v2022_02_01_preview.models._azure_machine_learning_workspaces_enums import ( + ClassificationPrimaryMetrics, +) +from azure.ai.ml._utils.utils import to_iso_duration_format_mins +from azure.ai.ml.automl import text_classification +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.entities._job.automl.nlp.text_classification_job import TextClassificationJob + + +@pytest.mark.unittest +class TestAutoMLTextClassificationJob: + """Tests for AutoML NLP Text Classification Job.""" + + def test_automl_nlp_text_classification_default(self): + label_column = "label_column" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassification/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassification/Valid" + job = text_classification( + target_column_name=label_column, + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + ) + assert isinstance(job, TextClassificationJob) + assert job.task_type == "TextClassification" + assert job.primary_metric == TextClassificationJob._DEFAULT_PRIMARY_METRIC + assert job.target_column_name == label_column + assert job.training_data.type == AssetTypes.MLTABLE + assert job.training_data.path == training_data_uri + assert job.validation_data.type == AssetTypes.MLTABLE + assert job.validation_data.path == validation_data_uri + assert job._data.target_column_name == label_column + assert job._data.training_data.data.path == training_data_uri + assert job._data.validation_data.data.path == validation_data_uri + assert job._limits is None + assert job._featurization is None + assert job.log_verbosity is None + + def test_automl_nlp_text_classification_init(self): + primary_metric = ClassificationPrimaryMetrics.AUC_WEIGHTED + label_column = "label_column" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassification/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassification/Valid" + log_verbosity = "Debug" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "deu" + job = text_classification( + target_column_name=label_column, + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + primary_metric=primary_metric, + log_verbosity=log_verbosity, + ) + job.set_limits(max_concurrent_trials=max_concurrent_trials, timeout_minutes=timeout) + job.set_featurization(dataset_language=dataset_language) + assert isinstance(job, TextClassificationJob) + assert job.limits.max_concurrent_trials == max_concurrent_trials + assert job.limits.timeout_minutes == timeout + assert job.limits.max_trials == 1 # default value + assert job.featurization.dataset_language == dataset_language + assert job.log_verbosity == LogVerbosity.DEBUG.value + + def test_automl_nlp_text_classification_init_with_dictionary(self): + primary_metric = ClassificationPrimaryMetrics.AUC_WEIGHTED + label_column = "label_column" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassification/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassification/Valid" + log_verbosity = "Debug" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "deu" + job = text_classification( + target_column_name=label_column, + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + primary_metric=primary_metric, + log_verbosity=log_verbosity, + ) + job.limits = {"timeout_minutes": timeout, "max_concurrent_trials": max_concurrent_trials} + job.featurization = {"dataset_language": dataset_language} + assert job.limits.max_concurrent_trials == max_concurrent_trials + assert job.limits.timeout_minutes == timeout + assert job.limits.max_trials == 1 # default value + assert job.featurization.dataset_language == dataset_language + assert job.log_verbosity == LogVerbosity.DEBUG.value + + def test_automl_nlp_text_classification_to_rest_object(self): + primary_metric = ClassificationPrimaryMetrics.AUC_WEIGHTED + log_verbosity = "Debug" + label_column = "label_column" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassification/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassification/Valid" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "eng" + + job = text_classification( + target_column_name=label_column, + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + primary_metric=primary_metric, + log_verbosity=log_verbosity, + ) + job.set_limits(max_concurrent_trials=max_concurrent_trials, timeout_minutes=timeout) + job.set_featurization(dataset_language=dataset_language) + + expected = TextClassification( + primary_metric=primary_metric, + log_verbosity=log_verbosity, + data_settings=NlpVerticalDataSettings( + target_column_name=label_column, + training_data=TrainingDataSettings(data=MLTableJobInput(uri=training_data_uri)), + validation_data=NlpVerticalValidationDataSettings(data=MLTableJobInput(uri=validation_data_uri)), + ), + limit_settings=NlpVerticalLimitSettings( + max_concurrent_trials=max_concurrent_trials, timeout=to_iso_duration_format_mins(timeout) + ), + featurization_settings=NlpVerticalFeaturizationSettings(dataset_language=dataset_language), + ) + + # Test converting Job to REST object + converted_to_rest_obj = job._to_rest_object() + assert isinstance(converted_to_rest_obj, JobBaseData) + assert converted_to_rest_obj.properties.task_details == expected + result = converted_to_rest_obj.properties.task_details + assert result.task_type == "TextClassification" + assert expected.task_type == result.task_type + assert expected.primary_metric == result.primary_metric + assert expected.data_settings == result.data_settings + assert expected.data_settings.training_data == result.data_settings.training_data + assert expected.data_settings.validation_data == result.data_settings.validation_data + assert expected.limit_settings == result.limit_settings + assert expected.featurization_settings == result.featurization_settings + assert expected.log_verbosity == result.log_verbosity + + def test_automl_nlp_text_classification_from_rest_object(self): + primary_metric = ClassificationPrimaryMetrics.AUC_WEIGHTED + log_verbosity = "Debug" + label_column = "target_column" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassification/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassification/Valid" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "eng" + + identity = UserIdentity() + expected_job = text_classification( + target_column_name=label_column, + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + primary_metric=primary_metric, + log_verbosity=log_verbosity, + # Job attributes + compute="cpucluster", + name="text_classification_job", + experiment_name="experiment", + tags={"foo_tag": "bar"}, + identity = identity, + ) + expected_job.set_limits(max_concurrent_trials=max_concurrent_trials, timeout_minutes=timeout) + expected_job.set_featurization(dataset_language=dataset_language) + + task_details = TextClassification( + primary_metric=primary_metric, + log_verbosity=log_verbosity, + data_settings=NlpVerticalDataSettings( + target_column_name=label_column, + training_data=TrainingDataSettings(data=MLTableJobInput(uri=training_data_uri)), + validation_data=NlpVerticalValidationDataSettings(data=MLTableJobInput(uri=validation_data_uri)), + ), + limit_settings=NlpVerticalLimitSettings( + max_concurrent_trials=max_concurrent_trials, timeout=to_iso_duration_format_mins(timeout) + ), + featurization_settings=NlpVerticalFeaturizationSettings(dataset_language=dataset_language), + ) + job_data = JobBaseData(properties=RestAutoMLJob(task_details=task_details, identity = identity)) + # Test converting REST object to Job + converted_to_job = TextClassificationJob._from_rest_object(job_data) + assert converted_to_job.identity == identity + assert isinstance(converted_to_job, TextClassificationJob) + assert expected_job.primary_metric == converted_to_job.primary_metric + assert expected_job.target_column_name == converted_to_job.target_column_name + assert expected_job.training_data == converted_to_job.training_data + assert expected_job.validation_data == converted_to_job.validation_data + assert expected_job.limits == converted_to_job.limits + assert expected_job._data == converted_to_job._data + assert expected_job.featurization == converted_to_job.featurization + assert expected_job.log_verbosity == converted_to_job.log_verbosity diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_classification_multilabel_job.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_classification_multilabel_job.py new file mode 100644 index 000000000000..05bc29ebc4dc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_classification_multilabel_job.py @@ -0,0 +1,201 @@ +import pytest + +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + AutoMLJob as RestAutoMLJob, + JobBaseData, + LogVerbosity, + MLTableJobInput, + NlpVerticalFeaturizationSettings, + NlpVerticalDataSettings, + NlpVerticalLimitSettings, + NlpVerticalValidationDataSettings, + TextClassificationMultilabel, + TrainingDataSettings, + ValidationDataSettings, + UserIdentity, +) +from azure.ai.ml._restclient.v2022_02_01_preview.models._azure_machine_learning_workspaces_enums import ( + ClassificationPrimaryMetrics, +) +from azure.ai.ml._utils.utils import to_iso_duration_format_mins +from azure.ai.ml.automl import text_classification_multilabel +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.entities._job.automl.nlp.text_classification_multilabel_job import TextClassificationMultilabelJob + + +@pytest.mark.unittest +class TestAutoMLTextClassificationMultilabelJob: + """Tests for AutoML NLP Text Classification Multilabel Job.""" + + def test_automl_nlp_text_classification_multilabel_default(self): + label_column = "label_column" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassificationMultilabel/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassificationMultilabel/Valid" + job = text_classification_multilabel( + target_column_name=label_column, + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + ) + assert isinstance(job, TextClassificationMultilabelJob) + assert job.task_type == "TextClassificationMultilabel" + assert job.primary_metric == TextClassificationMultilabelJob._DEFAULT_PRIMARY_METRIC + assert job.target_column_name == label_column + assert job.training_data.type == AssetTypes.MLTABLE + assert job.training_data.path == training_data_uri + assert job.validation_data.type == AssetTypes.MLTABLE + assert job.validation_data.path == validation_data_uri + assert job._data.target_column_name == label_column + assert job._data.training_data.data.path == training_data_uri + assert job._data.validation_data.data.path == validation_data_uri + assert job._limits is None + assert job._featurization is None + assert job.log_verbosity is None + + def test_automl_nlp_text_classification_multilabel_init(self): + label_column = "label_column" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassificationMultilabel/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassificationMultilabel/Valid" + log_verbosity = "Debug" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "deu" + job = text_classification_multilabel( + log_verbosity=log_verbosity, + target_column_name=label_column, + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + ) + job.set_limits(max_concurrent_trials=max_concurrent_trials, timeout_minutes=timeout) + job.set_featurization(dataset_language=dataset_language) + assert isinstance(job, TextClassificationMultilabelJob) + assert job.limits.max_concurrent_trials == max_concurrent_trials + assert job.limits.timeout_minutes == timeout + assert job.limits.max_trials == 1 # default value + assert job.featurization.dataset_language == dataset_language + assert job.log_verbosity == LogVerbosity.DEBUG.value + + def test_automl_nlp_text_classification_multilabel_init_with_dictionary(self): + label_column = "label_column" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassificationMultilabel/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassificationMultilabel/Valid" + log_verbosity = "Debug" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "deu" + job = text_classification_multilabel( + log_verbosity=log_verbosity, + target_column_name=label_column, + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + ) + job.limits = {"timeout_minutes": timeout, "max_concurrent_trials": max_concurrent_trials} + job.featurization = {"dataset_language": dataset_language} + assert job.limits.max_concurrent_trials == max_concurrent_trials + assert job.limits.timeout_minutes == timeout + assert job.limits.max_trials == 1 # default value + assert job.featurization.dataset_language == dataset_language + assert job.log_verbosity == LogVerbosity.DEBUG.value + + def test_automl_nlp_text_classification_multilabel_to_rest_object(self): + primary_metric = ClassificationPrimaryMetrics.ACCURACY + log_verbosity = "Debug" + label_column = "label_column" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassificationMultilabel/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassificationMultilabel/Valid" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "eng" + + identity = UserIdentity() + job = text_classification_multilabel( + primary_metric=primary_metric, + log_verbosity=log_verbosity, + target_column_name=label_column, + identity = identity, + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + ) + job.set_limits(max_concurrent_trials=max_concurrent_trials, timeout_minutes=timeout) + job.set_featurization(dataset_language=dataset_language) + + expected = TextClassificationMultilabel( + primary_metric=primary_metric, + log_verbosity=log_verbosity, + data_settings=NlpVerticalDataSettings( + target_column_name=label_column, + training_data=TrainingDataSettings(data=MLTableJobInput(uri=training_data_uri)), + validation_data=NlpVerticalValidationDataSettings(data=MLTableJobInput(uri=validation_data_uri)), + ), + limit_settings=NlpVerticalLimitSettings( + max_concurrent_trials=max_concurrent_trials, timeout=to_iso_duration_format_mins(timeout) + ), + featurization_settings=NlpVerticalFeaturizationSettings(dataset_language=dataset_language), + ) + + # Test converting Job to REST object + converted_to_rest_obj = job._to_rest_object() + assert converted_to_rest_obj.properties.identity == identity + assert isinstance(converted_to_rest_obj, JobBaseData) + assert converted_to_rest_obj.properties.task_details == expected + result = converted_to_rest_obj.properties.task_details + assert result.task_type == "TextClassificationMultilabel" + assert expected.task_type == result.task_type + assert expected.primary_metric == result.primary_metric + assert expected.data_settings == result.data_settings + assert expected.data_settings.training_data == result.data_settings.training_data + assert expected.data_settings.validation_data == result.data_settings.validation_data + assert expected.limit_settings == result.limit_settings + assert expected.featurization_settings == result.featurization_settings + assert expected.log_verbosity == result.log_verbosity + + def test_automl_nlp_text_classification_multilabel_from_rest_object(self): + log_verbosity = "Debug" + label_column = "target_column" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassificationMultilabel/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextClassificationMultilabel/Valid" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "eng" + + identity = UserIdentity() + expected_job = text_classification_multilabel( + target_column_name=label_column, + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + log_verbosity=log_verbosity, + # Job attributes + compute="cpucluster", + name="text_classification_multilabel_job", + experiment_name="experiment", + tags={"foo_tag": "bar"}, + identity = identity, + ) + expected_job.set_limits(max_concurrent_trials=max_concurrent_trials, timeout_minutes=timeout) + expected_job.set_featurization(dataset_language=dataset_language) + + task_details = TextClassificationMultilabel( + log_verbosity=log_verbosity, + data_settings=NlpVerticalDataSettings( + target_column_name=label_column, + training_data=TrainingDataSettings(data=MLTableJobInput(uri=training_data_uri)), + validation_data=NlpVerticalValidationDataSettings(data=MLTableJobInput(uri=validation_data_uri)), + ), + limit_settings=NlpVerticalLimitSettings( + max_concurrent_trials=max_concurrent_trials, timeout=to_iso_duration_format_mins(timeout) + ), + featurization_settings=NlpVerticalFeaturizationSettings(dataset_language=dataset_language), + ) + job_data = JobBaseData(properties=RestAutoMLJob(task_details=task_details, identity = identity)) + # Test converting REST object to Job + converted_to_job = TextClassificationMultilabelJob._from_rest_object(job_data) + assert converted_to_job.identity == identity + assert isinstance(converted_to_job, TextClassificationMultilabelJob) + assert expected_job.primary_metric == converted_to_job.primary_metric + assert expected_job.target_column_name == converted_to_job.target_column_name + assert expected_job.training_data == converted_to_job.training_data + assert expected_job.validation_data == converted_to_job.validation_data + assert expected_job.limits == converted_to_job.limits + assert expected_job._data == converted_to_job._data + assert expected_job.featurization == converted_to_job.featurization + assert expected_job.log_verbosity == converted_to_job.log_verbosity diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_ner_job.py b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_ner_job.py new file mode 100644 index 000000000000..7ab6799dbefc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/automl_job/unittests/test_text_ner_job.py @@ -0,0 +1,195 @@ +import pytest + +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + AutoMLJob as RestAutoMLJob, + JobBaseData, + LogVerbosity, + MLTableJobInput, + NlpVerticalFeaturizationSettings, + NlpVerticalDataSettings, + NlpVerticalLimitSettings, + NlpVerticalValidationDataSettings, + TaskType, + TextNer, + TrainingDataSettings, + ValidationDataSettings, + UserIdentity, +) +from azure.ai.ml._restclient.v2022_02_01_preview.models._azure_machine_learning_workspaces_enums import ( + ClassificationPrimaryMetrics, +) +from azure.ai.ml.automl import text_ner +from azure.ai.ml.entities._inputs_outputs import Input +from azure.ai.ml.entities._job.automl.nlp.text_ner_job import TextNerJob +from azure.ai.ml._utils.utils import to_iso_duration_format_mins + + +@pytest.mark.unittest +class TestAutoMLTextNerJob: + """Tests for AutoML NLP Text NER Job.""" + + def test_automl_nlp_text_ner_default(self): + label_column = "label" # 1779366 target column not required for NER, remove when model gets updated + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextNer/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextNer/Valid" + job = text_ner( + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + ) + assert isinstance(job, TextNerJob) + assert job.task_type == TaskType.TEXT_NER + assert job.primary_metric == TextNerJob._DEFAULT_PRIMARY_METRIC + assert job.target_column_name == label_column + assert job.training_data.type == AssetTypes.MLTABLE + assert job.training_data.path == training_data_uri + assert job.validation_data.type == AssetTypes.MLTABLE + assert job.validation_data.path == validation_data_uri + assert job._data.target_column_name == label_column + assert job._data.training_data.data.path == training_data_uri + assert job._data.validation_data.data.path == validation_data_uri + assert job._limits is None + assert job._featurization is None + assert job.log_verbosity is None + + def test_automl_nlp_text_ner_init(self): + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextNer/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextNer/Valid" + log_verbosity = "Debug" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "deu" + job = text_ner( + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + log_verbosity=log_verbosity, + ) + job.set_limits(max_concurrent_trials=max_concurrent_trials, timeout_minutes=timeout) + job.set_featurization(dataset_language=dataset_language) + assert isinstance(job, TextNerJob) + assert job.limits.max_concurrent_trials == max_concurrent_trials + assert job.limits.timeout_minutes == timeout + assert job.limits.max_trials == 1 # default value + assert job.featurization.dataset_language == dataset_language + assert job.log_verbosity == LogVerbosity.DEBUG.value + + def test_automl_nlp_text_ner_init_with_dictionary(self): + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextNer/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextNer/Valid" + log_verbosity = "Debug" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "deu" + job = text_ner( + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + log_verbosity=log_verbosity, + ) + job.limits = {"timeout_minutes": timeout, "max_concurrent_trials": max_concurrent_trials} + job.featurization = {"dataset_language": dataset_language} + assert job.limits.max_concurrent_trials == max_concurrent_trials + assert job.limits.timeout_minutes == timeout + assert job.limits.max_trials == 1 # default value + assert job.featurization.dataset_language == dataset_language + assert job.log_verbosity == LogVerbosity.DEBUG.value + + def test_automl_nlp_text_ner_to_rest_object(self): + primary_metric = ClassificationPrimaryMetrics.ACCURACY + log_verbosity = "Debug" + label_column = "label" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextNer/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextNer/Valid" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "eng" + + identity = UserIdentity() + job = text_ner( + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + primary_metric=primary_metric, + log_verbosity=log_verbosity, + identity = identity, + ) + job.set_limits(max_concurrent_trials=max_concurrent_trials, timeout_minutes=timeout) + job.set_featurization(dataset_language=dataset_language) + + expected = TextNer( + primary_metric=primary_metric, + log_verbosity=log_verbosity, + data_settings=NlpVerticalDataSettings( + target_column_name=label_column, + training_data=TrainingDataSettings(data=MLTableJobInput(uri=training_data_uri)), + validation_data=NlpVerticalValidationDataSettings(data=MLTableJobInput(uri=validation_data_uri)), + ), + limit_settings=NlpVerticalLimitSettings( + max_concurrent_trials=max_concurrent_trials, timeout=to_iso_duration_format_mins(timeout) + ), + featurization_settings=NlpVerticalFeaturizationSettings(dataset_language=dataset_language), + ) + + # Test converting Job to REST object + converted_to_rest_obj = job._to_rest_object() + assert isinstance(converted_to_rest_obj, JobBaseData) + assert converted_to_rest_obj.properties.identity == identity + assert converted_to_rest_obj.properties.task_details == expected + result = converted_to_rest_obj.properties.task_details + assert result.task_type == TaskType.TEXT_NER + assert expected.task_type == result.task_type + assert expected.primary_metric == result.primary_metric + assert expected.data_settings == result.data_settings + assert expected.data_settings.training_data == result.data_settings.training_data + assert expected.data_settings.validation_data == result.data_settings.validation_data + assert expected.limit_settings == result.limit_settings + assert expected.featurization_settings == result.featurization_settings + assert expected.log_verbosity == result.log_verbosity + + def test_automl_nlp_text_ner_from_rest_object(self): + log_verbosity = "Debug" + label_column = "label" + training_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextNer/Train" + validation_data_uri = "azureml://datastores/workspaceblobstore/paths/NLPTextNer/Valid" + max_concurrent_trials = 2 + timeout = 30 + dataset_language = "eng" + + identity = UserIdentity() + expected_job = text_ner( + training_data=Input(type=AssetTypes.MLTABLE, path=training_data_uri), + validation_data=Input(type=AssetTypes.MLTABLE, path=validation_data_uri), + log_verbosity=log_verbosity, + # Job attributes + compute="cpucluster", + name="text_ner_job", + experiment_name="experiment", + tags={"foo_tag": "bar"}, + identity = identity, + ) + expected_job.set_limits(max_concurrent_trials=max_concurrent_trials, timeout_minutes=timeout) + expected_job.set_featurization(dataset_language=dataset_language) + + task_details = TextNer( + log_verbosity=log_verbosity, + data_settings=NlpVerticalDataSettings( + target_column_name=label_column, + training_data=TrainingDataSettings(data=MLTableJobInput(uri=training_data_uri)), + validation_data=NlpVerticalValidationDataSettings(data=MLTableJobInput(uri=validation_data_uri)), + ), + limit_settings=NlpVerticalLimitSettings( + max_concurrent_trials=max_concurrent_trials, timeout=to_iso_duration_format_mins(timeout) + ), + featurization_settings=NlpVerticalFeaturizationSettings(dataset_language=dataset_language), + ) + job_data = JobBaseData(properties=RestAutoMLJob(task_details=task_details, identity = identity)) + # Test converting REST object to Job + converted_to_job = TextNerJob._from_rest_object(job_data) + assert isinstance(converted_to_job, TextNerJob) + assert converted_to_job.identity == identity + assert expected_job.primary_metric == converted_to_job.primary_metric + assert expected_job.target_column_name == converted_to_job.target_column_name + assert expected_job.training_data == converted_to_job.training_data + assert expected_job.validation_data == converted_to_job.validation_data + assert expected_job.limits == converted_to_job.limits + assert expected_job._data == converted_to_job._data + assert expected_job.featurization == converted_to_job.featurization + assert expected_job.log_verbosity == converted_to_job.log_verbosity diff --git a/sdk/ml/azure-ai-ml/tests/batch_online_common/__init__.py b/sdk/ml/azure-ai-ml/tests/batch_online_common/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_code_configuration.py b/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_code_configuration.py new file mode 100644 index 000000000000..453453516e69 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_code_configuration.py @@ -0,0 +1,18 @@ +import pytest +import yaml + +from azure.ai.ml.constants import BASE_PATH_CONTEXT_KEY +from marshmallow import RAISE +from azure.ai.ml.entities import CodeConfiguration + + +@pytest.mark.unittest +class TestCodeConfiguration: + def test_scoring_script_missing_throw(self) -> None: + missing_code_configuration = CodeConfiguration(code="xx", scoring_script=None) + with pytest.raises(Exception): + missing_code_configuration._validate() + + def test_schema_validation_pass(self) -> None: + complete_scoring_script = CodeConfiguration(code="xx", scoring_script="xxx") + complete_scoring_script._validate() diff --git a/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_deployment_entity.py b/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_deployment_entity.py new file mode 100644 index 000000000000..3fcd18c24ce4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_deployment_entity.py @@ -0,0 +1,280 @@ +from azure.ai.ml.constants import BATCH_ENDPOINT_TYPE, ONLINE_ENDPOINT_TYPE, BatchDeploymentOutputAction +from azure.ai.ml.entities import ( + CodeConfiguration, + OnlineEndpoint, + OnlineDeployment, + BatchDeployment, + KubernetesOnlineDeployment, + ManagedOnlineDeployment, + DefaultScaleSettings, + TargetUtilizationScaleSettings, + ProbeSettings, + ResourceRequirementsSettings, + ResourceSettings, +) +from azure.ai.ml.entities._assets import Model, Environment +from azure.ai.ml._restclient.v2021_10_01.models import EndpointComputeType, BatchOutputAction +from azure.ai.ml.entities._job.resource_configuration import ResourceConfiguration +from azure.ai.ml.entities._deployment.deployment_settings import BatchRetrySettings +import copy +import yaml +import pytest + + +@pytest.mark.unittest +class TestDeploymentSanity: + def test_instantiate_OnlineEndpoint_fail(self) -> None: + with pytest.raises(TypeError): + OnlineEndpoint(name="my-endpoint") + + def test_instantiate_OnlineDeployment_fail(self) -> None: + with pytest.raises(TypeError): + OnlineDeployment() + + def test_instantiate_AKSOnlineDeployment(self) -> None: + with pytest.raises(TypeError): + ManagedOnlineDeployment() + + ManagedOnlineDeployment(name="my-deployment") + + def test_instantiate_KubernetesOnlineDeployment(self) -> None: + with pytest.raises(TypeError): + KubernetesOnlineDeployment() + + KubernetesOnlineDeployment(name="my-deployment") + + def test_instantiate_batchDeployment(self) -> None: + with pytest.raises(TypeError): + BatchDeployment() + + BatchDeployment(name="my-deployment") + + +@pytest.mark.unittest +class TestOnlineDeploymentFromYAML: + BLUE_ONLINE_DEPLOYMENT = "tests/test_configs/deployments/online/online_deployment_blue.yaml" + BLUE_K8S_ONLINE_DEPLOYMENT = "tests/test_configs/deployments/online/online_deployment_blue_k8s.yaml" + MINIMAL_DEPLOYMENT = "tests/test_configs/deployments/online/online_endpoint_deployment_k8s_minimum.yml" + PREVIEW_DEPLOYMENT = "tests/test_configs/deployments/online/online_deployment_1.yaml" + + def test_generic_deployment(self) -> None: + with open(TestOnlineDeploymentFromYAML.BLUE_ONLINE_DEPLOYMENT, "r") as f: + target = yaml.safe_load(f) + blue = OnlineDeployment.load(TestOnlineDeploymentFromYAML.BLUE_ONLINE_DEPLOYMENT) + assert isinstance(blue, OnlineDeployment) + assert blue.type == EndpointComputeType.KUBERNETES + assert blue.endpoint_name == target["endpoint_name"] + assert "blue" in blue.name + assert isinstance(blue.model, Model) + assert isinstance(blue.environment, Environment) + assert isinstance(blue.code_configuration, CodeConfiguration) + assert isinstance(blue.liveness_probe, ProbeSettings) + assert isinstance(blue.readiness_probe, ProbeSettings) + assert blue.model.name == target["model"]["name"] + assert blue.instance_type == "cpuinstance" + assert blue.description == target["description"] + + def test_generic_deployment_merge(self) -> None: + blue = OnlineDeployment.load(TestOnlineDeploymentFromYAML.BLUE_ONLINE_DEPLOYMENT) + blue_copy = copy.deepcopy(blue) + + blue_copy.code_configuration = CodeConfiguration(code="blah path", scoring_script="blah.py") + blue_copy.model = Model(name="blah code") + blue_copy.environment = Environment(name="blah model") + blue_copy.endpoint_name = "blah endpoint" + + blue._merge_with(blue_copy) + + assert blue.model.name == blue_copy.model.name + assert blue.environment.name == blue_copy.environment.name + assert blue.code_configuration.code == blue_copy.code_configuration.code + assert blue.code_configuration.scoring_script == blue_copy.code_configuration.scoring_script + assert blue.endpoint_name == blue_copy.endpoint_name + + def test_generic_deployment_merge_props(self) -> None: + blue = OnlineDeployment.load(TestOnlineDeploymentFromYAML.BLUE_ONLINE_DEPLOYMENT) + blue_copy = copy.deepcopy(blue) + + blue.tags = {"otag": "otagvalue"} + blue.properties = {"oprop": "opropvalue"} + blue.environment_variables = {"oev": "oevvalue"} + + blue_copy.tags = {"ntag": "ntagvalue"} + blue_copy.properties = {"nprop": "npropvalue"} + blue_copy.environment_variables = {"nev": "nevvalue"} + + blue._merge_with(blue_copy) + assert len(blue.tags) == 2 + assert blue.tags["ntag"] == "ntagvalue" + assert blue.tags["otag"] == "otagvalue" + + assert len(blue.properties) == 2 + assert blue.properties["nprop"] == "npropvalue" + assert blue.properties["oprop"] == "opropvalue" + + assert len(blue.environment_variables) == 2 + assert blue.environment_variables["nev"] == "nevvalue" + assert blue.environment_variables["oev"] == "oevvalue" + + def test_generic_deployment_merge_endpoint_mismatch(self) -> None: + blue = OnlineDeployment.load(TestOnlineDeploymentFromYAML.BLUE_ONLINE_DEPLOYMENT) + blue_copy = copy.deepcopy(blue) + + blue_copy.name = "different deployment" + + with pytest.raises(Exception) as exc: + blue._merge_with(blue_copy) + assert "are not matched when merging" in str(exc.value) + + def test_k8s_deployment(self) -> None: + with open(TestOnlineDeploymentFromYAML.BLUE_K8S_ONLINE_DEPLOYMENT, "r") as f: + target = yaml.safe_load(f) + blue = KubernetesOnlineDeployment.load(TestOnlineDeploymentFromYAML.BLUE_K8S_ONLINE_DEPLOYMENT) + assert isinstance(blue, KubernetesOnlineDeployment) + assert blue.type == EndpointComputeType.KUBERNETES + assert blue.endpoint_name == target["endpoint_name"] + assert "blue" in blue.name + assert isinstance(blue.model, Model) + assert isinstance(blue.environment, Environment) + assert isinstance(blue.code_configuration, CodeConfiguration) + assert isinstance(blue.liveness_probe, ProbeSettings) + assert isinstance(blue.readiness_probe, ProbeSettings) + assert isinstance(blue.resources, ResourceRequirementsSettings) + assert isinstance(blue.resources.requests, ResourceSettings) + assert isinstance(blue.resources.limits, ResourceSettings) + assert blue.model.name == target["model"]["name"] + assert blue.resources.requests.gpu == target["resources"]["requests"]["nvidia.com/gpu"] + assert blue.description == target["description"] + assert blue.instance_type == target["instance_type"] + + def test_preview_mir_deployment(self) -> None: + with open(TestOnlineDeploymentFromYAML.PREVIEW_DEPLOYMENT, "r") as f: + target = yaml.safe_load(f) + blue = OnlineDeployment.load(TestOnlineDeploymentFromYAML.PREVIEW_DEPLOYMENT) + assert isinstance(blue, OnlineDeployment) + for key, value in target.items(): + if isinstance(value, str): + assert getattr(blue, key) == value + + +@pytest.mark.unittest +class TestBatchDeploymentSDK: + DEPLOYMENT = "tests/test_configs/deployments/batch/batch_deployment_mlflow.yaml" + + def test_batch_endpoint_deployment_load(self) -> None: + with open(TestBatchDeploymentSDK.DEPLOYMENT, "r") as f: + target = yaml.safe_load(f) + deployment = BatchDeployment.load(TestBatchDeploymentSDK.DEPLOYMENT) + assert isinstance(deployment, BatchDeployment) + assert isinstance(deployment.model, str) + assert isinstance(deployment.compute, str) + assert isinstance(deployment.resources, ResourceConfiguration) + assert deployment.model == "lightgbm_predict:1" + assert deployment.output_action == BatchDeploymentOutputAction.APPEND_ROW + assert deployment.max_concurrency_per_instance == target["max_concurrency_per_instance"] + assert deployment.retry_settings.max_retries == target["retry_settings"]["max_retries"] + assert deployment.retry_settings.timeout == target["retry_settings"]["timeout"] + assert deployment.description == target["description"] + + def test_batch_endpoint_deployment_to_rest_object(self) -> None: + with open(TestBatchDeploymentSDK.DEPLOYMENT, "r") as f: + target = yaml.safe_load(f) + print(target) + deployment = BatchDeployment.load(TestBatchDeploymentSDK.DEPLOYMENT) + # test REST translation + deployment_resource = deployment._to_rest_object(location="westus2") + rest_representation_properties = deployment_resource.properties + assert rest_representation_properties.max_concurrency_per_instance == target["max_concurrency_per_instance"] + assert rest_representation_properties.retry_settings.max_retries == target["retry_settings"]["max_retries"] + assert rest_representation_properties.retry_settings.timeout == "PT30S" + assert rest_representation_properties.error_threshold == target["error_threshold"] + assert rest_representation_properties.output_action == BatchOutputAction.APPEND_ROW + assert rest_representation_properties.description == target["description"] + + def test_batch_deployment_promoted_properties(self) -> None: + deployment = BatchDeployment( + name="non-mlflow-deployment", + description="this is a sample non-mlflow deployment", + endpoint_name="my-batch-endpoint", + model="model", + code_path="tests/test_configs/deployments/model-1/onlinescoring", + scoring_script="score.py", + environment="env", + compute="batch-cluster", + instance_count=2, + max_concurrency_per_instance=2, + mini_batch_size=10, + output_action=BatchOutputAction.APPEND_ROW, + output_file_name="predictions.csv", + retry_settings=BatchRetrySettings(max_retries=3, timeout=30), + ) + + assert isinstance(deployment.code_configuration, CodeConfiguration) + assert deployment.code_configuration.scoring_script == "score.py" + assert deployment.compute == "batch-cluster" + + def test_batch_deployment_regular_properties(self) -> None: + deployment = BatchDeployment( + name="non-mlflow-deployment", + description="this is a sample non-mlflow deployment", + endpoint_name="my-batch-endpoint", + model="model", + code_configuration=CodeConfiguration( + code="tests/test_configs/deployments/model-2/onlinescoring", scoring_script="score1.py" + ), + environment="env", + compute="batch-cluster", + instance_count=2, + max_concurrency_per_instance=2, + mini_batch_size=10, + output_action=BatchOutputAction.APPEND_ROW, + output_file_name="predictions.csv", + retry_settings=BatchRetrySettings(max_retries=3, timeout=30), + ) + + assert isinstance(deployment.code_configuration, CodeConfiguration) + assert deployment.code_configuration.scoring_script == "score1.py" + assert deployment.compute == "batch-cluster" + + def test_batch_deployment_except_promoted_proterties(self) -> None: + with pytest.raises(Exception): + BatchDeployment( + name="non-mlflow-deployment", + description="this is a sample non-mlflow deployment", + endpoint_name="my-batch-endpoint", + model="model", + code_configuration=CodeConfiguration( + code="tests/test_configs/deployments/model-2/onlinescoring", scoring_script="score1.py" + ), + code_path="tests/test_configs/deployments/model-1/onlinescoring", + scoring_script="score2.py", + environment="env", + compute="batch-cluster", + instance_count=2, + max_concurrency_per_instance=2, + mini_batch_size=10, + output_action=BatchOutputAction.APPEND_ROW, + output_file_name="predictions.csv", + retry_settings=BatchRetrySettings(max_retries=3, timeout=30), + ) + + +@pytest.mark.unittest +class TestOnlineDeploymentSDK: + def test_k8s_deployment_with_instance_count(self) -> None: + deployment = KubernetesOnlineDeployment( + name="test1", scale_settings=TargetUtilizationScaleSettings(), instance_count=2 + ) + with pytest.raises(Exception): + deployment._validate_scale_settings() + + def test_auto_scale_settings_missing_max(self) -> None: + deployment = ManagedOnlineDeployment( + name="test1", scale_settings=TargetUtilizationScaleSettings(min_instances=2) + ) + with pytest.raises(Exception): + deployment._validate_scale_settings() + + def test_target_utilization_scale_settings_normal(self) -> None: + deployment = ManagedOnlineDeployment(name="test1", scale_settings=DefaultScaleSettings()) + deployment._validate_scale_settings() diff --git a/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_endpoint_entity.py b/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_endpoint_entity.py new file mode 100644 index 000000000000..bffcc91fe082 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/batch_online_common/unittests/test_endpoint_entity.py @@ -0,0 +1,93 @@ +from azure.ai.ml.constants import BATCH_ENDPOINT_TYPE, ONLINE_ENDPOINT_TYPE +from azure.ai.ml.entities import ( + Endpoint, + OnlineEndpoint, + BatchEndpoint, + ManagedOnlineDeployment, +) +import yaml +import pytest + + +@pytest.mark.unittest +class TestOnlineEndpointYAML: + SIMPLE_ENDPOINT_WITH_BLUE_BAD = "tests/test_configs/endpoints/online/online_endpoint_create_aks_bad.yml" + MINIMAL_ENDPOINT = "tests/test_configs/endpoints/online/online_endpoint_minimal.yaml" + MINIMAL_DEPLOYMENT = "tests/test_configs/deployments/online/online_endpoint_deployment_k8s_minimum.yml" + + def test_specific_endpoint_load(self) -> None: + with open(TestOnlineEndpointYAML.MINIMAL_ENDPOINT, "r") as f: + target = yaml.safe_load(f) + endpoint = OnlineEndpoint.load(TestOnlineEndpointYAML.MINIMAL_ENDPOINT) + assert isinstance(endpoint, OnlineEndpoint) + assert endpoint.name == target["name"] + + def test_default_endpoint_load_to_online(self) -> None: + with open(TestOnlineEndpointYAML.MINIMAL_ENDPOINT, "r") as f: + target = yaml.safe_load(f) + endpoint = OnlineEndpoint.load(TestOnlineEndpointYAML.MINIMAL_ENDPOINT) + assert isinstance(endpoint, OnlineEndpoint) + assert endpoint.name == target["name"] + + def test_online_endpoint_to_rest_object_with_no_issue(self) -> None: + deployment = ManagedOnlineDeployment.load(TestOnlineEndpointYAML.MINIMAL_DEPLOYMENT) + deployment._to_rest_object("westus2") + + +@pytest.mark.unittest +class TestBatchEndpointYAML: + BATCH_ENDPOINT_WITH_BLUE = "tests/test_configs/endpoints/batch/batch_endpoint.yaml" + + def test_generic_endpoint_load_2(self) -> None: + with open(TestBatchEndpointYAML.BATCH_ENDPOINT_WITH_BLUE, "r") as f: + target = yaml.safe_load(f) + endpoint = BatchEndpoint.load(TestBatchEndpointYAML.BATCH_ENDPOINT_WITH_BLUE) + assert isinstance(endpoint, BatchEndpoint) + assert endpoint.name == target["name"].lower() + assert endpoint.description == target["description"] + assert endpoint.auth_mode == target["auth_mode"] + + def test_to_rest_batch_endpoint(self) -> None: + with open(TestBatchEndpointYAML.BATCH_ENDPOINT_WITH_BLUE, "r") as f: + target = yaml.safe_load(f) + endpoint = BatchEndpoint.load(TestBatchEndpointYAML.BATCH_ENDPOINT_WITH_BLUE) + rest_batch_endpoint = endpoint._to_rest_batch_endpoint("master") + + assert rest_batch_endpoint.tags + assert len(rest_batch_endpoint.tags) + assert rest_batch_endpoint.tags == target["tags"] + + def test_batch_endpoint_with_deployment_name_promoted_param_only(self) -> None: + endpoint = BatchEndpoint( + name="my-batch-endpoint", + description="this is a sample batch endpoint", + defaults={"deployment_name": "gg"}, + default_deployment_name="fff", + # badParam="I should not break", until it is fixed in SDK + tags={"foo": "bar"}, + ) + + assert endpoint.defaults["deployment_name"] == "gg" + + def test_batch_endpoint_with_deployment_name_promoted_param_and_main_param(self) -> None: + + endpoint = BatchEndpoint( + name="my-batch-endpoint", + description="this is a sample batch endpoint", + default_deployment_name="fff", + # badParam="I should not break", until it is fixed in SDK + tags={"foo": "bar"}, + ) + + assert endpoint.defaults["deployment_name"] == "fff" + + def test_batch_endpoint_with_deployment_no_defaults(self) -> None: + + endpoint = BatchEndpoint( + name="my-batch-endpoint", + description="this is a sample batch endpoint", + # badParam="I should not break", until it is fixed in SDK + tags={"foo": "bar"}, + ) + + assert endpoint.defaults is None diff --git a/sdk/ml/azure-ai-ml/tests/batch_services/__init__.py b/sdk/ml/azure-ai-ml/tests/batch_services/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/batch_services/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/batch_services/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_deployment.py b/sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_deployment.py new file mode 100644 index 000000000000..ff36f5b8e83b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_deployment.py @@ -0,0 +1,131 @@ +from pathlib import Path +from typing import Callable + +from unittest.mock import patch, Mock +from azure.ai.ml.entities._deployment.batch_deployment import BatchDeployment +import pytest + +from azure.core.polling import LROPoller +from azure.ai.ml._operations import ( + BatchDeploymentOperations, + WorkspaceOperations, +) +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.constants import ( + AzureMLResourceType, +) + +from pytest_mock import MockFixture + + +@pytest.fixture() +def mock_delete_poller() -> LROPoller: + poller = Mock(spec_set=LROPoller) + poller.result = lambda timeout: None + poller.done = lambda: True + yield poller + + +@pytest.fixture +def create_yaml_happy_path(tmp_path: Path) -> Path: + content = """ +name: blue +endpoint_name: batch-ept +description: description for my batch deployment +compute: "azureml:testCompute" +resources: + instance_count: 2 +""" + p = tmp_path / "create_happy_path_batch_deployment.yaml" + p.write_text(content) + return p + + +@pytest.fixture +def mock_workspace_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2021_10_01: Mock, + mock_machinelearning_client: Mock, +) -> WorkspaceOperations: + yield WorkspaceOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2021_10_01, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.fixture +def mock_local_endpoint_helper() -> Mock: + yield Mock() + + +@pytest.fixture +def mock_batch_deployment_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_05_01: Mock, + mock_aml_services_2020_09_01_dataplanepreview: Mock, + mock_machinelearning_client: Mock, +) -> BatchDeploymentOperations: + mock_machinelearning_client._operation_container.add(AzureMLResourceType.WORKSPACE, mock_workspace_operations) + + yield BatchDeploymentOperations( + operation_scope=mock_workspace_scope, + service_client_05_2022=mock_aml_services_2022_05_01, + service_client_09_2020_dataplanepreview=mock_aml_services_2020_09_01_dataplanepreview, + all_operations=mock_machinelearning_client._operation_container, + local_endpoint_helper=mock_local_endpoint_helper, + ) + + +@pytest.mark.unittest +class TestBatchDeploymentOperations: + def test_batch_deployment_create( + self, + mock_batch_deployment_operations: BatchDeploymentOperations, + rand_compute_name: Callable[[], str], + create_yaml_happy_path: str, + mocker: MockFixture, + ) -> None: + mocker.patch( + "azure.ai.ml._operations.batch_deployment_operations.BatchDeploymentOperations._get_workspace_location", + return_value="xxx", + ) + mock_create_or_update_batch_deployment = mocker.patch.object( + BatchDeploymentOperations, "begin_create_or_update", autospec=True + ) + batch_deployment = BatchDeployment.load(create_yaml_happy_path) + batch_deployment.name = rand_compute_name() + mock_batch_deployment_operations.begin_create_or_update(deployment=batch_deployment) + mock_create_or_update_batch_deployment.assert_called_once() + + def test_batch_list(self, mock_batch_deployment_operations: BatchDeploymentOperations) -> None: + mock_batch_deployment_operations.list(endpoint_name="batch-ept") + mock_batch_deployment_operations._batch_deployment.list.assert_called_once() + + def test_list_deployment_jobs( + self, mock_batch_deployment_operations: BatchDeploymentOperations, mocker: MockFixture + ) -> None: + mocker.patch( + "azure.ai.ml._operations.batch_deployment_operations._get_mfe_base_url_from_discovery_service", + return_value="https://somebatch-url.com", + ) + mockresponse = Mock() + mockresponse.text = '{"key": "value"}' + mockresponse.status_code = 200 + mocker.patch("requests.request", return_value=mockresponse) + + mock_batch_deployment_operations.list_jobs(endpoint_name="batch-ept", name="testdeployment") + mock_batch_deployment_operations._batch_job_deployment.list.assert_called_once() + + def test_delete_batch_endpoint( + self, + mock_batch_deployment_operations: BatchDeploymentOperations, + mock_aml_services_2022_05_01: Mock, + mocker: MockFixture, + randstr: Callable[[], str], + mock_delete_poller: LROPoller, + ) -> None: + random_name = randstr() + mock_aml_services_2022_05_01.batch_deployments.begin_delete.return_value = mock_delete_poller + mock_batch_deployment_operations.begin_delete(endpoint_name="batch-ept", name=random_name) + mock_batch_deployment_operations._batch_deployment.begin_delete.assert_called_once() diff --git a/sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_deployment_schema.py b/sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_deployment_schema.py new file mode 100644 index 000000000000..c6b7b42e398b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_deployment_schema.py @@ -0,0 +1,34 @@ +from pathlib import Path +import pytest +import yaml + +from azure.ai.ml._schema._deployment.batch.batch_deployment import BatchDeploymentSchema +from azure.ai.ml.constants import BASE_PATH_CONTEXT_KEY, BatchDeploymentOutputAction +from azure.ai.ml.entities._util import load_from_dict +from azure.ai.ml.entities import BatchDeployment + + +def load_batch_deployment_entity_from_yaml(path: str, context={}) -> BatchDeployment: + """batch deployment yaml -> batch deployment entity""" + with open(path, "r") as f: + cfg = yaml.safe_load(f) + context.update({BASE_PATH_CONTEXT_KEY: Path(path).parent}) + deployment = load_from_dict(BatchDeploymentSchema, cfg, context) + return deployment + + +@pytest.mark.unittest +class TestBatchDeploymentSchema: + def test_serialize_batch_deployment(self) -> None: + test_path = "./tests/test_configs/deployments/batch/batch_deployment_1.yaml" + batch_deployment_entity = load_batch_deployment_entity_from_yaml(test_path) + + assert batch_deployment_entity + assert batch_deployment_entity.environment == "AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" + assert batch_deployment_entity.compute == "cpu-cluster" + assert batch_deployment_entity.output_action == BatchDeploymentOutputAction.APPEND_ROW + assert batch_deployment_entity.output_file_name == "append_row.txt" + assert batch_deployment_entity.error_threshold == 10 + assert batch_deployment_entity.mini_batch_size == 5 + assert batch_deployment_entity.max_concurrency_per_instance == 5 + assert batch_deployment_entity.resources.instance_count == 2 diff --git a/sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_endpoints.py b/sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_endpoints.py new file mode 100644 index 000000000000..7e0a6ab060b4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/batch_services/unittests/test_batch_endpoints.py @@ -0,0 +1,327 @@ +import json +from pathlib import Path +from typing import Callable + +from requests import Response + +from unittest.mock import patch, Mock +from azure.ai.ml.entities._endpoint.batch_endpoint import BatchEndpoint +import pytest + +from azure.core.polling import LROPoller +from azure.core.exceptions import HttpResponseError, ClientAuthenticationError +from azure.ai.ml._operations import ( + CodeOperations, + DatastoreOperations, + BatchEndpointOperations, + EnvironmentOperations, + ModelOperations, + WorkspaceOperations, +) +from azure.identity import DefaultAzureCredential +from azure.ai.ml._restclient.v2022_05_01.models import ( + BatchEndpointData, + BatchEndpointDetails as RestBatchEndpoint, +) +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.constants import ( + AzureMLResourceType, + EndpointYamlFields, +) + +from pytest_mock import MockFixture +from azure.ai.ml.entities._assets import Data + + +@pytest.fixture() +def mock_delete_poller() -> LROPoller: + poller = Mock(spec_set=LROPoller) + poller.result = lambda timeout: None + poller.done = lambda: True + yield poller + + +@pytest.fixture +def create_yaml_happy_path(tmp_path: Path) -> Path: + content = """ +name: myBatchEndpoint2 # required +description: my sample batch endpoint +auth_mode: aad_token # required +""" + p = tmp_path / "create_happy_path.yaml" + p.write_text(content) + return p + + +@pytest.fixture +def mock_datastore_operations( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> CodeOperations: + yield DatastoreOperations( + operation_scope=mock_workspace_scope, + serviceclient_2022_05_01=mock_aml_services_2022_05_01, + ) + + +@pytest.fixture +def mock_model_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_05_01: Mock, + mock_datastore_operations: DatastoreOperations, +) -> ModelOperations: + yield ModelOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + datastore_operations=mock_datastore_operations, + ) + + +@pytest.fixture +def mock_code_assets_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2021_10_01: Mock, + mock_datastore_operations: DatastoreOperations, +) -> CodeOperations: + yield CodeOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2021_10_01, + datastore_operations=mock_datastore_operations, + ) + + +@pytest.fixture +def mock_environment_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_05_01: Mock, + mock_machinelearning_client: Mock, +) -> EnvironmentOperations: + yield EnvironmentOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.fixture +def mock_data_operations() -> Mock: + yield Mock() + + +@pytest.fixture +def mock_workspace_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2021_10_01: Mock, + mock_machinelearning_client: Mock, +) -> WorkspaceOperations: + yield WorkspaceOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2021_10_01, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.fixture +def mock_local_endpoint_helper() -> Mock: + yield Mock() + + +@pytest.fixture +def mock_batch_endpoint_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_05_01: Mock, + mock_aml_services_2020_09_01_dataplanepreview: Mock, + mock_machinelearning_client: Mock, + mock_environment_operations: Mock, + mock_model_operations: Mock, + mock_code_assets_operations: Mock, + mock_data_operations: Mock, + mock_workspace_operations: Mock, +) -> BatchEndpointOperations: + mock_machinelearning_client._operation_container.add(AzureMLResourceType.CODE, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.MODEL, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.ENVIRONMENT, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.DATA, mock_data_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.WORKSPACE, mock_workspace_operations) + + yield BatchEndpointOperations( + operation_scope=mock_workspace_scope, + service_client_05_2022=mock_aml_services_2022_05_01, + service_client_09_2020_dataplanepreview=mock_aml_services_2020_09_01_dataplanepreview, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.mark.unittest +class TestBatchEndpointOperations: + def test_batch_endpoint_create( + self, + mock_batch_endpoint_operations: BatchEndpointOperations, + rand_compute_name: Callable[[], str], + create_yaml_happy_path: str, + mocker: MockFixture, + ) -> None: + mocker.patch( + "azure.ai.ml._operations.batch_endpoint_operations.BatchEndpointOperations._get_workspace_location", + return_value="xxx", + ) + mock_create_or_update_batch_endpoint = mocker.patch.object( + BatchEndpointOperations, "begin_create_or_update", autospec=True + ) + mock_batch_endpoint_operations._credentials = Mock(spec_set=DefaultAzureCredential) + + online_endpoint = BatchEndpoint.load(create_yaml_happy_path) + online_endpoint.name = rand_compute_name() + mock_batch_endpoint_operations.begin_create_or_update(endpoint=online_endpoint) + mock_create_or_update_batch_endpoint.assert_called_once() + # mock_batch_endpoint_operations.create_or_update.assert_called_once() + + @pytest.mark.skip(reason="invoke is going to change in the next pr until then it is commented") + @patch.object(BatchEndpoint, "_from_rest_object") + def test_batch_invoke( + self, + mock_from_rest, + mock_batch_endpoint_operations: BatchEndpointOperations, + mocker: MockFixture, + randstr: Callable[[], str], + randint: Callable[[], int], + ) -> None: + + data_name = randstr() + data_version = randint() + endpoint_name = "myBatchEndpoint" + deployment_name = "myDeployment" + mock_batch_endpoint_operations._credentials = Mock(spec_set=DefaultAzureCredential) + + mockresponse = Mock() + mockresponse.text = '{"key": "value"}' + mockresponse.status_code = 200 + mocker.patch("requests.post", return_value=mockresponse) + mock_batch_endpoint_operations.invoke( + endpoint_name=endpoint_name, + input=(":".join((data_name, str(data_version)))), + ) + mock_batch_endpoint_operations._batch_operation.get.assert_called_once() + + # Invoke with output configs + params_override = [ + {EndpointYamlFields.BATCH_JOB_OUTPUT_PATH: "/tests/"}, + {EndpointYamlFields.BATCH_JOB_OUTPUT_DATSTORE: "azureml:bla"}, + ] + + mock_batch_endpoint_operations.invoke( + endpoint_name=endpoint_name, + deployment_name=deployment_name, + input=(":".join((data_name, str(data_version)))), + params_override=params_override, + ) + assert mock_batch_endpoint_operations._batch_operation.get.call_count == 2 + + @pytest.mark.skip(reason="invoke is going to change in the next pr until then it is commented") + @patch.object(BatchEndpoint, "_from_rest_object") + def test_batch_invoke_failed( + self, + mock_from_rest, + mock_batch_endpoint_operations: BatchEndpointOperations, + mocker: MockFixture, + randstr: Callable[[], str], + randint: Callable[[], int], + ) -> None: + data_name = randstr() + data_version = randint() + endpoint_name = "myBatchEndpoint" + deployment_name = "myDeployment" + mock_batch_endpoint_operations._credentials = Mock(spec_set=DefaultAzureCredential) + + def mock_failed_response(status_code, error_message): + mock_response = Response() + mock_response.status_code = status_code + mock_response.encoding = "utf-8" + data = {"error": {"code": "UserError", "message": error_message}} + mock_response._content = json.dumps(data).encode("utf-8") + return mock_response + + mocker.patch( + "azure.ai.ml._operations.batch_endpoint_operations.BatchEndpointOperations._validate_deployment_name", + return_value="xxxxxx", + ) + + response = mock_failed_response(401, "Authorization failed.") + mocker.patch("requests.post", return_value=response) + with pytest.raises(ClientAuthenticationError): + mock_batch_endpoint_operations.invoke( + endpoint_name=endpoint_name, + deployment_name=deployment_name, + input=(":".join((data_name, str(data_version)))), + ) + + error_message = "Bad bad request." + response = mock_failed_response(400, error_message) + mocker.patch("requests.post", return_value=response) + with pytest.raises(HttpResponseError, match="{}".format(error_message)): + mock_batch_endpoint_operations.invoke( + endpoint_name=endpoint_name, + deployment_name=deployment_name, + input=(":".join((data_name, str(data_version)))), + ) + + def test_batch_list(self, mock_batch_endpoint_operations: BatchEndpointOperations) -> None: + mock_batch_endpoint_operations.list() + mock_batch_endpoint_operations._batch_operation.list.assert_called_once() + + def test_list_endpoint_jobs( + self, mock_batch_endpoint_operations: BatchEndpointOperations, mocker: MockFixture + ) -> None: + mocker.patch( + "azure.ai.ml._operations.batch_endpoint_operations._get_mfe_base_url_from_discovery_service", + return_value="https://some-url.com", + ) + mockresponse = Mock() + mockresponse.text = '{"key": "value"}' + mockresponse.status_code = 200 + mocker.patch("requests.request", return_value=mockresponse) + + mock_batch_endpoint_operations.list_jobs(endpoint_name="ept") + mock_batch_endpoint_operations._batch_job_endpoint.list.assert_called_once() + + def test_list_deployment_jobs( + self, mock_batch_endpoint_operations: BatchEndpointOperations, mocker: MockFixture + ) -> None: + mocker.patch( + "azure.ai.ml._operations.batch_endpoint_operations._get_mfe_base_url_from_discovery_service", + return_value="https://some-url.com", + ) + mockresponse = Mock() + mockresponse.text = '{"key": "value"}' + mockresponse.status_code = 200 + mocker.patch("requests.request", return_value=mockresponse) + + mock_batch_endpoint_operations.list_jobs(endpoint_name="ept") + mock_batch_endpoint_operations._batch_job_endpoint.list.assert_called_once() + + def test_batch_get( + self, + mock_batch_endpoint_operations: BatchEndpointOperations, + randstr: Callable[[], str], + mock_aml_services_2022_05_01: Mock, + ) -> None: + random_name = randstr() + mock_aml_services_2022_05_01.batch_endpoints.get.return_value = BatchEndpointData( + name=random_name, + location="eastus", + properties=RestBatchEndpoint(auth_mode="AADToken"), + ) + mock_batch_endpoint_operations.get(name=random_name) + mock_batch_endpoint_operations._batch_operation.get.assert_called_once() + + def test_delete_batch_endpoint( + self, + mock_batch_endpoint_operations: BatchEndpointOperations, + mock_aml_services_2022_05_01: Mock, + mocker: MockFixture, + randstr: Callable[[], str], + mock_delete_poller: LROPoller, + ) -> None: + random_name = randstr() + mock_aml_services_2022_05_01.batch_endpoints.begin_delete.return_value = mock_delete_poller + mock_batch_endpoint_operations.begin_delete(name=random_name) + mock_batch_endpoint_operations._batch_operation.begin_delete.assert_called_once() diff --git a/sdk/ml/azure-ai-ml/tests/code_asset/__init__.py b/sdk/ml/azure-ai-ml/tests/code_asset/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/code_asset/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/code_asset/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/code_asset/unittests/test_code_operations.py b/sdk/ml/azure-ai-ml/tests/code_asset/unittests/test_code_operations.py new file mode 100644 index 000000000000..97d34045c71e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/code_asset/unittests/test_code_operations.py @@ -0,0 +1,76 @@ +import pytest +from unittest.mock import Mock, patch +from typing import Callable +from pathlib import Path + +from azure.ai.ml.entities._assets._artifacts.artifact import ArtifactStorageInfo +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml._operations import CodeOperations, DatastoreOperations +from azure.ai.ml.entities._assets import Code + + +@pytest.fixture() +def mock_datastore_operation( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> DatastoreOperations: + yield DatastoreOperations( + operation_scope=mock_workspace_scope, + serviceclient_2022_05_01=mock_aml_services_2022_05_01, + ) + + +@pytest.fixture +def mock_code_operation( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock, mock_datastore_operation: Mock +) -> CodeOperations: + yield CodeOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + datastore_operations=mock_datastore_operation, + ) + + +@pytest.mark.unittest +class TestCodeOperations: + def test_create( + self, + mock_code_operation: CodeOperations, + mock_workspace_scope: OperationScope, + randstr: Callable[[], str], + tmp_path: Path, + ) -> None: + code_name = randstr() + p = tmp_path / "code.yml" + code_path = tmp_path / "code_asset.txt" + code_path.write_text("hello world") + p.write_text( + f""" + name: {code_name} + path: code_asset.txt + version: 3""" + ) + with patch( + "azure.ai.ml._artifacts._artifact_utilities._upload_to_datastore", + return_value=ArtifactStorageInfo(code_name, "3", "path", "datastore_id", "containerName"), + ), patch( + "azure.ai.ml._operations.code_operations.Code._from_rest_object", + return_value=None, + ): + code = Code.load(path=p) + mock_code_operation.create_or_update(code) + mock_code_operation._version_operation.create_or_update.assert_called_once() + assert "version='3'" in str(mock_code_operation._version_operation.create_or_update.call_args) + + def test_get( + self, + randstr: Callable[[], str], + mock_code_operation: CodeOperations, + ) -> None: + mock_code_operation._container_operation.get.return_value = None + with patch( + "azure.ai.ml._operations.code_operations.Code._from_rest_object", + return_value=None, + ): + mock_code_operation.get(name=randstr(), version="1") + mock_code_operation._version_operation.get.assert_called_once() + assert mock_code_operation._container_operation.list.call_count == 0 diff --git a/sdk/ml/azure-ai-ml/tests/command_job/__init__.py b/sdk/ml/azure-ai-ml/tests/command_job/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/command_job/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/command_job/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/command_job/unittests/test_command_job_entity.py b/sdk/ml/azure-ai-ml/tests/command_job/unittests/test_command_job_entity.py new file mode 100644 index 000000000000..1098db8e8f46 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/command_job/unittests/test_command_job_entity.py @@ -0,0 +1,158 @@ +import json + +import pytest +from azure.ai.ml._restclient.v2022_02_01_preview.models import JobBaseData +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.entities import CommandJob, Environment, Job +from azure.ai.ml.entities._builders.command import Command +from azure.ai.ml.entities._job.job_limits import CommandJobLimits +from azure.ai.ml.entities._job.job_name_generator import generate_job_name +from azure.ai.ml.entities._job.resource_configuration import ResourceConfiguration +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml.entities._builders.command_func import command +from azure.ai.ml._restclient.v2022_02_01_preview.models import AmlToken +from azure.ai.ml import Input +from azure.ai.ml._ml_exceptions import ValidationException +from azure.ai.ml import MpiDistribution +from collections import OrderedDict + + +@pytest.mark.unittest +class TestCommandJobEntity: + def test_job_name_generator(self): + job1 = generate_job_name() + + name_parts = job1.split(sep="_") + len(name_parts) == 3 + len(name_parts[2]) == 10 + + job2 = generate_job_name() + assert job2 != job1 + + @pytest.mark.parametrize( + "file", + [ + "./tests/test_configs/command_job/rest_command_job_legacy1_command.json", + "./tests/test_configs/command_job/rest_command_job_legacy2_command.json", + "./tests/test_configs/command_job/rest_command_job_env_var_command.json", + ], + ) + def test_from_rest_legacy1_command(self, mock_workspace_scope: OperationScope, file: str): + with open(file, "r") as f: + resource = json.load(f) + rest_job = JobBaseData.deserialize(resource) + print(type(rest_job.properties)) + job = CommandJob._from_rest_object(rest_job) + assert job.command == "echo ${{inputs.filePath}} && ls ${{inputs.dirPath}}" + + def test_missing_input_raises(self): + with open("./tests/test_configs/command_job/rest_command_job_env_var_command.json", "r") as f: + resource = json.load(f) + rest_job = JobBaseData.deserialize(resource) + job = CommandJob._from_rest_object(rest_job) + job.command = "echo ${{inputs.missing_input}}" + with pytest.raises(ValidationException): + job._to_rest_object() + + def test_calling_command_job_constructor_with_promoted_properties(self): + basic_job = CommandJob( + display_name="hello-world-job", + command='echo "hello world"', + environment="AzureML-Minimal:1", + compute="cpu-cluster", + ) + assert basic_job.compute == "cpu-cluster" + + anon_env_job = CommandJob( + display_name="hello-world-job-anon-env", + command='echo "hello world"', + environment=Environment(image="python:latest"), + compute="cpu-cluster", + ) + assert anon_env_job.environment.image == "python:latest" + + distributed_job = CommandJob( + display_name="distributed-mpi-job", + experiment_name="tensorflow-mnist", + command="python train.py", + code="./src", + environment="AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu:14", + environment_variables={"FOO": "BAR"}, + compute="gpu-cluster", + ) + assert distributed_job.code == "./src" + + distributed_job.resources = ResourceConfiguration() + distributed_job.resources.instance_count = 4 + assert distributed_job.resources.instance_count == 4 + + def test_distribution(self) -> None: + node = command( + name="builder-command-job", + description="description", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + command="ls", + compute="testCompute", + distribution=MpiDistribution(process_count_per_instance=2), + ) + + distribution = {"distribution_type": "Mpi", "process_count_per_instance": 2} + assert OrderedDict(distribution) == OrderedDict(node._to_job().distribution.as_dict()) + + from_rest_job = Job._from_rest_object(node._to_job()._to_rest_object()) + + assert isinstance(from_rest_job.distribution, MpiDistribution) + assert from_rest_job.distribution.process_count_per_instance == 2 + + def test_command_job_builder_serialization(self) -> None: + + inputs = { + "uri": Input( + type=AssetTypes.URI_FILE, path="azureml://datastores/workspaceblobstore/paths/python/data.csv" + ), + "data_asset": Input(path="test-data:1"), + "local_data": Input(path="./tests/test_configs/data/"), + } + + node = command( + name="builder-command-job", + description="description", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + inputs=inputs, + command="echo ${{inputs.uri}} ${{inputs.data_asset}} ${{inputs.local_data}}", + display_name="builder-command-job-display", + compute="testCompute", + experiment_name="mfe-test1-dataset", + identity=AmlToken(), + tags={"tag1": "value1"}, + properties={"prop1": "value1"}, + distribution=MpiDistribution(), + environment_variables={"EVN1": "VAR1"}, + outputs={"best_model": {}}, + instance_count=2, + instance_type="STANDARD_BLA", + timeout=300, + code="./", + ) + + expected_job = CommandJob( + name="builder-command-job", + description="description", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + inputs=inputs, + command="echo ${{inputs.uri}} ${{inputs.data_asset}} ${{inputs.local_data}}", + display_name="builder-command-job-display", + compute="testCompute", + experiment_name="mfe-test1-dataset", + identity=AmlToken(), + tags={"tag1": "value1"}, + properties={"prop1": "value1"}, + distribution=MpiDistribution(), + environment_variables={"EVN1": "VAR1"}, + outputs={"best_model": {}}, + limits=CommandJobLimits(timeout=300), + resources=ResourceConfiguration(instance_count=2, instance_type="STANDARD_BLA"), + code="./", + ) + + assert expected_job._to_dict() == node._to_job()._to_dict() diff --git a/sdk/ml/azure-ai-ml/tests/command_job/unittests/test_command_job_schema.py b/sdk/ml/azure-ai-ml/tests/command_job/unittests/test_command_job_schema.py new file mode 100644 index 000000000000..417ff0f32b56 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/command_job/unittests/test_command_job_schema.py @@ -0,0 +1,181 @@ +from azure.ai.ml._schema import CommandJobSchema +from azure.ai.ml._utils.utils import load_yaml, is_valid_uuid +from azure.ai.ml.constants import BASE_PATH_CONTEXT_KEY +from azure.ai.ml.entities import CommandJob +from azure.ai.ml.entities._inputs_outputs import Input +from pathlib import Path +from azure.ai.ml.entities import Job +from marshmallow.exceptions import ValidationError +import yaml +import pytest + + +@pytest.mark.unittest +class TestCommandJob: + def test_deserialize(self): + test_path = "./tests/test_configs/command_job/command_job_test.yml" + with open("./tests/test_configs/command_job/command_job_rest.yml", "r") as f: + target = yaml.safe_load(f) + with open(test_path, "r") as f: + cfg = yaml.safe_load(f) + context = {BASE_PATH_CONTEXT_KEY: Path(test_path).parent} + schema = CommandJobSchema(context=context) + internal_representation: CommandJob = CommandJob(**schema.load(cfg)) + source = internal_representation._to_rest_object() + assert source.name == target["name"] + assert source.properties.command == target["properties"]["command"] + + def test_distributions_roundtrip(self): + paths = [ + "./tests/test_configs/command_job/dist_job_1.yml", + "./tests/test_configs/command_job/dist_job_2.yml", + "./tests/test_configs/command_job/dist_job_3.yml", + ] + context = {BASE_PATH_CONTEXT_KEY: Path(paths[0]).parent} + schema = CommandJobSchema(context=context) + cfg = None + + for path in paths: + with open(path, "r") as f: + cfg = yaml.safe_load(f) + internal_representation: CommandJob = CommandJob(**schema.load(cfg)) + rest_intermediate = internal_representation._to_rest_object() + internal_obj = CommandJob._from_rest_object(rest_intermediate) + internal_obj._id = "test-arm-id" + reconstructed_yaml = schema.dump(internal_obj) + assert reconstructed_yaml["distribution"]["type"].lower() == cfg["distribution"]["type"].lower() + reconstructed_yaml["distribution"].pop("type") + cfg["distribution"].pop("type") + assert reconstructed_yaml["distribution"] == cfg["distribution"] + reconstructed_yaml["resources"].pop("properties") # pop out the empty properties dict + assert reconstructed_yaml["resources"] == cfg["resources"] + assert reconstructed_yaml["limits"] == cfg["limits"] + + def test_invalid_distribution_config(self): + path = "./tests/test_configs/command_job/dist_job_bad.yml" + context = {BASE_PATH_CONTEXT_KEY: Path(path).parent} + schema = CommandJobSchema(context=context) + with open(path, "r") as f: + cfg = yaml.safe_load(f) + with pytest.raises(ValidationError): + CommandJob(**schema.load(cfg)) + + def test_deserialize_inputs(self): + test_path = "./tests/test_configs/command_job/command_job_inputs_test.yml" + with open("./tests/test_configs/command_job/command_job_inputs_rest.yml", "r") as f: + target = yaml.safe_load(f) + with open(test_path, "r") as f: + cfg = yaml.safe_load(f) + context = {BASE_PATH_CONTEXT_KEY: Path(test_path).parent} + schema = CommandJobSchema(context=context) + internal_representation: CommandJob = CommandJob(**schema.load(cfg)) + source = internal_representation._to_rest_object() + assert source.properties.inputs["test1"].uri == target["properties"]["inputs"]["test1"]["uri"] + + def test_deserialize_inputs_dataset(self): + test_path = "./tests/test_configs/command_job/command_job_inputs_dataset_test.yml" + with open("./tests/test_configs/command_job/command_job_inputs_dataset_test.yml", "r") as f: + target = yaml.safe_load(f) + with open(test_path, "r") as f: + cfg = yaml.safe_load(f) + context = {BASE_PATH_CONTEXT_KEY: Path(test_path).parent} + schema = CommandJobSchema(context=context) + internal_representation: CommandJob = CommandJob(**schema.load(cfg)) + source = internal_representation._to_rest_object() + assert source.properties.inputs["test1"].uri == target["inputs"]["test1"]["path"] + + def test_anonymous_assets(self): + test_path = "./tests/test_configs/command_job/inlined_assets.yaml" + with open(test_path, "r") as f: + cfg = yaml.safe_load(f) + + # Grab original names from yaml, they should be dropped on deserialize + envName = cfg["environment"]["name"] + code = cfg["code"] + input_path = cfg["inputs"]["test1"]["path"] + + internal_representation: CommandJob = Job.load(path=test_path) + + # anonymous environments are created with name CliV2AnonymousEnvironment and a guid as the version + assert internal_representation.environment.name != envName + assert internal_representation.environment.name == "CliV2AnonymousEnvironment" + assert internal_representation.environment._is_anonymous + assert internal_representation.environment.version == "559c904a18d86cc54f2f6a9d6ac26c0d" + + assert internal_representation.inputs["test1"].path == input_path + # Validate default dataset is mounted + assert internal_representation.inputs["test1"].mode == "ro_mount" + assert internal_representation.code == code + + def test_deserialize_amltoken_identity(self): + test_path = "./tests/test_configs/command_job/command_job_test_amltoken_identity.yml" + with open("./tests/test_configs/command_job/command_job_rest_amltoken_identity.yml", "r") as f: + target = yaml.safe_load(f) + with open(test_path, "r") as f: + cfg = yaml.safe_load(f) + context = {BASE_PATH_CONTEXT_KEY: Path(test_path).parent} + schema = CommandJobSchema(context=context) + internal_representation: CommandJob = CommandJob(**schema.load(cfg)) + source = internal_representation._to_rest_object() + assert source.properties.identity.identity_type == target["properties"]["identity"]["identity_type"] + + def test_deserialize_msi_identity(self): + test_path = "./tests/test_configs/command_job/command_job_test_msi_identity.yml" + with open("./tests/test_configs/command_job/command_job_rest_msi_identity.yml", "r") as f: + target = yaml.safe_load(f) + with open(test_path, "r") as f: + cfg = yaml.safe_load(f) + context = {BASE_PATH_CONTEXT_KEY: Path(test_path).parent} + schema = CommandJobSchema(context=context) + internal_representation: CommandJob = CommandJob(**schema.load(cfg)) + source = internal_representation._to_rest_object() + assert source.properties.identity.identity_type == target["properties"]["identity"]["identity_type"] + assert source.properties.identity.client_id == target["properties"]["identity"]["client_id"] + + def test_file_environments(self): + test_path = "./tests/test_configs/command_job/command_job_test_yaml_ref.yml" + with open(test_path, "r") as f: + cfg = yaml.safe_load(f) + env_path = "./tests/test_configs/environment/environment_conda.yml" + with open(env_path, "r") as f: + env = yaml.safe_load(f) + + conda_text = load_yaml(Path("./tests/test_configs/environment/environment_files/environment.yml")) + + envName = env["name"] + envImage = env["image"] + + context = {BASE_PATH_CONTEXT_KEY: Path(test_path).parent} + schema = CommandJobSchema(context=context) + internal_representation: CommandJob = CommandJob(**schema.load(cfg)) + # inline envs should ignore set name, and be anonymous + assert internal_representation.environment.name != envName + # referenced yaml should be loaded + assert internal_representation.environment.image == envImage + # path referenced within child yaml should be resolved relative to child yaml + assert internal_representation.environment.conda_file == conda_text + + def test_input_is_loaded_from_dictionary(self): + command_job = CommandJob( + code="./src", + command="python train.py --ss {search_space.ss}", + inputs={ + "input1": { + "type": "uri_file", + "path": "../testdata.txt", + } + }, + compute="local", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + ) + assert isinstance(command_job.inputs["input1"], Input) + + def test_input_data_path_resolution(self): + test_path = "./tests/test_configs/command_job/command_job_relative_inputs_test.yml" + with open(test_path, "r") as f: + cfg = yaml.safe_load(f) + context = {BASE_PATH_CONTEXT_KEY: Path(test_path).parent} + schema = CommandJobSchema(context=context) + internal_representation: CommandJob = CommandJob(**schema.load(cfg)) + + assert internal_representation.inputs["test1"].path == "../python/sample1.csv" diff --git a/sdk/ml/azure-ai-ml/tests/component/__init__.py b/sdk/ml/azure-ai-ml/tests/component/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/component/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_command_component_entity.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_command_component_entity.py new file mode 100644 index 000000000000..e3e6f3af3ef2 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_command_component_entity.py @@ -0,0 +1,305 @@ +import pydash +import pytest +from unittest.mock import patch +from io import StringIO + +from azure.ai.ml import command, MpiDistribution, dsl, Input, Output +from azure.ai.ml._restclient.v2022_05_01.models import TensorFlow +from azure.ai.ml._utils.utils import load_yaml +from azure.ai.ml.entities import ( + Component, + CommandComponent, + ResourceConfiguration, + CommandJobLimits, + load_component, +) +from azure.ai.ml.sweep import Choice +from azure.ai.ml.entities._job.pipeline._exceptions import UnexpectedKeywordError +from azure.ai.ml.entities._job.pipeline._io import PipelineInput +from azure.ai.ml.entities._builders import Command, Sweep + + +@pytest.mark.unittest +class TestCommandComponentEntity: + def test_component_load(self): + # code is specified in yaml, value is respected + component_yaml = "./tests/test_configs/components/basic_component_code_local_path.yml" + command_component = Component.load( + path=component_yaml, + ) + assert command_component.code == "./helloworld_components_with_env" + component_yaml = "./tests/test_configs/components/basic_component_code_arm_id.yml" + command_component = Component.load( + path=component_yaml, + ) + expected_code = ( + "/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/" + "test-rg-centraluseuap-v2-2021W10/providers/Microsoft.MachineLearningServices/" + "workspaces/sdk_vnext_cli/codes/e736692c-8542-11eb-b746-6c2b59f8af4d/versions/1" + ) + assert command_component.code == expected_code + + def test_command_component_to_dict(self): + # Test optional params exists in component dict + yaml_path = "./tests/test_configs/components/basic_component_code_arm_id.yml" + yaml_dict = load_yaml(yaml_path) + yaml_dict["mock_option_param"] = {"mock_key": "mock_val"} + command_component = CommandComponent._load(data=yaml_dict, yaml_path=yaml_path) + assert command_component._other_parameter.get("mock_option_param") == yaml_dict["mock_option_param"] + + yaml_dict["version"] = str(yaml_dict["version"]) + yaml_dict["inputs"] = {} + component_dict = command_component._to_dict() + component_dict.pop("is_deterministic") + assert yaml_dict == component_dict + + def test_command_component_entity(self): + code = ( + "/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/" + "test-rg-centraluseuap-v2-2021W10/providers/Microsoft.MachineLearningServices/" + "workspaces/sdk_vnext_cli/codes/e736692c-8542-11eb-b746-6c2b59f8af4d/versions/1" + ) + component = CommandComponent( + name="sample_command_component_basic", + display_name="CommandComponentBasic", + description="This is the basic command component", + tags={"tag": "tagvalue", "owner": "sdkteam"}, + version="1", + outputs={"component_out_path": {"type": "uri_folder"}}, + command="echo Hello World", + code=code, + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + ) + component_dict = component._to_rest_object().as_dict() + component_dict = pydash.omit(component_dict, "properties.component_spec.$schema") + + yaml_path = "./tests/test_configs/components/basic_component_code_arm_id.yml" + yaml_component = Component.load(path=yaml_path) + yaml_component_dict = yaml_component._to_rest_object().as_dict() + yaml_component_dict = pydash.omit(yaml_component_dict, "properties.component_spec.$schema") + + assert component_dict == yaml_component_dict + + def test_command_component_instance_count(self): + component = CommandComponent( + name="microsoftsamples_command_component_tensor_flow", + display_name="CommandComponentTensorFlow", + description="This is the TensorFlow command component", + tags={"tag": "tagvalue", "owner": "sdkteam"}, + inputs={ + "component_in_number": {"description": "A number", "type": "number", "default": 10.99}, + "component_in_path": {"description": "A path", "type": "uri_folder"}, + }, + outputs={"component_out_path": {"type": "uri_folder"}}, + command="echo Hello World & echo ${{inputs.component_in_number}} & echo ${{inputs.component_in_path}} " + "& echo ${{outputs.component_out_path}}", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + distribution=TensorFlow( + parameter_server_count=1, + worker_count=2, + # No affect because TensorFlow object does not allow extra fields + added_property=7, + ), + instance_count=2, + ) + component_dict = component._to_rest_object().as_dict() + + yaml_path = "./tests/test_configs/components/helloworld_component_tensorflow.yml" + yaml_component = Component.load(path=yaml_path) + yaml_component_dict = yaml_component._to_rest_object().as_dict() + + component_dict = pydash.omit( + component_dict, + "properties.component_spec.$schema", + "properties.component_spec.distribution.added_property", + "properties.component_spec.resources.properties", + ) + yaml_component_dict = pydash.omit( + yaml_component_dict, + "properties.component_spec.$schema", + "properties.component_spec.distribution.added_property", + "properties.component_spec.resources.properties", + ) + assert component_dict == yaml_component_dict + + def test_command_component_code(self): + component = CommandComponent( + name="SampleCommandComponentBasic", + display_name="CommandComponentBasic", + description="This is the basic command component", + version="1", + tags={"tag": "tagvalue", "owner": "sdkteam"}, + outputs={"component_out_path": {"type": "path"}}, + command="echo Hello World", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + code="./helloworld_components_with_env", + ) + + yaml_path = "./tests/test_configs/components/basic_component_code_local_path.yml" + yaml_component = Component.load(path=yaml_path) + assert component.code == yaml_component.code + + def test_command_component_version_as_a_function(self): + expected_rest_component = { + "componentId": "fake_component", + "computeId": None, + "display_name": None, + "distribution": None, + "environment_variables": {}, + "inputs": {}, + "limits": None, + "name": None, + "outputs": {}, + "resources": None, + "tags": {}, + } + + yaml_path = "./tests/test_configs/components/basic_component_code_local_path.yml" + yaml_component_version = Component.load(path=yaml_path) + assert isinstance(yaml_component_version, CommandComponent) + + yaml_component = yaml_component_version() + assert isinstance(yaml_component, Command) + + yaml_component._component = "fake_component" + rest_yaml_component = yaml_component._to_rest_object() + assert rest_yaml_component == expected_rest_component + + # assert positional args is not supported + with pytest.raises(TypeError) as error_info: + yaml_component_version(1) + assert "[component] CommandComponentBasic() takes 0 positional arguments but 1 was given" in str(error_info) + + # unknown kw arg + with pytest.raises(UnexpectedKeywordError) as error_info: + yaml_component_version(unknown=1) + assert "[component] CommandComponentBasic() got an unexpected keyword argument 'unknown'." in str(error_info) + + def test_command_component_version_as_a_function_with_inputs(self): + expected_rest_component = { + "componentId": "fake_component", + "computeId": None, + "display_name": None, + "distribution": None, + "environment_variables": {}, + "inputs": { + "component_in_number": {"job_input_type": "Literal", "value": "10"}, + "component_in_path": {"job_input_type": "Literal", "value": "${{parent.inputs.pipeline_input}}"}, + }, + "limits": None, + "name": None, + "outputs": {}, + "resources": None, + "tags": {}, + } + + yaml_path = "./tests/test_configs/components/helloworld_component.yml" + yaml_component_version = Component.load(path=yaml_path) + pipeline_input = PipelineInput(name="pipeline_input", owner="pipeline", meta=None) + yaml_component = yaml_component_version(component_in_number=10, component_in_path=pipeline_input) + + yaml_component._component = "fake_component" + rest_yaml_component = yaml_component._to_rest_object() + print(rest_yaml_component) + assert expected_rest_component == rest_yaml_component + + def test_command_component_help_function(self): + download_unzip_component = CommandComponent( + name="download_and_unzip", + version="0.0.1", + # this component has no code, just a simple unzip command + command="curl -o local_archive.zip ${{inputs.url}} && " + "unzip local_archive.zip -d ${{outputs.extracted_data}}", + # I/O specifications, each using a specific key and type + inputs={ + # 'url' is the key of this input string + "url": {"type": "string"} + }, + outputs={ + # 'extracted_data' will be the key to link this output to other steps in the pipeline + "extracted_data": {"type": "path"} + }, + # we're using a curated environment + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:9", + ) + basic_component = load_component( + yaml_file="./tests/test_configs/components/basic_component_code_local_path.yml" + ) + sweep_component = load_component(yaml_file="./tests/test_configs/components/helloworld_component_for_sweep.yml") + + with patch("sys.stdout", new=StringIO()) as std_out: + help(download_unzip_component._func) + help(basic_component._func) + help(sweep_component._func) + assert "name: download_and_unzip" in std_out.getvalue() + assert "name: sample_command_component_basic" in std_out.getvalue() + assert "name: microsoftsamples_command_component_for_sweep" in std_out.getvalue() + + with patch("sys.stdout", new=StringIO()) as std_out: + print(basic_component) + print(download_unzip_component) + print(sweep_component) + assert ( + "name: sample_command_component_basic\nversion: '1'\ndisplay_name: CommandComponentBasic\n" + in std_out.getvalue() + ) + assert ( + "name: download_and_unzip\nversion: 0.0.1\ntype: command\ninputs:\n url:\n type: string\n" + in std_out.getvalue() + ) + assert "name: microsoftsamples_command_component_for_sweep\nversion: 0.0.1\n" in std_out.getvalue() + + def test_command_help_function(self): + test_command = command( + name="my-job", + display_name="my-fancy-job", + description="This is a fancy job", + tags=dict(), + command="python train.py --input-data ${{inputs.input_data}} --lr ${{inputs.learning_rate}}", + code="./src", + compute="cpu-cluster", + environment="my-env:1", + distribution=MpiDistribution(process_count_per_instance=4), + environment_variables=dict(foo="bar"), + # Customers can still do this: + resources=ResourceConfiguration(instance_count=2, instance_type="STANDARD_D2"), + limits=CommandJobLimits(timeout=300), + inputs={ + "float": 0.01, + "integer": 1, + "string": "str", + "boolean": False, + "uri_folder": Input(type="uri_folder", path="https://my-blob/path/to/data", mode="ro_mount"), + "uri_file": dict(type="uri_file", path="https://my-blob/path/to/data", mode="download"), + }, + outputs={"my_model": Output(type="mlflow_model", mode="rw_mount")}, + ) + + with patch("sys.stdout", new=StringIO()) as std_out: + print(test_command) + outstr = std_out.getvalue() + assert ( + "outputs:\n my_model:\n mode: rw_mount\n type: mlflow_model\ncommand: python train.py --input-data ${{inputs.input_data}} --lr ${{inputs.learning_rate}}\n" + in outstr + ) + + def test_sweep_help_function(self): + yaml_file = "./tests/test_configs/components/helloworld_component.yml" + + component_to_sweep: CommandComponent = load_component(yaml_file=yaml_file) + cmd_node1: Command = component_to_sweep( + component_in_number=Choice([2, 3, 4, 5]), component_in_path=Input(path="/a/path/on/ds") + ) + + sweep_job1: Sweep = cmd_node1.sweep( + primary_metric="AUC", # primary_metric, + goal="maximize", + sampling_algorithm="random", + ) + sweep_job1.set_limits(max_total_trials=10) # max_total_trials + with patch("sys.stdout", new=StringIO()) as std_out: + print(sweep_job1) + assert ( + "name: microsoftsamples_command_component_basic\n version: 0.0.1\n display_name: CommandComponentBasi" + in std_out.getvalue() + ) diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_component_operations.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_component_operations.py new file mode 100644 index 000000000000..f233f5c49619 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_component_operations.py @@ -0,0 +1,146 @@ +import pytest +from typing import Callable +from unittest.mock import Mock, patch + +from azure.ai.ml.entities._component.command_component import CommandComponent +from azure.ai.ml._operations import ComponentOperations +from azure.ai.ml._scope_dependent_operations import OperationScope + +from azure.ai.ml._restclient.v2022_05_01.models import ( + ComponentContainerData, + ComponentContainerDetails, + ComponentVersionData, + ComponentVersionDetails, +) + + +@pytest.fixture +def mock_component_operation( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock, mock_machinelearning_client: Mock +) -> ComponentOperations: + yield ComponentOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.mark.unittest +class TestComponentOperation: + def test_create(self, mock_component_operation: ComponentOperations, randstr: Callable[[], str]) -> None: + component = CommandComponent( + name=randstr(), version="1", environment="azureml:AzureML-Minimal:1", command="echo hello" + ) + + with patch.object(ComponentOperations, "_upload_dependencies") as mock_thing, patch( + "azure.ai.ml._operations.component_operations.Component._from_rest_object", + return_value=CommandComponent(), + ): + mock_component_operation.create_or_update(component) + mock_thing.assert_called_once() + + mock_component_operation._version_operation.create_or_update.assert_called_once_with( + name=component.name, + version="1", + body=component._to_rest_object(), + resource_group_name=mock_component_operation._operation_scope.resource_group_name, + workspace_name=mock_component_operation._workspace_name, + ) + + def test_create_autoincrement( + self, mock_component_operation: ComponentOperations, randstr: Callable[[], str] + ) -> None: + component = CommandComponent( + name=randstr(), version=None, environment="azureml:AzureML-Minimal:1", command="echo hello" + ) + assert component._auto_increment_version + with patch.object(ComponentOperations, "_upload_dependencies") as mock_thing, patch( + "azure.ai.ml._operations.component_operations.Component._from_rest_object", return_value=component + ): + mock_component_operation.create_or_update(component) + mock_thing.assert_called_once() + + mock_component_operation._container_operation.get.assert_called_once_with( + name=component.name, + resource_group_name=mock_component_operation._operation_scope.resource_group_name, + workspace_name=mock_component_operation._operation_scope.workspace_name, + ) + mock_component_operation._version_operation.create_or_update.assert_called_once_with( + name=component.name, + version=mock_component_operation._container_operation.get().properties.next_version, + body=component._to_rest_object(), + resource_group_name=mock_component_operation._operation_scope.resource_group_name, + workspace_name=mock_component_operation._operation_scope.workspace_name, + ) + + def test_list(self, mock_component_operation: ComponentOperations) -> None: + mock_component_operation.list(name="mock") + mock_component_operation._version_operation.list.assert_called_once() + mock_component_operation.list() + mock_component_operation._container_operation.list.assert_called_once() + + def test_get(self, mock_component_operation: ComponentOperations) -> None: + with patch("azure.ai.ml._operations.component_operations.Component") as mock_component_entity: + mock_component_operation.get("mock_component", "1") + + mock_component_operation._version_operation.get.assert_called_once() + create_call_args_str = str(mock_component_operation._version_operation.get.call_args) + assert "name='mock_component'" in create_call_args_str + assert "version='1'" in create_call_args_str + mock_component_entity._from_rest_object.assert_called_once() + + def test_archive_version(self, mock_component_operation: ComponentOperations, randstr: Callable[[], str]): + name = randstr() + component = Mock(ComponentVersionData(properties=Mock(ComponentVersionDetails()))) + version = "1" + mock_component_operation._version_operation.get.return_value = component + mock_component_operation.archive(name=name, version=version) + + mock_component_operation._version_operation.create_or_update.assert_called_with( + name=name, + version=version, + workspace_name=mock_component_operation._workspace_name, + body=component, + resource_group_name=mock_component_operation._resource_group_name, + ) + + def test_archive_container(self, mock_component_operation: ComponentOperations, randstr: Callable[[], str]): + name = randstr() + component = Mock(ComponentContainerData(properties=Mock(ComponentContainerDetails()))) + mock_component_operation._container_operation.get.return_value = component + mock_component_operation.archive(name=name) + + mock_component_operation._container_operation.create_or_update.assert_called_with( + name=name, + workspace_name=mock_component_operation._workspace_name, + body=component, + resource_group_name=mock_component_operation._resource_group_name, + ) + + def test_restore_version(self, mock_component_operation: ComponentOperations, randstr: Callable[[], str]): + name = randstr() + component = Mock(ComponentVersionData(properties=Mock(ComponentVersionDetails()))) + version = "1" + mock_component_operation._version_operation.get.return_value = component + mock_component_operation.restore(name=name, version=version) + + mock_component_operation._version_operation.create_or_update.assert_called_with( + name=name, + version=version, + workspace_name=mock_component_operation._workspace_name, + body=component, + resource_group_name=mock_component_operation._resource_group_name, + ) + + def test_restore_container(self, mock_component_operation: ComponentOperations, randstr: Callable[[], str]): + name = randstr() + component = Mock(ComponentContainerData(properties=Mock(ComponentContainerDetails()))) + mock_component_operation._container_operation.get.return_value = component + mock_component_operation.restore(name=name) + + mock_component_operation._container_operation.create_or_update.assert_called_with( + name=name, + workspace_name=mock_component_operation._workspace_name, + body=component, + resource_group_name=mock_component_operation._resource_group_name, + ) diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_component_schema.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_component_schema.py new file mode 100644 index 000000000000..4aefaec4f946 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_component_schema.py @@ -0,0 +1,354 @@ +from unittest import mock + +import json +import pydash +import yaml +from pathlib import Path +import pytest +from marshmallow import ValidationError + +from azure.ai.ml import MLClient +from azure.ai.ml._operations.component_operations import ( + COMPONENT_PLACEHOLDER, + COMPONENT_CODE_PLACEHOLDER, + get_anonymous_component_name, +) +from azure.ai.ml._restclient.v2022_05_01.models import ComponentVersionData +from azure.ai.ml._schema.component.command_component import CommandComponentSchema +from azure.ai.ml._utils._arm_id_utils import PROVIDER_RESOURCE_ID_WITH_VERSION +from azure.ai.ml.constants import ( + BASE_PATH_CONTEXT_KEY, + PARAMS_OVERRIDE_KEY, + AssetTypes, + InputOutputModes, + LegacyAssetTypes, +) +from azure.ai.ml.entities import CommandComponent +from azure.ai.ml.entities._assets import Code +from azure.ai.ml._ml_exceptions import ValidationException, ErrorCategory, ErrorTarget + +components_dir = Path("./tests/test_configs/components/") + + +def load_component_entity_from_yaml( + path: str, + mock_machinelearning_client: MLClient, + context={}, + is_anonymous=False, + fields_to_override=None, +) -> CommandComponent: + """Component yaml -> component entity -> rest component object -> component entity""" + with open(path, "r") as f: + cfg = yaml.safe_load(f) + context.update({BASE_PATH_CONTEXT_KEY: Path(path).parent}) + schema = CommandComponentSchema(context=context) + data = dict(schema.load(cfg)) + if fields_to_override is None: + fields_to_override = {} + data.update(fields_to_override) + if is_anonymous is True: + data["name"] = None + data["version"] = None + internal_representation: CommandComponent = CommandComponent(**data) + + def mock_get_asset_arm_id(*args, **kwargs): + if len(args) > 0: + arg = args[0] + if isinstance(arg, str): + return arg + elif isinstance(arg, Code): + if COMPONENT_PLACEHOLDER in str(arg.path): + # for generated code, return content in it + with open(arg.path) as f: + return f.read() + return f"{str(arg.path)}:1" + return "xxx" + + # change internal assets into arm id + with mock.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + side_effect=mock_get_asset_arm_id, + ): + mock_machinelearning_client.components._upload_dependencies(internal_representation) + rest_component = internal_representation._to_rest_object() + # set arm id before deserialize + mock_workspace_scope = mock_machinelearning_client._operation_scope + rest_component.id = PROVIDER_RESOURCE_ID_WITH_VERSION.format( + mock_workspace_scope.subscription_id, + mock_workspace_scope.resource_group_name, + mock_workspace_scope.workspace_name, + "components", + internal_representation.name, + "1", + ) + internal_component = CommandComponent._from_rest_object(rest_component) + return internal_component + + +def load_component_entity_from_rest_json(path) -> CommandComponent: + """Rest component json -> rest component object -> component entity""" + with open(path, "r") as f: + target = yaml.safe_load(f) + rest_obj = ComponentVersionData.from_dict(json.loads(json.dumps(target))) + internal_component = CommandComponent._from_rest_object(rest_obj) + return internal_component + + +@pytest.mark.unittest +class TestCommandComponent: + def test_serialize_deserialize_basic(self, mock_machinelearning_client: MLClient): + test_path = "./tests/test_configs/components/helloworld_component.yml" + component_entity = load_component_entity_from_yaml(test_path, mock_machinelearning_client) + rest_path = "./tests/test_configs/components/helloworld_component_rest.json" + target_entity = load_component_entity_from_rest_json(rest_path) + + # backend add optional=False and port name to inputs/outputs so we add it here manually + for name, input in component_entity.inputs.items(): + input["optional"] = str(input.get("optional", False)) + input["name"] = name + for name, output in component_entity.outputs.items(): + output["name"] = name + # skip check code and environment + component_dict = component_entity._to_dict() + assert component_dict["id"] + component_dict = pydash.omit(dict(component_dict), "command", "environment", "code", "id") + expected_dict = pydash.omit( + dict(target_entity._to_dict()), + "command", + "environment", + "code", + "creation_context", + "id", + ) + assert component_dict == expected_dict + assert component_entity.code + assert component_entity.environment == "AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" + + def test_serialize_deserialize_environment_no_version(self, mock_machinelearning_client: MLClient): + test_path = "./tests/test_configs/components/helloworld_component_alt1.yml" + component_entity = load_component_entity_from_yaml(test_path, mock_machinelearning_client) + + assert component_entity.environment == "AzureML-sklearn-0.24-ubuntu18.04-py37-cpu" + + def test_serialize_deserialize_input_types(self, mock_machinelearning_client: MLClient): + test_path = "./tests/test_configs/components/input_types_component.yml" + component_entity = load_component_entity_from_yaml(test_path, mock_machinelearning_client) + rest_path = "./tests/test_configs/components/input_types_component_rest.json" + target_entity = load_component_entity_from_rest_json(rest_path) + + # backend add optional=False and port name to inputs/outputs so we add it here manually + for name, input in component_entity.inputs.items(): + input["optional"] = "False" + input["name"] = name + for name, output in component_entity.outputs.items(): + output["name"] = name + # skip check code and environment + component_dict = pydash.omit(dict(component_entity._to_dict()), "command", "environment", "code", "id") + expected_dict = pydash.omit( + dict(target_entity._to_dict()), + "command", + "environment", + "creation_context", + "code", + "id", + ) + assert component_dict == expected_dict + + def test_override_params(self, mock_machinelearning_client: MLClient): + test_path = "./tests/test_configs/components/helloworld_component.yml" + context = { + PARAMS_OVERRIDE_KEY: [ + { + "inputs.component_in_path": { + "description": "override component_in_path", + "type": "uri_folder", + } + } + ] + } + component_entity = load_component_entity_from_yaml(test_path, mock_machinelearning_client, context) + assert component_entity.inputs == { + "component_in_number": { + "type": "number", + "default": "10.99", + "description": "A number", + "optional": True, + }, + "component_in_path": { + "type": "uri_folder", + "description": "override component_in_path", + }, + } + + override_inputs = { + "component_in_path": {"type": "uri_folder"}, + "component_in_number": {"max": "1.0", "min": "0.0", "type": "number"}, + "override_param3": {"optional": True, "type": "integer"}, + "override_param4": {"default": False, "type": "boolean"}, + "override_param5": {"default": "str", "type": "string"}, + "override_param6": {"enum": ["enum1", "enum2", "enum3"], "type": "string"}, + } + context = {PARAMS_OVERRIDE_KEY: [{"inputs": override_inputs}]} + component_entity = load_component_entity_from_yaml(test_path, mock_machinelearning_client, context) + + assert component_entity.inputs == override_inputs + + def test_serialize_deserialize_with_code_path(self, mock_machinelearning_client: MLClient): + test_path = "./tests/test_configs/components/basic_component_code_local_path.yml" + component_entity = load_component_entity_from_yaml(test_path, mock_machinelearning_client) + # make sure code has "created" + assert component_entity.code + expected_path = Path("./tests/test_configs/components/helloworld_components_with_env").resolve() + assert component_entity.code == f"{str(expected_path)}:1" + + def test_serialize_deserialize_default_code(self, mock_machinelearning_client: MLClient): + test_path = "./tests/test_configs/components/helloworld_component.yml" + component_entity = load_component_entity_from_yaml(test_path, mock_machinelearning_client) + # make sure default code has generated with name and version as content + assert component_entity.code + assert COMPONENT_CODE_PLACEHOLDER == component_entity.code + + def test_serialize_deserialize_input_output_path(self, mock_machinelearning_client: MLClient): + expected_value_dict = { + "path": { + "inputs.component_in_path.type": LegacyAssetTypes.PATH, + "inputs.component_in_file.type": AssetTypes.URI_FILE, + "inputs.component_in_folder.type": AssetTypes.URI_FOLDER, + "outputs.component_out_file.type": AssetTypes.URI_FILE, + "outputs.component_out_folder.type": AssetTypes.URI_FOLDER, + }, + "mltable": { + "inputs.component_in_mltable_mount.type": AssetTypes.MLTABLE, + "outputs.component_out_mltable_rw_mount.type": AssetTypes.MLTABLE, + }, + "mlflow_model": { + "inputs.component_in_mlflow_model_azure.type": AssetTypes.MLFLOW_MODEL, + "outputs.component_out_mlflow_model.type": AssetTypes.MLFLOW_MODEL, + }, + "custom_model": { + "inputs.component_in_custom_model.type": AssetTypes.CUSTOM_MODEL, + "outputs.component_out_custom_model.type": AssetTypes.CUSTOM_MODEL, + "inputs.component_in_trition_model.type": AssetTypes.TRITON_MODEL, + "outputs.component_out_trition_model.type": AssetTypes.TRITON_MODEL, + }, + } + for contract_type, expected_values in expected_value_dict.items(): + test_path = "./tests/test_configs/components/type_contract/{}.yml".format(contract_type) + component_entity = load_component_entity_from_yaml(test_path, mock_machinelearning_client) + component_entity_dict = component_entity._to_dict() + for dot_key, expected_value in expected_values.items(): + assert pydash.get(component_entity_dict, dot_key) == expected_value + + def test_command_component_str(self): + test_path = "./tests/test_configs/components/helloworld_component.yml" + component_entity = CommandComponent.load(path=test_path) + component_str = str(component_entity) + assert component_entity.name in component_str + assert component_entity.version in component_str + + def test_anonymous_component_same_name(self, mock_machinelearning_client: MLClient): + # scenario 1: same component interface, same code + test_path1 = "./tests/test_configs/components/basic_component_code_local_path.yml" + component_entity1 = load_component_entity_from_yaml(test_path1, mock_machinelearning_client, is_anonymous=True) + component_name1 = get_anonymous_component_name(component_entity1) + component_entity2 = load_component_entity_from_yaml(test_path1, mock_machinelearning_client, is_anonymous=True) + component_name2 = get_anonymous_component_name(component_entity2) + assert component_name1 == component_name2 + + # scenario 2: same component, no code + test_path2 = "./tests/test_configs/components/helloworld_component.yml" + component_entity1 = load_component_entity_from_yaml(test_path2, mock_machinelearning_client, is_anonymous=True) + component_name1 = get_anonymous_component_name(component_entity1) + component_entity2 = load_component_entity_from_yaml(test_path2, mock_machinelearning_client, is_anonymous=True) + component_name2 = get_anonymous_component_name(component_entity2) + assert component_name1 == component_name2 + + # scenario 3: same component interface, different code + code_path1 = "./tests/test_configs/components/basic_component_code_local_path.yml" + data1 = {"code": code_path1} + code_path2 = "./tests/test_configs/components/helloworld_component.yml" + data2 = {"code": code_path2} + # only code is different in data1 and data2 + component_entity1 = load_component_entity_from_yaml( + test_path1, + mock_machinelearning_client, + is_anonymous=True, + fields_to_override=data1, + ) + component_name1 = get_anonymous_component_name(component_entity1) + component_entity2 = load_component_entity_from_yaml( + test_path1, + mock_machinelearning_client, + is_anonymous=True, + fields_to_override=data2, + ) + component_name2 = get_anonymous_component_name(component_entity2) + assert component_name1 != component_name2 + + # scenario 4: different component interface, same code + data1 = {"display_name": "CommandComponentBasic1"} + data2 = {"display_name": "CommandComponentBasic2"} + # only display name is different in data1 and data2 + component_entity1 = load_component_entity_from_yaml( + test_path1, + mock_machinelearning_client, + is_anonymous=True, + fields_to_override=data1, + ) + component_name1 = get_anonymous_component_name(component_entity1) + component_entity2 = load_component_entity_from_yaml( + test_path1, + mock_machinelearning_client, + is_anonymous=True, + fields_to_override=data2, + ) + component_name2 = get_anonymous_component_name(component_entity2) + assert component_name1 != component_name2 + + def test_component_name_validate(self): + invalid_component_names = [ + "1", + "Abc", + "aBc", + "a-c", + "_abc", + "1abc", + ":::", + "hello.world", + ] + test_path = "./tests/test_configs/components/helloworld_component.yml" + for invalid_name in invalid_component_names: + params_override = [{"name": invalid_name}] + with pytest.raises(ValidationError) as e: + CommandComponent.load(path=test_path, params_override=params_override) + err_msg = "Component name should only contain lower letter, number, underscore" + assert err_msg in str(e.value) + + valid_component_names = ["n", "name", "n_a_m_e", "name_1"] + for valid_name in valid_component_names: + params_override = [{"name": valid_name}] + CommandComponent.load(path=test_path, params_override=params_override) + + def test_component_input_name_validate(self): + yaml_files = [ + str(components_dir / "invalid/helloworld_component_with_blank_input_names.yml"), + str(components_dir / "invalid/helloworld_component_with_dash_input_names.yml"), + str(components_dir / "invalid/helloworld_component_with_special_character_input_names.yml"), + str(components_dir / "invalid/helloworld_component_with_start_dash_input_names.yml"), + str(components_dir / "invalid/helloworld_component_with_start_number_input_names.yml"), + ] + for yaml_file in yaml_files: + with pytest.raises(ValidationException, match="is not a valid parameter name"): + CommandComponent.load(path=yaml_file) + + def test_component_output_name_validate(self): + yaml_files = [ + str(components_dir / "invalid/helloworld_component_with_blank_output_names.yml"), + str(components_dir / "invalid/helloworld_component_with_dash_output_names.yml"), + str(components_dir / "invalid/helloworld_component_with_special_character_output_names.yml"), + str(components_dir / "invalid/helloworld_component_with_start_dash_output_names.yml"), + str(components_dir / "invalid/helloworld_component_with_start_number_output_names.yml"), + ] + for yaml_file in yaml_files: + with pytest.raises(ValidationException, match="is not a valid parameter name"): + CommandComponent.load(path=yaml_file) diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_entity.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_entity.py new file mode 100644 index 000000000000..c1963e938f8a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_entity.py @@ -0,0 +1,119 @@ +import pydash +import pytest + +from azure.ai.ml._utils.utils import load_yaml +from azure.ai.ml.entities import Component, ParallelComponent +from azure.ai.ml.entities._job.pipeline._exceptions import UnexpectedKeywordError +from azure.ai.ml.entities._job.pipeline._io import PipelineInput + + +@pytest.mark.unittest +class TestParallelComponentEntity: + def test_component_load(self): + # code is specified in yaml, value is respected + component_yaml = "./tests/test_configs/components/basic_parallel_component_score.yml" + parallel_component = Component.load( + path=component_yaml, + ) + assert parallel_component.task.get("type") == "function" + assert parallel_component.code == "../python" + + def test_command_component_to_dict(self): + # Test optional params exists in component dict + yaml_path = "./tests/test_configs/components/basic_parallel_component_score.yml" + yaml_dict = load_yaml(yaml_path) + yaml_dict["mock_option_param"] = {"mock_key": "mock_val"} + parallel_component = ParallelComponent._load(data=yaml_dict, yaml_path=yaml_path) + assert parallel_component._other_parameter.get("mock_option_param") == yaml_dict["mock_option_param"] + + def test_parallel_component_entity(self): + task = { + "type": "function", + "code": "../python", + "entry_script": "pass_through.py", + "args": "--label ${{inputs.label}} --model ${{inputs.score_model}} --output_scored_result ${{outputs.scored_result}}", + "append_row_to": "${{outputs.scoring_summary}}", + "environment": "AzureML-Minimal:2", + } + + component = ParallelComponent( + name="batch_score", + display_name="BatchScore", + description="parallel component for batch score", + version="1.0.0", + outputs={ + "scored_result": {"type": "mltable"}, + "scoring_summary": {"type": "uri_file"}, + }, + resources={"instance_count": 2}, + retry_settings={"max_retries": 10, "timeout": 3}, + mini_batch_size="10kb", + input_data="${{inputs.score_input}}", + max_concurrency_per_instance=12, + error_threshold=10, + mini_batch_error_threshold=5, + logging_level="DEBUG", + task=task, + ) + component_dict = component._to_rest_object().as_dict() + component_dict = pydash.omit( + component_dict, + "properties.component_spec.$schema", + "properties.component_spec.inputs", + ) + + yaml_path = "./tests/test_configs/components/basic_parallel_component_score.yml" + yaml_component = Component.load(path=yaml_path) + yaml_component_dict = yaml_component._to_rest_object().as_dict() + yaml_component_dict = pydash.omit( + yaml_component_dict, + "properties.component_spec.$schema", + "properties.component_spec.inputs", + ) + + assert component_dict == yaml_component_dict + + def test_parallel_component_version_as_a_function_with_inputs(self): + expected_rest_component = { + "componentId": "fake_component", + "computeId": None, + "display_name": None, + "input_data": "${{inputs.score_input}}", + "inputs": { + "component_in_number": {"job_input_type": "Literal", "value": "10"}, + "component_in_path": { + "job_input_type": "Literal", + "value": "${{parent.inputs.pipeline_input}}", + }, + }, + "name": None, + "outputs": {}, + "tags": {}, + "input_data": "${{inputs.score_input}}", + "type": "parallel", + "error_threshold": None, + "logging_level": None, + "max_concurrency_per_instance": None, + "mini_batch_error_threshold": None, + "mini_batch_size": 10485760, + "retry_settings": None, + "resources": None, + "environment_variables": {}, + "task": { + "append_row_to": "${{outputs.scoring_summary}}", + "args": "--label ${{inputs.label}} --model ${{inputs.model}} " "--output ${{outputs.scored_result}}", + "code": "azureml:./src", + "entry_script": "score.py", + "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + "type": "function", + }, + } + yaml_path = "./tests/test_configs/components/helloworld_parallel.yml" + yaml_component_version = Component.load(path=yaml_path) + pipeline_input = PipelineInput(name="pipeline_input", owner="pipeline", meta=None) + yaml_component = yaml_component_version(component_in_number=10, component_in_path=pipeline_input) + + yaml_component._component = "fake_component" + rest_yaml_component = yaml_component._to_rest_object() + + assert expected_rest_component == rest_yaml_component diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_operations.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_operations.py new file mode 100644 index 000000000000..89574ca93e98 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_operations.py @@ -0,0 +1,112 @@ +import pytest +from typing import Callable +from unittest.mock import Mock, patch + +from azure.ai.ml.entities._component.parallel_component import ParallelComponent +from azure.ai.ml._operations import ComponentOperations +from azure.ai.ml._scope_dependent_operations import OperationScope + + +@pytest.fixture +def mock_component_operation( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_02_01_preview: Mock, + mock_machinelearning_client: Mock, +) -> ComponentOperations: + yield ComponentOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_02_01_preview, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.mark.unittest +class TestComponentOperation: + def test_create(self, mock_component_operation: ComponentOperations, randstr: Callable[[], str]) -> None: + task = { + "type": "function", + "model": {"name": "sore_model", "type": "mlflow_model"}, + "code_configuration": {"code": "./src", "scoring_script": "score.py"}, + "environment": "AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + } + mini_batch = { + "split_inputs": "score_input", + "mini_batch_size": "${{inputs.mini_batch_size}}", + } + component = ParallelComponent( + name=randstr(), + version="1", + mini_batch=mini_batch, + task=task, + ) + + with patch.object(ComponentOperations, "_upload_dependencies") as mock_thing, patch( + "azure.ai.ml._operations.component_operations.Component._from_rest_object", + return_value=ParallelComponent(), + ): + mock_component_operation.create_or_update(component) + mock_thing.assert_called_once() + + mock_component_operation._version_operation.create_or_update.assert_called_once_with( + name=component.name, + version="1", + body=component._to_rest_object(), + resource_group_name=mock_component_operation._operation_scope.resource_group_name, + workspace_name=mock_component_operation._workspace_name, + ) + + def test_create_autoincrement( + self, mock_component_operation: ComponentOperations, randstr: Callable[[], str] + ) -> None: + task = { + "type": "function", + "model": {"name": "sore_model", "type": "mlflow_model"}, + "code_configuration": {"code": "./src", "scoring_script": "score.py"}, + "environment": "AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + } + mini_batch = { + "split_inputs": "score_input", + "mini_batch_size": "${{inputs.mini_batch_size}}", + } + component = ParallelComponent( + name=randstr(), + version=None, + mini_batch=mini_batch, + task=task, + ) + assert component._auto_increment_version + with patch.object(ComponentOperations, "_upload_dependencies") as mock_thing, patch( + "azure.ai.ml._operations.component_operations.Component._from_rest_object", + return_value=component, + ): + mock_component_operation.create_or_update(component) + mock_thing.assert_called_once() + + mock_component_operation._container_operation.get.assert_called_once_with( + name=component.name, + resource_group_name=mock_component_operation._operation_scope.resource_group_name, + workspace_name=mock_component_operation._operation_scope.workspace_name, + ) + mock_component_operation._version_operation.create_or_update.assert_called_once_with( + name=component.name, + version=mock_component_operation._container_operation.get().properties.next_version, + body=component._to_rest_object(), + resource_group_name=mock_component_operation._operation_scope.resource_group_name, + workspace_name=mock_component_operation._operation_scope.workspace_name, + ) + + def test_list(self, mock_component_operation: ComponentOperations) -> None: + mock_component_operation.list("mock") + mock_component_operation._version_operation.list.assert_called_once() + mock_component_operation.list() + mock_component_operation._container_operation.list.assert_called_once() + + def test_get(self, mock_component_operation: ComponentOperations) -> None: + with patch("azure.ai.ml._operations.component_operations.Component") as mock_component_entity: + mock_component_operation.get("mock_component", "1") + + mock_component_operation._version_operation.get.assert_called_once() + create_call_args_str = str(mock_component_operation._version_operation.get.call_args) + assert "name='mock_component'" in create_call_args_str + assert "version='1'" in create_call_args_str + mock_component_entity._from_rest_object.assert_called_once() diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_schema.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_schema.py new file mode 100644 index 000000000000..ea6c9c88d125 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_schema.py @@ -0,0 +1,116 @@ +from unittest import mock + +import json +import pydash +import yaml +from pathlib import Path +import pytest + +from azure.ai.ml import MLClient +from azure.ai.ml._operations.component_operations import COMPONENT_PLACEHOLDER +from azure.ai.ml._restclient.v2021_10_01.models import ComponentVersionData +from azure.ai.ml._schema.component.parallel_component import ParallelComponentSchema +from azure.ai.ml._utils._arm_id_utils import PROVIDER_RESOURCE_ID_WITH_VERSION +from azure.ai.ml.constants import BASE_PATH_CONTEXT_KEY + +from azure.ai.ml.entities import ParallelComponent +from azure.ai.ml.entities._assets import Code + + +def load_component_entity_from_yaml( + path: str, + mock_machinelearning_client: MLClient, + context={}, + is_anonymous=False, + fields_to_override=None, +) -> ParallelComponent: + """Component yaml -> component entity -> rest component object -> component entity""" + with open(path, "r") as f: + cfg = yaml.safe_load(f) + context.update({BASE_PATH_CONTEXT_KEY: Path(path).parent}) + schema = ParallelComponentSchema(context=context) + data = dict(schema.load(cfg)) + if fields_to_override is None: + fields_to_override = {} + data.update(fields_to_override) + if is_anonymous is True: + data["name"] = None + data["version"] = None + internal_representation: ParallelComponent = ParallelComponent(**data) + + def mock_get_asset_arm_id(*args, **kwargs): + if len(args) > 0: + arg = args[0] + if isinstance(arg, str): + return arg + elif isinstance(arg, Code): + if COMPONENT_PLACEHOLDER in str(arg.path): + # for generated code, return content in it + with open(arg.path) as f: + return f.read() + return f"{str(arg.path)}:1" + return "xxx" + + # change internal assets into arm id + with mock.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + side_effect=mock_get_asset_arm_id, + ): + mock_machinelearning_client.components._upload_dependencies(internal_representation) + rest_component = internal_representation._to_rest_object() + # set arm id before deserialize + mock_workspace_scope = mock_machinelearning_client._operation_scope + rest_component.id = PROVIDER_RESOURCE_ID_WITH_VERSION.format( + mock_workspace_scope.subscription_id, + mock_workspace_scope.resource_group_name, + mock_workspace_scope.workspace_name, + "components", + internal_representation.name, + "1", + ) + internal_component = ParallelComponent._from_rest_object(rest_component) + return internal_component + + +def load_component_entity_from_rest_json(path) -> ParallelComponent: + """Rest component json -> rest component object -> component entity""" + with open(path, "r") as f: + target = yaml.safe_load(f) + rest_obj = ComponentVersionData.from_dict(json.loads(json.dumps(target))) + internal_component = ParallelComponent._from_rest_object(rest_obj) + return internal_component + + +@pytest.mark.unittest +class TestParallelComponent: + def test_serialize_deserialize_basic(self, mock_machinelearning_client: MLClient): + test_path = "./tests/test_configs/components/basic_parallel_component_score.yml" + component_entity = load_component_entity_from_yaml(test_path, mock_machinelearning_client) + rest_path = "./tests/test_configs/components/basic_parallel_component_score_rest.json" + target_entity = load_component_entity_from_rest_json(rest_path) + + # backend add optional=False and port name to inputs/outputs so we add it here manually + for name, input in component_entity.inputs.items(): + input["optional"] = str(input.get("optional", False)) + input["name"] = name + for name, output in component_entity.outputs.items(): + output["name"] = name + # skip check code and environment + component_dict = component_entity._to_dict() + assert component_dict["id"] + component_dict = pydash.omit( + dict(component_dict), + "task.code", + "id", + ) + expected_dict = pydash.omit( + dict(target_entity._to_dict()), + "task.code", + "creation_context", + "id", + ) + + assert component_dict == expected_dict + + assert component_entity.code + assert component_entity.code == f"{str(Path('./tests/test_configs/python').resolve())}:1" diff --git a/sdk/ml/azure-ai-ml/tests/compute/__init__.py b/sdk/ml/azure-ai-ml/tests/compute/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/compute/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/compute/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/compute/unittests/test_compute_entity.py b/sdk/ml/azure-ai-ml/tests/compute/unittests/test_compute_entity.py new file mode 100644 index 000000000000..257dd14336df --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/compute/unittests/test_compute_entity.py @@ -0,0 +1,131 @@ +from azure.ai.ml.entities import ( + Compute, + ComputeInstance, + KubernetesCompute, + AmlCompute, + UserAssignedIdentity, + VirtualMachineCompute, +) +import yaml +from msrest import Serializer +from azure.ai.ml._restclient.v2021_10_01.models import ComputeResource +from typing import List, Union +import pytest + + +@pytest.mark.unittest +class TestComputeEntity: + def test_compute_from_rest(self): + with open("tests/test_configs/compute/compute-kubernetes.yaml", "r") as f: + data = yaml.safe_load(f) + resource_id = "/subscriptions/dummy/resourceGroups/dummy/providers/Microsoft.Kubernetes/connectedClusters/dummy" + uai_resource_id = ( + "/subscriptions/dummy/resourceGroups/dummy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dummy" + ) + context = { + "base_path": "./", + "params_override": [ + { + "resource_id": resource_id, + "name": "dummy", + "namespace": "default", + "identity": { + "type": "user_assigned", + "user_assigned_identities": [{"resource_id": uai_resource_id}], + }, + } + ], + } + compute = KubernetesCompute._load_from_dict(data, context) + compute._to_rest_object() + assert compute.type == "kubernetes" + assert compute.identity.type == "user_assigned" + assert compute.identity.user_assigned_identities[0].resource_id == uai_resource_id + + def test_compute_from_yaml(self): + compute: AmlCompute = Compute.load("tests/test_configs/compute/compute-aml.yaml") + assert compute.name == "banchaml" + assert compute.ssh_settings.admin_username == "azureuser" + assert compute.identity.type == "user_assigned" + + rest_intermediate = compute._to_rest_object() + assert rest_intermediate.properties.compute_type == "AmlCompute" + assert rest_intermediate.properties.properties.user_account_credentials.admin_user_name == "azureuser" + assert rest_intermediate.properties.properties.enable_node_public_ip + + serializer = Serializer({"ComputeResource": ComputeResource}) + body = serializer.body(rest_intermediate, "ComputeResource") + assert body["identity"]["type"] == "UserAssigned" + assert body["identity"]["userAssignedIdentities"] == self._uai_list_to_dict( + compute.identity.user_assigned_identities + ) + + def test_compute_vm_from_yaml(self): + resource_id = "/subscriptions/13e50845-67bc-4ac5-94db-48d493a6d9e8/resourceGroups/myrg/providers/Microsoft.Compute/virtualMachines/myvm" + fake_key = "myfakekey" + compute: VirtualMachineCompute = Compute.load("tests/test_configs/compute/compute-vm.yaml") + assert compute.name == "banchcivm" + assert compute.ssh_settings.admin_username == "azureuser" + assert compute.ssh_settings.admin_password == "azureuserpassword" + assert compute.ssh_settings.ssh_port == 8888 + assert compute.resource_id == resource_id + assert compute.ssh_settings.ssh_private_key_file == "tests/test_configs/compute/ssh_fake_key.txt" + + rest_intermediate = compute._to_rest_object() + assert rest_intermediate.properties.resource_id == resource_id + assert rest_intermediate.properties.properties.ssh_port == 8888 + assert rest_intermediate.properties.properties.administrator_account.password == "azureuserpassword" + assert rest_intermediate.properties.properties.administrator_account.username == "azureuser" + assert rest_intermediate.properties.properties.administrator_account.private_key_data == fake_key + + serializer = Serializer({"ComputeResource": ComputeResource}) + body = serializer.body(rest_intermediate, "ComputeResource") + assert body["properties"]["resourceId"] == resource_id + assert body["properties"]["properties"]["sshPort"] == 8888 + assert body["properties"]["properties"]["administratorAccount"]["username"] == "azureuser" + assert body["properties"]["properties"]["administratorAccount"]["password"] == "azureuserpassword" + assert body["properties"]["properties"]["administratorAccount"]["privateKeyData"] == fake_key + + def test_compute_from_constructor(self): + compute = ComputeInstance(name="comp", type="computeinstance") + assert compute.type == "computeinstance" + + compute = KubernetesCompute(name="mykube", namespace="default", properties={}) + compute._to_dict() + assert compute.type == "kubernetes" + + def _uai_list_to_dict(self, value: List[UserAssignedIdentity]) -> Union[str, UserAssignedIdentity]: + uai_dict = {} + + for item in value: + resource_id = item.resource_id + uai_dict[resource_id] = {} + return uai_dict + + def test_compute_instance_load_from_rest(self): + compute_instance: ComputeInstance = Compute.load("tests/test_configs/compute/compute-ci-unit.yaml") + compute_instance._set_full_subnet_name("subscription_id", "resource_group_name") + compute_resource = compute_instance._to_rest_object() + compute_instance2: ComputeInstance = ComputeInstance._load_from_rest(compute_resource) + assert compute_instance.last_operation == compute_instance2.last_operation + assert compute_instance.services == compute_instance2.services + + def test_compute_instance_schedules_from_yaml(self): + compute_instance: ComputeInstance = Compute.load("tests/test_configs/compute/compute-ci-schedules.yaml") + assert len(compute_instance.schedules.compute_start_stop) == 2 + + compute_resource = compute_instance._to_rest_object() + compute_instance2: ComputeInstance = ComputeInstance._load_from_rest(compute_resource) + assert len(compute_instance2.schedules.compute_start_stop) == 2 + assert compute_instance2.schedules.compute_start_stop[0].action == "stop" + assert compute_instance2.schedules.compute_start_stop[0].trigger.type == "Cron" + assert compute_instance2.schedules.compute_start_stop[0].trigger.start_time == "2021-03-10T21:21:07" + assert compute_instance2.schedules.compute_start_stop[0].trigger.time_zone == "Pacific Standard Time" + assert compute_instance2.schedules.compute_start_stop[0].trigger.expression == "0 18 * * *" + assert compute_instance2.schedules.compute_start_stop[1].action == "start" + assert compute_instance2.schedules.compute_start_stop[1].trigger.type == "Recurrence" + assert compute_instance2.schedules.compute_start_stop[1].trigger.start_time == "2021-03-10T21:21:07" + assert compute_instance2.schedules.compute_start_stop[1].trigger.time_zone == "Pacific Standard Time" + assert compute_instance2.schedules.compute_start_stop[1].trigger.frequency == "week" + assert compute_instance2.schedules.compute_start_stop[1].trigger.interval == 1 + assert compute_instance2.schedules.compute_start_stop[1].trigger.schedule is not None diff --git a/sdk/ml/azure-ai-ml/tests/compute/unittests/test_compute_operations.py b/sdk/ml/azure-ai-ml/tests/compute/unittests/test_compute_operations.py new file mode 100644 index 000000000000..027b93e20343 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/compute/unittests/test_compute_operations.py @@ -0,0 +1,101 @@ +from typing import Callable +import pytest +import vcr +from pytest_mock import MockFixture +from unittest.mock import Mock +from azure.ai.ml._operations import ComputeOperations +from azure.identity import DefaultAzureCredential +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.entities import Compute, AmlCompute, ComputeInstance, IdentityConfiguration, UserAssignedIdentity + + +@pytest.fixture +def mock_compute_operation( + mock_workspace_scope: OperationScope, mock_aml_services_2021_10_01: Mock +) -> ComputeOperations: + yield ComputeOperations(operation_scope=mock_workspace_scope, service_client=mock_aml_services_2021_10_01) + + +class funny: + def __init__(self): + self.location = "somelocation" + + +@pytest.mark.unittest +class TestComputeOperation: + def test_list(self, mock_compute_operation: ComputeOperations) -> None: + mock_compute_operation.list() + mock_compute_operation._operation.list.assert_called_once() + + def test_create_compute_instance( + self, randstr: Callable[[], str], mock_compute_operation: ComputeOperations, mocker: MockFixture + ) -> None: + mocker.patch( + "azure.ai.ml._restclient.v2021_10_01.workspaces.get", + return_value=funny(), + ) + mocker.patch( + "azure.ai.ml.entities.Compute._from_rest_object", + return_value=ComputeInstance(name="name", resource_id="test_resource_id"), + ) + compute = Compute.load("./tests/test_configs/compute/compute-ci-unit.yaml") + + mock_compute_operation.begin_create_or_update(compute=compute) + mock_compute_operation._operation.begin_create_or_update.assert_called_once() + + def test_create_aml_compute( + self, randstr: Callable[[], str], mock_compute_operation: ComputeOperations, mocker: MockFixture + ) -> None: + mocker.patch("azure.ai.ml._restclient.v2021_10_01.workspaces.get", return_value=funny()) + compute = Compute.load("./tests/test_configs/compute/compute-aml.yaml") + mock_compute_operation.begin_create_or_update(compute=compute) + mock_compute_operation._operation.begin_create_or_update.assert_called_once() + + def test_delete(self, randstr: Callable[[], str], mock_compute_operation: ComputeOperations) -> None: + mock_compute_operation.begin_delete("randstr") + mock_compute_operation._operation.begin_delete.assert_called_once() + + @pytest.mark.skip(reason=": TODO 1776012: Broken by Warning logging. Re-enable when logging removed") + def test_show(self, randstr: Callable[[], str], mock_compute_operation: ComputeOperations) -> None: + mock_compute_operation.get("randstr") + mock_compute_operation._operation.get.assert_called_once() + + def test_start(self, randstr: Callable[[], str], mock_compute_operation: ComputeOperations) -> None: + mock_compute_operation.begin_start("randstr") + mock_compute_operation._operation.begin_start.assert_called_once() + + def test_stop(self, randstr: Callable[[], str], mock_compute_operation: ComputeOperations) -> None: + mock_compute_operation.begin_stop("randstr") + mock_compute_operation._operation.begin_stop.assert_called_once() + + def test_restart(self, randstr: Callable[[], str], mock_compute_operation: ComputeOperations) -> None: + mock_compute_operation.begin_restart("randstr") + mock_compute_operation._operation.begin_restart.assert_called_once() + + def test_update_aml_compute( + self, randstr: Callable[[], str], mock_compute_operation: ComputeOperations, mocker: MockFixture + ) -> None: + compute = AmlCompute( + name="name", + tags={"key1": "value1", "key2": "value2"}, + min_instances=0, + max_instances=10, + idle_time_before_scale_down=100, + identity=IdentityConfiguration( + type="UserAssigned", + user_assigned_identities=[ + UserAssignedIdentity( + resoure_id="/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourcegroups/MC_banibatch_bani-aks_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-bani-aks" + ) + ], + ), + ) + mock_compute_operation.begin_update(compute) + mock_compute_operation._operation.begin_create_or_update.assert_called_once() + + def test_detach(self, randstr: Callable[[], str], mock_compute_operation: ComputeOperations) -> None: + mock_compute_operation.begin_delete( + name="randstr", + action="Detach", + ) + mock_compute_operation._operation.begin_delete.assert_called_once() diff --git a/sdk/ml/azure-ai-ml/tests/dataset/__init__.py b/sdk/ml/azure-ai-ml/tests/dataset/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/dataset/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/dataset/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_operations.py b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_operations.py new file mode 100644 index 000000000000..868cae5108a9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_operations.py @@ -0,0 +1,156 @@ +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml._operations.data_operations import DataOperations, DatastoreOperations +from azure.ai.ml.constants import OrderString +from azure.core.paging import ItemPaged +from azure.ai.ml.entities._assets import Data +from azure.ai.ml.entities._assets._artifacts.artifact import ArtifactStorageInfo +from azure.ai.ml._restclient.v2021_10_01.models._models_py3 import ( + DatasetContainerData, + DatasetContainerDetails, + DatasetVersionData, + DatasetVersionDetails, +) + +import pytest +from unittest.mock import Mock, patch +from pathlib import Path +from tests.test_utilities.constants import Test_Resource_Group, Test_Workspace_Name +from typing import Callable, Iterable + + +@pytest.fixture +def mock_datastore_operation( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> DatastoreOperations: + yield DatastoreOperations( + operation_scope=mock_workspace_scope, + serviceclient_2022_05_01=mock_aml_services_2022_05_01, + ) + + +@pytest.fixture +def mock_data_operations( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock, mock_datastore_operation: Mock +) -> DataOperations: + yield DataOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + datastore_operations=mock_datastore_operation, + ) + + +@pytest.mark.unittest +class TestDataOperations: + @patch.object(Data, "_from_rest_object", new=Mock()) + @patch.object(Data, "_from_container_rest_object", new=Mock()) + def test_list(self, mock_data_operations: DataOperations, randstr: Callable[[], str]) -> None: + mock_data_operations._operation.list.return_value = [Mock(Data) for _ in range(10)] + mock_data_operations._container_operation.list.return_value = [Mock(Data) for _ in range(10)] + result = mock_data_operations.list() + assert isinstance(result, Iterable) + mock_data_operations._container_operation.list.assert_called_once() + mock_data_operations.list(name=randstr()) + mock_data_operations._operation.list.assert_called_once() + + def test_get_with_version(self, mock_data_operations: DataOperations) -> None: + name_only = "some_name" + version = "1" + data_asset = Data(name=name_only, version=version) + with patch.object(ItemPaged, "next"), patch.object(Data, "_from_rest_object", return_value=data_asset): + mock_data_operations.get(name_only, version) + mock_data_operations._operation.get.assert_called_once_with( + name=name_only, version=version, resource_group_name=Test_Resource_Group, workspace_name=Test_Workspace_Name + ) + + def test_get_no_version(self, mock_data_operations: DataOperations, randstr: Callable[[], str]) -> None: + name = randstr() + with pytest.raises(Exception): + mock_data_operations.get(name=name) + + def test_create_with_spec_file( + self, + mock_workspace_scope: OperationScope, + mock_data_operations: DataOperations, + randstr: Callable[[], str], + ) -> None: + data_path = "./tests/test_configs/dataset/data_local_path.yaml" + with patch( + "azure.ai.ml._artifacts._artifact_utilities._upload_to_datastore", + return_value=ArtifactStorageInfo( + name="testFileData", + version="3", + relative_path="path", + datastore_arm_id="/subscriptions/mock/resourceGroups/mock/providers/Microsoft.MachineLearningServices/workspaces/mock/datastores/datastore_id", + container_name="containerName", + ), + ) as mock_thing, patch( + "azure.ai.ml._operations.data_operations.Data._from_rest_object", + return_value=None, + ): + data = Data.load(path=data_path) + path = Path(data._base_path, data.path).resolve() + mock_data_operations.create_or_update(data) + mock_thing.assert_called_once_with( + mock_workspace_scope, + mock_data_operations._datastore_operation, + path, + asset_name=data.name, + asset_version=data.version, + datastore_name=None, + asset_hash=None, + sas_uri=None, + ) + mock_data_operations._operation.create_or_update.assert_called_once() + assert "version='1'" in str(mock_data_operations._operation.create_or_update.call_args) + + def test_archive_version(self, mock_data_operations: DataOperations, randstr: Callable[[], str]): + name = randstr() + dataset_version = Mock(DatasetVersionData(properties=Mock(DatasetVersionDetails(paths=[])))) + version = "1" + mock_data_operations._operation.get.return_value = dataset_version + mock_data_operations.archive(name=name, version=version) + mock_data_operations._operation.create_or_update.assert_called_once_with( + name=name, + version=version, + workspace_name=mock_data_operations._workspace_name, + body=dataset_version, + resource_group_name=mock_data_operations._resource_group_name, + ) + + def test_archive_container(self, mock_data_operations: DataOperations, randstr: Callable[[], str]): + name = randstr() + dataset_container = Mock(DatasetContainerData(properties=Mock(DatasetContainerDetails()))) + mock_data_operations._container_operation.get.return_value = dataset_container + mock_data_operations.archive(name=name) + mock_data_operations._container_operation.create_or_update.assert_called_once_with( + name=name, + workspace_name=mock_data_operations._workspace_name, + body=dataset_container, + resource_group_name=mock_data_operations._resource_group_name, + ) + + def test_restore_version(self, mock_data_operations: DataOperations, randstr: Callable[[], str]): + name = randstr() + dataset_version = Mock(DatasetVersionData(properties=Mock(DatasetVersionDetails(paths=[])))) + version = "1" + mock_data_operations._operation.get.return_value = dataset_version + mock_data_operations.restore(name=name, version=version) + mock_data_operations._operation.create_or_update.assert_called_once_with( + name=name, + version=version, + workspace_name=mock_data_operations._workspace_name, + body=dataset_version, + resource_group_name=mock_data_operations._resource_group_name, + ) + + def test_restore_container(self, mock_data_operations: DataOperations, randstr: Callable[[], str]): + name = randstr() + dataset_container = Mock(DatasetContainerData(properties=Mock(DatasetContainerDetails()))) + mock_data_operations._container_operation.get.return_value = dataset_container + mock_data_operations.restore(name=name) + mock_data_operations._container_operation.create_or_update.assert_called_once_with( + name=name, + workspace_name=mock_data_operations._workspace_name, + body=dataset_container, + resource_group_name=mock_data_operations._resource_group_name, + ) diff --git a/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_schema.py b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_schema.py new file mode 100644 index 000000000000..23c105543fed --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_schema.py @@ -0,0 +1,57 @@ +import os +from pathlib import Path +from azure.ai.ml.entities._assets import Data +from marshmallow.exceptions import ValidationError +import pytest +import yaml + + +@pytest.mark.unittest +class TestData: + def test_deserialize_file(self): + test_path = "./tests/test_configs/dataset/data_file.yaml" + with open(test_path, "r") as f: + target = yaml.safe_load(f) + with open(test_path, "r") as f: + data: Data = Data.load(path=test_path) + assert data.name == target["name"] + source = data._to_rest_object() + assert os.path.normpath(source.properties.data_uri) == os.path.normpath( + Path(Path(test_path).parent, target["path"]).resolve() + ) + assert source.properties.data_type == "uri_file" + + def test_deserialize_folder(self): + test_path = "./tests/test_configs/dataset/data_local_path.yaml" + with open(test_path, "r") as f: + target = yaml.safe_load(f) + with open(test_path, "r") as f: + data: Data = Data.load(path=test_path) + assert data.name == target["name"] + source = data._to_rest_object() + assert os.path.normpath(source.properties.data_uri) == os.path.normpath( + Path(Path(test_path).parent, target["path"]).resolve() + ) + assert source.properties.data_type == "uri_folder" + + def test_deserialize_mltable(self): + test_path = "./tests/test_configs/dataset/data_local_path_mltable.yaml" + with open(test_path, "r") as f: + target = yaml.safe_load(f) + with open(test_path, "r") as f: + dataset: Data = Data.load(path=test_path) + assert dataset.name == target["name"] + source = dataset._to_rest_object() + assert os.path.normpath(source.properties.data_uri) == os.path.normpath( + Path(Path(test_path).parent, target["path"]).resolve() + ) + assert source.properties.data_type == "mltable" + + def test_deserialize_empty_paths_should_get_validation_error(self): + test_path = "./tests/test_configs/dataset/data_missing_path_test.yml" + with open(test_path, "r") as f: + yaml.safe_load(f) + with open(test_path, "r"): + with pytest.raises(ValidationError) as e: + Data.load(path=test_path) + assert "Missing data for required field" in e.value.messages[0] diff --git a/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_utils.py b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_utils.py new file mode 100644 index 000000000000..c6f0d53a7a81 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_utils.py @@ -0,0 +1,66 @@ +import pytest +import requests +from pathlib import Path +from azure.ai.ml._utils._data_utils import read_mltable_metadata_contents +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml._operations import CodeOperations, DatastoreOperations +from unittest.mock import Mock, patch +from collections import OrderedDict + + +@pytest.fixture +def mock_datastore_operations( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> CodeOperations: + yield DatastoreOperations( + operation_scope=mock_workspace_scope, + serviceclient_2022_05_01=mock_aml_services_2022_05_01, + ) + + +@pytest.mark.unittest +class TestDataUtils: + @patch("azure.ai.ml._utils._data_utils.get_datastore_info") + @patch("azure.ai.ml._utils._data_utils.get_storage_client") + def test_read_mltable_metadata_contents( + self, _mock_get_storage_click, _mock_get_datastore_info, tmp_path: Path, mock_datastore_operations + ): + mltable_folder = tmp_path / "mltable_folder" + mltable_folder.mkdir() + tmp_metadata_file = mltable_folder / "MLTable" + file_contents = """ + paths: + - file: ./tmp_file.csv + transformations: + - read_delimited: + delimiter: "," + encoding: ascii + header: all_files_same_headers + """ + tmp_metadata_file.write_text(file_contents) + + with patch.object(requests, "get", return_value=Mock(content=file_contents.encode(encoding="UTF-8"))): + contents = read_mltable_metadata_contents( + datastore_operations=mock_datastore_operations, path="https://fake.localhost/file.yaml" + ) + assert contents["paths"] == [OrderedDict([("file", "./tmp_file.csv")])] + + # test azureml remote file reading + print(f"mltable_folder: {mltable_folder}") + with patch("azure.ai.ml._utils._data_utils.TemporaryDirectory", return_value=mltable_folder): + contents = read_mltable_metadata_contents( + datastore_operations=mock_datastore_operations, + path="azureml://datastores/mydatastore/paths/images/dogs", + ) + assert contents["paths"] == [OrderedDict([("file", "./tmp_file.csv")])] + + # test local file reading + contents = read_mltable_metadata_contents(datastore_operations=mock_datastore_operations, path=mltable_folder) + assert contents["paths"] == [OrderedDict([("file", "./tmp_file.csv")])] + + # should raise an error when an MLTable metadata file cannot be read from local path (path is not "is_url") + with pytest.raises(Exception) as ex: + read_mltable_metadata_contents( + datastore_operations=mock_datastore_operations, path=mltable_folder / "should-fail" + ) + assert "No such file or directory" in str(ex) diff --git a/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_operations.py b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_operations.py new file mode 100644 index 000000000000..0bcf19f55218 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_operations.py @@ -0,0 +1,137 @@ +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml._operations.dataset_operations import DatasetOperations, DatastoreOperations +from azure.ai.ml.constants import OrderString +from azure.core.paging import ItemPaged +from azure.ai.ml.entities._assets import Dataset +from azure.ai.ml._restclient.v2021_10_01.models._models_py3 import DatasetContainerDetails +from azure.ai.ml.entities._assets._artifacts.artifact import ArtifactStorageInfo + +import pytest +from unittest.mock import Mock, patch +from pathlib import Path +from tests.test_utilities.constants import Test_Resource_Group, Test_Workspace_Name +from typing import Callable, Iterable + + +@pytest.fixture +def mock_datastore_operation( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> DatastoreOperations: + yield DatastoreOperations( + operation_scope=mock_workspace_scope, + serviceclient_2022_05_01=mock_aml_services_2022_05_01, + ) + + +@pytest.fixture +def mock_dataset_operations( + mock_workspace_scope: OperationScope, mock_aml_services_2021_10_01: Mock, mock_datastore_operation: Mock +) -> DatasetOperations: + yield DatasetOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2021_10_01, + datastore_operations=mock_datastore_operation, + ) + + +@pytest.mark.unittest +class TestDatasetOperations: + @patch.object(Dataset, "_from_rest_object", new=Mock()) + @patch.object(Dataset, "_from_container_rest_object", new=Mock()) + def test_list(self, mock_dataset_operations: DatasetOperations, randstr: Callable[[], str]) -> None: + mock_dataset_operations._operation.list.return_value = [Mock(Dataset) for _ in range(10)] + mock_dataset_operations._container_operation.list.return_value = [Mock(Dataset) for _ in range(10)] + result = mock_dataset_operations.list() + assert isinstance(result, Iterable) + mock_dataset_operations._container_operation.list.assert_called_once() + mock_dataset_operations.list(randstr()) + mock_dataset_operations._operation.list.assert_called_once() + + def test_get_with_version(self, mock_dataset_operations: DatasetOperations) -> None: + name_only = "some_name" + version = "1" + data_asset = Dataset(name=name_only, version=version) + with patch.object(ItemPaged, "next"), patch.object(Dataset, "_from_rest_object", return_value=data_asset): + mock_dataset_operations.get(name_only, version) + mock_dataset_operations._operation.get.assert_called_once_with( + name_only, version, Test_Resource_Group, Test_Workspace_Name + ) + + def test_get_no_version(self, mock_dataset_operations: DatasetOperations, randstr: Callable[[], str]) -> None: + name = randstr() + with pytest.raises(Exception): + mock_dataset_operations.get(name=name) + + def test_create_with_spec_file( + self, + mock_workspace_scope: OperationScope, + mock_dataset_operations: DatasetOperations, + randstr: Callable[[], str], + ) -> None: + data_path = "./tests/test_configs/dataset/dataset_local_path.yaml" + with patch( + "azure.ai.ml._artifacts._artifact_utilities._upload_to_datastore", + return_value=ArtifactStorageInfo( + name="testFileData", + version="1", + relative_path="path", + datastore_arm_id="/subscriptions/mock/resourceGroups/mock/providers/Microsoft.MachineLearningServices/workspaces/mock/datastores/datastore_id", + container_name="containerName", + ), + ) as mock_thing, patch( + "azure.ai.ml._operations.dataset_operations.Dataset._from_rest_object", + return_value=Dataset(), + ): + data = Dataset.load(path=data_path) + path = Path(data._base_path, data.local_path).resolve() + mock_dataset_operations.create_or_update(data) + mock_thing.assert_called_once_with( + mock_workspace_scope, + mock_dataset_operations._datastore_operation, + path, + asset_name=data.name, + asset_version=data.version, + datastore_name=None, + asset_hash=None, + sas_uri=None, + ) + mock_dataset_operations._operation.create_or_update.assert_called_once() + assert "version='1'" in str(mock_dataset_operations._operation.create_or_update.call_args) + + def test_create_autoincrement( + self, + mock_dataset_operations: DatasetOperations, + mock_workspace_scope: OperationScope, + randstr: Callable[[], str], + tmp_path: Path, + ) -> None: + + mock_dataset_operations._container_operation.get.return_value = Mock(DatasetContainerDetails()) + + data_path = "./tests/test_configs/dataset/dataset_local_path.yaml" + dataset = Dataset.load(path=data_path) + + with patch( + "azure.ai.ml._operations.dataset_operations._check_and_upload_path", + return_value=(dataset, "indicatorfile.txt"), + ), patch("azure.ai.ml._operations.dataset_operations.Dataset._from_rest_object", return_value=dataset), patch( + "azure.ai.ml._operations.dataset_operations._get_default_datastore_info", return_value=None + ), patch( + "azure.ai.ml._operations.dataset_operations._update_metadata", return_value=None + ) as mock_update: + dataset.version = None + mock_dataset_operations.create_or_update(dataset) + mock_dataset_operations._operation.create_or_update.assert_called_once() + mock_dataset_operations._container_operation.get.assert_called_once_with( + name=dataset.name, + resource_group_name=mock_workspace_scope.resource_group_name, + workspace_name=mock_workspace_scope.workspace_name, + ) + mock_dataset_operations._operation.create_or_update.assert_called_once_with( + body=dataset._to_rest_object(), + name=dataset.name, + version=mock_dataset_operations._container_operation.get().properties.next_version, + resource_group_name=mock_workspace_scope.resource_group_name, + workspace_name=mock_workspace_scope.workspace_name, + ) + mock_update.assert_called_once() diff --git a/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_schema.py b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_schema.py new file mode 100644 index 000000000000..d7e60a6d095c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_schema.py @@ -0,0 +1,76 @@ +from azure.ai.ml.entities._assets import Dataset +from marshmallow.exceptions import ValidationError +import pytest +import yaml + + +@pytest.mark.unittest +class TestDataset: + def test_deserialize_folder(self): + test_path = "./tests/test_configs/dataset/dataset_folder_test.yml" + with open(test_path, "r") as f: + target = yaml.safe_load(f) + with open(test_path, "r") as f: + dataset: Dataset = Dataset.load(path=test_path) + assert dataset.name == target["name"] + source = dataset._to_rest_object() + assert source.properties.paths[0].folder == target["paths"][0]["folder"] + assert not source.properties.paths[0].file + + def test_deserialize_file(self): + test_path = "./tests/test_configs/dataset/dataset_file_test.yml" + with open(test_path, "r") as f: + target = yaml.safe_load(f) + with open(test_path, "r") as f: + dataset: Dataset = Dataset.load(path=test_path) + assert dataset.name == target["name"] + source = dataset._to_rest_object() + assert source.properties.paths[0].file == target["paths"][0]["file"] + assert not source.properties.paths[0].folder + + def test_deserialize_no_paths_and_local_path_should_get_validation_error(self): + test_path = "./tests/test_configs/dataset/dataset_no_paths_and_local_path_test.yml" + with open(test_path, "r") as f: + yaml.safe_load(f) + with open(test_path, "r"): + with pytest.raises(Exception) as e: + dataset = Dataset.load(path=test_path) + dataset._validate() + + assert "Either paths or local_path need to be provided." in str(e) + + def test_deserialize_empty_paths_should_get_validation_error(self): + test_path = "./tests/test_configs/dataset/dataset_empty_paths_test.yml" + with open(test_path, "r") as f: + yaml.safe_load(f) + with open(test_path, "r"): + with pytest.raises(ValidationError) as e: + Dataset.load(path=test_path) + assert "Please provide one folder path or one file path" in e.value.messages[0] + + def test_deserialize_with_folder_and_file_validation_error(self): + test_path = "./tests/test_configs/dataset/dataset_with_file_and_folder.yml" + with open(test_path, "r") as f: + yaml.safe_load(f) + with open(test_path, "r"): + with pytest.raises(ValidationError) as e: + Dataset.load(path=test_path) + assert "Please provide only one folder or one file" in e.value.messages[0] + + def test_deserialize_whitespace_folder_validation_error(self): + test_path = "./tests/test_configs/dataset/dataset_whitespace_folder_test.yml" + with open(test_path, "r") as f: + yaml.safe_load(f) + with open(test_path, "r"): + with pytest.raises(ValidationError) as e: + Dataset.load(path=test_path) + assert "Please provide valid path for one folder, whitespace is not allowed" in e.value.messages[0] + + def test_deserialize_whitespace_file_validation_error(self): + test_path = "./tests/test_configs/dataset/dataset_whitespace_file_test.yml" + with open(test_path, "r") as f: + yaml.safe_load(f) + with open(test_path, "r"): + with pytest.raises(ValidationError) as e: + Dataset.load(path=test_path) + assert "Please provide valid path for one file, whitespace is not allowed" in e.value.messages[0] diff --git a/sdk/ml/azure-ai-ml/tests/datastore/__init__.py b/sdk/ml/azure-ai-ml/tests/datastore/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/datastore/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/datastore/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/datastore/unittests/test_datastore_operations.py b/sdk/ml/azure-ai-ml/tests/datastore/unittests/test_datastore_operations.py new file mode 100644 index 000000000000..e362cf6b3919 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/datastore/unittests/test_datastore_operations.py @@ -0,0 +1,74 @@ +from typing import Callable +from azure.ai.ml.entities._datastore.datastore import Datastore +import pytest +from unittest.mock import Mock, patch +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml._operations import DatastoreOperations + + +@pytest.fixture +def mock_datastore_operation( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> DatastoreOperations: + yield DatastoreOperations( + operation_scope=mock_workspace_scope, + serviceclient_2022_05_01=mock_aml_services_2022_05_01, + ) + + +@patch.object(Datastore, "_from_rest_object") +@pytest.mark.unittest +class TestDatastoreOperations: + def test_list(self, mock_from_rest, mock_datastore_operation: DatastoreOperations) -> None: + mock_datastore_operation.list() + mock_datastore_operation._operation.list.assert_called_once() + mock_datastore_operation._operation.list_secrets.assert_not_called() + + def test_delete( + self, mock_from_rest, mock_datastore_operation: DatastoreOperations, randstr: Callable[[], str] + ) -> None: + mock_datastore_operation.delete(randstr()) + mock_datastore_operation._operation.delete.assert_called_once() + + def test_get_no_secrets( + self, mock_from_rest, mock_datastore_operation: DatastoreOperations, randstr: Callable[[], str] + ) -> None: + mock_datastore_operation.get(randstr()) + mock_datastore_operation._operation.get.assert_called_once() + mock_datastore_operation._operation.list_secrets.assert_not_called() + + def test_get_no_secrets_with_secrets( + self, mock_from_rest, mock_datastore_operation: DatastoreOperations, randstr: Callable[[], str] + ) -> None: + mock_datastore_operation.get(randstr(), include_secrets=True) + mock_datastore_operation._operation.get.assert_called_once() + mock_datastore_operation._operation.list_secrets.assert_called_once() + + @pytest.mark.parametrize( + "path", + [ + "blob_store.yml", + "file_store.yml", + "adls_gen1.yml", + "adls_gen2.yml", + # disable until preview release + # "hdfs_kerberos_pw.yml", + # "hdfs_kerberos_keytab.yml", + # "hdfs_kerberos_minimal.yml", + ], + ) + def test_create(self, mock_from_rest, mock_datastore_operation: DatastoreOperations, path) -> None: + ds = Datastore.load(f"./tests/test_configs/datastore/{path}") + mock_datastore_operation.create_or_update(ds) + mock_datastore_operation._operation.create_or_update.assert_called_once() + + def test_get_default(self, mock_from_rest, mock_datastore_operation: DatastoreOperations): + mock_datastore_operation.get_default() + mock_datastore_operation._operation.list.assert_called_once() + assert "is_default=True" in str(mock_datastore_operation._operation.list.call_args) + + def test_get_default_with_secrets(self, mock_from_rest, mock_datastore_operation: DatastoreOperations): + mock_datastore_operation.get_default(include_secrets=True) + mock_datastore_operation._operation.list.assert_called_once() + assert "is_default=True" in str(mock_datastore_operation._operation.list.call_args) + mock_datastore_operation._operation.list_secrets.assert_called_once() diff --git a/sdk/ml/azure-ai-ml/tests/datastore/unittests/test_datastore_schema.py b/sdk/ml/azure-ai-ml/tests/datastore/unittests/test_datastore_schema.py new file mode 100644 index 000000000000..6a323af4954a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/datastore/unittests/test_datastore_schema.py @@ -0,0 +1,258 @@ +import pytest + +from azure.ai.ml._utils.utils import load_yaml +from azure.ai.ml.entities._datastore.credentials import ( + AccountKeyCredentials, + ServicePrincipalCredentials, + NoneCredentials, +) +from azure.ai.ml.entities._datastore._on_prem_credentials import ( + KerberosKeytabCredentials, + KerberosPasswordCredentials, +) +from azure.ai.ml._restclient.v2022_05_01.models import ( + AzureFileDatastore as RestAzureFileDatastore, + AzureBlobDatastore as RestAzureBlobDatastore, + AzureDataLakeGen1Datastore as RestAzureDataLakeGen1Datastore, + AzureDataLakeGen2Datastore as RestAzureDataLakeGen2Datastore, + ServicePrincipalDatastoreCredentials, + NoneDatastoreCredentials, +) +from azure.ai.ml._restclient.v2022_02_01_preview import models as models_preview +from azure.ai.ml.entities import ( + AzureFileDatastore, + AzureBlobDatastore, + AzureDataLakeGen1Datastore, + AzureDataLakeGen2Datastore, + Datastore, +) +from azure.ai.ml.entities._datastore._on_prem import HdfsDatastore + +kerberos_pw_yml = "hdfs_kerberos_pw.yml" +kerberos_keytab_yml = "hdfs_kerberos_keytab.yml" + + +def b64read(p): + from base64 import b64encode + + with open(p, "rb") as f: + return b64encode(f.read()).decode("utf-8") + + +@pytest.mark.unittest +@pytest.mark.skip(reason="Disable until preview release") +class TestHdfsDatastore: + @pytest.mark.parametrize( + "path, cred_type, is_key_tab", + [ + (kerberos_pw_yml, KerberosPasswordCredentials, False), + (kerberos_keytab_yml, KerberosKeytabCredentials, True), + ], + ) + def test_kerberos_schema(self, path, cred_type, is_key_tab): + test_path = f"./tests/test_configs/datastore/{path}" + cfg = load_yaml(test_path) + internal_ds = Datastore.load(test_path) + assert isinstance(internal_ds, HdfsDatastore) + assert cfg["hdfs_server_certificate"] == internal_ds.hdfs_server_certificate + assert cfg["name_node_address"] == internal_ds.name_node_address + assert cfg["protocol"] == internal_ds.protocol + assert isinstance(internal_ds.credentials, cred_type) + assert cfg["credentials"]["kerberos_realm"] == internal_ds.credentials.kerberos_realm + assert cfg["credentials"]["kerberos_kdc_address"] == internal_ds.credentials.kerberos_kdc_address + assert cfg["credentials"]["kerberos_principal"] == internal_ds.credentials.kerberos_principal + + # test REST translation + datastore_resource = internal_ds._to_rest_object() + datastore_resource.name = internal_ds.name + ds_properties = datastore_resource.properties + assert ds_properties + assert isinstance(ds_properties, models_preview.HdfsDatastore) + assert ds_properties.hdfs_server_certificate == b64read(internal_ds.hdfs_server_certificate) + assert ds_properties.name_node_address == internal_ds.name_node_address + assert ds_properties.protocol == internal_ds.protocol + # test the REST to internal translation + internal_ds_from_rest = Datastore._from_rest_object(datastore_resource) + assert isinstance(internal_ds_from_rest.credentials, cred_type) + # workaround for base 64 encoded values + internal_ds.hdfs_server_certificate = b64read(internal_ds.hdfs_server_certificate) + if is_key_tab and internal_ds.credentials.kerberos_keytab: + internal_ds.credentials.kerberos_keytab = b64read(internal_ds.credentials.kerberos_keytab) + assert internal_ds_from_rest == internal_ds + + def test_kerberos_password_schema(self): + test_path = f"./tests/test_configs/datastore/{kerberos_pw_yml}" + cfg = load_yaml(test_path) + internal_ds = Datastore.load(test_path) + assert cfg["credentials"]["kerberos_password"] == internal_ds.credentials.kerberos_password + + def test_kerberos_keytab_schema(self): + test_path = f"./tests/test_configs/datastore/{kerberos_keytab_yml}" + cfg = load_yaml(test_path) + internal_ds = Datastore.load(test_path) + assert cfg["credentials"]["kerberos_keytab"] == internal_ds.credentials.kerberos_keytab + + def test_minimum_schema(self): + test_path = "./tests/test_configs/datastore/hdfs_kerberos_minimal.yml" + cfg = load_yaml(test_path) + internal_ds = Datastore.load(test_path) + assert isinstance(internal_ds, HdfsDatastore) + assert internal_ds.hdfs_server_certificate is None + assert "hdfs_server_certificate" not in cfg + assert cfg["name_node_address"] == internal_ds.name_node_address + assert internal_ds.protocol == "http" + assert "protocol" not in cfg + assert isinstance(internal_ds.credentials, KerberosPasswordCredentials) + assert cfg["credentials"]["kerberos_realm"] == internal_ds.credentials.kerberos_realm + assert cfg["credentials"]["kerberos_kdc_address"] == internal_ds.credentials.kerberos_kdc_address + assert cfg["credentials"]["kerberos_principal"] == internal_ds.credentials.kerberos_principal + + # test REST translation + datastore_resource = internal_ds._to_rest_object() + datastore_resource.name = internal_ds.name + ds_properties = datastore_resource.properties + assert ds_properties + assert isinstance(ds_properties, models_preview.HdfsDatastore) + assert ds_properties.hdfs_server_certificate == internal_ds.hdfs_server_certificate + assert ds_properties.name_node_address == internal_ds.name_node_address + assert ds_properties.protocol == internal_ds.protocol + # test the REST to internal translation + internal_ds_from_rest = Datastore._from_rest_object(datastore_resource) + assert internal_ds_from_rest.protocol == "http" + assert isinstance(internal_ds_from_rest.credentials, KerberosPasswordCredentials) + assert internal_ds_from_rest == internal_ds + + +@pytest.mark.unittest +class TestDatastore: + def test_file_share_schema(self): + test_path = "./tests/test_configs/datastore/file_store.yml" + cfg = load_yaml(test_path) + internal_ds = Datastore.load(test_path) + assert isinstance(internal_ds, AzureFileDatastore) + assert cfg["account_name"] == internal_ds.account_name + assert isinstance(internal_ds.credentials, AccountKeyCredentials) + assert cfg["credentials"]["account_key"] == internal_ds.credentials.account_key + assert cfg["file_share_name"] == internal_ds.file_share_name + # test REST translation + datastore_resource = internal_ds._to_rest_object() + datastore_resource.name = internal_ds.name + ds_properties = datastore_resource.properties + assert ds_properties + assert isinstance(ds_properties, RestAzureFileDatastore) + assert ds_properties.account_name == internal_ds.account_name + assert ds_properties.file_share_name == internal_ds.file_share_name + assert ds_properties.credentials.secrets.key + assert ds_properties.credentials.secrets.key == internal_ds.credentials.account_key + # test the REST to internal translation + internal_ds_from_rest = Datastore._from_rest_object(datastore_resource) + assert internal_ds_from_rest == internal_ds + + def test_blob_store_schema(self): + test_path = "./tests/test_configs/datastore/blob_store.yml" + cfg = load_yaml(test_path) + internal_ds = Datastore.load(test_path) + assert isinstance(internal_ds, AzureBlobDatastore) + assert cfg["account_name"] == internal_ds.account_name + assert isinstance(internal_ds.credentials, AccountKeyCredentials) + assert cfg["credentials"]["account_key"] == internal_ds.credentials.account_key + assert cfg["container_name"] == internal_ds.container_name + # test REST translation + datastore_resource = internal_ds._to_rest_object() + datastore_resource.name = internal_ds.name + ds_properties = datastore_resource.properties + assert ds_properties + assert isinstance(ds_properties, RestAzureBlobDatastore) + assert ds_properties.account_name == internal_ds.account_name + assert ds_properties.container_name == internal_ds.container_name + assert ds_properties.credentials.secrets.key + assert ds_properties.credentials.secrets.key == internal_ds.credentials.account_key + # test the REST to internal translation + internal_ds_from_rest = Datastore._from_rest_object(datastore_resource) + assert internal_ds_from_rest == internal_ds + + def test_credential_less_blob_store_schema(self): + test_path = "./tests/test_configs/datastore/credential_less_blob_store.yml" + cfg = load_yaml(test_path) + internal_ds = Datastore.load(test_path) + assert isinstance(internal_ds, AzureBlobDatastore) + assert cfg["account_name"] == internal_ds.account_name + assert isinstance(internal_ds.credentials, NoneCredentials) + assert cfg["container_name"] == internal_ds.container_name + # test REST translation + datastore_resource = internal_ds._to_rest_object() + datastore_resource.name = internal_ds.name + ds_properties = datastore_resource.properties + assert ds_properties + assert isinstance(ds_properties, RestAzureBlobDatastore) + assert ds_properties.account_name == internal_ds.account_name + assert ds_properties.container_name == internal_ds.container_name + assert isinstance(ds_properties.credentials, NoneDatastoreCredentials) + # test the REST to internal translation + internal_ds_from_rest = Datastore._from_rest_object(datastore_resource) + assert isinstance(internal_ds_from_rest.credentials, NoneCredentials) + assert internal_ds_from_rest.credentials == internal_ds.credentials + assert internal_ds_from_rest == internal_ds + + def test_adls_gen1_schema(self): + test_path = "./tests/test_configs/datastore/adls_gen1.yml" + cfg = load_yaml(test_path) + internal_ds = Datastore.load(test_path) + assert isinstance(internal_ds, AzureDataLakeGen1Datastore) + assert cfg["store_name"] == internal_ds.store_name + cfg_credential = cfg["credentials"] + internal_credential = internal_ds.credentials + assert isinstance(internal_credential, ServicePrincipalCredentials) + assert cfg_credential["tenant_id"] == internal_credential.tenant_id + assert cfg_credential["client_id"] == internal_credential.client_id + assert cfg_credential["client_secret"] == internal_credential.client_secret + # test REST translation + datastore_resource = internal_ds._to_rest_object() + datastore_resource.name = internal_ds.name + ds_properties = datastore_resource.properties + assert ds_properties + assert isinstance(ds_properties, RestAzureDataLakeGen1Datastore) + assert ds_properties.store_name == internal_ds.store_name + self.assert_rest_internal_service_principal_equal(ds_properties.credentials, internal_credential) + # test the REST to internal translation + internal_ds_from_rest = Datastore._from_rest_object(datastore_resource) + assert internal_ds_from_rest == internal_ds + + def test_adls_gen2_schema(self): + test_path = "./tests/test_configs/datastore/adls_gen2.yml" + cfg = load_yaml(test_path) + internal_ds = Datastore.load(test_path) + assert isinstance(internal_ds, AzureDataLakeGen2Datastore) + assert cfg["account_name"] == internal_ds.account_name + cfg_credential = cfg["credentials"] + internal_credential = internal_ds.credentials + assert isinstance(internal_credential, ServicePrincipalCredentials) + assert cfg_credential["tenant_id"] == internal_credential.tenant_id + assert cfg_credential["client_id"] == internal_credential.client_id + assert cfg_credential["client_secret"] == internal_credential.client_secret + assert cfg["filesystem"] == internal_ds.filesystem + # test REST translation + datastore_resource = internal_ds._to_rest_object() + datastore_resource.name = internal_ds.name + ds_properties = datastore_resource.properties + assert ds_properties + assert isinstance(ds_properties, RestAzureDataLakeGen2Datastore) + assert ds_properties.account_name == cfg["account_name"] + assert ds_properties.filesystem == cfg["filesystem"] + self.assert_rest_internal_service_principal_equal(ds_properties.credentials, internal_credential) + # test the REST to internal translation + internal_ds_from_rest = Datastore._from_rest_object(datastore_resource) + assert internal_ds_from_rest == internal_ds + + def assert_rest_internal_service_principal_equal( + self, + rest_service_principal: ServicePrincipalDatastoreCredentials, + internal_credential: ServicePrincipalCredentials, + ) -> None: + assert rest_service_principal + assert rest_service_principal.tenant_id + assert rest_service_principal.tenant_id == internal_credential.tenant_id + assert rest_service_principal.client_id + assert rest_service_principal.client_id == internal_credential.client_id + assert rest_service_principal.secrets + assert rest_service_principal.secrets.client_secret == internal_credential.client_secret diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/__init__.py b/sdk/ml/azure-ai-ml/tests/internal_utils/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_arm_id_utils.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_arm_id_utils.py new file mode 100644 index 000000000000..608dedb65408 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_arm_id_utils.py @@ -0,0 +1,13 @@ +import pytest +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml._utils._arm_id_utils import get_arm_id_with_version + + +@pytest.mark.unittest +def test_get_arm_id(mock_workspace_scope: OperationScope) -> None: + arm_id = get_arm_id_with_version(mock_workspace_scope, "models", "modeltest", "2") + expected_arm_id = ( + "/subscriptions/test_subscription/resourceGroups/test_resource_group" + "/providers/Microsoft.MachineLearningServices/workspaces/test_workspace_name/models/modeltest/versions/2" + ) + assert expected_arm_id == arm_id diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_artifact_entity.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_artifact_entity.py new file mode 100644 index 000000000000..fd1428dc0504 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_artifact_entity.py @@ -0,0 +1,12 @@ +import pytest +from azure.ai.ml.entities._assets import Data + + +@pytest.mark.unittest +class TestArtifactEntity: + def test_eq_neq(self) -> None: + data = Data(name="name", version="16", path=".") + same_data = Data(name="name", version="16", path=".") + diff_data = Data(name=data.name, version=data.version, path=data.path, description="different dataset") + + assert data == same_data != diff_data diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_asset_entity.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_asset_entity.py new file mode 100644 index 000000000000..e1f2d90644c5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_asset_entity.py @@ -0,0 +1,17 @@ +import pytest +import unittest + +from azure.ai.ml.entities import Environment +from azure.ai.ml._utils.utils import is_valid_uuid + + +@pytest.mark.unittest +class TestAssetEntity(unittest.TestCase): + # Using Environment because Asset class can't be instantiated directly + def test_version_name_not_set(self) -> None: + with pytest.raises(Exception): + Environment(local_path=".", version="12") + + def test_version_not_str(self) -> None: + with pytest.raises(Exception): + Environment(name="some-name", version=1) diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_asset_utils.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_asset_utils.py new file mode 100644 index 000000000000..ff5a159dfc1e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_asset_utils.py @@ -0,0 +1,112 @@ +import pytest +import os +from pathlib import Path + +from azure.ai.ml._utils._asset_utils import ( + get_ignore_file, + AmlIgnoreFile, + GitIgnoreFile, + get_object_hash, + traverse_directory, + IgnoreFile, +) + + +@pytest.fixture +def gitignore_file_directory() -> str: + return "./tests/test_configs/storage/gitignore_only/" + + +@pytest.fixture +def storage_test_directory() -> str: + return "./tests/test_configs/storage/" + + +@pytest.fixture +def no_ignore_file_directory() -> str: + return "./tests/test_configs/storage/dont_include_us/" + + +@pytest.fixture +def amlignore_file(storage_test_directory: str) -> AmlIgnoreFile: + return AmlIgnoreFile(storage_test_directory) + + +@pytest.fixture +def gitignore_file(storage_test_directory: str) -> GitIgnoreFile: + return GitIgnoreFile(storage_test_directory) + + +@pytest.fixture +def no_ignore_file(no_ignore_file_directory: str) -> IgnoreFile: + return IgnoreFile(None) + + +@pytest.mark.unittest +class TestAssetUtils: + def test_amlignore_precedence( + self, storage_test_directory: str, gitignore_file_directory: str, no_ignore_file_directory: str + ) -> None: + amlignore_file = get_ignore_file(directory_path=storage_test_directory) + assert isinstance(amlignore_file, AmlIgnoreFile) + + gitignore_file = get_ignore_file(directory_path=gitignore_file_directory) + assert isinstance(gitignore_file, GitIgnoreFile) + + no_ignore_file = get_ignore_file(directory_path=no_ignore_file_directory) + assert isinstance(no_ignore_file, IgnoreFile) + assert no_ignore_file.path is None + + def test_hashing( + self, + storage_test_directory: str, + amlignore_file: AmlIgnoreFile, + gitignore_file: GitIgnoreFile, + no_ignore_file: IgnoreFile, + ) -> None: + no_ignore_hash = get_object_hash(path=storage_test_directory, ignore_file=no_ignore_file) + amlignore_hash = get_object_hash(path=storage_test_directory, ignore_file=amlignore_file) + gitignore_hash = get_object_hash(path=storage_test_directory, ignore_file=gitignore_file) + + assert no_ignore_hash != amlignore_hash != gitignore_hash + + def test_exclude( + self, + storage_test_directory: str, + amlignore_file: AmlIgnoreFile, + gitignore_file: GitIgnoreFile, + no_ignore_file: IgnoreFile, + ) -> None: + source_path = Path(storage_test_directory).resolve() + prefix = source_path.name + "/" + + amlignore_upload_paths = [] + gitignore_upload_paths = [] + no_ignore_upload_paths = [] + + for root, dirs, files in os.walk(source_path): + amlignore_upload_paths += list( + traverse_directory(root, files, source_path, prefix, ignore_file=amlignore_file) + ) + gitignore_upload_paths += list( + traverse_directory(root, files, source_path, prefix, ignore_file=gitignore_file) + ) + no_ignore_upload_paths += list( + traverse_directory(root, files, source_path, prefix, ignore_file=no_ignore_file) + ) + + assert len(no_ignore_upload_paths) == 7 + assert len(gitignore_upload_paths) == 6 + assert len(amlignore_upload_paths) == 4 + + def test_upload_paths_match(self, storage_test_directory: str) -> None: + source_path = Path(storage_test_directory).resolve() + prefix = source_path.name + "/" + upload_paths = [] + + for root, dirs, files in os.walk(source_path): + upload_paths += list(traverse_directory(root, files, source_path, prefix)) + + for local_path, remote_path in upload_paths: + remote_path = remote_path.split("/", 2)[-1] # strip LocalUpload/ prefix + assert remote_path in local_path diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_experimental_utils.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_experimental_utils.py new file mode 100644 index 000000000000..6be542eba71f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_experimental_utils.py @@ -0,0 +1,179 @@ +import logging +import pytest +import unittest +from azure.ai.ml._utils._experimental import experimental, _warning_cache +from azure.ai.ml.entities._mixins import RestTranslatableMixin +from marshmallow.schema import Schema +from azure.ai.ml._schema.core.fields import NestedField, ExperimentalField +from azure.ai.ml.constants import ( + EXPERIMENTAL_FIELD_MESSAGE, + EXPERIMENTAL_CLASS_MESSAGE, + EXPERIMENTAL_METHOD_MESSAGE, + EXPERIMENTAL_LINK_MESSAGE, +) + + +@experimental +class ExperimentalClass(RestTranslatableMixin): + def __init__(self, value=5): + self._value = value + pass + + @experimental + def experimental_method(self): + pass + + @classmethod + def _from_rest_object(cls, rest_obj) -> "ExperimentalClass": + return ExperimentalClass() + + @property + def value(self): + return self._value + + @value.setter + @experimental + def value(self, value): + pass + + +@experimental +def experimental_function(): + pass + + +class DummySchema(Schema): + pass + + +class FooSchema(Schema): + mock_field = NestedField(DummySchema) + + +class BarSchema(Schema): + mock_field = ExperimentalField(NestedField(DummySchema)) + + +@pytest.mark.unittest +class TestExperimentalUtils(unittest.TestCase): + def setUp(self): + _warning_cache.clear() + + def test_experimental_decorator_on_class(self): + with self.assertLogs(experimental.__module__, "WARNING") as cm: + _ = ExperimentalClass() + + self.assertTrue(EXPERIMENTAL_CLASS_MESSAGE in cm.output[0]) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in cm.output[0]) + + self.assertTrue(ExperimentalClass.__doc__.startswith(".. note::")) + self.assertTrue(EXPERIMENTAL_CLASS_MESSAGE in ExperimentalClass.__doc__) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in ExperimentalClass.__doc__) + + def test_experimental_decorator_on_method(self): + obj = ExperimentalClass() + with self.assertLogs(experimental.__module__, "WARNING") as cm: + obj.experimental_method() + + self.assertTrue(EXPERIMENTAL_METHOD_MESSAGE in cm.output[0]) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in cm.output[0]) + + self.assertTrue(ExperimentalClass.experimental_method.__doc__.startswith(".. note::")) + self.assertTrue(EXPERIMENTAL_METHOD_MESSAGE in ExperimentalClass.experimental_method.__doc__) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in ExperimentalClass.experimental_method.__doc__) + + def test_experimental_decorator_on_property(self): + obj = ExperimentalClass() + with self.assertLogs(experimental.__module__, "WARNING") as cm: + obj.value = 5 + + self.assertTrue(EXPERIMENTAL_METHOD_MESSAGE in cm.output[0]) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in cm.output[0]) + + self.assertTrue(ExperimentalClass.experimental_method.__doc__.startswith(".. note::")) + self.assertTrue(EXPERIMENTAL_METHOD_MESSAGE in ExperimentalClass.experimental_method.__doc__) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in ExperimentalClass.experimental_method.__doc__) + + def test_experimental_decorator_on_function(self): + with self.assertLogs(experimental.__module__, "WARNING") as cm: + experimental_function() + + self.assertTrue(EXPERIMENTAL_METHOD_MESSAGE in cm.output[0]) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in cm.output[0]) + + self.assertTrue(ExperimentalClass.experimental_method.__doc__.startswith(".. note::")) + self.assertTrue(EXPERIMENTAL_METHOD_MESSAGE in ExperimentalClass.experimental_method.__doc__) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in ExperimentalClass.experimental_method.__doc__) + + def test_experimental_decorator_no_duplicated_warnings(self): + # call experimental function multiple times + with self.assertLogs(experimental.__module__, "WARNING") as cm: + for x in range(5): + experimental_function() + + self.assertEquals(1, len(cm.output)) + self.assertTrue(EXPERIMENTAL_METHOD_MESSAGE in cm.output[0]) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in cm.output[0]) + + # call experimental class method multiple times + obj = ExperimentalClass() + with self.assertLogs(experimental.__module__, "WARNING") as cm: + for x in range(5): + obj.experimental_method() + + self.assertEquals(1, len(cm.output)) + self.assertTrue(EXPERIMENTAL_METHOD_MESSAGE in cm.output[0]) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in cm.output[0]) + + # call experimental class method multiple times + obj = ExperimentalClass() + with self.assertLogs(experimental.__module__, "WARNING") as cm: + for x in range(5): + obj.value = 5 + + self.assertEquals(1, len(cm.output)) + self.assertTrue(EXPERIMENTAL_METHOD_MESSAGE in cm.output[0]) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in cm.output[0]) + + def test_experimental_decorator_should_show_no_warning_when_load_from_rest(self): + with self.assertLogs(experimental.__module__, "WARNING") as cm: + # We want to assert there are no warnings, but the 'assertLogs' method does not support that. + # Therefore, we are adding a dummy warning, and then we will assert it is the only warning. + logging.getLogger(experimental.__module__).warning("Dummy warning") + ExperimentalClass._from_rest_object(dict()) + + self.assertEquals(1, len(cm.output)) + + def test_experimental_decorator_should_show_no_warning_when_load_from_schema(self): + with self.assertLogs(experimental.__module__, "WARNING") as cm: + # We want to assert there are no warnings, but the 'assertLogs' method does not support that. + # Therefore, we are adding a dummy warning, and then we will assert it is the only warning. + logging.getLogger(experimental.__module__).warning("Dummy warning") + schema = FooSchema() + input_data = {"mock_field": {}} + schema.load(input_data) + + self.assertEquals(1, len(cm.output)) + + def test_experimental_field(self): + with self.assertLogs(ExperimentalField.__module__, "WARNING") as cm: + schema = BarSchema() + input_data = {"mock_field": {}} + schema.load(input_data) + + self.assertEquals(1, len(cm.output)) + self.assertTrue(EXPERIMENTAL_FIELD_MESSAGE in cm.output[0]) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in cm.output[0]) + + def test_experimental_field_no_duplicated_warnings(self): + with self.assertLogs(ExperimentalField.__module__, "WARNING") as cm: + schema = BarSchema() + input_data = {"mock_field": {}} + + # load multiple times + for x in range(5): + schema.load(input_data) + + self.assertEquals(1, len(cm.output)) + self.assertTrue(EXPERIMENTAL_FIELD_MESSAGE in cm.output[0]) + self.assertTrue(EXPERIMENTAL_LINK_MESSAGE in cm.output[0]) diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_fields.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_fields.py new file mode 100644 index 000000000000..f15b6f9dc132 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_fields.py @@ -0,0 +1,187 @@ +import pytest +import yaml +from azure.ai.ml._schema import ArmStr, ArmVersionedStr +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.constants import ( + AZUREML_RESOURCE_PROVIDER, + BASE_PATH_CONTEXT_KEY, + NAMED_RESOURCE_ID_FORMAT, + RESOURCE_ID_FORMAT, +) +from marshmallow.exceptions import ValidationError +from marshmallow import fields +from marshmallow.schema import Schema +from azure.ai.ml.entities import Data + + +class DummyStr(ArmStr): + def __init__(self, **kwargs): + super().__init__() + self.azureml_type = "dummy" + + +class FooVersionedStr(ArmVersionedStr): + def __init__(self, **kwargs): + super().__init__() + self.azureml_type = "foo" + + +class DummySchema(Schema): + environment = DummyStr() + + +class FooSchema(Schema): + model = FooVersionedStr() + + +@pytest.mark.unittest +class TestField: + def test_arm_str(self, mock_workspace_scope: OperationScope) -> None: + schema = DummySchema() + name = "resourceName" + + input_data = {"environment": f"azureml:{name}"} + output_data = {"environment": name} + dumped_data = {"environment": f"azureml:{name}"} + data = schema.load(input_data) + assert data == output_data + assert schema.dump(data) == dumped_data + + def test_arm_str_with_fully_arm_id(self, mock_workspace_scope: OperationScope) -> None: + schema = DummySchema() + name = "resourceName" + resource_id_without_version = ( + RESOURCE_ID_FORMAT.format( + mock_workspace_scope.subscription_id, + mock_workspace_scope.resource_group_name, + AZUREML_RESOURCE_PROVIDER, + mock_workspace_scope.workspace_name, + ) + + f"/foo/{name}" + ) + + input_data = {"environment": f"azureml:{resource_id_without_version}"} + output_data = {"environment": resource_id_without_version} + dumped_data = {"environment": f"azureml:{resource_id_without_version}"} + data = schema.load(input_data) + assert data == output_data + assert schema.dump(data) == dumped_data + + def test_arm_str_failed(self) -> None: + schema = DummySchema() + input_data = {"environment": "some_arm_id"} + with pytest.raises(ValidationError): + schema.load(input_data) + + def test_arm_versioned_str(self, mock_workspace_scope: OperationScope) -> None: + name = "resourceName" + version = "3.14" + resource_id_without_version = ( + RESOURCE_ID_FORMAT.format( + mock_workspace_scope.subscription_id, + mock_workspace_scope.resource_group_name, + AZUREML_RESOURCE_PROVIDER, + mock_workspace_scope.workspace_name, + ) + + f"/foo/{name}" + ) + non_aml_resource_id_without_version = NAMED_RESOURCE_ID_FORMAT.format( + mock_workspace_scope.subscription_id, + mock_workspace_scope.resource_group_name, + "bar", + mock_workspace_scope.workspace_name, + "foo", + name, + ) + + schema = FooSchema() + input_data = {"model": f"azureml:{name}:{version}"} + output_data = {"model": f"{name}:{version}"} + dumped_data = {"model": f"azureml:{name}:{version}"} + data = schema.load(input_data) + assert data == output_data + assert schema.dump(data) == dumped_data + + schema = FooSchema() + input_data = {"model": f"azureml:{resource_id_without_version}/versions/{version}"} + output_data = {"model": f"{resource_id_without_version}/versions/{version}"} + dumped_data = {"model": f"azureml:{resource_id_without_version}/versions/{version}"} + data = schema.load(input_data) + assert data == output_data + assert schema.dump(data) == dumped_data + + input_data = {"model": f"azureml:{name}/versions/{version}"} + with pytest.raises(Exception): + data = schema.load(input_data) + + with pytest.raises(Exception): + input_data = {"model": f"azureml:{resource_id_without_version}:{version}"} + data = schema.load(input_data) + + with pytest.raises(Exception): + input_data = {"model": f"azureml:{resource_id_without_version}"} + data = schema.load(input_data) + + with pytest.raises(Exception): + input_data = {"model": f"azureml:{non_aml_resource_id_without_version}"} + data = schema.load(input_data) + + def test_arm_versioned_str_label(self, mock_workspace_scope: OperationScope) -> None: + name = "resourceName" + version = "latest" + + schema = FooSchema() + input_data = {"model": f"azureml:{name}@{version}"} + output_data = {"model": f"{name}@{version}"} + dumped_data = {"model": f"azureml:{name}@{version}"} + data = schema.load(input_data) + assert data == output_data + assert schema.dump(data) == dumped_data + + def test_arm_versioned_str_failed(self, mock_workspace_scope: OperationScope) -> None: + schema = FooSchema() + input_data = {"model": "/subscription/something/other/value/name:some_version"} + with pytest.raises(ValidationError): + schema.load(input_data) + input_data = {"model": "azureml:/subscription/something/other/value/name"} + with pytest.raises(ValidationError): + schema.load(input_data) + input_data = {"model": "azureml:/subscription/something/other/value/name/versions"} + with pytest.raises(ValidationError): + schema.load(input_data) + input_data = {"model": "azureml:/subscription/something/other/value/name/versions/"} + with pytest.raises(ValidationError): + schema.load(input_data) + input_data = {"model": "azureml:/subscription/something/other/value/name/"} + + def test_version_types(self, tmp_path, randstr): + data_name = f"version_{randstr()}" + p = tmp_path / "version_float.yml" + p.write_text( + f""" +name: {data_name} +version: 3.12 +path: ./bla""" + ) + asset = Data.load(path=p) + assert asset.version == "3.12" + + p = tmp_path / "version_int.yml" + p.write_text( + f""" +name: {data_name} +version: 3 +path: ./bla""" + ) + asset = Data.load(path=p) + assert asset.version == "3" + + p = tmp_path / "version_str.yml" + p.write_text( + f""" +name: {data_name} +version: foobar +path: ./bla""" + ) + asset = Data.load(path=p) + assert asset.version == "foobar" diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_file_utils.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_file_utils.py new file mode 100644 index 000000000000..109c2c650e64 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_file_utils.py @@ -0,0 +1,45 @@ +from pathlib import Path +import pytest + +from azure.ai.ml._file_utils.file_utils import traverse_up_path_and_find_file + + +@pytest.mark.unittest +class TestFileUtils: + def test_traverse_up_path_and_find_file_multi_layers(self, tmp_path: Path): + filename = "hello.txt" + root = tmp_path + filepath = root / filename + filepath.write_text("content") + + start = root + for i in range(10): + start = start / f"sub{i}" + start.mkdir() + + a = traverse_up_path_and_find_file(start, filename) + assert a == str(filepath) + + def test_traverse_up_path_and_find_file(self, tmpdir): + path = tmpdir.mkdir("sub") + p = path.join("sub2") + file_path = path.join("file.txt") + file_path.write("content") + ret = traverse_up_path_and_find_file(p, "file.txt") + assert ret == file_path + + def test_traverse_up_path_and_find_file_with_dir_name(self, tmp_path: Path): + filename = "hello.txt" + root = tmp_path + filepath = root / ".azure" + filepath.mkdir() + filepath = filepath / filename + filepath.write_text("content") + + start = root + for i in range(10): + start = start / f"sub{i}" + start.mkdir() + + a = traverse_up_path_and_find_file(start, filename, ".azure") + assert a == str(filepath) diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py new file mode 100644 index 000000000000..bcb89cd51bad --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py @@ -0,0 +1,291 @@ +from unittest.mock import Mock, patch + +import pytest +from azure.ai.ml import MLClient +from azure.ai.ml.entities import ( + BatchDeployment, + BatchEndpoint, + CommandJob, + Component, + Compute, + Datastore, + Environment, + Model, + OnlineDeployment, + OnlineEndpoint, + PipelineJob, + Workspace, +) +from azure.ai.ml.sweep import SweepJob +from tests.test_utilities.constants import Test_Resource_Group, Test_Subscription + + +@pytest.mark.unittest +class TestMachineLearningClient: + def test_get_workspaces(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.workspaces is not None + + def test_get_jobs(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.jobs is not None + + def test_get_computes(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.compute is not None + + def test_get_datastore(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.datastores is not None + + def test_get_online_endpoints(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.online_endpoints is not None + + def test_get_batch_endpoints(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.batch_endpoints is not None + + def test_get_online_deployments(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.online_deployments is not None + + def test_get_batch_deployments(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.batch_deployments is not None + + def test_get_model(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.models is not None + + def test_get_data(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.data is not None + + def test_get_dataset(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.datasets is not None + + def test_get_code(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client._code is not None + + def test_default_workspace_name_match(self, mock_machinelearning_client: MLClient) -> None: + assert mock_machinelearning_client.workspace_name is not None + + def test_set_workspace_name(self, mock_machinelearning_client: MLClient) -> None: + previous_ws = mock_machinelearning_client.workspace_name + new_ws = "new-ws" + + new_client = mock_machinelearning_client._get_new_client(new_ws) + assert new_ws == new_client.workspace_name + assert previous_ws == mock_machinelearning_client.workspace_name + + @pytest.mark.skip(reason="Skipping until MFE Feb API is available in all regions") + @patch("azure.ai.ml._ml_client._get_mfe_url_override") + def test_mfe_url_overwrite(self, mock_get_mfe_url_override, mock_credential): + base_url = "https://management.azure.com" + mock_url = "http://localhost:65535/mferp/managementfrontend" + mock_get_mfe_url_override.return_value = mock_url + + ml_client = MLClient( + credential=mock_credential, subscription_id=Test_Subscription, resource_group_name=Test_Resource_Group + ) + + assert ml_client.workspaces._operation._client._base_url == base_url + assert ml_client.compute._operation._client._base_url == base_url + assert ml_client.jobs._operation_2022_02_preview._client._base_url == mock_url + assert ml_client.jobs._kwargs["enforce_https"] is False + + @patch("azure.ai.ml._ml_client.ComputeOperations", Mock()) + @patch("azure.ai.ml._ml_client.DatastoreOperations", Mock()) + @patch("azure.ai.ml._ml_client.JobOperations", Mock()) + @patch("azure.ai.ml._ml_client.WorkspaceOperations", Mock()) + @patch("azure.ai.ml._ml_client.ModelOperations", Mock()) + @patch("azure.ai.ml._ml_client.DataOperations", Mock()) + @patch("azure.ai.ml._ml_client.DatasetOperations", Mock()) + @patch("azure.ai.ml._ml_client.CodeOperations", Mock()) + @patch("azure.ai.ml._ml_client.EnvironmentOperations", Mock()) + @patch("azure.ai.ml._ml_client.ComponentOperations", Mock()) + @patch("azure.ai.ml._ml_client.OnlineEndpointOperations", Mock()) + @patch("azure.ai.ml._ml_client.BatchEndpointOperations", Mock()) + @patch("azure.ai.ml._ml_client.OnlineDeploymentOperations", Mock()) + @patch("azure.ai.ml._ml_client.BatchDeploymentOperations", Mock()) + @pytest.mark.parametrize( + "args, kwargs, ops_name, call_times, create_method_name", + [ + ( + [CommandJob.load("tests/test_configs/command_job/simple_train_test.yml")], + {}, + "jobs", + 1, + "create_or_update", + ), + ( + [SweepJob.load("tests/test_configs/sweep_job/sweep_job_minimal_test.yaml")], + {}, + "jobs", + 3, + "create_or_update", + ), + ( + [PipelineJob.load("tests/test_configs/pipeline_jobs/helloworld_pipeline_job.yml")], + {}, + "jobs", + 3, + "create_or_update", + ), + ([Model.load("tests/test_configs/model/model_full.yml")], {}, "models", 1, "create_or_update"), + ( + [Environment.load("tests/test_configs/environment/environment_conda.yml")], + {}, + "environments", + 1, + "create_or_update", + ), + ([Datastore.load("tests/test_configs/datastore/blob_store.yml")], {}, "datastores", 1, "create_or_update"), + ( + [CommandJob.load("tests/test_configs/command_job/simple_train_test.yml"), "soemthing_else"], + {}, + "takes 2 positional arguments but 3 were given", + -1, + TypeError, + ), + ], + ) + def test_polymorphic_create_or_update( + self, args, kwargs, ops_name, call_times, create_method_name, mock_credential + ) -> None: + ml_client = MLClient( + credential=mock_credential, + subscription_id=Test_Subscription, + resource_group_name=Test_Resource_Group, + workspace_name="test-ws", + ) + # in the case of faults, if call_times is -1, it is used as a flag to indicate that the test should fail + # if call_times == -1, the ops_name is reused as message error + # the create_method_name is reused as the exception type + if call_times == -1: + with pytest.raises(create_method_name) as e: + ml_client.create_or_update(*args, **kwargs) + assert ops_name in str(e.value) + elif call_times == 1: + ml_client.create_or_update(*args, **kwargs) + ml_client.__getattribute__(ops_name).__getattr__(create_method_name).assert_called_once_with( + *args, **kwargs + ) + else: + ml_client.create_or_update(*args, **kwargs) + ml_client.__getattribute__(ops_name).__getattr__(create_method_name).assert_called_with(*args, **kwargs) + + @patch("azure.ai.ml._ml_client.ComputeOperations", Mock()) + @patch("azure.ai.ml._ml_client.DatastoreOperations", Mock()) + @patch("azure.ai.ml._ml_client.JobOperations", Mock()) + @patch("azure.ai.ml._ml_client.WorkspaceOperations", Mock()) + @patch("azure.ai.ml._ml_client.ModelOperations", Mock()) + @patch("azure.ai.ml._ml_client.DataOperations", Mock()) + @patch("azure.ai.ml._ml_client.DatasetOperations", Mock()) + @patch("azure.ai.ml._ml_client.CodeOperations", Mock()) + @patch("azure.ai.ml._ml_client.EnvironmentOperations", Mock()) + @patch("azure.ai.ml._ml_client.ComponentOperations", Mock()) + @patch("azure.ai.ml._ml_client.OnlineEndpointOperations", Mock()) + @patch("azure.ai.ml._ml_client.BatchEndpointOperations", Mock()) + @patch("azure.ai.ml._ml_client.OnlineDeploymentOperations", Mock()) + @patch("azure.ai.ml._ml_client.BatchDeploymentOperations", Mock()) + @pytest.mark.parametrize( + "args, kwargs, ops_name, call_times, create_method_name", + [ + ([Compute.load("tests/test_configs/compute/compute-ci.yaml")], {}, "compute", 1, "begin_create_or_update"), + ([Workspace.load("tests/test_configs/workspace/workspace_full.yaml")], {}, "workspaces", 1, "begin_create"), + ( + [OnlineEndpoint.load("tests/test_configs/endpoints/online/online_endpoint_create_k8s.yml")], + {}, + "online_endpoints", + 1, + "begin_create_or_update", + ), + ( + [OnlineDeployment.load("tests/test_configs/deployments/online/online_deployment_blue.yaml")], + {}, + "online_deployments", + 1, + "begin_create_or_update", + ), + ( + [OnlineDeployment.load("tests/test_configs/deployments/online/online_deployment_blue.yaml")], + {"local": True, "vscode_debug": True, "no_wait": True}, + "online_deployments", + 2, + "begin_create_or_update", + ), + ( + [OnlineDeployment.load("tests/test_configs/deployments/online/online_deployment_blue.yaml")], + {"local": True, "no_wait": True}, + "online_deployments", + 2, + "begin_create_or_update", + ), + ( + [BatchEndpoint.load("tests/test_configs/endpoints/batch/batch_endpoint_mlflow.yaml")], + {}, + "batch_endpoints", + 1, + "begin_create_or_update", + ), + ( + [BatchDeployment.load("tests/test_configs/deployments/batch/batch_deployment_1.yaml")], + {}, + "batch_deployments", + 1, + "begin_create_or_update", + ), + ], + ) + def test_polymorphic_begin_create_or_update( + self, args, kwargs, ops_name, call_times, create_method_name, mock_credential + ) -> None: + ml_client = MLClient( + credential=mock_credential, + subscription_id=Test_Subscription, + resource_group_name=Test_Resource_Group, + workspace_name="test-ws", + ) + # in the case of faults, if call_times is -1, it is used as a flag to indicate that the test should fail + # if call_times == -1, the ops_name is reused as message error + # the create_method_name is reused as the exception type + if call_times == -1: + with pytest.raises(create_method_name) as e: + ml_client.begin_create_or_update(*args, **kwargs) + assert ops_name in str(e.value) + elif call_times == 1: + ml_client.begin_create_or_update(*args, **kwargs) + ml_client.__getattribute__(ops_name).__getattr__(create_method_name).assert_called_once_with( + *args, **kwargs + ) + else: + ml_client.begin_create_or_update(*args, **kwargs) + ml_client.__getattribute__(ops_name).__getattr__(create_method_name).assert_called_with(*args, **kwargs) + + def test_load_config(self, tmp_path, mock_credential): + root = tmp_path + start = root + for i in range(5): + start = start / f"sub{i}" + start.mkdir() + + config = root / "config.json" + sub = "b17253fa-f327-42d6-9686-f3e553e24523" + rg = "fake_resource_group" + ws = "fake_workspace" + CONTENT = f""" +{{ + "subscription_id": "{sub}", + "resource_group": "{rg}", + "workspace_name": "{ws}" +}} +""" + config.write_text(CONTENT) + + client = MLClient.from_config(credential=mock_credential, path=start) + assert client.workspace_name == ws + assert client._operation_scope.subscription_id == sub + assert client._operation_scope.resource_group_name == rg + + def test_load_config_not_found(self, tmp_path): + root = tmp_path + start = root + for i in range(5): + start = start / f"sub{i}" + start.mkdir() + print(start) + with pytest.raises(Exception) as e: + MLClient.from_config(start) + assert "could not find config.json in:" in str(e) diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_operation_orchestrator.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_operation_orchestrator.py new file mode 100644 index 000000000000..bd35d8e8070c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_operation_orchestrator.py @@ -0,0 +1,553 @@ +from unittest.mock import Mock, patch +import pytest +from pathlib import Path +from azure.core.exceptions import HttpResponseError, ResourceExistsError + +from azure.ai.ml._operations import ( + CodeOperations, + DataOperations, + DatasetOperations, + DatastoreOperations, + EnvironmentOperations, + ModelOperations, + OperationOrchestrator, + ComponentOperations, + OnlineEndpointOperations, +) +from azure.ai.ml._scope_dependent_operations import OperationsContainer, OperationScope +from azure.ai.ml.constants import ( + AZUREML_RESOURCE_PROVIDER, + NAMED_RESOURCE_ID_FORMAT, + VERSIONED_RESOURCE_ID_FORMAT, + AzureMLResourceType, +) +from tests.test_utilities.constants import Test_Resource_Group, Test_Subscription, Test_Workspace_Name +from pytest_mock import MockFixture +from azure.ai.ml.entities._assets._artifacts.artifact import ArtifactStorageInfo +from azure.ai.ml.entities._assets import Model, Code, Data, Environment, Dataset + + +@pytest.fixture +def environment_operations(mocker: MockFixture) -> Mock: + return mocker.patch("azure.ai.ml._operations.environment_operations.EnvironmentOperations") + + +@pytest.fixture +def datastore_operations(mocker: MockFixture) -> Mock: + return mocker.patch("azure.ai.ml._operations.datastore_operations.DatastoreOperations") + + +@pytest.fixture +def model_operations(mocker: MockFixture) -> Mock: + return mocker.patch("azure.ai.ml._operations.model_operations.ModelOperations") + + +@pytest.fixture +def code_operations(mocker: MockFixture) -> Mock: + return mocker.patch("azure.ai.ml._operations.code_operations.CodeOperations") + + +@pytest.fixture +def dataset_operations(mocker: MockFixture) -> Mock: + return mocker.patch("azure.ai.ml._operations.dataset_operations.DatasetOperations") + + +@pytest.fixture +def data_operations(mocker: MockFixture) -> Mock: + return mocker.patch("azure.ai.ml._operations.data_operations.DataOperations") + + +@pytest.fixture +def component_operations(mocker: MockFixture) -> Mock: + return mocker.patch("azure.ai.ml._operations.component_operations.ComponentOperations") + + +@pytest.fixture +def mock_datastore_operations( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> CodeOperations: + yield DatastoreOperations( + operation_scope=mock_workspace_scope, + serviceclient_2022_05_01=mock_aml_services_2022_05_01, + ) + + +@pytest.fixture +def mock_code_assets_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2021_10_01: Mock, + mock_datastore_operations: DatastoreOperations, +) -> CodeOperations: + yield CodeOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2021_10_01, + datastore_operations=mock_datastore_operations, + ) + + +@pytest.fixture +def mock_dataset_operations() -> Mock: + yield Mock() + + +@pytest.fixture +def mock_model_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_05_01: Mock, + mock_datastore_operations: DatastoreOperations, +) -> ModelOperations: + yield ModelOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + datastore_operations=mock_datastore_operations, + ) + + +@pytest.fixture +def mock_environment_operations( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> EnvironmentOperations: + yield EnvironmentOperations(operation_scope=mock_workspace_scope, service_client=mock_aml_services_2022_05_01) + + +@pytest.fixture +def mock_local_endpoint_helper() -> Mock: + yield Mock() + + +@pytest.fixture +def mock_endpoint_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_02_01_preview: Mock, + mock_machinelearning_client: Mock, + mock_code_assets_operations: Mock, + mock_dataset_operations: Mock, + mock_data_operations: Mock, + mock_local_endpoint_helper: Mock, +) -> OnlineEndpointOperations: + mock_machinelearning_client._operation_container.add(AzureMLResourceType.CODE, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.MODEL, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.ENVIRONMENT, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.DATASET, mock_dataset_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.DATA, mock_data_operations) + + yield OnlineEndpointOperations( + operation_scope=mock_workspace_scope, + service_client_10_2021=mock_aml_services_2022_02_01_preview, + all_operations=mock_machinelearning_client._operation_container, + local_endpoint_helper=mock_local_endpoint_helper, + ) + + +@pytest.fixture +def operation_container( + code_operations: CodeOperations, + environment_operations: EnvironmentOperations, + datastore_operations: DatastoreOperations, + model_operations: ModelOperations, + data_operations: DataOperations, + dataset_operations: DatasetOperations, + component_operations: ComponentOperations, +) -> OperationsContainer: + container = OperationsContainer() + container.add(AzureMLResourceType.DATASTORE, datastore_operations) + container.add(AzureMLResourceType.MODEL, model_operations) + container.add(AzureMLResourceType.CODE, code_operations) + container.add(AzureMLResourceType.ENVIRONMENT, environment_operations) + container.add(AzureMLResourceType.DATASET, dataset_operations) + container.add(AzureMLResourceType.DATA, data_operations) + container.add(AzureMLResourceType.COMPONENT, component_operations) + yield container + + +@pytest.fixture +def operation_orchestrator( + mock_workspace_scope: OperationScope, operation_container: OperationsContainer +) -> OperationOrchestrator: + yield OperationOrchestrator(operation_container=operation_container, operation_scope=mock_workspace_scope) + + +@pytest.fixture +def create_yaml_inline_model(tmp_path: Path, resource_group_name: str) -> Path: + content = f""" +name: aksendpoint +target: azureml:/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/{resource_group_name}/providers/Microsoft.MachineLearningServices/workspaces/sdk_vnext_cli/sdkv2endpointaks +auth_mode: Key +traffic: + blue: 0 +deployments: + - name: blue + model: + name: some_name + version: 2 + path: ./test.py + code_configuration: + code: ./endpoint + scoring_script: ./test.py + environment: azureml:/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/sdk_vnext_cli/providers/Microsoft.MachineLearningServices/workspaces/sdk_vnext_cli/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1 + """ + p = tmp_path / "create_model_inline.yaml" + p.write_text(content) + return p + + +@pytest.mark.unittest +class TestOperationOrchestration: + def test_code_arm_id(self, operation_orchestrator: OperationOrchestrator) -> None: + code = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.CODE, + "6ec5cbc4-2ba3-4fb8-826f-d5f65cfcbb8d", + "1", + ) + result = operation_orchestrator.get_asset_arm_id(code, azureml_type=AzureMLResourceType.CODE) + assert code == result + + def test_model_arm_id(self, operation_orchestrator: OperationOrchestrator) -> None: + model = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.MODEL, + "testmodel", + "1", + ) + + result = operation_orchestrator.get_asset_arm_id(model, azureml_type=AzureMLResourceType.MODEL) + assert model == result + + def test_environment_arm_id(self, operation_orchestrator: OperationOrchestrator) -> None: + environment = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.ENVIRONMENT, + "testenv", + "1", + ) + result = operation_orchestrator.get_asset_arm_id(environment, azureml_type=AzureMLResourceType.ENVIRONMENT) + assert environment == result + + def test_dataset_arm_id(self, operation_orchestrator: OperationOrchestrator) -> None: + data = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.DATASET, + "testdata", + "1", + ) + result = operation_orchestrator.get_asset_arm_id(data, azureml_type=AzureMLResourceType.DATASET) + assert data == result + + def test_data_arm_id(self, operation_orchestrator: OperationOrchestrator) -> None: + data = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.DATA, + "testdata", + "1", + ) + result = operation_orchestrator.get_asset_arm_id(data, azureml_type=AzureMLResourceType.DATA) + assert data == result + + def test_code_arm_id_short_name(self, operation_orchestrator: OperationOrchestrator) -> None: + expected = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.CODE, + "test-code", + "1", + ) + code = "test-code:1" + assert expected == operation_orchestrator.get_asset_arm_id(code, azureml_type=AzureMLResourceType.CODE) + + def test_model_arm_id_short_name(self, operation_orchestrator: OperationOrchestrator) -> None: + expected = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.MODEL, + "testmodel", + "1", + ) + model = "testmodel:1" + assert expected == operation_orchestrator.get_asset_arm_id(model, azureml_type=AzureMLResourceType.MODEL) + + def test_environment_arm_id_short_name(self, operation_orchestrator: OperationOrchestrator) -> None: + expected = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.ENVIRONMENT, + "testenv", + "1", + ) + environment = "testenv:1" + assert expected == operation_orchestrator.get_asset_arm_id( + environment, azureml_type=AzureMLResourceType.ENVIRONMENT + ) + + def test_dataset_arm_id_short_name(self, operation_orchestrator: OperationOrchestrator) -> None: + expected = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.DATASET, + "testdata", + "1", + ) + data = "testdata:1" + assert expected == operation_orchestrator.get_asset_arm_id(data, azureml_type=AzureMLResourceType.DATASET) + + def test_data_arm_id_short_name(self, operation_orchestrator: OperationOrchestrator) -> None: + expected = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.DATA, + "testdata", + "1", + ) + data = "testdata:1" + assert expected == operation_orchestrator.get_asset_arm_id(data, azureml_type=AzureMLResourceType.DATA) + + def test_compute_arm_id_short_name(self, operation_orchestrator: OperationOrchestrator) -> None: + expected = NAMED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.COMPUTE, + "cpu-cluster", + ) + compute = "cpu-cluster" + assert expected == operation_orchestrator.get_asset_arm_id(compute, azureml_type=AzureMLResourceType.COMPUTE) + + def test_code_arm_id_entity_no_call( + self, + operation_orchestrator: OperationOrchestrator, + mocker: MockFixture, + ) -> None: + code = Code(name="name", version="1", path="test_path") + mocker.patch( + "azure.ai.ml._artifacts._artifact_utilities._upload_to_datastore", + return_value=ArtifactStorageInfo( + "name", + "1", + "path", + "/subscriptions/mock/resourceGroups/mock/providers/Microsoft.MachineLearningServices/workspaces/mock/datastores/datastore_id", + "azureml-blobstore-test", + ), + ) + result = operation_orchestrator.get_asset_arm_id( + code, register_asset=False, azureml_type=AzureMLResourceType.CODE + ) + assert result.name == "name" + assert result.version == "1" + assert result.path == "azureml-blobstore-test/path" + + def test_model_arm_id_entity_anonymous_no_call( + self, + operation_orchestrator: OperationOrchestrator, + model_operations: ModelOperations, + mocker: MockFixture, + ) -> None: + model = Model(path="tests/test_configs/environment/endpoint_conda.yml") + with patch( + "azure.ai.ml._artifacts._artifact_utilities._upload_to_datastore", + return_value=ArtifactStorageInfo( + "other-name", + "3", + "path", + "/subscriptions/mock/resourceGroups/mock/providers/Microsoft.MachineLearningServices/workspaces/mock/datastores/datastore_id", + "azureml-blobstore-test", + ), + ): + result = operation_orchestrator.get_asset_arm_id( + model, register_asset=False, azureml_type=AzureMLResourceType.MODEL + ) + assert model._is_anonymous + assert result.name == "other-name" + assert result.version == "3" + assert "datastore_id" in result.path + assert result.path.endswith("path") + + def test_model_arm_id_entity_not_anonymous( + self, + operation_orchestrator: OperationOrchestrator, + model_operations: ModelOperations, + mocker: MockFixture, + ) -> None: + model = Model(name="name", version="1", path="test_path") + with patch( + "azure.ai.ml._artifacts._artifact_utilities._upload_to_datastore", + return_value=ArtifactStorageInfo( + "other-name", + "3", + "path", + "/subscriptions/mock/resourceGroups/mock/providers/Microsoft.MachineLearningServices/workspaces/mock/datastores/datastore_id", + "azureml-blobstore-test", + ), + ): + result = operation_orchestrator.get_asset_arm_id( + model, register_asset=False, azureml_type=AzureMLResourceType.MODEL + ) + assert not model._is_anonymous + assert result.name == "name" + assert result.version == "1" + assert "datastore_id" in result.path + assert result.path.endswith("path") + + def test_model_arm_id_entity_anonymous( + self, + operation_orchestrator: OperationOrchestrator, + model_operations: ModelOperations, + mocker: MockFixture, + ) -> None: + model = Model(path="tests/test_configs/environment/endpoint_conda.yml") + with patch( + "azure.ai.ml._artifacts._artifact_utilities._upload_to_datastore", + return_value=ArtifactStorageInfo( + "other-name", + "3", + "path", + "/subscriptions/mock/resourceGroups/mock/providers/Microsoft.MachineLearningServices/workspaces/mock/datastores/datastore_id", + "azureml-blobstore-test", + ), + ): + result = operation_orchestrator.get_asset_arm_id( + model, register_asset=False, azureml_type=AzureMLResourceType.MODEL + ) + assert model._is_anonymous + assert result.name == "other-name" + assert result.version == "3" + assert "datastore_id" in result.path + assert result.path.endswith("path") + print(result.path) + + @patch( + "azure.ai.ml._artifacts._artifact_utilities._upload_to_datastore", + Mock( + return_value=ArtifactStorageInfo( + "name", + "1", + "path", + "/subscriptions/mock/resourceGroups/mock/providers/Microsoft.MachineLearningServices/workspaces/mock/datastores/datastore_id", + "azureml-blobstore-test", + ) + ), + ) + def test_dataset_arm_id_entity_no_call( + self, + operation_orchestrator: OperationOrchestrator, + mocker: MockFixture, + ) -> None: + data = Dataset(name="name", version="1", local_path="test_path") + result = operation_orchestrator._get_dataset_arm_id(data_asset=data, register_asset=False) + assert result.name == "name" + assert result.version == "1" + assert result.paths[0].folder == "azureml://datastores/datastore_id/paths/path/" + + @patch( + "azure.ai.ml._artifacts._artifact_utilities._upload_to_datastore", + Mock( + return_value=ArtifactStorageInfo( + "name", + "1", + "path", + "/subscriptions/mock/resourceGroups/mock/providers/Microsoft.MachineLearningServices/workspaces/mock/datastores/datastore_id", + "azureml-blobstore-test", + ) + ), + ) + def test_data_arm_id_entity_no_call( + self, + operation_orchestrator: OperationOrchestrator, + mocker: MockFixture, + ) -> None: + data = Data(name="name", version="1", path="test_path", type="uri_file") + result = operation_orchestrator._get_data_arm_id(data_asset=data, register_asset=False) + assert result.name == "name" + assert result.version == "1" + assert result.path == "azureml://datastores/datastore_id/paths/path" + + def test_environment_arm_id_entity_no_call(self, operation_orchestrator: OperationOrchestrator) -> None: + environment = Environment(name="name", version="1") + result = operation_orchestrator.get_asset_arm_id( + environment, register_asset=False, azureml_type=AzureMLResourceType.ENVIRONMENT + ) + assert result == environment + + def test_model_arm_id_entity(self, operation_orchestrator: OperationOrchestrator) -> None: + model = Model(name="name", version="1", path="test_path") + operation_orchestrator.get_asset_arm_id(model, azureml_type=AzureMLResourceType.MODEL) + operation_orchestrator._model.create_or_update.assert_called_once() + + def test_environment_arm_id_entity(self, operation_orchestrator: OperationOrchestrator) -> None: + environment = Environment(name="name", version="1") + operation_orchestrator.get_asset_arm_id(environment, azureml_type=AzureMLResourceType.ENVIRONMENT) + operation_orchestrator._environments.create_or_update.assert_called_once() + + def test_arm_id_not_start_with_slash(self, operation_orchestrator: OperationOrchestrator): + + arm_id = NAMED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + AzureMLResourceType.DATA, + "fake-data", + ) + arm_id = arm_id[1:] + # test when arm id didn't start with slash like subscriptions/xxx, proper error message is shown + with pytest.raises(Exception) as error_info: + operation_orchestrator.get_asset_arm_id(arm_id, azureml_type=AzureMLResourceType.DATASET) + assert str(error_info.value) == f"Could not parse {arm_id}. If providing an ARM id, it should start with a '/'." + + def test_client_side_label_resolution(self, operation_orchestrator: OperationOrchestrator): + # TODO: This test should be removed once labels are handled service-side + + name = "foo" + label = "latest" + resolved_version = str(2) + assettype = AzureMLResourceType.DATASET + expected = VERSIONED_RESOURCE_ID_FORMAT.format( + Test_Subscription, + Test_Resource_Group, + AZUREML_RESOURCE_PROVIDER, + Test_Workspace_Name, + assettype, + name, + resolved_version, + ) + + with patch.object( + operation_orchestrator._operation_container.all_operations[assettype], + "_managed_label_resolver", + {label: lambda _: Dataset(name=name, version=resolved_version)}, + ): + result = operation_orchestrator.get_asset_arm_id(f"{name}@{label}", assettype) + assert expected == result + + with pytest.raises(Exception): + operation_orchestrator.get_asset_arm_id(f"{name}@label_does_not_exist") + + def test_component_registry_id(self, operation_orchestrator: OperationOrchestrator) -> None: + component = "azureml://registries/testFeed/components/My_Hello_World_Asset_2/versions/1" + result = operation_orchestrator.get_asset_arm_id(component, azureml_type=AzureMLResourceType.COMPONENT) + assert component == result diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_registry_utils.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_registry_utils.py new file mode 100644 index 000000000000..47ec2f118aed --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_registry_utils.py @@ -0,0 +1,37 @@ +import json +import pytest +from azure.core.exceptions import HttpResponseError +from azure.ai.ml._utils._registry_utils import _get_registry_discovery_uri +from pytest_mock import MockFixture +from azure.ai.ml._restclient.registry_discovery import AzureMachineLearningWorkspaces as ServiceClientRegistryDiscovery + + +@pytest.mark.unittest +def test_construct_mfe_uri_success( + mocker: MockFixture, mock_registry_discovery_client: ServiceClientRegistryDiscovery +) -> None: + mock_response = json.dumps( + { + "registryName": "testFeed", + "primaryRegionResourceProviderUri": "https://cert-master.experiments.azureml-test.net/", + } + ) + mocker.patch( + "azure.ai.ml._restclient.registry_discovery.operations._registry_management_non_workspace_operations.RegistryManagementNonWorkspaceOperations.registry_management_non_workspace", + return_val=mock_response, + ) + uri = _get_registry_discovery_uri(mock_registry_discovery_client, "testFeed") + assert (uri, "https://cert-master.experiments.azureml-test.net/") is not None + + +@pytest.mark.unittest +def test_construct_mfe_uri_error( + mocker: MockFixture, mock_registry_discovery_client: ServiceClientRegistryDiscovery +) -> None: + mock_error = HttpResponseError(response=mocker.patch("azure.core.pipeline.HTTPResponseType")) + mocker.patch( + "azure.ai.ml._restclient.registry_discovery.operations._registry_management_non_workspace_operations.RegistryManagementNonWorkspaceOperations.registry_management_non_workspace", + side_effect=mock_error, + ) + with pytest.raises(HttpResponseError): + _get_registry_discovery_uri(mock_registry_discovery_client, "testFeed") diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_smoke.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_smoke.py new file mode 100644 index 000000000000..a5c702c53027 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_smoke.py @@ -0,0 +1,61 @@ +import pytest + +from azure.ai.ml.entities import * + + +ERROR_MSG = "Can't instantiate abstract class" + + +@pytest.mark.unittest +def test_smoke(): + from azure.ai.ml.entities import ( + Model, + Environment, + CommandComponent, + ParallelComponent, + CommandJob, + PipelineJob, + BatchDeployment, + BatchEndpoint, + OnlineDeployment, + OnlineEndpoint, + Component, + Asset, + Resource, + ) + from azure.ai.ml.sweep import SweepJob + from azure.ai.ml.entities._assets import Code, Dataset + from azure.ai.ml.entities._builders import Command, Parallel + + Environment() + Model() + Code() + CommandComponent() + ParallelComponent() + Dataset() + Command(component="fake_component") + Parallel(component="fake_component") + CommandJob() + SweepJob() + PipelineJob() + BatchEndpoint() + BatchDeployment(name="bla") + + with pytest.raises(TypeError) as e: + OnlineDeployment() + assert ERROR_MSG in e.msg + with pytest.raises(TypeError) as e: + OnlineEndpoint() + assert ERROR_MSG in e.msg + with pytest.raises(TypeError) as e: + Component() + assert ERROR_MSG in e.msg + with pytest.raises(TypeError) as e: + Asset() + assert ERROR_MSG in e.msg + with pytest.raises(TypeError) as e: + Resource() + assert ERROR_MSG in e.msg + + +# nopycln: file diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_utils.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_utils.py new file mode 100644 index 000000000000..b79a17c3f050 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_utils.py @@ -0,0 +1,50 @@ +import pytest +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml._utils.utils import ( + dict_eq, + _get_mfe_base_url_from_batch_endpoint, + map_single_brackets_and_warn, + get_list_view_type, + is_data_binding_expression, +) +from azure.ai.ml.entities import BatchEndpoint +from azure.ai.ml._restclient.v2021_10_01.models import ListViewType + + +@pytest.mark.unittest +class TestUtils: + def test_dict_eq(self) -> None: + assert dict_eq(dict1={}, dict2=None) + assert dict_eq(dict1={"blue": 1, "green": 2}, dict2={"blue": 1, "green": 2}) + + def test_get_mfe_base_url_from_batch_endpoint(self) -> None: + endpoint = BatchEndpoint( + name="bla", + scoring_uri="https://eastus2euap.api.azureml.ms/mferp/managementfrontend/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/test-rg-eastus2euap-v2-2021W16/providers/Microsoft.MachineLearningServices/workspaces/sdk_vnext_cli/batchEndpoints/be-20210421/jobs?api-version=2020-09-01-preview", + ) + assert "https://eastus2euap.api.azureml.ms/mferp/managementfrontend" == _get_mfe_base_url_from_batch_endpoint( + endpoint + ) + + def test_legacy_command_substitution(self) -> None: + input_string = "test {inputs.val1} ${{inputs.val2}} {search_space.val3} ${{search_space.val4}} {non-captured}" + expected_string = ( + "test ${{inputs.val1}} ${{inputs.val2}} ${{search_space.val3}} ${{search_space.val4}} {non-captured}" + ) + + output_string = map_single_brackets_and_warn(input_string) + + assert expected_string == output_string + + def test_is_data_binding_expression(self) -> None: + target_string = "${{ parent.inputs.input_string }}" + assert is_data_binding_expression(target_string) + assert is_data_binding_expression(target_string, ["parent", "inputs", "input_string"]) + assert not is_data_binding_expression(target_string, ["parent", "outputs"]) + assert not is_data_binding_expression(target_string, ["parent", "inputs", "input_string_2"]) + + target_string = "${{ parent.inputs.input_string }} abc ${{ parent.outputs.output_string }}" + assert not is_data_binding_expression(target_string) + assert is_data_binding_expression(target_string, is_singular=False) + assert is_data_binding_expression(target_string, ["parent", "inputs", "input_string"], is_singular=False) + assert not is_data_binding_expression(target_string, ["parent", "name"], is_singular=False) diff --git a/sdk/ml/azure-ai-ml/tests/job_common/__init__.py b/sdk/ml/azure-ai-ml/tests/job_common/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/job_common/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/job_common/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_job_operations.py b/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_job_operations.py new file mode 100644 index 000000000000..d1308f592d29 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_job_operations.py @@ -0,0 +1,219 @@ +import os +from typing import Callable +from unittest.mock import Mock, patch + +from azure.ai.ml.entities._job.automl.training_settings import TrainingSettings +from msrest import Deserializer +import yaml +import json +from pytest_mock import MockFixture + +import pytest +import vcr +from .test_vcr_utils import before_record_cb, vcr_header_filters +from azure.identity import DefaultAzureCredential +from azure.ai.ml import MLClient +from azure.core.exceptions import HttpResponseError +from azure.ai.ml._operations import ( + CodeOperations, + DatastoreOperations, + EnvironmentOperations, + JobOperations, + RunOperations, + WorkspaceOperations, +) +from azure.ai.ml._operations.job_ops_helper import get_git_properties +from azure.ai.ml._operations.run_history_constants import RunHistoryConstants +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.constants import AzureMLResourceType, AZUREML_PRIVATE_FEATURES_ENV_VAR +from azure.ai.ml.entities._job.command_job import CommandJob +from azure.ai.ml.entities._job.automl.automl_job import AutoMLJob +from azure.ai.ml.entities._job.sweep.sweep_job import SweepJob +from azure.ai.ml.entities._job.job import Job +from azure.ai.ml._restclient.v2021_10_01 import models + + +@pytest.fixture +def mock_datastore_operation( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> DatastoreOperations: + yield DatastoreOperations( + operation_scope=mock_workspace_scope, + serviceclient_2022_05_01=mock_aml_services_2022_05_01, + ) + + +@pytest.fixture +def mock_code_operation( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock, mock_datastore_operation: Mock +) -> CodeOperations: + yield CodeOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + datastore_operations=mock_datastore_operation, + ) + + +@pytest.fixture +def mock_environment_operation( + mock_workspace_scope: OperationScope, mock_machinelearning_client: Mock, mock_aml_services_2022_05_01: Mock +) -> EnvironmentOperations: + yield EnvironmentOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.fixture +def mock_workspace_operation( + mock_workspace_scope: OperationScope, + mock_machinelearning_client: Mock, + mock_aml_services_2021_10_01: Mock, +) -> WorkspaceOperations: + yield WorkspaceOperations( + mock_workspace_scope, + service_client=mock_aml_services_2021_10_01, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.fixture +def mock_runs_operation(mock_workspace_scope: OperationScope, mock_aml_services_2021_10_01: Mock) -> RunOperations: + yield RunOperations(operation_scope=mock_workspace_scope, service_client=mock_aml_services_2021_10_01) + + +@pytest.fixture +def mock_job_operation( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_02_01_preview: Mock, + mock_aml_services_run_history: Mock, + mock_machinelearning_client: Mock, + mock_code_operation: Mock, + mock_workspace_operation: WorkspaceOperations, + mock_datastore_operation: Mock, + mock_environment_operation: Mock, + mock_runs_operation: Mock, +) -> JobOperations: + mock_machinelearning_client._operation_container.add(AzureMLResourceType.CODE, mock_code_operation) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.ENVIRONMENT, mock_environment_operation) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.WORKSPACE, mock_workspace_operation) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.DATASTORE, mock_datastore_operation) + mock_machinelearning_client._operation_container.add("run", mock_runs_operation) + yield JobOperations( + operation_scope=mock_workspace_scope, + service_client_02_2022_preview=mock_aml_services_2022_02_01_preview, + service_client_run_history=mock_aml_services_run_history, + all_operations=mock_machinelearning_client._operation_container, + credential=Mock(spec_set=DefaultAzureCredential), + ) + + +@pytest.mark.unittest +class TestJobOperations: + def test_list(self, mock_job_operation: JobOperations) -> None: + mock_job_operation.list() + expected = (mock_job_operation._resource_group_name, mock_job_operation._workspace_name) + assert expected in mock_job_operation._operation_2022_02_preview.list.call_args + + @patch.dict(os.environ, {AZUREML_PRIVATE_FEATURES_ENV_VAR: "True"}) + def test_list_private_preview(self, mock_job_operation: JobOperations) -> None: + mock_job_operation.list() + expected = (mock_job_operation._resource_group_name, mock_job_operation._workspace_name) + assert expected in mock_job_operation._operation_2022_02_preview.list.call_args + + @patch.object(Job, "_from_rest_object") + def test_get(self, mock_method, mock_job_operation: JobOperations, randstr: Callable[[], str]) -> None: + mock_method.return_value = CommandJob() + mock_job_operation.get(randstr()) + mock_job_operation._operation_2022_02_preview.get.assert_called_once() + + @patch.object(Job, "_from_rest_object") + @patch.dict(os.environ, {AZUREML_PRIVATE_FEATURES_ENV_VAR: "True"}) + def test_get_private_preview_flag_returns_latest( + self, mock_method, mock_job_operation: JobOperations, randstr: Callable[[], str] + ) -> None: + mock_method.return_value = CommandJob() + mock_job_operation.get(randstr()) + mock_job_operation._operation_2022_02_preview.get.assert_called_once() + + def test_stream_command_job(self, mock_job_operation: JobOperations, randstr: Callable[[], str]) -> None: + # setup + mock_job_operation._get_workspace_url = Mock(return_value="TheWorkSpaceUrl") + mock_job_operation._stream_logs_until_completion = Mock() + + # go + mock_job_operation.stream(randstr()) + + # check + mock_job_operation._operation_2022_02_preview.get.assert_called_once() + mock_job_operation._get_workspace_url.assert_called_once() + mock_job_operation._stream_logs_until_completion.assert_called_once() + assert mock_job_operation._runs_operations_client._operation._client._base_url == "TheWorkSpaceUrl" + + def test_job_operations_list_with_schedule_name( + self, mock_job_operation: JobOperations, randstr: Callable[[], str] + ): + scheduled_job_name = randstr() + mock_job_operation.list(scheduled_job_name=randstr()) + assert mock_job_operation._operation_2022_02_preview.list.called_with( + schedule_id=scheduled_job_name, schedule_defined=None + ) + + def test_job_operations_list_schedule_defined_no_name( + self, mock_job_operation: JobOperations, randstr: Callable[[], str] + ): + mock_job_operation.list(schedule_defined=True) + assert mock_job_operation._operation_2022_02_preview.list.called_with(schedule_id=None, schedule_defined=True) + + @pytest.mark.skip(reason="Mock Job missing properties to complete full test in Feb API") + @patch.object(Job, "_from_rest_object") + def test_submit_command_job(self, mock_method, mock_job_operation: JobOperations) -> None: + mock_method.return_value = CommandJob() + job = CommandJob.load(path="./tests/test_configs/command_job/command_job_test.yml") + mock_job_operation.create_or_update(job=job) + git_props = get_git_properties() + assert git_props.items() <= job.properties.items() + mock_job_operation._operation_2022_02_preview.create_or_update.assert_called_once() + mock_job_operation._credential.get_token.assert_called_once_with("https://ml.azure.com/.default") + + @pytest.mark.skip(reason="Function under test no longer returns Job as output") + def test_command_job_resolver_with_virtual_cluster(self, mock_job_operation: JobOperations) -> None: + expected = "/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/virtualclusters/testvcinmaster" + job = Job.load(path="tests/test_configs/command_job/command_job_with_virtualcluster.yaml") + mock_job_operation._resolve_arm_id_or_upload_dependencies(job) + assert job.compute == expected + + job = Job.load(path="tests/test_configs/command_job/command_job_with_virtualcluster_2.yaml") + mock_job_operation._resolve_arm_id_or_upload_dependencies(job) + assert job.compute == expected + + @patch.object(Job, "_from_rest_object") + @pytest.mark.vcr() + def test_archive(self, mock_method, mock_job_operation: JobOperations, randstr: Callable[[], str]) -> None: + mock_method.return_value = CommandJob() + mock_job_operation.archive(name=randstr()) + mock_job_operation._operation_2022_02_preview.get.assert_called_once() + mock_job_operation._operation_2022_02_preview.create_or_update.assert_called_once() + + @patch.object(Job, "_from_rest_object") + @pytest.mark.vcr() + def test_restore(self, mock_method, mock_job_operation: JobOperations, randstr: Callable[[], str]) -> None: + mock_method.return_value = CommandJob() + mock_job_operation.restore(name=randstr()) + mock_job_operation._operation_2022_02_preview.get.assert_called_once() + mock_job_operation._operation_2022_02_preview.create_or_update.assert_called_once() + + @pytest.mark.parametrize( + "corrupt_job_data", + [ + "./tests/test_configs/sweep_job/corrupt_mfe_data_sweep_job.json", + ], + ) + def test_parse_corrupt_job_data(self, mocker: MockFixture, corrupt_job_data: str) -> None: + with open(corrupt_job_data, "r") as f: + resource = json.load(f) + resource = models.JobBaseData.deserialize(resource) + with pytest.raises(Exception, match="Unknown search space type"): + # Convert from REST object + Job._from_rest_object(resource) diff --git a/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_job_ops_helper.py b/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_job_ops_helper.py new file mode 100644 index 000000000000..61c0f30f93f5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_job_ops_helper.py @@ -0,0 +1,311 @@ +import re +import time +from collections import OrderedDict +from io import StringIO +from unittest.mock import Mock +from typing import Dict +import pytest +import vcr +from .test_vcr_utils import before_record_cb +from azure.ai.ml._operations.job_ops_helper import ( + list_logs, + stream_logs_until_completion, + _incremental_print, + _get_sorted_filtered_logs, +) +from azure.ai.ml._operations.run_operations import RunOperations +from azure.ai.ml._restclient.runhistory.models import RunDetails, RunDetailsWarning +from azure.ai.ml._scope_dependent_operations import OperationScope +from mock import mock_open, patch + + +class DummyJob: + class InteractionEndpoint: + def __init__(self, **kwargs): + self.endpoint = "testurl" + + class Properties: + def __init__(self, **kwargs): + super().__init__() + self.experiment_name = "dummy_exp" + self.services = {"Studio": DummyJob.InteractionEndpoint()} + self.job_type = "Command" + + def __init__(self, **kwargs): + super().__init__() + self.name = "dummy" + self.properties = DummyJob.Properties() + + +def fake_read(): + return mock_open(read_data="{}") + + +@pytest.fixture +def mock__commands(): + m = Mock(name="_commands") + mock_run_history_facade = patch.dict("sys.modules", {"azureml._execution": m}) + mock_run_history_facade.start() + yield m + mock_run_history_facade.stop() + + +@pytest.fixture +def mock_time(request): + p = patch("azure.ai.ml._operations.job_ops_helper.time") + yield p.start() + p.stop() + + +@pytest.fixture +def mock_run_operations(mock_workspace_scope: OperationScope, mock_aml_services_run_history: Mock) -> RunOperations: + yield RunOperations(mock_workspace_scope, mock_aml_services_run_history) + + +@pytest.mark.unittest +class TestJobLogManager: + def test_wait_for_completion_with_output(self, mock_run_operations): + dummy_job = DummyJob() + with patch.object( + RunOperations, + "get_run_details", + side_effect=[ + RunDetails(status="Finalizing", log_files={"log1": "Log", "log2": "log"}), + RunDetails(status="Completed", log_files={"log1": "Log", "log2": "log"}), + ], + ) as get_run_mock: + stream_logs_until_completion(mock_run_operations, dummy_job) + get_run_mock.assert_called() + + def test_wait_for_completion_with_error_silent(self, mock_run_operations): + dummy_job = DummyJob() + with patch.object( + RunOperations, + "get_run_details", + return_value=RunDetails(status="Failed", warnings=[RunDetailsWarning(message="bad luck")]), + ) as get_run_mock: + stream_logs_until_completion(mock_run_operations, dummy_job, None, False) + get_run_mock.assert_called_once() + + def test_wait_for_completion_with_error_raise(self, mock_run_operations): + dummy_job = DummyJob() + with patch.object(RunOperations, "get_run_details", return_value=RunDetails(status="Failed")) as get_run_mock: + with pytest.raises(Exception): + stream_logs_until_completion(mock_run_operations, dummy_job) + get_run_mock.assert_called_once() + + # The list of logs that should be streamed, if you need to recreate, + # you can just copy and paste the logFiles section from the Raw run JSON on the UI, + # then keep here only the ones we stream + _streamable_log_files_urls = OrderedDict( + { + "azureml-logs/55_azureml-execution-tvmps_f712ea79c8fca9c3c7f41774b414e867a0854377c8e411b095f30dd68f6d6027_d.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/55_azureml-execution-tvmps_f712ea79c8fca9c3c7f41774b414e867a0854377c8e411b095f30dd68f6d6027_d.txt?sv=2019-02-02&sr=b&sig=2B9oQEbsUwKZzw1eTUiyLJy64DRC%2BVOjv9lRb8Jx%2FLM%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "azureml-logs/65_job_prep-tvmps_f712ea79c8fca9c3c7f41774b414e867a0854377c8e411b095f30dd68f6d6027_d.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/65_job_prep-tvmps_f712ea79c8fca9c3c7f41774b414e867a0854377c8e411b095f30dd68f6d6027_d.txt?sv=2019-02-02&sr=b&sig=2E1x1mUWF5Y8VD1e0yMqEZeWct4vngjES%2FJ3SFzKKxU%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "azureml-logs/70_driver_log-worker-0.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/70_driver_log-worker-0.txt?sv=2019-02-02&sr=b&sig=8lXLfLMqGaQ7VNGLCKkQ%2BbdebJcyEFCJzNStYCRuVZc%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "azureml-logs/75_job_post-tvmps_f712ea79c8fca9c3c7f41774b414e867a0854377c8e411b095f30dd68f6d6027_d.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/75_job_post-tvmps_f712ea79c8fca9c3c7f41774b414e867a0854377c8e411b095f30dd68f6d6027_d.txt?sv=2019-02-02&sr=b&sig=9YR6A64Tuq0E7KsgzPX7atqJ33eGjaJ8QeRaNaQ1%2BL4%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + } + ) + + # The list of logs that should NOT be streamed, if you need to recreate, + # you can just copy and paste the logFiles section from the Raw run JSON on the UI, + # then keep here only the ones we shouldn't stream + _additional_log_files_urls = { + "azureml-logs/process_info.json": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "azureml-logs/process_status.json": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_status.json?sv=2019-02-02&sr=b&sig=FDFzfqtn9iYq2FMb5SOBGBu91k%2B8LQITcRiYYyLtDHs%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "logs/azureml/job_prep_azureml.log": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/logs/azureml/job_prep_azureml.log?sv=2019-02-02&sr=b&sig=td0HUXBar%2FYv%2FhZiSdlPR516OH8bCMiBN3yH6dCSHvk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "logs/azureml/job_release_azureml.log": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/logs/azureml/job_release_azureml.log?sv=2019-02-02&sr=b&sig=BeeRya%2FFZhqCNBk0hCJrks7%2Bejg9qTCFe5FNnf%2BUJyk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "logs/azureml/worker0_373_azureml.log": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/logs/azureml/worker0_373_azureml.log?sv=2019-02-02&sr=b&sig=ySxUJjd1lqi%2FskcMfAYYFQ%2FyUQALbV0WH7jYtf%2FXaKk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + } + + _common_runtime_log_urls = { + "user_logs/std_log.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "azureml-logs/lifecycler/lifecycler.log": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + } + + _common_runtime_mpi_urls = { + "user_logs/std_log_process_00.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "user_logs/std_log_process_01.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "user_logs/std_log_process_02.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "user_logs/std_log_process_03.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "user_logs/std_log_process_04.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + } + + _common_runtime_tensorflow_urls = { + "user_logs/std_log_node_00_ps.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "user_logs/std_log_node_01_ps.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "user_logs/std_log_node_00_worker.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "user_logs/std_log_node_01_worker.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + "user_logs/std_log_node_02_worker.txt": "https://rihorn24316837458.blob.core.windows.net/azureml/ExperimentRun/dcid.1a9952e7-f173-45c0-bd61-3cd591498bdf/azureml-logs/process_info.json?sv=2019-02-02&sr=b&sig=wn2pW00%2F86Qlo3NWOokMVGmaeModJNyHlIP5dDI4zqk%3D&skoid=e3f42e2c-d581-4b65-a966-631cfa961328&sktid=72f988bf-86f1-41af-91ab-2d7cd011db47&skt=2021-05-03T13%3A11%3A21Z&ske=2021-05-04T08%3A32%3A18Z&sks=b&skv=2019-02-02&st=2021-05-03T13%3A45%3A30Z&se=2021-05-03T21%3A55%3A30Z&sp=r", + } + + # Method to create a RunDetails based on the provided status, + # the number of streamable files to include, and if whether to add or not + # non-streamable log files + def _get_run_details_dto( + self, status="Finalizing", number_of_streamable_log_files=0, include_additional_log_files=False + ) -> RunDetails: + keys = self._streamable_log_files_urls.keys() + + # Check if there are enough streamable log files + if number_of_streamable_log_files > len(keys): + raise Exception(f"There are less than {number_of_streamable_log_files}") + + # Keep only the first number_of_streamable_log_files logs + log_files = {} + for key in keys: + log_files[key] = self._streamable_log_files_urls[key] + number_of_streamable_log_files -= 1 + if not number_of_streamable_log_files: + break + + # Add the additional logs if specified + if include_additional_log_files: + log_files.update(self._additional_log_files_urls) + + return RunDetails(status=status, log_files=log_files) + + # Helper method to test that logs will be streamed comprehensively + # and in predictable order independently of the sequence of run details. + # Logs could be delivered at different pace after subsequent calls to get details + def _test_stream_logs_helper(self, mock_run_operations, run_details_sequence=[]) -> None: + my_vcr = vcr.VCR(before_record=before_record_cb) + + with patch("sys.stdout", new=StringIO()) as fake_out, patch.object( + RunOperations, "get_run_details", side_effect=run_details_sequence + ) as get_run_mock, patch.object(time, "sleep",) as fake_time, my_vcr.use_cassette( + "cassettes/test_stream_logs.yaml" + ): + + stream_logs_until_completion(mock_run_operations, DummyJob()) + + # get_run_mock was called, and all the sequence of run details was consumed + get_run_mock.assert_called() + assert get_run_mock.call_count == len(run_details_sequence) + + # while streamed, we waited in between each call to get run details + fake_time.assert_called() + assert fake_time.call_count == len(run_details_sequence) - 1 + + # Regext to checking on the 'Streaming ' message + reg_exp = re.compile(r"Streaming ([\S]*)") + + output = fake_out.getvalue() + list_of_logs = list(self._streamable_log_files_urls.keys()) + + # Check that all the logs were streamed + assert reg_exp.findall(output) == list_of_logs + + # Check there were no duplicates + assert len(list_of_logs) == len(set(list_of_logs)) + + def test_list_logs(self, mock_run_operations) -> None: + with patch.object( + RunOperations, + "get_run_details", + side_effect=[self._get_run_details_dto(status="Completed", number_of_streamable_log_files=3)], + ) as get_run_mock: + output = list_logs(mock_run_operations, DummyJob()) + get_run_mock.assert_called() + assert len(output.items()) == 3 + + # Method to test the golden path, a new log was added on each call to get run details + @pytest.mark.vcr() + @pytest.mark.skip(reason="To address after code migration") + def test_stream_logs_golden_path(self, mock_run_operations) -> None: + run_details_sequence = [ + self._get_run_details_dto(status="Running"), + self._get_run_details_dto(status="Finalizing", number_of_streamable_log_files=1), + self._get_run_details_dto(status="Finalizing", number_of_streamable_log_files=2), + self._get_run_details_dto(status="Finalizing", number_of_streamable_log_files=3), + self._get_run_details_dto(status="Finalizing", number_of_streamable_log_files=4), + self._get_run_details_dto( + status="Completed", number_of_streamable_log_files=4, include_additional_log_files=True + ), + ] + + self._test_stream_logs_helper(mock_run_operations, run_details_sequence=run_details_sequence) + + # Method to test when all the logs were available at the same time + @pytest.mark.vcr() + @pytest.mark.skip(reason="To address after code migration") + def test_stream_logs_arriving_all_together(self, mock_run_operations) -> None: + run_details_sequence = [ + self._get_run_details_dto(status="Running"), + self._get_run_details_dto(status="Finalizing", number_of_streamable_log_files=4), + self._get_run_details_dto( + status="Completed", number_of_streamable_log_files=4, include_additional_log_files=True + ), + ] + + self._test_stream_logs_helper(mock_run_operations, run_details_sequence=run_details_sequence) + + # Method to test when the logs became available in batches of 2 + @pytest.mark.vcr() + @pytest.mark.skip(reason="To address after code migration") + def test_stream_logs_arriving_in_batches(self, mock_run_operations) -> None: + run_details_sequence = [ + self._get_run_details_dto(status="Running"), + self._get_run_details_dto(status="Finalizing", number_of_streamable_log_files=2), + self._get_run_details_dto(status="Finalizing", number_of_streamable_log_files=4), + self._get_run_details_dto( + status="Completed", number_of_streamable_log_files=4, include_additional_log_files=True + ), + ] + + self._test_stream_logs_helper(mock_run_operations, run_details_sequence=run_details_sequence) + + def test_get_streamable_logs_common_runtime_folder_structure(self) -> None: + output = _get_sorted_filtered_logs(self._common_runtime_log_urls, "Command") + assert len(output) == 1 + assert output[0] == "user_logs/std_log.txt" + + def test_get_all_logs_common_runtime_folder_structure(self) -> None: + output = _get_sorted_filtered_logs(self._common_runtime_log_urls, "Command", {}, False) + assert len(output) == 1 + assert output[0] == "user_logs/std_log.txt" + + def test_get_streamable_logs_common_runtime_mpi(self) -> None: + output = _get_sorted_filtered_logs(self._common_runtime_mpi_urls, "Command") + assert len(output) == 1 + assert output[0] == "user_logs/std_log_process_00.txt" + + def test_get_all_logs_common_runtime_mpi(self) -> None: + output = _get_sorted_filtered_logs(self._common_runtime_mpi_urls, "Command", {}, False) + assert len(output) == 5 + + def test_get_streamable_logs_common_runtime_tensorflow(self) -> None: + output = _get_sorted_filtered_logs(self._common_runtime_tensorflow_urls, "Command") + assert len(output) == 1 + assert output[0] == "user_logs/std_log_node_00_ps.txt" + + def test_get_all_logs_common_runtime_tensorflow(self) -> None: + output = _get_sorted_filtered_logs(self._common_runtime_tensorflow_urls, "Command", {}, False) + assert len(output) == 5 + + def test_stream_printing(self) -> None: + log_name = "55_log_test" + log_content = "line1\nline2\nline3\n" + stream = StringIO() + processed_logs: Dict[str, int] = {} + _incremental_print(log_content, processed_logs, log_name, stream) + # should contain the length of the log (3) + the header lines (4) + assert len(stream.getvalue().splitlines()) == 7 + assert processed_logs[log_name] == 3 + + # reset the state, to mock out the case where the first two lines have alread been read in + processed_logs[log_name] = 2 + stream = StringIO() + _incremental_print(log_content, processed_logs, log_name, stream) + # should contain the length of the log (3) - skip previous lines (2) + no header lines (0) + assert len(stream.getvalue().splitlines()) == 1 + assert processed_logs[log_name] == 3 + + def test_empty_log_is_skipped(self) -> None: + log_name = "55_log_test" + log_content = "" + stream = StringIO() + processed_logs: Dict[str, int] = {} + _incremental_print(log_content, processed_logs, log_name, stream) + # should be empty, no header, no log. + assert len(stream.getvalue().splitlines()) == 0 + assert processed_logs.get(log_name, None) is None diff --git a/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_local_job_invoker.py b/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_local_job_invoker.py new file mode 100644 index 000000000000..62054169c1aa --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_local_job_invoker.py @@ -0,0 +1,59 @@ +import os +from pathlib import Path +import pytest + +from azure.ai.ml._operations.local_job_invoker import ( + _get_creationflags_and_startupinfo_for_background_process, + patch_invocation_script_serialization, +) + + +@pytest.mark.unittest +class TestLocalJobInvoker: + def test_serialize_patch(self): + dummy_file = Path("./dummy_file1.txt").resolve() + dummy_file.write_text( + """unread strings + everythng before are ignored + continue to ignore --snapshots '""" + + '[{"Id": "abc-123"}]' + + """' Everything after is ignored""" + ) + + patch_invocation_script_serialization(dummy_file) + expected_out = ( + """unread strings + everythng before are ignored + continue to ignore --snapshots""" + + ' "[{\\"Id\\": \\"abc-123\\"}]" ' + + """Everything after is ignored""" + ) + assert dummy_file.read_text() == expected_out + dummy_file.unlink() + + def test_serialize_patch_no_op(self): + # Validate that the previously escaped string does not modify if funciton is run + dummy_file = Path("./dummy_file2.txt").resolve() + expected_out = ( + """unread strings + everythng before are ignored + continue to ignore --snapshots""" + + ' "[{\\"Id\\": \\"abc-123\\"}]" ' + + """Everything after is ignored""" + ) + dummy_file.write_text(expected_out) + # Should change nothing if correctly serialized + patch_invocation_script_serialization(dummy_file) + + assert dummy_file.read_text() == expected_out + dummy_file.unlink() + + def test_creation_flags(self): + flags = _get_creationflags_and_startupinfo_for_background_process() + if os.name == "nt": + assert flags["creationflags"] == 16 + assert flags["startupinfo"] is not None + # After validating Windows flags, rerun with override os set. + flags = _get_creationflags_and_startupinfo_for_background_process("linux") + + assert flags == {"stderr": -2, "stdin": -3, "stdout": -3} diff --git a/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_vcr_utils.py b/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_vcr_utils.py new file mode 100644 index 000000000000..b87fea92baef --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/job_common/unittests/test_vcr_utils.py @@ -0,0 +1,27 @@ +from typing import Dict, Any, List, Tuple +from urllib.parse import urlparse + + +# the headers we want VCR to filter out of requests +def vcr_header_filters() -> List[Tuple[str, str]]: + return [ + ("Authorization", "filtered-value"), + ("x-ms-client-request-id", "filtered-value"), + ("User-Agent", "filtered-value"), + ("x-ms-date", "filtered-value"), + ("x-ms-version", "filtered-value"), + ("x-ms-range", "filtered-value"), + ] + + +def before_record_cb(request: Dict[str, Any]) -> dict: + try: + u = urlparse(request.uri) + empty, sub, sub_d, rg, rg_d, rest = u.path.split("/", 5) + assert sub == "subscriptions" + assert rg == "resourceGroups" + u = u._replace(path="/".join([empty, sub, "00000000-0000-0000-0000-000000000000", rg, "000000000000000", rest])) + request.uri = u.geturl() + return request + except Exception: + return request diff --git a/sdk/ml/azure-ai-ml/tests/local_endpoint/__init__.py b/sdk/ml/azure-ai-ml/tests/local_endpoint/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_devcontainer_properties.py b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_devcontainer_properties.py new file mode 100644 index 000000000000..ee153130df2e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_devcontainer_properties.py @@ -0,0 +1,98 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + + +import pytest +from azure.ai.ml._local_endpoints.vscode_debug.devcontainer_properties import ( + Image, + Build, + ContainerEnv, + Mounts, + Name, + ForwardPorts, + AppPort, + RunArgs, + OverrideCommand, + Extensions, + Settings, +) + + +@pytest.mark.unittest +class TestDevContainerProperties: + def test_image(self): + prop = Image("ubuntu:18.04") + assert {"image": "ubuntu:18.04"} == prop.to_dict() + + def test_build(self): + prop = Build( + dockerfile_path="../Dockerfile", + build_context="/home/user/.azureml/inferencing/endpoint/deployment/", + args={"ARG1": "VALUE1"}, + target="image_name:1", + ) + assert { + "build": { + "dockerfile": "../Dockerfile", + "context": "/home/user/.azureml/inferencing/endpoint/deployment/", + "args": {"ARG1": "VALUE1"}, + "target": "image_name:1", + } + } == prop.to_dict() + + def test_containerenv(self): + prop = ContainerEnv(environment_variables={"VAR1": "VALUE1"}) + assert {"containerEnv": {"VAR1": "VALUE1"}} == prop.to_dict() + + def test_mounts(self): + prop = Mounts(mounts=["source=/app-scripts,target=/usr/local/share/app-scripts,type=bind,consistency=cached"]) + assert { + "mounts": ["source=/app-scripts,target=/usr/local/share/app-scripts,type=bind,consistency=cached"] + } == prop.to_dict() + + def test_name(self): + prop = Name(name="endpoint:deployment") + assert {"name": "endpoint:deployment"} == prop.to_dict() + + def test_forward_ports(self): + prop = ForwardPorts(port=5001) + assert {"forwardPorts": [5001]} == prop.to_dict() + + def test_app_ports(self): + prop = AppPort(port=5001) + assert {"appPort": [5001]} == prop.to_dict() + + def test_run_args(self): + prop = RunArgs(name="container_name", labels=["--label=key=value"]) + assert {"runArgs": ["--label=key=value", "--name=container_name"]} == prop.to_dict() + + def test_override_command(self): + prop = OverrideCommand() + assert {"overrideCommand": True} == prop.to_dict() + + def test_extensions(self): + prop = Extensions() + assert {"extensions": ["ms-python.python", "ms-toolsai.vscode-ai-inference"]} == prop.to_dict() + + def test_settings(self): + prop = Settings() + assert { + "settings": { + "launch": { + "configurations": [ + { + "name": "Azure ML: Debug Local Endpoint", + "type": "python", + "request": "attach", + "listen": { + "host": "127.0.0.1", + "port": 0, + }, + "azuremlext": "local_inference_debug", + } + ] + }, + "python.defaultInterpreterPath": "/opt/miniconda/envs/inf-conda-env/bin/python", + } + } == prop.to_dict() diff --git a/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_devcontainer_resolver.py b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_devcontainer_resolver.py new file mode 100644 index 000000000000..060c262d252f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_devcontainer_resolver.py @@ -0,0 +1,129 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + + +import pytest +from azure.ai.ml._local_endpoints.vscode_debug.devcontainer_resolver import DevContainerResolver + + +@pytest.fixture +def environment(): + yield {"KEY": "VALUE"} + + +@pytest.fixture +def input_labels(): + yield {"KEY": "VALUE"} + + +@pytest.fixture +def output_labels(): + yield ["--label=KEY=VALUE"] + + +@pytest.fixture +def input_mounts(): + yield { + "/home/app-scripts:/usr/local/share/app-scripts": { + "/home/app-scripts": {"bind": "/usr/local/share/app-scripts"} + } + } + + +@pytest.fixture +def output_mounts(): + yield ["source=/home/app-scripts,target=/usr/local/share/app-scripts,type=bind"] + + +@pytest.fixture +def overrideCommand(): + yield True + + +@pytest.fixture +def extensions(): + yield ["ms-python.python", "ms-toolsai.vscode-ai-inference"] + + +@pytest.fixture +def settings(): + yield { + "launch": { + "configurations": [ + { + "name": "Azure ML: Debug Local Endpoint", + "type": "python", + "request": "attach", + "listen": { + "host": "127.0.0.1", + "port": 0, + }, + "azuremlext": "local_inference_debug", + } + ] + }, + "python.defaultInterpreterPath": "/opt/miniconda/envs/inf-conda-env/bin/python", + } + + +@pytest.mark.unittest +class TestDevContainerResolver: + def test_resolve_devcontainer_json_image( + self, + environment, + overrideCommand, + settings, + extensions, + input_mounts, + output_mounts, + input_labels, + output_labels, + ): + devcontainer = DevContainerResolver( + image="ubuntu:18.04", + dockerfile_path="../Dockerfile", + environment=environment, + mounts=input_mounts, + labels=input_labels, + ) + assert devcontainer._properties.get("image") == "ubuntu:18.04" + assert devcontainer._properties.get("build") is None + assert devcontainer._properties.get("containerEnv") == environment + assert devcontainer._properties.get("mounts") == output_mounts + assert devcontainer._properties.get("runArgs") == output_labels + assert devcontainer._properties.get("overrideCommand") == overrideCommand + assert devcontainer._properties.get("settings") == settings + assert devcontainer._properties.get("extensions") == extensions + + def test_resolve_devcontainer_json_build( + self, + environment, + overrideCommand, + settings, + extensions, + input_mounts, + output_mounts, + input_labels, + output_labels, + ): + build_context = "/home/user/.azureml/inferencing/endpoint/deployment/" + build_target = "image_name:tag" + devcontainer = DevContainerResolver( + build_context=build_context, + build_target=build_target, + dockerfile_path="../Dockerfile", + environment=environment, + mounts=input_mounts, + labels=input_labels, + ) + assert devcontainer._properties.get("image") is None + assert devcontainer._properties.get("build") + assert devcontainer._properties.get("build").get("context") == build_context + assert devcontainer._properties.get("build").get("target") == build_target + assert devcontainer._properties.get("containerEnv") == environment + assert devcontainer._properties.get("mounts") == output_mounts + assert devcontainer._properties.get("runArgs") == output_labels + assert devcontainer._properties.get("overrideCommand") == overrideCommand + assert devcontainer._properties.get("settings") == settings + assert devcontainer._properties.get("extensions") == extensions diff --git a/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_docker_client.py b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_docker_client.py new file mode 100644 index 000000000000..c2991862a055 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_docker_client.py @@ -0,0 +1,265 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + + +import pytest +from unittest.mock import patch, Mock, MagicMock +from azure.ai.ml.constants import LocalEndpointConstants +from azure.ai.ml._local_endpoints import LocalEndpointMode +from azure.ai.ml._local_endpoints.docker_client import DockerClient +from azure.ai.ml._local_endpoints.vscode_debug.vscode_client import VSCodeClient +from azure.ai.ml._local_endpoints.errors import MultipleLocalDeploymentsFoundError +from pathlib import Path + + +@pytest.fixture +def mock_container1() -> MagicMock: + mock_container = MagicMock() + mock_container.labels = {"azureml-port": "5001", "endpoint-data": "{}", "deployment-data": "{}"} + yield mock_container + + +@pytest.fixture +def mock_container2() -> MagicMock: + mock_container = MagicMock() + mock_container.labels = {"azureml-port": "5001", "endpoint-data": "{}", "deployment-data": "{}"} + yield mock_container + + +@pytest.fixture +def mock_internal_docker_client(mock_container1, mock_container2): + mock_internal_client = Mock() + mock_internal_client.containers.list.return_value = [mock_container1, mock_container2] + mock_internal_client.containers.get.return_value = mock_container1 + mock_internal_client.containers.create.return_value = mock_container2 + mock_internal_client.api = Mock() + + def docker_build_output(): + yield {"stream": "Successfully building docker image"} + + mock_internal_client.api.build.return_value = docker_build_output() + yield mock_internal_client + + +@pytest.fixture +def mock_internal_entryscript_utility(): + yield Mock() + + +@pytest.fixture +def mock_internal_vscode_client(): + yield Mock() + + +@pytest.fixture +def mock_endpoint_docker_client( + mock_internal_docker_client, mock_internal_vscode_client, mock_internal_entryscript_utility +) -> DockerClient: + return DockerClient(client=mock_internal_docker_client, vscode_client=mock_internal_vscode_client) + + +@pytest.fixture +def mock_online_endpoint() -> Mock: + return Mock() + + +@pytest.fixture +def endpoint_name() -> str: + return "test-endpt" + + +@pytest.fixture +def deployment_name() -> str: + return "blue" + + +@pytest.fixture +def environment_variables() -> str: + return {LocalEndpointConstants.ENVVAR_KEY_AML_APP_ROOT: "/var/azureml-app/onlinescoring/"} + + +@pytest.mark.unittest +class TestLocalEndpointDockerClient: + def test_create( + self, + mock_container2, + mock_internal_docker_client, + mock_endpoint_docker_client, + mock_online_endpoint, + endpoint_name, + deployment_name, + environment_variables, + ): + mock_container2.reset_mock() + mock_internal_docker_client.containers.list.return_value = [mock_container2] + mock_endpoint_docker_client.create_deployment( + endpoint_name=endpoint_name, + deployment_name=deployment_name, + endpoint_metadata={}, + deployment_metadata={}, + build_directory=str( + Path(Path(__file__).parent.resolve(), "/../../../test_configs/online_endpoint_create_mir.yml").resolve() + ), + dockerfile_path="/home/user/.azureml/inferencing/endpt/deployment/Dockerfile", + conda_source_path=str( + Path( + Path(__file__).parent.resolve(), "/../../../test_configs/deployments/model-1/environment/conda.yml" + ).resolve() + ), + conda_yaml_contents="", + volumes={}, + environment=environment_variables, + azureml_port=5001, + local_endpoint_mode=LocalEndpointMode.DetachedContainer, + ) + mock_container2.start.assert_called_once() + mock_container2.reload.assert_called_once() + mock_endpoint_docker_client._client.api.build.assert_called_once() + mock_endpoint_docker_client._client.containers.create.assert_called_once() + + def test_create_byoc( + self, + mock_container2, + mock_internal_docker_client, + mock_endpoint_docker_client, + mock_online_endpoint, + endpoint_name, + deployment_name, + environment_variables, + ): + mock_container2.reset_mock() + mock_internal_docker_client.containers.list.return_value = [mock_container2] + mock_endpoint_docker_client.create_deployment( + endpoint_name=endpoint_name, + deployment_name=deployment_name, + endpoint_metadata={}, + deployment_metadata={}, + build_directory=str( + Path(Path(__file__).parent.resolve(), "/../../../test_configs/online_endpoint_create_mir.yml").resolve() + ), + dockerfile_path=None, + conda_source_path=str( + Path( + Path(__file__).parent.resolve(), "/../../../test_configs/deployments/model-1/environment/conda.yml" + ).resolve() + ), + conda_yaml_contents="", + volumes={}, + environment=environment_variables, + azureml_port=8501, + local_endpoint_mode=LocalEndpointMode.DetachedContainer, + prebuilt_image_name="mock-image", + ) + mock_container2.start.assert_called_once() + mock_container2.reload.assert_called_once() + mock_endpoint_docker_client._client.api.build.assert_not_called() + mock_endpoint_docker_client._client.containers.create.assert_called_once() + + def test_create_with_vscode( + self, + mock_container2, + mock_internal_docker_client, + mock_internal_vscode_client, + mock_endpoint_docker_client, + mock_online_endpoint, + endpoint_name, + deployment_name, + environment_variables, + ): + mock_container2.reset_mock() + mock_container2.get_archive.return_value = [MagicMock(), MagicMock()] + mock_internal_docker_client.containers.list.return_value = [mock_container2] + mock_internal_docker_client.containers.create.return_value = mock_container2 + test_build_dir = str(Path(Path.home(), ".azureml", "inferencing").resolve()) + mock_endpoint_docker_client.create_deployment( + endpoint_name=endpoint_name, + deployment_name=deployment_name, + endpoint_metadata={}, + deployment_metadata={}, + build_directory=test_build_dir, + dockerfile_path="/home/user/.azureml/inferencing/endpt/deployment/Dockerfile", + conda_source_path=str( + Path( + Path(__file__).parent.resolve(), "/../../../test_configs/deployments/model-1/environment/conda.yml" + ).resolve() + ), + conda_yaml_contents="", + volumes={}, + environment=environment_variables, + azureml_port=5001, + local_endpoint_mode=LocalEndpointMode.VSCodeDevContainer, + ) + mock_container2.remove.assert_called() + mock_internal_vscode_client.invoke_dev_container.assert_called_once() + mock_endpoint_docker_client._client.api.build.assert_called_once() + mock_endpoint_docker_client._client.containers.create.assert_called_once() + + def test_delete(self, mock_endpoint_docker_client, mock_container1, endpoint_name, deployment_name): + mock_container1.reset_mock() + mock_endpoint_docker_client.delete(endpoint_name=endpoint_name, deployment_name=deployment_name) + mock_endpoint_docker_client._client.containers.list.assert_called_once() + mock_container1.stop.assert_called_once() + mock_container1.remove.assert_called_once() + + def test_get_with_deployment(self, mock_endpoint_docker_client, endpoint_name, deployment_name): + mock_endpoint_docker_client.get_deployment(endpoint_name=endpoint_name, deployment_name=deployment_name) + mock_endpoint_docker_client._client.containers.list.assert_called_once() + mock_endpoint_docker_client._client.containers.get.assert_not_called() + + def test_get_without_deployment(self, mock_endpoint_docker_client, endpoint_name): + mock_endpoint_docker_client.get_deployment(endpoint_name=endpoint_name) + mock_endpoint_docker_client._client.containers.list.assert_called_once() + mock_endpoint_docker_client._client.containers.get.assert_not_called() + + def test_get_scoring_uri_with_deployment( + self, mock_container2, mock_internal_docker_client, mock_endpoint_docker_client, endpoint_name, deployment_name + ): + mock_internal_docker_client.containers.list.return_value = [mock_container2] + mock_endpoint_docker_client.get_scoring_uri(endpoint_name=endpoint_name, deployment_name=deployment_name) + mock_endpoint_docker_client._client.containers.list.assert_called_once() + mock_endpoint_docker_client._client.containers.get.assert_not_called() + + def test_get_scoring_uri_without_deployment(self, mock_endpoint_docker_client, endpoint_name): + with pytest.raises(MultipleLocalDeploymentsFoundError): + mock_endpoint_docker_client.get_scoring_uri(endpoint_name=endpoint_name) + mock_endpoint_docker_client._client.containers.list.assert_called_once() + mock_endpoint_docker_client._client.containers.get.assert_not_called() + + def test_get_logs_with_deployment(self, mock_endpoint_docker_client, endpoint_name, deployment_name): + mock_endpoint_docker_client.logs( + endpoint_name=endpoint_name, + deployment_name=deployment_name, + lines=100, + ) + mock_endpoint_docker_client._client.containers.list.assert_called_once() + mock_endpoint_docker_client._client.containers.get.assert_not_called() + + def test_list_containers( + self, mock_internal_docker_client, mock_endpoint_docker_client, endpoint_name, deployment_name + ): + mock_endpoint_docker_client.list_containers(endpoint_name=endpoint_name) + mock_endpoint_docker_client._client.containers.list.assert_called_once() + mock_endpoint_docker_client._client.containers.get.assert_not_called() + + @pytest.mark.parametrize( + "docker_client_input_volumes, expected_volumes", + [ + pytest.param( + {"src1:dst1": {"src1": {"bind": "dst1"}}, "src2:dst2": {"src2": {"bind": "dst2"}}}, + ["src1:dst1", "src2:dst2"], + ), + pytest.param( + {"src:codedest": {"src": {"bind": "codedest"}}, "src:modeldest": {"src": {"bind": "modeldest"}}}, + ["src:codedest", "src:modeldest"], + ), + ], + ) + def test_reformat_volumes( + self, + mock_endpoint_docker_client, + docker_client_input_volumes, + expected_volumes, + ): + reformatted_volumes = mock_endpoint_docker_client._reformat_volumes(docker_client_input_volumes) + assert reformatted_volumes == expected_volumes diff --git a/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_dockerfile_instructions.py b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_dockerfile_instructions.py new file mode 100644 index 000000000000..e080e0913114 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_dockerfile_instructions.py @@ -0,0 +1,42 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + + +import pytest +from azure.ai.ml._local_endpoints.dockerfile_instructions import Cmd, Copy, Env, Expose, From, Run, Workdir + + +@pytest.mark.unittest +class TestDockerfileInstructions: + def test_cmd(self): + instruction = Cmd(["echo", "Hello, World"]) + assert 'CMD ["echo", "Hello, World"]' == str(instruction) + + def test_copy(self): + instruction = Copy(src=["/src/folder1", "/src/folder2"], dest="/dest/folder") + assert "COPY /src/folder1 /src/folder2 /dest/folder" == str(instruction) + + def test_env(self): + instruction = Env(key="key", value="value") + assert "ENV key=value" == str(instruction) + + def test_expose(self): + instruction = Expose(port=5001) + assert "EXPOSE 5001" == str(instruction) + + def test_from_no_stage(self): + instruction = From(base_image_name="ubuntu:latest") + assert "FROM ubuntu:latest" == str(instruction) + + def test_from_with_stage(self): + instruction = From(base_image_name="ubuntu:latest", stage_name="inferencing") + assert "FROM ubuntu:latest as inferencing" == str(instruction) + + def test_run(self): + instruction = Run(command="pip install docker") + assert "RUN pip install docker" == str(instruction) + + def test_workdir(self): + instruction = Workdir(directory="/var/azureml-app") + assert "WORKDIR /var/azureml-app" == str(instruction) diff --git a/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_dockerfile_resolver.py b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_dockerfile_resolver.py new file mode 100644 index 000000000000..6df9ddf34a69 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_dockerfile_resolver.py @@ -0,0 +1,74 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + + +import pytest +from azure.ai.ml._local_endpoints.dockerfile_resolver import DockerfileResolver + + +@pytest.mark.unittest +class TestDockerfileResolver: + def test_resolve_base_image(self): + dockerfile = DockerfileResolver( + dockerfile=None, + docker_base_image="ubuntu:latest", + docker_conda_file_name=None, + docker_port="5001", + docker_azureml_app_path="/var/azureml-app", + ) + expected = '\ +FROM ubuntu:latest\n\ +RUN mkdir -p /var/azureml-app\n\ +WORKDIR /var/azureml-app\n\ +CMD ["runsvdir", "/var/runit"]' + assert expected == str(dockerfile) + + def test_resolve_base_image_with_conda_file(self): + dockerfile = DockerfileResolver( + dockerfile=None, + docker_base_image="ubuntu:latest", + docker_conda_file_name="conda.yml", + docker_port="5001", + docker_azureml_app_path="/var/azureml-app", + ) + expected = '\ +FROM ubuntu:latest\n\ +RUN mkdir -p /var/azureml-app\n\ +WORKDIR /var/azureml-app\n\ +COPY conda.yml /var/azureml-app\n\ +RUN conda env create -n inf-conda-env --file conda.yml\n\ +CMD ["conda", "run", "--no-capture-output", "-n", "inf-conda-env", "runsvdir", "/var/runit"]' + assert expected == str(dockerfile) + + def test_resolve_dockerfile(self): + dockerfile = DockerfileResolver( + dockerfile="FROM ubuntu:latest\n", + docker_base_image=None, + docker_conda_file_name=None, + docker_port="5001", + docker_azureml_app_path="/var/azureml-app", + ) + expected = '\ +FROM ubuntu:latest\n\n\ +RUN mkdir -p /var/azureml-app\n\ +WORKDIR /var/azureml-app\n\ +CMD ["runsvdir", "/var/runit"]' + assert expected == str(dockerfile) + + def test_resolve_dockerfile_with_conda_file(self): + dockerfile = DockerfileResolver( + dockerfile="FROM ubuntu:latest\n", + docker_base_image=None, + docker_conda_file_name="conda.yml", + docker_port="5001", + docker_azureml_app_path="/var/azureml-app", + ) + expected = '\ +FROM ubuntu:latest\n\n\ +RUN mkdir -p /var/azureml-app\n\ +WORKDIR /var/azureml-app\n\ +COPY conda.yml /var/azureml-app\n\ +RUN conda env create -n inf-conda-env --file conda.yml\n\ +CMD ["conda", "run", "--no-capture-output", "-n", "inf-conda-env", "runsvdir", "/var/runit"]' + assert expected == str(dockerfile) diff --git a/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_endpoint_stub.py b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_endpoint_stub.py new file mode 100644 index 000000000000..61b66a431a93 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_endpoint_stub.py @@ -0,0 +1,60 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + + +from azure.ai.ml._local_endpoints.endpoint_stub import EndpointStub +from azure.ai.ml.entities._endpoint.online_endpoint import OnlineEndpoint +import pytest +import random +from pathlib import Path + + +@pytest.fixture +def endpoint_name() -> str: + return f"mir-test-{str(random.randint(1, 10000000))}" + + +@pytest.fixture +def endpoint_mir_yaml() -> str: + return "tests/test_configs/deployments/online/simple_online_endpoint_mir.yaml" + + +@pytest.mark.unittest +class TestEndpoingStub: + def test_endpoint_stub_e2e(self, endpoint_name, endpoint_mir_yaml): + endpoint_stub = EndpointStub() + endpoint = OnlineEndpoint.load(endpoint_mir_yaml) + endpoint.name = endpoint_name + + endpoint_stub.create_or_update(endpoint=endpoint) + + assert _get_expected_endpoint_file(endpoint_name).exists() + + data = endpoint_stub.invoke() + assert "deployment create" in data + + returned_endpoint = endpoint_stub.get(endpoint_name) + assert returned_endpoint == endpoint + + endpoints = endpoint_stub.list() + assert len(endpoints) > 0 + assert _get_expected_endpoint_file(endpoint_name) in endpoints + + endpoint.tags.update({"newkey": "newval"}) + endpoint_stub.create_or_update(endpoint=endpoint) + returned_endpoint = endpoint_stub.get(endpoint_name) + assert returned_endpoint.tags.get("newkey") and returned_endpoint.tags.get("newkey") == "newval" + + endpoint_stub.delete(endpoint_name) + returned_endpoint = endpoint_stub.get(endpoint_name) + assert returned_endpoint is None + assert _get_expected_endpoint_file(endpoint_name).exists() is False + + +def _get_expected_directory(endpoint_name: str) -> Path: + return Path(Path.home(), ".azureml", "inferencing", endpoint_name) + + +def _get_expected_endpoint_file(endpoint_name: str) -> Path: + return Path(_get_expected_directory(endpoint_name), f"{endpoint_name}.json") diff --git a/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_local_endpoint_validator.py b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_local_endpoint_validator.py new file mode 100644 index 000000000000..ea3ed905d4ee --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/local_endpoint/unittests/test_local_endpoint_validator.py @@ -0,0 +1,249 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- + + +import pytest +from mock import Mock +from pathlib import Path +from azure.ai.ml.entities import ManagedOnlineDeployment, CodeConfiguration +from azure.ai.ml.entities._assets import Code, Model +from azure.ai.ml.entities._assets.environment import Environment, BuildContext +from azure.ai.ml._local_endpoints.validators import CodeValidator, EnvironmentValidator, ModelValidator + +from azure.ai.ml._local_endpoints.errors import CloudArtifactsNotSupportedError, RequiredLocalArtifactsNotFoundError + + +@pytest.fixture +def code_operations(): + return Mock() + + +@pytest.fixture +def deployment_yaml_base_path(): + return Path(Path(__file__).parent.absolute(), "../../test_configs/deployments/online/") + + +@pytest.mark.skip(reason="TODO[BUG 1260290] Deployment should not be instantiated") +@pytest.mark.unittest +class TestLocalEndpointEnvironmentValidation: + def test_environment_contains_cloud_artifacts_fails(self): + environment = "azureml:." + deployment = ManagedOnlineDeployment(name="deployment", environment=environment) + validator = EnvironmentValidator() + with pytest.raises(RequiredLocalArtifactsNotFoundError): + validator.get_local_environment_artifacts(endpoint_name="test-endpoint", deployment=deployment) + + def test_environment_is_none_fails(self): + deployment = ManagedOnlineDeployment( + name="deployment", + ) + validator = EnvironmentValidator() + with pytest.raises(RequiredLocalArtifactsNotFoundError): + validator.get_local_environment_artifacts(endpoint_name="test-endpoint", deployment=deployment) + + def test_environment_does_not_contain_local_docker_fails(self): + environment = Environment() + deployment = ManagedOnlineDeployment(name="deployment", environment=environment) + validator = EnvironmentValidator() + with pytest.raises(RequiredLocalArtifactsNotFoundError): + validator.get_local_environment_artifacts(endpoint_name="test-endpoint", deployment=deployment) + + def test_environment_contains_base_image_succeeds(self): + environment = Environment(docker_image="ubuntu:latest") + deployment = ManagedOnlineDeployment(name="deployment", environment=environment) + validator = EnvironmentValidator() + (base_image, dockerfile) = validator.get_local_environment_artifacts( + endpoint_name="test-endpoint", deployment=deployment + ) + assert "ubuntu:latest" == base_image + assert dockerfile is None + + def test_environment_contains_dockerfile_succeeds(self): + environment = Environment(dockerfile=BuildContext(dockerfile="file:./Dockerfile")) + deployment = ManagedOnlineDeployment( + name="deployment", + environment=environment, + ) + validator = EnvironmentValidator() + (base_image, dockerfile) = validator.get_local_environment_artifacts( + endpoint_name="test-endpoint", deployment=deployment + ) + assert base_image is None + assert "file:./Dockerfile" == dockerfile + + +@pytest.mark.unittest +class TestLocalEndpointCodeConfigurationValidation: + def test_code_configuration_does_not_contain_local_path_fails( + self, + code_operations, + deployment_yaml_base_path, + ): + code_configuration = CodeConfiguration() + deployment = ManagedOnlineDeployment( + name="deployment", + code_configuration=code_configuration, + base_path=deployment_yaml_base_path, + ) + validator = CodeValidator() + with pytest.raises(RequiredLocalArtifactsNotFoundError): + validator.get_code_configuration_artifacts( + endpoint_name="test-endpoint", + deployment=deployment, + code_operations=code_operations, + download_path="", + ) + assert "path" in e + + def test_code_configuration_is_none_succeeds_for_byoc( + self, + code_operations, + deployment_yaml_base_path, + ): + deployment = ManagedOnlineDeployment( + name="deployment", + base_path=deployment_yaml_base_path, + ) + validator = CodeValidator() + code_directory_path = validator.get_code_configuration_artifacts( + endpoint_name="test-endpoint", + deployment=deployment, + code_operations=code_operations, + download_path="", + ) + assert code_directory_path is None + + def test_code_configuration_does_not_contain_scoring_script_fails( + self, + code_operations, + deployment_yaml_base_path, + ): + code_configuration = CodeConfiguration(code="../onlinescoring/") + deployment = ManagedOnlineDeployment( + name="deployment", + code_configuration=code_configuration, + base_path=deployment_yaml_base_path, + ) + validator = CodeValidator() + with pytest.raises(RequiredLocalArtifactsNotFoundError) as e: + validator.get_code_configuration_artifacts( + endpoint_name="test-endpoint", + deployment=deployment, + code_operations=code_operations, + download_path="", + ) + assert "scoring_script" in e + + def test_code_configuration_local_path_does_not_exist_failes(self, code_operations, deployment_yaml_base_path): + code_configuration = CodeConfiguration(code="../model-1/foo/", scoring_script="score.py") + deployment = ManagedOnlineDeployment( + name="deployment", + code_configuration=code_configuration, + base_path=deployment_yaml_base_path, + ) + validator = CodeValidator() + with pytest.raises(RequiredLocalArtifactsNotFoundError) as e: + validator.get_code_configuration_artifacts( + endpoint_name="test-endpoint", + deployment=deployment, + code_operations=code_operations, + download_path="", + ) + assert "code_configuration" in e + + def test_code_configuration_succeeds(self, code_operations, deployment_yaml_base_path): + code_configuration = CodeConfiguration(code="../model-1/onlinescoring/", scoring_script="score.py") + deployment = ManagedOnlineDeployment( + name="deployment", + code_configuration=code_configuration, + base_path=deployment_yaml_base_path, + ) + validator = CodeValidator() + code_dir = validator.get_code_configuration_artifacts( + endpoint_name="test-endpoint", + deployment=deployment, + code_operations=code_operations, + download_path="", + ) + assert "onlinescoring" in str(code_dir) + + +@pytest.mark.skip(reason="TODO[BUG 1260290] Deployment should not be instantiated") +@pytest.mark.unittest +class TestLocalEndpointModelValidation: + def test_model_contains_cloud_artifacts_id_fails(self): + model = Model(id="azureml:.") + deployment = ManagedOnlineDeployment( + name="deployment", + model=model, + ) + validator = ModelValidator() + with pytest.raises(RequiredLocalArtifactsNotFoundError): + validator.get_local_model_artifacts(endpoint_name="test-endpoint", deployment=deployment) + + def test_model_contains_cloud_artifacts_datastore_fails(self): + model = Model(datastore="azureml:.") + deployment = ManagedOnlineDeployment( + name="deployment", + model=model, + ) + validator = ModelValidator() + with pytest.raises(RequiredLocalArtifactsNotFoundError): + validator.get_local_model_artifacts(endpoint_name="test-endpoint", deployment=deployment) + + def test_model_contains_local_path_and_cloud_artifacts_id_fails(self): + model = Model( + id="azureml:.", + path="../onlinescoring/sklearn_regression_model.pkl", + ) + deployment = ManagedOnlineDeployment( + name="deployment", + model=model, + ) + validator = ModelValidator() + with pytest.raises(CloudArtifactsNotSupportedError): + validator.get_local_model_artifacts(endpoint_name="test-endpoint", deployment=deployment) + + def test_model_contains_local_path_and_cloud_artifacts_datastore_fails(self): + model = Model( + datastore="azureml:.", + path="../onlinescoring/sklearn_regression_model.pkl", + ) + deployment = ManagedOnlineDeployment( + name="deployment", + model=model, + ) + validator = ModelValidator() + with pytest.raises(CloudArtifactsNotSupportedError): + validator.get_local_model_artifacts(endpoint_name="test-endpoint", deployment=deployment) + + def test_model_does_not_contain_local_path_fails(self): + model = Model() + deployment = ManagedOnlineDeployment( + name="deployment", + model=model, + ) + validator = ModelValidator() + with pytest.raises(RequiredLocalArtifactsNotFoundError): + validator.get_local_model_artifacts(endpoint_name="test-endpoint", deployment=deployment) + assert "local_path" in e + + def test_model_is_none_fails(self): + deployment = ManagedOnlineDeployment( + name="deployment", + ) + validator = ModelValidator() + with pytest.raises(RequiredLocalArtifactsNotFoundError) as e: + validator.get_local_model_artifacts(endpoint_name="test-endpoint", deployment=deployment) + assert "model" in e + + def test_model_succeeds(self): + model = Model(local_path="../onlinescoring/sklearn_regression_model.pkl") + deployment = ManagedOnlineDeployment( + name="deployment", + model=model, + ) + validator = ModelValidator() + model_path = validator.get_local_model_artifacts(endpoint_name="test-endpoint", deployment=deployment) + assert str(Path("onlinescoring", "sklearn_regression_model.pkl")) in str(model_path) diff --git a/sdk/ml/azure-ai-ml/tests/model/__init__.py b/sdk/ml/azure-ai-ml/tests/model/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/model/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/model/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/model/unittests/test_model_operations.py b/sdk/ml/azure-ai-ml/tests/model/unittests/test_model_operations.py new file mode 100644 index 000000000000..783f3e7b0ef5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/model/unittests/test_model_operations.py @@ -0,0 +1,212 @@ +from pathlib import Path +from typing import Callable, Iterable +from unittest.mock import Mock, patch +import pytest + +from azure.ai.ml._operations import DatastoreOperations, ModelOperations +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.entities._assets._artifacts.artifact import ArtifactStorageInfo +from azure.ai.ml.entities._assets import Model +from azure.ai.ml._restclient.v2022_05_01.models._models_py3 import ( + ModelContainerData, + ModelContainerDetails, + ModelVersionData, + ModelVersionDetails, +) + + +@pytest.fixture +def mock_datastore_operation( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> DatastoreOperations: + yield DatastoreOperations( + operation_scope=mock_workspace_scope, + serviceclient_2022_05_01=mock_aml_services_2022_05_01, + ) + + +@pytest.fixture +def mock_model_operation( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_05_01: Mock, + mock_datastore_operation: Mock, +) -> ModelOperations: + yield ModelOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + datastore_operations=mock_datastore_operation, + ) + + +@pytest.mark.unittest +class TestModelOperations: + def test_create_with_spec_file( + self, + mock_workspace_scope: OperationScope, + mock_model_operation: ModelOperations, + randstr: Callable[[], str], + tmp_path: Path, + ) -> None: + model_name = f"model_{randstr()}" + p = tmp_path / "model_full.yml" + model_path = tmp_path / "model.pkl" + model_path.write_text("hello world") + p.write_text( + f""" +name: {model_name} +path: ./model.pkl +version: 3""" + ) + + with patch( + "azure.ai.ml._artifacts._artifact_utilities._upload_to_datastore", + return_value=ArtifactStorageInfo( + name=model_name, + version="3", + relative_path="path", + datastore_arm_id="/subscriptions/mock/resourceGroups/mock/providers/Microsoft.MachineLearningServices/workspaces/mock/datastores/datastore_id", + container_name="containerName", + ), + ) as mock_upload, patch( + "azure.ai.ml._operations.model_operations.Model._from_rest_object", + return_value=Model(), + ): + model = Model.load(path=p) + path = Path(model._base_path, model.path).resolve() + mock_model_operation.create_or_update(model) + mock_upload.assert_called_once_with( + mock_workspace_scope, + mock_model_operation._datastore_operation, + path, + asset_name=model.name, + asset_version=model.version, + datastore_name=None, + asset_hash=None, + sas_uri=None, + ) + mock_model_operation._model_versions_operation.create_or_update.assert_called_once() + assert "version='3'" in str(mock_model_operation._model_versions_operation.create_or_update.call_args) + + def test_create_autoincrement( + self, + mock_model_operation: ModelOperations, + mock_workspace_scope: OperationScope, + randstr: Callable[[], str], + tmp_path: Path, + ) -> None: + + mock_model_operation._model_container_operation.get.return_value = Mock(ModelContainerDetails()) + + model_name = f"model_{randstr()}" + p = tmp_path / "model_full.yml" + model_path = tmp_path / "model.pkl" + model_path.write_text("hello world") + p.write_text( + f""" +name: {model_name} +path: ./model.pkl""" + ) + model = Model.load(path=p) + model.version = None + + with patch( + "azure.ai.ml._operations.model_operations._check_and_upload_path", + return_value=(model, "indicatorfile.txt"), + ), patch("azure.ai.ml._operations.model_operations.Model._from_rest_object", return_value=model), patch( + "azure.ai.ml._operations.model_operations._get_default_datastore_info", return_value=None + ), patch( + "azure.ai.ml._operations.model_operations._update_metadata", return_value=None + ) as mock_update: + mock_model_operation.create_or_update(model) + mock_model_operation._model_versions_operation.create_or_update.assert_called_once() + mock_model_operation._model_container_operation.get.assert_called_once_with( + name=model.name, + resource_group_name=mock_workspace_scope.resource_group_name, + workspace_name=mock_workspace_scope.workspace_name, + ) + mock_model_operation._model_versions_operation.create_or_update.assert_called_once_with( + body=model._to_rest_object(), + name=model.name, + version=mock_model_operation._model_container_operation.get().properties.next_version, + resource_group_name=mock_workspace_scope.resource_group_name, + workspace_name=mock_workspace_scope.workspace_name, + ) + mock_update.assert_called_once() + + def test_get_name_and_version(self, mock_model_operation: ModelOperations, randstr: Callable[[], str]) -> None: + mock_model_operation._model_container_operation.get.return_value = None + with patch( + "azure.ai.ml._operations.model_operations.Model._from_rest_object", + return_value=None, + ): + mock_model_operation.get(name=randstr(), version="1") + mock_model_operation._model_versions_operation.get.assert_called_once() + assert mock_model_operation._model_container_operation.get.call_count == 0 + + def test_get_no_version(self, mock_model_operation: ModelOperations, randstr: Callable[[], str]) -> None: + name = randstr() + with pytest.raises(Exception): + mock_model_operation.get(name=name) + + @patch.object(Model, "_from_rest_object", new=Mock()) + @patch.object(Model, "_from_container_rest_object", new=Mock()) + def test_list(self, mock_model_operation: ModelOperations, randstr: Callable[[], str]) -> None: + mock_model_operation._model_versions_operation.list.return_value = [Mock(Model) for _ in range(10)] + mock_model_operation._model_container_operation.list.return_value = [Mock(Model) for _ in range(10)] + result = mock_model_operation.list() + assert isinstance(result, Iterable) + mock_model_operation._model_container_operation.list.assert_called_once() + mock_model_operation.list(name=randstr()) + mock_model_operation._model_versions_operation.list.assert_called_once() + + def test_archive_version(self, mock_model_operation: ModelOperations, randstr: Callable[[], str]) -> None: + name = randstr() + model_version = Mock(ModelVersionData(properties=Mock(ModelVersionDetails()))) + version = "1" + mock_model_operation._model_versions_operation.get.return_value = model_version + mock_model_operation.archive(name=name, version=version) + mock_model_operation._model_versions_operation.create_or_update.assert_called_once_with( + name=name, + version=version, + workspace_name=mock_model_operation._workspace_name, + body=model_version, + resource_group_name=mock_model_operation._resource_group_name, + ) + + def test_archive_container(self, mock_model_operation: ModelOperations, randstr: Callable[[], str]) -> None: + name = randstr() + model_container = Mock(ModelContainerData(properties=Mock(ModelContainerDetails()))) + mock_model_operation._model_container_operation.get.return_value = model_container + mock_model_operation.archive(name=name) + mock_model_operation._model_container_operation.create_or_update.assert_called_once_with( + name=name, + workspace_name=mock_model_operation._workspace_name, + body=model_container, + resource_group_name=mock_model_operation._resource_group_name, + ) + + def test_restore_version(self, mock_model_operation: ModelOperations, randstr: Callable[[], str]) -> None: + name = randstr() + model = Mock(ModelVersionData(properties=Mock(ModelVersionDetails()))) + version = "1" + mock_model_operation._model_versions_operation.get.return_value = model + mock_model_operation.restore(name=name, version=version) + mock_model_operation._model_versions_operation.create_or_update.assert_called_with( + name=name, + version=version, + workspace_name=mock_model_operation._workspace_name, + body=model, + resource_group_name=mock_model_operation._resource_group_name, + ) + + def test_restore_container(self, mock_model_operation: ModelOperations, randstr: Callable[[], str]) -> None: + name = randstr() + model_container = Mock(ModelContainerData(properties=Mock(ModelContainerDetails()))) + mock_model_operation._model_container_operation.get.return_value = model_container + mock_model_operation.restore(name=name) + mock_model_operation._model_container_operation.create_or_update.assert_called_once_with( + name=name, + workspace_name=mock_model_operation._workspace_name, + body=model_container, + resource_group_name=mock_model_operation._resource_group_name, + ) diff --git a/sdk/ml/azure-ai-ml/tests/model/unittests/test_model_schema.py b/sdk/ml/azure-ai-ml/tests/model/unittests/test_model_schema.py new file mode 100644 index 000000000000..303b9feb8d57 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/model/unittests/test_model_schema.py @@ -0,0 +1,25 @@ +from pathlib import Path +import pytest +import yaml + +from azure.ai.ml._schema import ModelSchema +from azure.ai.ml.constants import BASE_PATH_CONTEXT_KEY, AssetTypes +from marshmallow.exceptions import ValidationError +from azure.ai.ml.entities._util import load_from_dict +from azure.ai.ml.entities._assets import Model + + +@pytest.mark.unittest +class TestModelSchema: + def test_deserialize(self) -> None: + path = Path("./tests/test_configs/model/model_full.yml") + model = Model.load(path) + assert str(model.path).endswith("lightgbm_mlflow_model") + assert model.type == AssetTypes.MLFLOW_MODEL + + def test_deserialize_no_version(self) -> None: + path = Path("./tests/test_configs/model/model_no_version.yml") + model = Model.load(path) + assert model.version is None + assert model._auto_increment_version + assert model.type == AssetTypes.CUSTOM_MODEL # assert the default model type diff --git a/sdk/ml/azure-ai-ml/tests/online_services/__init__.py b/sdk/ml/azure-ai-ml/tests/online_services/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/online_services/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/online_services/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_executor.py b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_executor.py new file mode 100644 index 000000000000..f8826624668a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_executor.py @@ -0,0 +1,59 @@ +from azure.ai.ml._arm_deployments import ArmDeploymentExecutor +import pytest +from pytest_mock import MockFixture +from unittest.mock import Mock, patch, PropertyMock +from azure.ai.ml import MLClient +from azure.core.polling import LROPoller +from azure.ai.ml._vendor.azure_resources import ResourceManagementClient +from azure.ai.ml._vendor.azure_resources.operations import DeploymentsOperations + + +def _raise_exception(): + raise Exception("test exception") + + +@pytest.fixture() +def mock_poller() -> LROPoller: + poller = Mock(spec_set=LROPoller) + poller.wait = _raise_exception + poller.done = _raise_exception + yield poller + + +@pytest.mark.unittest +class TestDeploymentExecutor: + def test_empty_resources_throws(self, mock_machinelearning_client: MLClient) -> None: + with pytest.raises(Exception): + executor = ArmDeploymentExecutor( + credentials=mock_machinelearning_client.credentials, + resouce_group_name=mock_machinelearning_client._operation_scope.resource_group_name, + subscription_id=mock_machinelearning_client._operation_scope.subscription_id, + deployment_name="testdeployment", + ) + executor.deploy_resource(template="template", resources_being_deployed={}) + + def test_deployment_source_show_output( + self, mock_machinelearning_client: MLClient, mocker: MockFixture, mock_poller: LROPoller + ) -> None: + mocker.patch("azure.ai.ml._arm_deployments.ArmDeploymentExecutor._get_poller", return_value=mock_poller) + executor = ArmDeploymentExecutor( + credentials=mock_machinelearning_client._credential, + resource_group_name="test_group", + subscription_id="test_subscription", + deployment_name="testdeployment", + ) + with pytest.raises(Exception): + executor.deploy_resource(template="template", resources_being_deployed={"test": ("test", None)}, wait=True) + + def test_deployment_source_no_output( + self, mock_machinelearning_client: MLClient, mocker: MockFixture, mock_poller: LROPoller + ) -> None: + mocker.patch("azure.ai.ml._arm_deployments.ArmDeploymentExecutor._get_poller", return_value=mock_poller) + executor = ArmDeploymentExecutor( + credentials=mock_machinelearning_client._credential, + resource_group_name="test_group", + subscription_id="test_subscription", + deployment_name="testdeployment", + ) + executor.deploy_resource(template="template", resources_being_deployed={"test": ("test", None)}, wait=False) + executor._get_poller.assert_called_once() diff --git a/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_operations.py b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_operations.py new file mode 100644 index 000000000000..595552d761b0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_operations.py @@ -0,0 +1,39 @@ +from azure.ai.ml._operations import OnlineDeploymentOperations + +from unittest.mock import patch, Mock +import pytest + +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.constants import AzureMLResourceType + + +@pytest.fixture +def mock_endpoint_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_02_01_preview: Mock, + mock_aml_services_2020_09_01_dataplanepreview: Mock, + mock_machinelearning_client: Mock, + mock_environment_operations: Mock, + mock_model_operations: Mock, + mock_code_assets_operations: Mock, + mock_data_operations: Mock, + mock_local_endpoint_helper: Mock, +) -> OnlineDeploymentOperations: + mock_machinelearning_client._operation_container.add(AzureMLResourceType.CODE, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.MODEL, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.ENVIRONMENT, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.DATA, mock_data_operations) + + yield OnlineDeploymentOperations( + operation_scope=mock_workspace_scope, + service_client_02_2022_preview=mock_aml_services_2022_02_01_preview, + service_client_09_2020_dataplanepreview=mock_aml_services_2020_09_01_dataplanepreview, + all_operations=mock_machinelearning_client._operation_container, + local_endpoint_helper=mock_local_endpoint_helper, + ) + + +@pytest.mark.unittest +class TestOnlineEndpointsOperations: + def test_mock_endpoint_operation(mock_endpoint_operations): + assert mock_endpoint_operations is not None diff --git a/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_schema.py b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_schema.py new file mode 100644 index 000000000000..2c5852acf775 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_deployment_schema.py @@ -0,0 +1,29 @@ +from pathlib import Path +import pytest +import yaml + +from azure.ai.ml._schema._deployment.online.online_deployment import ( + OnlineDeploymentSchema, + KubernetesOnlineDeploymentSchema, +) +from azure.ai.ml.constants import BASE_PATH_CONTEXT_KEY +from azure.ai.ml.entities._util import load_from_dict + + +@pytest.mark.unittest +class TestDeploymentSchema: + def test_deserialize(self) -> None: + path = Path("./tests/test_configs/deployments/online/online_deployment_mir.yaml") + with open(path, "r") as f: + target = yaml.safe_load(f) + context = {BASE_PATH_CONTEXT_KEY: path.parent} + deployment = load_from_dict(OnlineDeploymentSchema, target, context) + assert deployment + + def test_deserialize_k8s_deployment(self) -> None: + path = Path("./tests/test_configs/deployments/online/online_deployment_mir.yaml") + with open(path, "r") as f: + target = yaml.safe_load(f) + context = {BASE_PATH_CONTEXT_KEY: path.parent} + k8s_deployment = load_from_dict(KubernetesOnlineDeploymentSchema, target, context) + assert k8s_deployment diff --git a/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_online_deployments.py b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_online_deployments.py new file mode 100644 index 000000000000..67cab2a71184 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_online_deployments.py @@ -0,0 +1,171 @@ +from pathlib import Path +from typing import Callable + +from unittest.mock import patch, Mock +from azure.ai.ml.entities._deployment.online_deployment import ( + OnlineDeployment, + KubernetesOnlineDeployment, + ManagedOnlineDeployment, +) +import pytest + +from azure.core.polling import LROPoller +from azure.ai.ml._operations import ( + OnlineDeploymentOperations, + WorkspaceOperations, +) +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.constants import ( + AzureMLResourceType, +) + +from pytest_mock import MockFixture + + +@pytest.fixture() +def mock_delete_poller() -> LROPoller: + poller = Mock(spec_set=LROPoller) + poller.result = lambda timeout: None + poller.done = lambda: True + yield poller + + +@pytest.fixture +def blue_online_mir_deployment_yaml(tmp_path: Path, resource_group_name: str) -> Path: + content = """ +name: blue +endpoint_name: mirendpoint +model: azureml:models/my-model-m1:1 +code_configuration: + code: ./src/onlinescoring/ + scoring_script: m1/score.py +environment: + name: sklearn-mir-env + version: 1 + path: . + conda_file: file:./environment/endpoint_conda.yml +scale_settings: + scale_type: default +request_settings: + request_timeout_ms: 3000 + max_concurrent_requests_per_instance: 1 + max_queue_wait_ms: 3000 +resources: + requests: + cpu: "1.5" + memory: "1.0" +""" + p = tmp_path / "blue_online_deployment_mir.yaml" + p.write_text(content) + return p + + +@pytest.fixture +def blue_online_k8s_deployment_yaml(tmp_path: Path, resource_group_name: str) -> Path: + content = """ +name: blue +type: kubernetes +description: deployment blue based on arc connected kubernetes +endpoint_name: k8sendpoint +tags: + isTest: true +model: azureml:k8s-model:1 +code_configuration: + code: ./src/onlinescoring/ + scoring_script: score.py +environment: azureml:env-blue:1 +scale_settings: + type: default +instance_count: 2 +request_settings: + request_timeout_ms: 3000 + max_concurrent_requests_per_instance: 1 + max_queue_wait_ms: 3000 +instance_type: cpuInstance +liveness_probe: + period: 10 + initial_delay: 10 + timeout: 10 + success_threshold: 1 + failure_threshold: 3 +resources: + requests: + cpu: "0.1" + memory: "0.1Gi" + limits: + cpu: "0.3" + memory: "0.2Gi" +""" + p = tmp_path / "blue_online_deployment_k8s.yaml" + p.write_text(content) + return p + + +@pytest.fixture +def mock_workspace_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2021_10_01: Mock, + mock_machinelearning_client: Mock, +) -> WorkspaceOperations: + yield WorkspaceOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2021_10_01, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.fixture +def mock_local_deployment_helper() -> Mock: + yield Mock() + + +@pytest.fixture +def mock_online_deployment_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2021_10_01: Mock, + mock_machinelearning_client: Mock, +) -> OnlineDeploymentOperations: + mock_machinelearning_client._operation_container.add(AzureMLResourceType.WORKSPACE, mock_workspace_operations) + + yield OnlineDeploymentOperations( + operation_scope=mock_workspace_scope, + service_client_02_2022_preview=mock_aml_services_2021_10_01, + all_operations=mock_machinelearning_client._operation_container, + local_deployment_helper=mock_local_deployment_helper, + ) + + +@pytest.mark.unittest +class TestOnlineDeploymentOperations: + def test_online_deployment_k8s_create( + self, + mock_online_deployment_operations: OnlineDeploymentOperations, + rand_compute_name: Callable[[], str], + blue_online_k8s_deployment_yaml: str, + mocker: MockFixture, + ) -> None: + mocker.patch( + "azure.ai.ml._operations.online_deployment_operations.OnlineDeploymentOperations._get_workspace_location", + return_value="xxx", + ) + mock_create_or_update_online_deployment = mocker.patch.object( + OnlineDeploymentOperations, "begin_create_or_update", autospec=True + ) + online_deployment = OnlineDeployment.load(blue_online_k8s_deployment_yaml) + online_deployment.name = rand_compute_name() + assert online_deployment.instance_type + mock_online_deployment_operations.begin_create_or_update(deployment=online_deployment) + mock_create_or_update_online_deployment.assert_called_once() + + def test_delete_online_deployment( + self, + mock_online_deployment_operations: OnlineDeploymentOperations, + mock_aml_services_2021_10_01: Mock, + mocker: MockFixture, + randstr: Callable[[], str], + mock_delete_poller: LROPoller, + ) -> None: + random_name = randstr() + mock_aml_services_2021_10_01.online_deployments.begin_delete.return_value = mock_delete_poller + mock_online_deployment_operations.delete(endpoint_name="k8sendpoint", name=random_name) + mock_online_deployment_operations._online_deployment.begin_delete.assert_called_once() diff --git a/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_online_endpoints.py b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_online_endpoints.py new file mode 100644 index 000000000000..7ac90f7a1329 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_online_endpoints.py @@ -0,0 +1,463 @@ +from pathlib import Path +from typing import Callable + +from requests import Response + +from unittest.mock import patch, Mock +import pytest + +from azure.core.polling import LROPoller +from azure.core.exceptions import HttpResponseError, ClientAuthenticationError +from azure.ai.ml._operations import ( + CodeOperations, + DatastoreOperations, + OnlineEndpointOperations, + EnvironmentOperations, + ModelOperations, + WorkspaceOperations, +) +from azure.ai.ml._operations.online_endpoint_operations import _strip_zeroes_from_traffic + +from azure.identity import DefaultAzureCredential +from azure.ai.ml._restclient.v2021_10_01.models import ( + EndpointAuthKeys, +) +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + KubernetesOnlineDeployment as RestKubernetesOnlineDeployment, +) +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + OnlineEndpointDetails as RestOnlineEndpoint, + OnlineDeploymentData, + OnlineEndpointData, + OnlineDeploymentDetails, +) +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.constants import ( + AzureMLResourceType, + HttpResponseStatusCode, +) +from azure.ai.ml.entities import ( + OnlineEndpoint, +) + +from pytest_mock import MockFixture + + +@pytest.fixture() +def mock_delete_poller() -> LROPoller: + poller = Mock(spec_set=LROPoller) + poller.result = lambda timeout: None + poller.done = lambda: True + yield poller + + +@pytest.fixture() +def mock_update_poller() -> LROPoller[OnlineEndpointData]: + poller = Mock(spec_set=LROPoller) + poller.done = lambda: True + poller.result = lambda: OnlineEndpointData( + name="Test", + location="eastus", + properties=RestKubernetesOnlineDeployment( + auth_mode="key", + traffic={"green": 0, "red": 0}, + ), + ) + yield poller + + +@pytest.fixture +def deployment() -> str: + return "blue" + + +@pytest.fixture +def request_file() -> str: + return "./tests/test_configs/endpoints/online/data.json" + + +@pytest.fixture +def create_yaml_no_type(tmp_path: Path) -> Path: + content = """ +name: myendpoint +compute_type: AMLCompute +auth_mode: AMLTokenAuth +#infrastructure: vc:xyz-slice-of-managed-quota #(proposed experience once vc concept lands) +traffic: + blue: 0 +""" + p = tmp_path / "create_no_type.yaml" + p.write_text(content) + return p + + +@pytest.fixture +def create_yaml_happy_path(tmp_path: Path, resource_group_name: str) -> Path: + content = f""" +name: kubernetesendpoint +compute: azureml:/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/{resource_group_name}/providers/Microsoft.MachineLearningServices/workspaces/sdk_vnext_cli/sdkv2endpointaks +auth_mode: Key +traffic: + blue: 0 +""" + p = tmp_path / "create_happy_path.yaml" + p.write_text(content) + return p + + +@pytest.fixture +def create_yaml_without_identity_type(tmp_path: Path) -> Path: + content = """ +location: centraluseuap +name: myendpoint2 +auth_mode: Key +identity: + user_assigned_identities: + - resource_id: "" +""" + p = tmp_path / "create_yaml_without_identity_type.yaml" + p.write_text(content) + return p + + +@pytest.fixture +def mock_datastore_operations( + mock_workspace_scope: OperationScope, mock_aml_services_2022_05_01: Mock +) -> CodeOperations: + yield DatastoreOperations( + operation_scope=mock_workspace_scope, + serviceclient_2022_05_01=mock_aml_services_2022_05_01, + ) + + +@pytest.fixture +def mock_model_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_05_01: Mock, + mock_datastore_operations: DatastoreOperations, +) -> ModelOperations: + yield ModelOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + datastore_operations=mock_datastore_operations, + ) + + +@pytest.fixture +def mock_code_assets_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_05_01: Mock, + mock_datastore_operations: DatastoreOperations, +) -> CodeOperations: + yield CodeOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + datastore_operations=mock_datastore_operations, + ) + + +@pytest.fixture +def mock_environment_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_05_01: Mock, + mock_machinelearning_client: Mock, +) -> EnvironmentOperations: + yield EnvironmentOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_05_01, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.fixture +def mock_data_operations() -> Mock: + yield Mock() + + +@pytest.fixture +def mock_workspace_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_01_01_preview: Mock, + mock_machinelearning_client: Mock, +) -> WorkspaceOperations: + yield WorkspaceOperations( + operation_scope=mock_workspace_scope, + service_client=mock_aml_services_2022_01_01_preview, + all_operations=mock_machinelearning_client._operation_container, + ) + + +@pytest.fixture +def mock_local_endpoint_helper() -> Mock: + yield Mock() + + +@pytest.fixture +def mock_online_endpoint_operations( + mock_workspace_scope: OperationScope, + mock_aml_services_2022_02_01_preview: Mock, + mock_aml_services_2020_09_01_dataplanepreview: Mock, + mock_machinelearning_client: Mock, + mock_environment_operations: Mock, + mock_model_operations: Mock, + mock_code_assets_operations: Mock, + mock_data_operations: Mock, + mock_workspace_operations: Mock, + mock_local_endpoint_helper: Mock, +) -> OnlineEndpointOperations: + mock_machinelearning_client._operation_container.add(AzureMLResourceType.CODE, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.MODEL, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.ENVIRONMENT, mock_code_assets_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.DATA, mock_data_operations) + mock_machinelearning_client._operation_container.add(AzureMLResourceType.WORKSPACE, mock_workspace_operations) + + yield OnlineEndpointOperations( + operation_scope=mock_workspace_scope, + service_client_02_2022_preview=mock_aml_services_2022_02_01_preview, + service_client_09_2020_dataplanepreview=mock_aml_services_2020_09_01_dataplanepreview, + all_operations=mock_machinelearning_client._operation_container, + local_endpoint_helper=mock_local_endpoint_helper, + ) + + +@pytest.mark.unittest +class TestOnlineEndpointsOperations: + def test_online_list(self, mock_online_endpoint_operations: OnlineEndpointOperations) -> None: + mock_online_endpoint_operations.list() + mock_online_endpoint_operations._online_operation.list.assert_called_once() + + def test_online_get( + self, + mock_online_endpoint_operations: OnlineEndpointOperations, + randstr: Callable[[], str], + mock_aml_services_2022_02_01_preview: Mock, + ) -> None: + random_name = randstr() + mock_aml_services_2022_02_01_preview.online_endpoints.get.return_value = OnlineEndpointData( + name=random_name, + location="eastus", + properties=RestOnlineEndpoint(auth_mode="key", traffic=dict()), + ) + + mock_aml_services_2022_02_01_preview.online_deployments.list.return_value = [ + OnlineDeploymentData( + name=random_name, + location="eastus", + properties=OnlineDeploymentDetails( + endpoint_compute_type="KUBERNETES", + ), + ) + ] + + mock_online_endpoint_operations.get(name=random_name) + mock_online_endpoint_operations._online_operation.get.assert_called_once() + + def test_online_list_keys( + self, + mock_online_endpoint_operations: OnlineEndpointOperations, + randstr: Callable[[], str], + mock_aml_services_2022_02_01_preview: Mock, + ) -> None: + random_name = randstr() + mock_aml_services_2022_02_01_preview.online_endpoints.get.return_value = OnlineEndpointData( + name=random_name, + location="eastus", + properties=RestOnlineEndpoint(auth_mode="key"), + ) + mock_online_endpoint_operations.list_keys(name=random_name) + mock_online_endpoint_operations._online_operation.get.assert_called_once() + mock_online_endpoint_operations._online_operation.list_keys.assert_called_once() + + def test_online_list_token( + self, + mock_online_endpoint_operations: OnlineEndpointOperations, + randstr: Callable[[], str], + mock_aml_services_2022_02_01_preview: Mock, + ) -> None: + random_name = randstr() + mock_aml_services_2022_02_01_preview.online_endpoints.get.return_value = OnlineEndpointData( + name=random_name, + location="eastus", + properties=RestOnlineEndpoint(auth_mode="amltoken"), + ) + mock_online_endpoint_operations.list_keys(name=random_name) + mock_online_endpoint_operations._online_operation.get.assert_called_once() + mock_online_endpoint_operations._online_operation.get_token.assert_called_once() + + def test_online_delete( + self, + mock_online_endpoint_operations: OnlineEndpointOperations, + mock_aml_services_2022_02_01_preview: Mock, + mocker: MockFixture, + randstr: Callable[[], str], + mock_delete_poller: LROPoller, + ) -> None: + random_name = randstr() + mock_aml_services_2022_02_01_preview.online_endpoints.begin_delete.return_value = mock_delete_poller + mock_online_endpoint_operations.begin_delete(name=random_name) + mock_online_endpoint_operations._online_operation.begin_delete.assert_called_once() + + def test_online_create( + self, + mock_online_endpoint_operations: OnlineEndpointOperations, + rand_compute_name: Callable[[], str], + create_yaml_happy_path: str, + mocker: MockFixture, + ) -> None: + mocker.patch( + "azure.ai.ml._operations.online_endpoint_operations.OnlineEndpointOperations._get_workspace_location", + return_value="xxx", + ) + mock_create_or_update_online_endpoint = mocker.patch.object( + OnlineEndpointOperations, "begin_create_or_update", autospec=True + ) + mock_online_endpoint_operations._credentials = Mock(spec_set=DefaultAzureCredential) + + online_endpoint = OnlineEndpoint.load(create_yaml_happy_path) + online_endpoint.name = rand_compute_name() + mock_online_endpoint_operations.begin_create_or_update(endpoint=online_endpoint) + mock_create_or_update_online_endpoint.assert_called_once() + # mock_online_endpoint_operations.create_or_update.assert_called_once() + + def test_online_create_bad_names( + self, + mock_online_endpoint_operations: OnlineEndpointOperations, + create_yaml_happy_path: str, + mocker: MockFixture, + ) -> None: + mocker.patch( + "azure.ai.ml._operations.operation_orchestrator.OperationOrchestrator._get_code_asset_arm_id", + return_value="xxx", + ) + mocker.patch( + "azure.ai.ml._operations.online_endpoint_operations.OnlineEndpointOperations._get_workspace_location", + return_value="xxx", + ) + + mock_online_endpoint_operations._credentials = Mock(spec_set=DefaultAzureCredential) + online_endpoint = OnlineEndpoint.load(create_yaml_happy_path) + # try an endpoint name that is too long + with pytest.raises(Exception): + online_endpoint.name = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + mock_online_endpoint_operations.begin_create_or_update(endpoint=online_endpoint) + + # try an endpoint name that is too short + with pytest.raises(Exception): + online_endpoint.name = "xx" + mock_online_endpoint_operations.begin_create_or_update(endpoint=online_endpoint) + + # try a name that has bad characters + with pytest.raises(Exception): + online_endpoint.name = "0_this_has%%%%%_bad#char.,.cters" + mock_online_endpoint_operations.begin_create_or_update(endpoint=online_endpoint) + + def test_online_create_without_oldendpoint( + self, + mock_online_endpoint_operations: OnlineEndpointOperations, + rand_compute_name: Callable[[], str], + create_yaml_happy_path: str, + mocker: MockFixture, + ) -> None: + mocker.patch( + "azure.ai.ml._operations.operation_orchestrator.OperationOrchestrator._get_code_asset_arm_id", + return_value="xxx", + ) + mocker.patch( + "azure.ai.ml._operations.online_endpoint_operations.OnlineEndpointOperations._get_workspace_location", + return_value="xxx", + ) + online_endpoint = OnlineEndpoint.load(create_yaml_happy_path) + online_endpoint.name = rand_compute_name() + http_err = HttpResponseError() + http_err.status_code = HttpResponseStatusCode.NOT_FOUND + mock_online_endpoint_operations._online_operation.get = Mock(side_effect=http_err) + mock_online_endpoint_operations.begin_create_or_update(endpoint=online_endpoint) + + def test_online_create_without_entity_type(self, create_yaml_without_identity_type: str) -> None: + online_endpoint = OnlineEndpoint.load(create_yaml_without_identity_type) + with pytest.raises(Exception): + mock_online_endpoint_operations.begin_create(endpoint=online_endpoint) + + def test_online_invoke( + self, + mock_online_endpoint_operations: OnlineEndpointOperations, + randstr: Callable[[], str], + request_file: str, + mocker: MockFixture, + mock_aml_services_2022_02_01_preview: Mock, + ) -> None: + random_name = randstr() + mock_aml_services_2022_02_01_preview.online_endpoints.get.return_value = OnlineEndpointData( + name=random_name, + location="eastus", + properties=RestOnlineEndpoint(auth_mode="Key", scoring_uri="xxx"), + ) + mockresponse = Mock() + mockresponse.text = '{"key": "value"}' + mockresponse.status_code = 200 + mocker.patch("requests.post", return_value=mockresponse) + assert mock_online_endpoint_operations.invoke(endpoint_name=random_name, request_file=request_file) + mock_online_endpoint_operations._online_operation.get.assert_called_once() + mock_online_endpoint_operations._online_operation.list_keys.assert_called_once() + + def test_create_no_file_throw_exception( + self, mock_online_endpoint_operations: OnlineEndpointOperations, randstr: Callable[[], str] + ) -> None: + with pytest.raises(Exception): + mock_online_endpoint_operations.begin_create(name=randstr(), file=None) + + def test_create_no_type_throw_exception( + self, mock_online_endpoint_operations: OnlineEndpointOperations, randstr: Callable[[], str] + ) -> None: + with pytest.raises(Exception): + mock_online_endpoint_operations.begin_create(name=randstr(), file=None) + + def test_create_no_type_in_file_throw_exception( + self, mock_online_endpoint_operations: OnlineEndpointOperations, randstr: Callable[[], str], create_yaml_no_type + ) -> None: + with pytest.raises(Exception): + mock_online_endpoint_operations.begin_create(name=randstr(), file=None) + + def test_online_regenerate_keys( + self, + mock_online_endpoint_operations: OnlineEndpointOperations, + randstr: str, + mock_aml_services_2022_02_01_preview: Mock, + ) -> None: + mock_aml_services_2022_02_01_preview.online_endpoints.get.return_value = OnlineEndpointData( + name=randstr, + location="eastus", + properties=RestOnlineEndpoint(auth_mode="Key", scoring_uri="xxx"), + ) + mock_aml_services_2022_02_01_preview.online_endpoints.list_keys.return_value = EndpointAuthKeys( + primary_key="primexxx", + secondary_key="secondxxx", + ) + mock_online_endpoint_operations.begin_regenerate_keys(name=randstr, key_type="secondary") + mock_online_endpoint_operations._online_operation.list_keys.assert_called_once() + mock_online_endpoint_operations._online_operation.begin_regenerate_keys.assert_called_once() + mock_online_endpoint_operations._online_operation.get.assert_called_once() + + def test_regenerate_invalid_key_type( + self, mock_online_endpoint_operations: OnlineEndpointOperations, randstr: str + ) -> None: + with pytest.raises(Exception): + mock_online_endpoint_operations.begin_regenerate_keys(name=randstr, key_type="invalid key type") + + +@pytest.mark.parametrize( + "traffic,expected_traffic", + [ + pytest.param({"blue": "100"}, {"blue": "100"}), + pytest.param({"blue": "90", "green": "10"}, {"blue": "90", "green": "10"}), + pytest.param({"blue": "100", "green": "0"}, {"blue": "100"}), + pytest.param({"green": "0"}, {}), + pytest.param({}, {}), + ], +) +def test_strip_traffic_from_traffic_map(traffic, expected_traffic) -> None: + result = _strip_zeroes_from_traffic(traffic) + for k, v in result.items(): + assert expected_traffic[k] == v + for k, v in expected_traffic.items(): + assert result[k] == v diff --git a/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_resource_requirements_settings.py b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_resource_requirements_settings.py new file mode 100644 index 000000000000..cf2215f3d2c8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_resource_requirements_settings.py @@ -0,0 +1,20 @@ +import pytest + +from azure.ai.ml.entities import ResourceSettings + + +@pytest.mark.unittest +class TestResourceRequirementsSettings: + def test_resource_requirements_settings_from_object(self) -> None: + rest_resource_settings = ResourceSettings(cpu="1", memory="1.0Gi", gpu="1") + resource_settings = ResourceSettings._from_rest_object(settings=rest_resource_settings) + assert resource_settings.cpu == rest_resource_settings.cpu + assert resource_settings.memory == rest_resource_settings.memory + assert resource_settings.gpu == rest_resource_settings.gpu + + def test_resource_requirements_settings_to_objects(self) -> None: + resource_settings = ResourceSettings(cpu="1", memory="1.0Gi", gpu="1") + rest_resource_settings = resource_settings._to_rest_object() + assert resource_settings.cpu == rest_resource_settings.cpu + assert resource_settings.memory == rest_resource_settings.memory + assert resource_settings.gpu == rest_resource_settings.gpu diff --git a/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_scale_settings.py b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_scale_settings.py new file mode 100644 index 000000000000..4406e3e1be65 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_scale_settings.py @@ -0,0 +1,33 @@ +import pytest +import yaml + +from azure.ai.ml.constants import BASE_PATH_CONTEXT_KEY +from azure.ai.ml._utils.utils import camel_to_snake +from marshmallow import RAISE +from azure.ai.ml._restclient.v2021_10_01.models import ( + DefaultScaleSettings as RestDefaultScaleSettings, + TargetUtilizationScaleSettings as RestTargetUtilizationScaleSettings, +) +from azure.ai.ml.entities import DefaultScaleSettings, TargetUtilizationScaleSettings + + +@pytest.mark.unittest +class TestScaleSettings: + def test_target_utilization_scale_settings_from_object(self) -> None: + rest_scale_settings = RestTargetUtilizationScaleSettings( + min_instances=1, + max_instances=2, + polling_interval="PT1S", + target_utilization_percentage=30, + ) + scale_settings = TargetUtilizationScaleSettings._from_rest_object(settings=rest_scale_settings) + assert scale_settings.scale_type == camel_to_snake(rest_scale_settings.scale_type) + assert scale_settings.min_instances == rest_scale_settings.min_instances + assert scale_settings.max_instances == rest_scale_settings.max_instances + assert scale_settings.polling_interval == 1 + assert scale_settings.target_utilization_percentage == rest_scale_settings.target_utilization_percentage + + def test_auto_scale_settings_to_objects(self) -> None: + scale_settings = DefaultScaleSettings() + rest_scale_settings = scale_settings._to_rest_object() + assert camel_to_snake(rest_scale_settings.scale_type) == scale_settings.scale_type diff --git a/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_scale_settings_schema.py b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_scale_settings_schema.py new file mode 100644 index 000000000000..459c5d328270 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/online_services/unittests/test_scale_settings_schema.py @@ -0,0 +1,73 @@ +import pytest +import yaml +from azure.ai.ml._schema._deployment.online.scale_settings_schema import ( + DefaultScaleSettingsSchema, + TargetUtilizationScaleSettingsSchema, +) +from azure.ai.ml._scope_dependent_operations import OperationScope +from azure.ai.ml.constants import ( + AZUREML_RESOURCE_PROVIDER, + BASE_PATH_CONTEXT_KEY, + NAMED_RESOURCE_ID_FORMAT, + RESOURCE_ID_FORMAT, +) +from marshmallow.exceptions import ValidationError +from azure.ai.ml._schema import UnionField, NestedField +from marshmallow.schema import Schema + + +class DummySchema(Schema): + scale_settings = UnionField( + [NestedField(DefaultScaleSettingsSchema), NestedField(TargetUtilizationScaleSettingsSchema)] + ) + + +@pytest.mark.unittest +class TestScaleSettingsSchema: + def test_default_scale_settings(self, mock_workspace_scope: OperationScope) -> None: + schema = DummySchema() + input_data = {"scale_settings": {"type": "default"}} + schema.load(input_data) + + def test_target_utilization_scale_settings(self, mock_workspace_scope: OperationScope) -> None: + schema = DummySchema() + input_data = {"scale_settings": {"type": "target_utilization"}} + schema.load(input_data) + + def test_scale_type_missing(self, mock_workspace_scope: OperationScope) -> None: + schema = DummySchema() + input_data = {"scale_settings": {}} + with pytest.raises(ValidationError): + schema.load(input_data) + + def test_invalid_scale_type(self, mock_workspace_scope: OperationScope) -> None: + schema = DummySchema() + input_data = {"scale_settings": {"type": "xxrei"}} + with pytest.raises(ValidationError): + schema.load(input_data) + + def test_invalid_fields(self, mock_workspace_scope: OperationScope) -> None: + schema = DummySchema() + input_data = {"scale_settings": {"type": "AuTo", "min_instances": 2, "max_instances": 1}} + with pytest.raises(ValidationError): + schema.load(input_data) + + def test_manual_missing_instance_count(self, mock_workspace_scope: OperationScope) -> None: + schema = DummySchema() + input_data = {"scale_settings": {"type": "Manual", "min_instances": 1, "max_instances": 2}} + with pytest.raises(ValidationError): + schema.load(input_data) + + def test_manual_normal_pass(self, mock_workspace_scope: OperationScope) -> None: + schema = DummySchema() + input_data = { + "scale_settings": { + "type": "target_utilization", + "min_instances": 1, + "max_instances": 2, + "polling_interval": 1, + "target_utilization_percentage": 80, + } + } + data = schema.load(input_data) + assert data["scale_settings"].scale_type == "target_utilization" diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/__init__.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/_util.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/_util.py new file mode 100644 index 000000000000..7c5b726a8835 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/pipeline_job/_util.py @@ -0,0 +1,46 @@ +from dateutil import tz +from typing import Dict, Union + +from azure.ai.ml.entities import CronSchedule, RecurrenceSchedule, RecurrencePattern + + +def _check_recurrence_schedule_fields(job_schedule: RecurrenceSchedule, job_dict_schedule: Dict): + assert isinstance(job_schedule, RecurrenceSchedule) + _check_common_schedule_fields(job_schedule, job_dict_schedule) + print(job_schedule.frequency) + print(job_dict_schedule["frequency"]) + assert job_schedule.frequency == job_dict_schedule["frequency"] + assert job_schedule.interval == job_dict_schedule["interval"] + + job_schedule_pattern = job_schedule.pattern + job_dict_schedule_pattern = job_dict_schedule.get("pattern", None) + if job_dict_schedule_pattern: + assert job_schedule_pattern + assert isinstance(job_schedule_pattern, RecurrencePattern) + + # Since literal values are allowed in YAML, convert non-list values to lists + # to check that the SDK is internally storing "hours", "minutes", and "weekdays" as lists. + job_dict_schedule_pattern_hours = job_dict_schedule_pattern["hours"] + if not isinstance(job_dict_schedule_pattern_hours, list): + job_dict_schedule_pattern_hours = [job_dict_schedule_pattern_hours] + job_dict_schedule_pattern_minutes = job_dict_schedule_pattern["minutes"] + if not isinstance(job_dict_schedule_pattern_minutes, list): + job_dict_schedule_pattern_minutes = [job_dict_schedule_pattern_minutes] + job_dict_scheudule_pattern_weekdays = job_dict_schedule_pattern["weekdays"] + if not isinstance(job_dict_scheudule_pattern_weekdays, list): + job_dict_scheudule_pattern_weekdays = [job_dict_scheudule_pattern_weekdays] + + # SDK behavior is to store the hours/minutes/weekdays as a list but also allow the user to set single, literal values for each of them + assert isinstance(job_schedule_pattern.hours, list) + assert job_schedule_pattern.hours == job_dict_schedule_pattern_hours + assert isinstance(job_schedule_pattern.minutes, list) + assert job_schedule_pattern.minutes == job_dict_schedule_pattern_minutes + assert isinstance(job_schedule_pattern.weekdays, list) + assert [day.lower() for day in job_schedule_pattern.weekdays] == job_dict_scheudule_pattern_weekdays + + +def _check_common_schedule_fields(job_schedule: Union[CronSchedule, RecurrenceSchedule], job_dict_schedule: Dict): + # normalize timezone to UTC to prevent issues arising from differing timezone representations. + assert job_schedule.start_time + assert job_schedule.time_zone == job_dict_schedule.get("time_zone", "UTC") + assert job_schedule.status == job_dict_schedule["status"] diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_entity.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_entity.py new file mode 100644 index 000000000000..863361fbf91d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_entity.py @@ -0,0 +1,574 @@ +import yaml +import json +import pydash +import pytest +from marshmallow import ValidationError +from pytest_mock import MockFixture + +from azure.ai.ml import MLClient +from azure.ai.ml.automl import classification +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml.entities import PipelineJob, Job +from azure.ai.ml._schema.automl import AutoMLRegressionSchema +from azure.ai.ml.entities._job.pipeline._io import PipelineInput +from azure.ai.ml._restclient.v2022_02_01_preview.models import JobBaseData as RestJob +from azure.ai.ml.entities._job.automl.tabular import RegressionJob, ClassificationJob, ForecastingJob +from azure.ai.ml.entities._job.automl.image import ( + ImageClassificationJob, + ImageClassificationMultilabelJob, + ImageObjectDetectionJob, + ImageInstanceSegmentationJob, +) +from azure.ai.ml.entities._job.automl.nlp import ( + TextClassificationJob, + TextClassificationMultilabelJob, + TextNerJob, +) + + +def load_pipeline_entity_from_rest_json(job_dict) -> PipelineJob: + """Rest pipeline json -> rest pipeline object -> pipeline entity""" + rest_obj = RestJob.from_dict(json.loads(json.dumps(job_dict))) + internal_pipeline = PipelineJob._from_rest_object(rest_obj) + return internal_pipeline + + +@pytest.mark.usefixtures("enable_pipeline_private_preview_features") +@pytest.mark.unittest +class TestPipelineJobEntity: + def test_automl_node_in_pipeline_regression(self, mock_machinelearning_client: MLClient, mocker: MockFixture): + test_path = "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.yml" + + # overwrite some fields to data bindings to make sure it's supported + params_override = [ + {"jobs.hello_automl_regression.primary_metric": "${{parent.inputs.primary_metric}}"}, + {"jobs.hello_automl_regression.limits.max_trials": "${{parent.inputs.max_trials}}"}, + ] + job = Job.load(path=test_path, params_override=params_override) + assert isinstance(job, PipelineJob) + node = next(iter(job.jobs.values())) + assert isinstance(node, RegressionJob) + + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + + rest_job_dict = job._to_rest_object().as_dict() + omit_fields = ["name", "display_name", "experiment_name", "properties"] + actual_dict = pydash.omit(rest_job_dict["properties"]["jobs"]["hello_automl_regression"], omit_fields) + + expected_dict = { + "featurization": {"mode": "off"}, + "limits": {"max_concurrent_trials": 1, "max_trials": "${{parent.inputs.max_trials}}"}, + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "${{parent.inputs.primary_metric}}", + "tags": {}, + "target_column_name": "SalePrice", + "task": "regression", + "test_data": "${{parent.inputs.automl_test_data}}", + "training": {"enable_stack_ensemble": False, "enable_vote_ensemble": False}, + "training_data": "${{parent.inputs.automl_train_data}}", + "type": "automl", + "validation_data": "${{parent.inputs.automl_valid_data}}", + } + assert actual_dict == expected_dict + + # same regression node won't load as AutoMLRegressionSchema since there's data binding + with pytest.raises(ValidationError) as e: + AutoMLRegressionSchema(context={"base_path": "./"}).load(expected_dict) + assert "Value ${{parent.inputs.primary_metric}} passed is not in set" in str(e.value) + + def test_automl_node_in_pipeline_classification(self, mock_machinelearning_client: MLClient, mocker: MockFixture): + test_path = "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_classification.yml" + job = Job.load(path=test_path) + assert isinstance(job, PipelineJob) + node = next(iter(job.jobs.values())) + assert isinstance(node, ClassificationJob) + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + + rest_job_dict = job._to_rest_object().as_dict() + omit_fields = ["name", "display_name", "experiment_name", "properties"] + actual_dict = pydash.omit(rest_job_dict["properties"]["jobs"]["hello_automl_classification"], omit_fields) + + assert actual_dict == { + "featurization": {"mode": "auto"}, + "limits": {"max_concurrent_trials": 1, "max_trials": 1}, + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "accuracy", + "tags": {}, + "test_data": "${{parent.inputs.classification_test_data}}", + "target_column_name": "y", + "task": "classification", + "training": {"enable_stack_ensemble": False, "enable_vote_ensemble": False}, + "training_data": "${{parent.inputs.classification_train_data}}", + "type": "automl", + "validation_data": "${{parent.inputs.classification_validate_data}}", + } + + def test_automl_node_in_pipeline_forecasting(self, mock_machinelearning_client: MLClient, mocker: MockFixture): + test_path = "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_forecasting.yml" + job = Job.load(path=test_path) + assert isinstance(job, PipelineJob) + node = next(iter(job.jobs.values())) + assert isinstance(node, ForecastingJob) + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + + rest_job_dict = job._to_rest_object().as_dict() + omit_fields = ["name", "display_name", "experiment_name", "properties"] + actual_dict = pydash.omit(rest_job_dict["properties"]["jobs"]["hello_automl_forecasting"], omit_fields) + + assert actual_dict == { + "limits": {"max_concurrent_trials": 1, "max_trials": 1}, + "featurization": {"mode": "auto"}, + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "normalized_root_mean_squared_error", + "tags": {}, + "target_column_name": "BeerProduction", + "task": "forecasting", + "training": {"enable_stack_ensemble": False, "enable_vote_ensemble": False}, + "training_data": "${{parent.inputs.forecasting_train_data}}", + "type": "automl", + "forecasting": {"forecast_horizon": 12, "time_column_name": "DATE", "frequency": "MS"}, + "n_cross_validations": 2, + } + + @pytest.mark.parametrize( + "rest_job_file, node_name", + [ + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.json", + "hello_automl_regression", + ), + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/rest_pipeline_with_automl_output_binding.json", + "classification_node", + ), + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/rest_pipeline_with_automl_output.json", + "hello_automl_regression", + ), + ], + ) + def test_automl_job_in_pipeline_deserialize(self, rest_job_file, node_name): + with open(rest_job_file, "r") as f: + job_dict = yaml.safe_load(f) + pipeline = load_pipeline_entity_from_rest_json(job_dict) + assert isinstance(pipeline, PipelineJob) + expected_automl_job = job_dict["properties"]["jobs"][node_name] + actual_automl_job = pipeline._to_rest_object().as_dict()["properties"]["jobs"][node_name] + assert actual_automl_job == expected_automl_job + + def test_automl_node_in_pipeline_with_binding(self): + # classification node + automl_classif_job = classification( + training_data=PipelineInput(name="main_data_input", owner="pipeline", meta=None), + # validation_data_size=PipelineInput(name="validation_data_size", owner="pipeline", meta=None), + # test_data = test_data_input # Optional, since testing is explicit below with TEST COMPONENT + target_column_name=PipelineInput(name="target_column_name_input", owner="pipeline", meta=None), + # primary_metric=PipelineInput(name="primary_metric", owner="pipeline", meta=None), + enable_model_explainability=True, + ) + pipeline_job = PipelineJob(jobs={"automl_classif_job": automl_classif_job}) + rest_pipeline_job_dict = pipeline_job._to_rest_object().as_dict() + rest_automl_node_dict = pydash.omit( + rest_pipeline_job_dict["properties"]["jobs"]["automl_classif_job"], + ["name", "display_name", "experiment_name", "properties"], + ) + assert rest_automl_node_dict == { + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "accuracy", + "tags": {}, + "target_column_name": "${{parent.inputs.target_column_name_input}}", + "task": "classification", + "training": {"enable_model_explainability": True}, + "training_data": "${{parent.inputs.main_data_input}}", + "type": "automl", + } + + def test_pipeline_job_automl_regression_output(self, mock_machinelearning_client: MLClient, mocker: MockFixture): + test_path = "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_command_node.yml" + pipeline: PipelineJob = Job.load(path=test_path) + + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(pipeline) + + pipeline_dict = pipeline._to_rest_object().as_dict() + + fields_to_omit = ["name", "display_name", "training_data", "validation_data", "experiment_name", "properties"] + + automl_actual_dict = pydash.omit(pipeline_dict["properties"]["jobs"]["regression_node"], fields_to_omit) + + assert automl_actual_dict == { + "featurization": {"mode": "off"}, + "limits": {"max_concurrent_trials": 1, "max_trials": 1}, + "log_verbosity": "info", + "outputs": {"best_model": {"job_output_type": "MLFlowModel", "mode": "ReadWriteMount"}}, + "primary_metric": "r2_score", + "tags": {}, + "target_column_name": "SalePrice", + "task": "regression", + "test_data": "${{parent.inputs.automl_test_data}}", + "training": {"enable_stack_ensemble": False, "enable_vote_ensemble": False}, + "type": "automl", + } + + command_actual_dict = pydash.omit(pipeline_dict["properties"]["jobs"]["command_node"], fields_to_omit) + + assert command_actual_dict == { + "componentId": "xxx", + "computeId": "xxx", + "distribution": None, + "environment_variables": {}, + "inputs": { + "mltable_output": { + "job_input_type": "Literal", + "value": "${{parent.jobs.regression_node.outputs.best_model}}", + } + }, + "limits": None, + "outputs": {}, + "resources": None, + "tags": {}, + } + + def test_automl_node_in_pipeline_text_classification( + self, mock_machinelearning_client: MLClient, mocker: MockFixture + ): + test_path = "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification.yml" + job = Job.load(path=test_path) + assert isinstance(job, PipelineJob) + node = next(iter(job.jobs.values())) + assert isinstance(node, TextClassificationJob) + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + + rest_job_dict = job._to_rest_object().as_dict() + omit_fields = ["name", "display_name", "experiment_name", "properties"] + actual_dict = pydash.omit(rest_job_dict["properties"]["jobs"]["automl_text_classification"], omit_fields) + + assert actual_dict == { + "featurization": {"dataset_language": "eng"}, + "limits": {"max_trials": 1, "timeout_minutes": 60}, + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "accuracy", + "tags": {}, + "target_column_name": "y", + "task": "text_classification", + "training_data": "${{parent.inputs.text_classification_training_data}}", + "validation_data": "${{parent.inputs.text_classification_validation_data}}", + "type": "automl", + } + + def test_automl_node_in_pipeline_text_classification_multilabel( + self, mock_machinelearning_client: MLClient, mocker: MockFixture + ): + test_path = ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification_multilabel.yml" + ) + job = Job.load(path=test_path) + assert isinstance(job, PipelineJob) + node = next(iter(job.jobs.values())) + assert isinstance(node, TextClassificationMultilabelJob) + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + + rest_job_dict = job._to_rest_object().as_dict() + omit_fields = ["name", "display_name", "experiment_name", "properties"] + actual_dict = pydash.omit( + rest_job_dict["properties"]["jobs"]["automl_text_classification_multilabel"], omit_fields + ) + + assert actual_dict == { + "limits": {"max_trials": 1, "timeout_minutes": 60}, + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "accuracy", + "tags": {}, + "target_column_name": "terms", + "task": "text_classification_multilabel", + "training_data": "${{parent.inputs.text_classification_multilabel_training_data}}", + "validation_data": "${{parent.inputs.text_classification_multilabel_validation_data}}", + "type": "automl", + } + + def test_automl_node_in_pipeline_text_ner(self, mock_machinelearning_client: MLClient, mocker: MockFixture): + test_path = "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_ner.yml" + job = Job.load(path=test_path) + assert isinstance(job, PipelineJob) + node = next(iter(job.jobs.values())) + assert isinstance(node, TextNerJob) + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + + rest_job_dict = job._to_rest_object().as_dict() + omit_fields = ["name", "display_name", "experiment_name", "properties"] + actual_dict = pydash.omit(rest_job_dict["properties"]["jobs"]["automl_text_ner"], omit_fields) + + assert actual_dict == { + "limits": {"max_trials": 1, "timeout_minutes": 60}, + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "accuracy", + "tags": {}, + "target_column_name": "label", + "task": "text_ner", + "training_data": "${{parent.inputs.text_ner_training_data}}", + "validation_data": "${{parent.inputs.text_ner_validation_data}}", + "type": "automl", + } + + def test_automl_node_in_pipeline_image_multiclass_classification( + self, mock_machinelearning_client: MLClient, mocker: MockFixture + ): + test_path = "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multiclass_classification.yml" + job = Job.load(path=test_path) + assert isinstance(job, PipelineJob) + node = next(iter(job.jobs.values())) + assert isinstance(node, ImageClassificationJob) + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + + rest_job_dict = job._to_rest_object().as_dict() + omit_fields = ["name", "display_name", "experiment_name", "properties"] + actual_dict = pydash.omit( + rest_job_dict["properties"]["jobs"]["hello_automl_image_multiclass_classification"], omit_fields + ) + + assert actual_dict == { + "limits": {"timeout_minutes": 60}, + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "accuracy", + "tags": {}, + "target_column_name": "label", + "task": "image_classification", + "training_data": "${{parent.inputs.image_multiclass_classification_train_data}}", + "type": "automl", + "validation_data": "${{parent.inputs.image_multiclass_classification_validate_data}}", + "sweep": { + "sampling_algorithm": "random", + "limits": {"max_concurrent_trials": 4, "max_trials": 20}, + "early_termination": { + "evaluation_interval": 10, + "delay_evaluation": 0, + "type": "bandit", + "slack_factor": 0.2, + "slack_amount": 0.0, + }, + }, + "image_model": { + "checkpoint_frequency": 1, + "early_stopping": True, + "early_stopping_delay": 2, + "early_stopping_patience": 2, + "evaluation_frequency": 1, + }, + "search_space": [ + { + "learning_rate": "uniform(0.005,0.05)", + "model_name": "choice('vitb16r224')", + "optimizer": "choice('sgd','adam','adamw')", + "warmup_cosine_lr_warmup_epochs": "choice(0,3)", + } + ], + } + + def test_automl_node_in_pipeline_image_multilabel_classification( + self, mock_machinelearning_client: MLClient, mocker: MockFixture + ): + test_path = "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multilabel_classification.yml" + job = Job.load(path=test_path) + assert isinstance(job, PipelineJob) + node = next(iter(job.jobs.values())) + assert isinstance(node, ImageClassificationMultilabelJob) + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + + rest_job_dict = job._to_rest_object().as_dict() + omit_fields = ["name", "display_name", "experiment_name", "properties"] + actual_dict = pydash.omit( + rest_job_dict["properties"]["jobs"]["hello_automl_image_multilabel_classification"], omit_fields + ) + + assert actual_dict == { + "limits": {"timeout_minutes": 60}, + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "iou", + "tags": {}, + "target_column_name": "label", + "task": "image_classification_multilabel", + "training_data": "${{parent.inputs.image_multilabel_classification_train_data}}", + "type": "automl", + "validation_data": "${{parent.inputs.image_multilabel_classification_validate_data}}", + "sweep": { + "sampling_algorithm": "random", + "limits": {"max_concurrent_trials": 4, "max_trials": 20}, + "early_termination": { + "evaluation_interval": 10, + "delay_evaluation": 0, + "type": "bandit", + "slack_factor": 0.2, + "slack_amount": 0.0, + }, + }, + "image_model": { + "checkpoint_frequency": 1, + "early_stopping": True, + "early_stopping_delay": 2, + "early_stopping_patience": 2, + "evaluation_frequency": 1, + }, + "search_space": [ + { + "learning_rate": "uniform(0.005,0.05)", + "model_name": "choice('vitb16r224')", + "optimizer": "choice('sgd','adam','adamw')", + "warmup_cosine_lr_warmup_epochs": "choice(0,3)", + } + ], + } + + def test_automl_node_in_pipeline_image_object_detection( + self, mock_machinelearning_client: MLClient, mocker: MockFixture + ): + test_path = "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_object_detection.yml" + job = Job.load(path=test_path) + assert isinstance(job, PipelineJob) + node = next(iter(job.jobs.values())) + assert isinstance(node, ImageObjectDetectionJob) + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + + rest_job_dict = job._to_rest_object().as_dict() + omit_fields = ["name", "display_name", "experiment_name", "properties"] + actual_dict = pydash.omit( + rest_job_dict["properties"]["jobs"]["hello_automl_image_object_detection"], omit_fields + ) + + assert actual_dict == { + "limits": {"timeout_minutes": 60}, + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "mean_average_precision", + "tags": {}, + "target_column_name": "label", + "task": "image_object_detection", + "training_data": "${{parent.inputs.image_object_detection_train_data}}", + "type": "automl", + "validation_data": "${{parent.inputs.image_object_detection_validate_data}}", + "sweep": { + "sampling_algorithm": "random", + "limits": {"max_concurrent_trials": 4, "max_trials": 20}, + "early_termination": { + "evaluation_interval": 10, + "delay_evaluation": 0, + "type": "bandit", + "slack_factor": 0.2, + "slack_amount": 0.0, + }, + }, + "image_model": { + "checkpoint_frequency": 1, + "early_stopping": True, + "early_stopping_delay": 2, + "early_stopping_patience": 2, + "evaluation_frequency": 1, + }, + "search_space": [ + { + "learning_rate": "uniform(0.005,0.05)", + "model_name": "choice('fasterrcnn_resnet50_fpn')", + "optimizer": "choice('sgd','adam','adamw')", + "warmup_cosine_lr_warmup_epochs": "choice(0,3)", + "min_size": "choice(600,800)", + } + ], + } + + def test_automl_node_in_pipeline_image_instance_segmentation( + self, mock_machinelearning_client: MLClient, mocker: MockFixture + ): + test_path = ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_instance_segmentation.yml" + ) + job = Job.load(path=test_path) + assert isinstance(job, PipelineJob) + node = next(iter(job.jobs.values())) + assert isinstance(node, ImageInstanceSegmentationJob) + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + + rest_job_dict = job._to_rest_object().as_dict() + omit_fields = ["name", "display_name", "experiment_name", "properties"] + actual_dict = pydash.omit( + rest_job_dict["properties"]["jobs"]["hello_automl_image_instance_segmentation"], omit_fields + ) + + assert actual_dict == { + "limits": {"timeout_minutes": 60}, + "log_verbosity": "info", + "outputs": {}, + "primary_metric": "mean_average_precision", + "tags": {}, + "target_column_name": "label", + "task": "image_instance_segmentation", + "training_data": "${{parent.inputs.image_instance_segmentation_train_data}}", + "type": "automl", + "validation_data": "${{parent.inputs.image_instance_segmentation_validate_data}}", + "sweep": { + "sampling_algorithm": "random", + "limits": {"max_concurrent_trials": 4, "max_trials": 20}, + "early_termination": { + "evaluation_interval": 10, + "delay_evaluation": 0, + "type": "bandit", + "slack_factor": 0.2, + "slack_amount": 0.0, + }, + }, + "image_model": { + "checkpoint_frequency": 1, + "early_stopping": True, + "early_stopping_delay": 2, + "early_stopping_patience": 2, + "evaluation_frequency": 1, + }, + "search_space": [ + { + "learning_rate": "uniform(0.005,0.05)", + "model_name": "choice('maskrcnn_resnet50_fpn')", + "optimizer": "choice('sgd','adam','adamw')", + "warmup_cosine_lr_warmup_epochs": "choice(0,3)", + "min_size": "choice(600,800)", + } + ], + } + + def test_infer_pipeline_output_type_as_node_type( + self, + ) -> None: + pipeline_job = Job.load( + path="./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_tabular_input_e2e.yml", + ) + assert ( + pipeline_job.jobs["hello_world_inline_parallel_tabular_job_1"].outputs["job_output_file"].type + == AssetTypes.URI_FILE + ) diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py new file mode 100644 index 000000000000..f0e22f60d594 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py @@ -0,0 +1,1388 @@ +import re +import json +from io import StringIO + +import yaml +import pydash +import pytest +from typing import Dict, Any +from pytest_mock import MockFixture + +from azure.ai.ml._ml_exceptions import ValidationException +from marshmallow import ValidationError + +from azure.ai.ml import MLClient +from azure.ai.ml.entities import ( + Job, + PipelineJob, + CommandComponent, + Component, + CronSchedule, + RecurrenceSchedule, + ParallelComponent, +) +from azure.ai.ml.entities._inputs_outputs import Input, Output +from azure.ai.ml.entities._assets import Code +from azure.ai.ml.constants import ( + ComponentJobConstants, + PipelineConstants, +) +from azure.ai.ml._utils.utils import load_yaml, is_data_binding_expression +from azure.ai.ml.constants import ARM_ID_PREFIX +from azure.ai.ml.entities._job.pipeline._exceptions import UserErrorException +from azure.ai.ml.entities._job.pipeline._io import PipelineInput, PipelineOutput +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + JobOutput as RestJobOutput, + PipelineJob as RestPipelineJob, + MLTableJobInput, + UriFolderJobInput, + CronSchedule as RestCronSchedule, + RecurrenceSchedule as RestRecurrenceSchedule, +) + +from .._util import _check_common_schedule_fields, _check_recurrence_schedule_fields + + +@pytest.mark.usefixtures("enable_pipeline_private_preview_features") +@pytest.mark.unittest +class TestPipelineJobSchema: + def test_simple_deserialize(self): + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths.yml" + yaml_obj = load_yaml(test_path) + job = Job.load(test_path) + # Expected REST overrides and settings are in a JSON file "settings_overrides.json" + with open( + "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths_expected_settings_override.json" + ) as f: + expected_rest_settings_overrides = json.load(f) + # assert that inputs put in "values" get bubbled up to top level + expected_inputs = { + "job_in_number": 10, + "job_in_other_number": 15, + "job_in_string": "a_random_string", + } + assert job._build_inputs() == expected_inputs + settings = vars(job.settings) + settings = {k: v for k, v in settings.items() if v is not None and k != "force_rerun"} + assert settings == yaml_obj["settings"] + # check that components were loaded correctly + hello_world_component = job.jobs["hello_world_component"] + rest_hello_world_component = hello_world_component._to_rest_object() + hello_world_component_yaml = yaml_obj["jobs"]["hello_world_component"] + assert hello_world_component_yaml["type"] == hello_world_component.type + assert hello_world_component_yaml["component"][len(ARM_ID_PREFIX) :] == hello_world_component.component + assert rest_hello_world_component["inputs"] == { + "component_in_number": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_number}}", + } + } + hello_world_component_2 = job.jobs["hello_world_component_2"] + rest_hello_world_component_2 = hello_world_component_2._to_rest_object() + hello_world_component_2_yaml = yaml_obj["jobs"]["hello_world_component_2"] + assert hello_world_component_2_yaml["type"] == hello_world_component_2.type + assert hello_world_component_2_yaml["component"][len(ARM_ID_PREFIX) :] == hello_world_component_2.component + assert rest_hello_world_component_2["inputs"] == { + "component_in_number": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_other_number}}", + } + } + assert expected_rest_settings_overrides["expected_rest_overrides"]["distribution"] == ( + hello_world_component_2.distribution.as_dict() + ) + assert {"FOO": "bar"} == hello_world_component_2.environment_variables + assert {"nested_override": 5} == hello_world_component_2.additional_override + + # hello_world_component_3 = job.jobs["hello_world_component_3"] + # rest_hello_world_component_3 = hello_world_component_3._to_rest_object() + # hello_world_component_3_yaml = yaml_obj["jobs"]["hello_world_component_3"] + # assert hello_world_component_3_yaml["type"] == hello_world_component_3.type + # assert rest_hello_world_component_3["inputs"] == { + # "job_data_path": {"job_input_type": "Literal", "value": "${{parent.inputs.job_data_path}}"}, + # "score_model": {"job_input_type": "Literal", "value": "${{parent.inputs.score_model}}"}, + # } + + # Check that REST conversion works + rest_job = job._to_rest_object() + rest_pipeline_properties = rest_job.properties + # Check inputs were properly serialized + for input_name, input_value in yaml_obj["inputs"].items(): + assert input_name in rest_pipeline_properties.inputs + if isinstance(input_value, dict): + input_value = input_value.get("value", None) + if not isinstance(rest_pipeline_properties.inputs[input_name], (MLTableJobInput, UriFolderJobInput)): + assert str(input_value) == rest_pipeline_properties.inputs[input_name].value + + # Check settings + assert ( + rest_pipeline_properties.settings["continue_on_step_failure"] + == expected_rest_settings_overrides["expected_rest_settings"]["continue_on_step_failure"] + ) + + # Check that components were properly serialized: + input_component_jobs = yaml_obj["jobs"] + for job_name, component_job in input_component_jobs.items(): + # Check that the input component job is in the REST representation + assert job_name in rest_pipeline_properties.jobs + rest_component_job = rest_pipeline_properties.jobs[job_name] + if "component" in rest_pipeline_properties.jobs[job_name]: + assert component_job["component"][len(ARM_ID_PREFIX) :] == rest_component_job["componentId"] + # Check the inputs are properly placed + rest_component_job_inputs = rest_component_job["inputs"] + for input_name, input_value in component_job["inputs"].items(): + # skip check data bindings + if not re.match(ComponentJobConstants.INPUT_PATTERN, input_value): + # If given input is a literal + assert input_name in rest_component_job_inputs + # If the given input is a literal value + assert rest_component_job_inputs[input_name].data.value == str(input_value) + overrides = component_job.get("overrides", None) + if overrides: + assert rest_component_job["overrides"] + assert expected_rest_settings_overrides["expected_rest_overrides"] == rest_component_job["overrides"] + # Check that the compute is properly serialized + if "component" in rest_component_job: + assert rest_component_job["computeId"] + assert rest_component_job["computeId"] == component_job["compute"][len(ARM_ID_PREFIX) :] + + def test_pipeline_job_settings_compute_dump(self, mock_machinelearning_client: MLClient): + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths.yml" + job = Job.load(test_path) + job.settings.default_compute = "cpu-cluster" + dump_str = StringIO() + yaml.dump(job._to_dict(), dump_str) + dump_str = dump_str.getvalue() + # assert settings.default_compute dumped as arm str + assert "continue_on_step_failure: true" in dump_str + assert "default_compute: azureml:cpu-cluster" in dump_str + + def test_literal_input_types(self): + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_comps.yml" + job = Job.load(test_path) + expected_inputs = {"job_in_number": 10.01, "job_in_other_number": 15} + assert job._build_inputs() == expected_inputs + assert isinstance(job.inputs["job_in_number"], PipelineInput) + assert isinstance(job.inputs.job_in_number._data, float) + assert isinstance(job.inputs["job_in_other_number"], PipelineInput) + assert isinstance(job.inputs.job_in_other_number._data, int) + + def test_sweep_node(self): + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_sweep_node.yml" + pipeline: PipelineJob = Job.load(test_path) + pipeline_dict = pipeline._to_dict() + for key, expected_value in [ + ("jobs.hello_sweep_inline_trial.objective.goal", "maximize"), + ("jobs.hello_sweep_inline_remote_trial.objective.goal", "maximize"), + ( + "jobs.hello_sweep_inline_remote_trial.trial", + "azureml:microsoftsamplescommandcomponentbasic_nopaths_test:1", + ), + ]: + loaded_value = pydash.get(pipeline_dict, key, None) + assert loaded_value == expected_value, f"{key} isn't as expected: {loaded_value} != {expected_value}" + + def test_literal_inputs_fidelity_in_yaml_dump(self): + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths.yml" + job = Job.load(test_path) + + reconstructed_yaml = job._to_dict() + assert reconstructed_yaml["inputs"] == job._build_inputs() + + def test_pipeline_job_with_inputs(self, mock_machinelearning_client: MLClient, mocker: MockFixture) -> None: + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_data_options_no_outputs.yml" + yaml_obj = load_yaml(test_path) + job = PipelineJob.load(test_path) + + # Check that all inputs are present and are of type Input + for input_name in yaml_obj["inputs"].keys(): + job_obj_input = job.inputs.get(input_name, None) + assert job_obj_input + assert isinstance(job_obj_input, PipelineInput) + assert isinstance(job_obj_input._data, Input) + + # "Upload" the dependencies so that the dataset serialization behavior can be verified + mocker.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + return_value="xxx", + ) + mocker.patch( + "azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", + return_value="yyy", + ) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + # Convert to REST object and check that all inputs were turned into data inputs + rest_job = job._to_rest_object() + for input_name, input_value in yaml_obj["inputs"].items(): + rest_input = rest_job.properties.inputs.get(input_name, None) + assert rest_input + # Test that the dataset fields get populated + job_input = job.inputs[input_name]._data + assert rest_input.uri == job_input.path + # Test that mode was properly serialized + # TODO: https://msdata.visualstudio.com/Vienna/_workitems/edit/1318153/ For now, check that mode is present until new delivery types are supported. + # yaml_input_mode = input_value.get("mode", InputDataDeliveryMode.READ_WRITE_MOUNT) + assert rest_input.mode + + # Test that translating from REST preserves the inputs + from_rest_job = PipelineJob._from_rest_object(rest_job) + for input_name, input_value in rest_job.properties.inputs.items(): + from_rest_input = from_rest_job.inputs[input_name] + assert from_rest_input + assert isinstance(from_rest_input, PipelineInput) + assert isinstance(from_rest_input._data, Input) + + assert from_rest_input._data.path == input_value.uri + # For now, just check that there is a mode present until new data delivery types are supported. + # TODO: https://msdata.visualstudio.com/Vienna/_workitems/edit/1318153/ For now, check that mode is present until new delivery types are supported. + assert from_rest_input.mode + + def test_pipeline_job_with_inputs_dataset(self, mock_machinelearning_client: MLClient, mocker: MockFixture) -> None: + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_dataset_options_no_outputs.yml" + yaml_obj = load_yaml(test_path) + job = Job.load(test_path) # type: PipelineJob + + # Check that all inputs are present and are of type InputOutputEntry + for input_name in yaml_obj["inputs"].keys(): + job_obj_input = job.inputs.get(input_name, None) + assert job_obj_input + assert isinstance(job_obj_input, PipelineInput) + assert isinstance(job_obj_input._data, Input) or isinstance(job_obj_input._data, Input) + + # "Upload" the depedencies so that the dataset serialization behavior can be verified + mocker.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + return_value="xxx", + ) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + # Convert to REST object and check that all inputs were turned into data inputs + rest_job = job._to_rest_object() + for input_name, input_value in yaml_obj["inputs"].items(): + rest_input = rest_job.properties.inputs.get(input_name, None) + assert rest_input + # Test that the dataset fields get populated + assert rest_input.uri == job.inputs[input_name]._data.path + # Test that mode was properly serialized + # TODO: https://msdata.visualstudio.com/Vienna/_workitems/edit/1318153/ For now, check that mode is present until new delivery types are supported. + # yaml_input_mode = input_value.get("mode", InputDataDeliveryMode.READ_WRITE_MOUNT) + assert rest_input.mode + + # Test that translating from REST preserves the inputs + from_rest_job = PipelineJob._from_rest_object(rest_job) + for input_name, input_value in rest_job.properties.inputs.items(): + from_rest_input = from_rest_job.inputs[input_name] + assert from_rest_input + assert isinstance(from_rest_input, PipelineInput) + from_rest_input = from_rest_input._to_job_input() + + if isinstance(from_rest_input, Input): + assert from_rest_input.path == input_value.uri + else: + raise AssertionError("must be InputOutputEntry or Input") + # For now, just check that there is a mode present until new data delivery types are supported. + # TODO: https://msdata.visualstudio.com/Vienna/_workitems/edit/1318153/ For now, check that mode is present until new delivery types are supported. + assert from_rest_input.mode + + def test_pipeline_job_components_with_inputs( + self, mock_machinelearning_client: MLClient, mocker: MockFixture + ) -> None: + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_comps_data_options_no_outputs.yml" + yaml_obj = load_yaml(test_path) + job = Job.load(test_path) + + # Check that all inputs are present in the jobs + for job_name, job_value in yaml_obj["jobs"].items(): + job_obj = job.jobs.get(job_name, None) + assert job_obj is not None + for input_name, input_value in job_value["inputs"].items(): + job_input = job_obj.inputs[input_name]._to_job_input() + if isinstance(input_value, str): + if isinstance(job_input, Input) and is_data_binding_expression(job_input.path): + job_input = job_input.path + assert isinstance(job_input, str) + else: + assert isinstance(job_input, Input) + + # "Upload" the depedencies so that the dataset serialization behavior can be verified + mocker.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + return_value="xxx", + ) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + # Convert to REST object and check that all inputs were turned into data inputs + rest_job = job._to_rest_object() + # Test that each job's inputs were serialized properly in the REST translation + expected_inputs = { + "component_in_3": { + "job_input_type": "Literal", + "value": "${{parent.inputs.inputvalue}}", + } + } + assert rest_job.properties.jobs["multiple_data_component"]["inputs"] == expected_inputs + + # Test that translating from REST preserves the inputs for each job. In this case, they are all bindings + from_rest_job = PipelineJob._from_rest_object(rest_job) + from_rest_job.jobs["multiple_data_component"]["inputs"] == expected_inputs + + def test_pipeline_job_components_with_inline_dataset( + self, mock_machinelearning_client: MLClient, mocker: MockFixture + ) -> None: + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_component_output.yml" + yaml_obj = load_yaml(test_path) + job = Job.load(test_path) + # Check that all inputs are present in the jobs are of type str or Input + for job_name, job_value in yaml_obj["jobs"].items(): + job_obj = job.jobs.get(job_name, None) + assert job_obj is not None + for input_name, input_value in job_value["inputs"].items(): + job_input = job_obj.inputs[input_name]._to_job_input() + if isinstance(input_value, str): + if isinstance(job_input, Input) and is_data_binding_expression(job_input.path): + job_input = job_input.path + assert isinstance(job_input, str) + else: + assert isinstance(job_input, Input) + + @pytest.mark.skip(reason="Component Job is going away") + def test_pipeline_component_job_with_outputs( + self, mock_machinelearning_client: MLClient, mocker: MockFixture + ) -> None: + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_data_options.yml" + yaml_obj = load_yaml(test_path) + job = Job.load(test_path) + + # Check that all outputs are present and are of type Input + for output_name in yaml_obj["outputs"].keys(): + job_obj_output = job.outputs.get(output_name, None) + assert job_obj_output + assert isinstance(job_obj_output, PipelineOutput) + job_obj_output = job_obj_output._to_job_output() + assert isinstance(job_obj_output, Output) + + # Check that all outputs for the component jobs are present or of type string or Input + for job_name, job_value in yaml_obj["jobs"].items(): + component_job = job.jobs.get(job_name, None) + assert component_job is not None + for output_name, output_value in job_value["outputs"].items(): + component_job_output = component_job.outputs.get(output_name, None) + assert component_job_output + if isinstance(output_value, dict): + # case where user specifies inline output + assert output_value["mode"] == component_job_output.mode + else: + # case where user specifies an input binding + assert output_value == component_job_output._to_job_output() + + # Convert to REST object and check that all outputs were correctly turned into REST format + mocker.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + return_value="xxx", + ) + mocker.patch( + "azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", + return_value="yyy", + ) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + rest_job = job._to_rest_object() + rest_component_jobs = rest_job.properties.jobs + + # Check serialization of top-level job + for output_name, output_value in yaml_obj["outputs"].items(): + output_data = output_value.get("data", None) + if output_data: + rest_job_obj_output = rest_job.properties.outputs.get(output_name, None) + assert rest_job_obj_output + assert isinstance(rest_job_obj_output, RestJobOutput) + # TODO https://msdata.visualstudio.com/Vienna/_workitems/edit/1318153: Put this check back once outputs work again + # self._check_data_output_rest_formatting(rest_job_obj_output, output_value) + + # Check the serialization behavior of each ComponentJob + expected_outputs = { + "component_out_1": { + "type": "Literal", + "value": "${{parent.outputs.job_in_data_name}}", + }, + "component_out_2": { + "type": "Literal", + "value": "${{parent.outputs.job_in_data_name_upload}}", + }, + "component_out_3": { + "type": "Literal", + "value": "${{parent.outputs.job_in_data_name_mount}}", + }, + "component_out_4": { + "type": "Literal", + "value": "${{parent.outputs.job_out_data_name_apart}}", + }, + "component_out_5": { + "type": "Literal", + "value": "${{parent.outputs.job_out_data_path}}", + }, + "component_out_6": { + "type": "Literal", + "value": "${{parent.outputs.job_out_data_store_path_upload}}", + }, + "component_out_7": { + "type": "Literal", + "value": "${{parent.outputs.job_out_data_store_path_mount}}", + }, + "component_out_8": { + "type": "Literal", + "value": "${{parent.outputs.job_out_data_store_url}}", + }, + "component_out_9": {"job_output_type": "UriFolder", "mode": "Upload"}, + } + expected_inputs = { + "component_in_1": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_name_version_def_mode}}", + }, + "component_in_2": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_name_version_mode_mount}}", + }, + "component_in_3": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_name_version_mode_download}}", + }, + "component_in_4": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_by_name}}", + }, + "component_in_5": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_by_armid}}", + }, + "component_in_6": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_by_store_path}}", + }, + "component_in_7": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_by_path_default_store}}", + }, + "component_in_8": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_by_store_path_and_mount}}", + }, + "component_in_9": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_by_store_path_and_download}}", + }, + "component_in_10": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_by_blob_dir}}", + }, + "component_in_11": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_by_blob_file}}", + }, + "component_in_12": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_local_dir}}", + }, + "component_in_13": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_local_file}}", + }, + "component_in_14": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_local_yaml_definition}}", + }, + "component_in_15": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_in_data_uri}}", + }, + } + assert rest_component_jobs["multiple_data_component"]["outputs"] == expected_outputs + assert rest_component_jobs["multiple_data_component"]["inputs"] == expected_inputs + + # Check the from REST behavior + from_rest_job = PipelineJob._from_rest_object(rest_job) + + # Check that outputs were properly converted from REST format to SDK format + for output_name, output_value in rest_job.properties.outputs.items(): + from_rest_output = from_rest_job.outputs.get(output_name, None) + assert from_rest_output + assert isinstance(from_rest_output, PipelineOutput) + from_rest_output = from_rest_output._to_job_output() + assert isinstance(from_rest_output, Output) + # TODO https://msdata.visualstudio.com/Vienna/_workitems/edit/1318153: Put this check back once outputs work again + # self._check_data_output_from_rest_formatting(output_value.data, from_rest_output) + + # Check that outputs were properly converted from REST format to SDK format for each ComponentJob + from_rest_component_job = from_rest_job.jobs.get("multiple_data_component", None) + assert from_rest_component_job is not None + + from_rest_component_job = from_rest_component_job._to_rest_object() + assert from_rest_component_job["outputs"] == expected_outputs + assert from_rest_component_job["inputs"] == expected_inputs + + def _check_data_output_rest_formatting(self, rest_output: RestJobOutput, yaml_output: Dict[str, Any]) -> None: + rest_output_data = rest_output.data + assert rest_output_data + yaml_output_data = yaml_output["data"] + assert rest_output_data + assert rest_output_data.datapath == yaml_output_data.get("path", None) + if yaml_output_data.get("datastore", None): + assert rest_output_data.default_datastore == "xxx" + + if yaml_output_data.get("name"): + assert rest_output_data.dataset_name == yaml_output_data.get("name") + else: + # If yaml name was None, assert that no name is present in REST output + assert not rest_output_data.dataset_name + + mode = yaml_output.get("mode", None) + if mode: + assert rest_output_data.mode.lower() == mode.lower() + + def _check_data_output_from_rest_formatting(self, rest_output_data: RestJobOutput, from_rest_output: Input) -> None: + from_rest_output_data = from_rest_output.data + assert from_rest_output_data + assert from_rest_output_data.path == rest_output_data.datapath + assert from_rest_output_data.default_datastore == rest_output_data.datastore + + if rest_output_data.dataset_name: + assert from_rest_output_data.name == rest_output_data.dataset_name + else: + # If rest name was None, assert neither name nor version are present in from_rest_output_data + assert not from_rest_output_data.name + assert not from_rest_output_data.version + + if rest_output_data.mode: + assert from_rest_output.mode == rest_output_data.mode + + def assert_inline_component(self, component_job, component_dict): + assert isinstance(component_job.component, (CommandComponent, ParallelComponent)) + component = component_job.component or component_job.trial + assert component._is_anonymous + assert component.version == "1" + assert list(component.inputs.keys()) == list(component_dict.get("inputs", {}).keys()) + assert list(component.outputs.keys()) == list(component_dict.get("outputs", {}).keys()) + + def test_pipeline_job_inline_component(self): + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_comps.yml" + job = Job.load(test_path) + # make sure inline component is parsed into component entity + hello_world_component = job.jobs["hello_world_component_inline"] + component_dict = load_yaml(test_path)["jobs"]["hello_world_component_inline"]["component"] + self.assert_inline_component(hello_world_component, component_dict) + + def test_pipeline_job_inline_component_file(self): + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_file_comps.yml" + job = Job.load(test_path) + # make sure inline component is parsed into component entity + hello_world_component = job.jobs["hello_world_component_inline_file"] + component_dict = load_yaml("./tests/test_configs/components/helloworld_component.yml") + self.assert_inline_component(hello_world_component, component_dict) + + def test_pipeline_job_inline_component_file_with_complex_path(self): + # parallel component + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_file_parallel.yml" + job = Job.load(test_path) + # make sure inline component is parsed into component entity + hello_world_component = job.jobs["hello_world_inline_paralleljob"] + component_dict = load_yaml("./tests/test_configs/dsl_pipeline/parallel_component_with_file_input/score.yml") + self.assert_inline_component(hello_world_component, component_dict) + + @classmethod + def assert_settings_field( + cls, + pipeline_job: PipelineJob, + mock_machinelearning_client: MLClient, + mocker: MockFixture, + ): + def mock_get_asset_arm_id(*args, **kwargs): + if len(args) > 0: + arg = args[0] + if isinstance(arg, str): + return arg + elif isinstance(arg, Code): + return arg.path + elif isinstance(arg, Component): + # instead of returning a fake arm id here, we return the internal object for later value check + return arg + return "xxx" + + mocker.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + side_effect=mock_get_asset_arm_id, + ) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(pipeline_job) + + # Check that if compute was specified, it was resolved + # Otherwise, it should be left unset since the backend will apply the default + for job_name, job in pipeline_job.jobs.items(): + if job_name == "hello_world_component_with_compute": + assert job.compute == "cpu-cluster" + else: + assert job.compute == "xxx" + + rest_job = pipeline_job._to_rest_object() + + # Check that default datastore is filled in + + def assert_setting(rest_job, key, value): + assert rest_job.properties.settings.get(key, None) == value + + assert_setting(rest_job, PipelineConstants.DEFAULT_DATASTORE, "workspacefilestore") + assert_setting(rest_job, PipelineConstants.DEFAULT_COMPUTE, "cpu-cluster-1") + assert_setting(rest_job, PipelineConstants.CONTINUE_ON_STEP_FAILURE, True) + + # check that default dictionary is created when translating from REST + from_rest_job = PipelineJob._from_rest_object(rest_job) + assert from_rest_job.settings + assert from_rest_job.settings.default_datastore == "workspacefilestore" + assert from_rest_job.settings.default_compute == "cpu-cluster-1" + assert from_rest_job.settings.continue_on_step_failure is True + + def test_pipeline_job_settings_field(self, mock_machinelearning_client: MLClient, mocker: MockFixture): + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults.yml" + + job = PipelineJob.load(test_path) + self.assert_settings_field(job, mock_machinelearning_client, mocker) + # Test the case the compute is only defined in the top-level + rest_job = job._to_rest_object() + assert rest_job.properties.compute_id == "cpu-cluster" + assert rest_job.properties.compute_id == job.compute + + def test_pipeline_job_settings_field_inline_commandjob( + self, mock_machinelearning_client: MLClient, mocker: MockFixture + ): + test_path = "tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_command_job_e2e.yml" + pipeline_job = Job.load(test_path) + + def mock_get_asset_arm_id(*args, **kwargs): + if len(args) > 0: + arg = args[0] + if isinstance(arg, str): + return arg + elif isinstance(arg, Code): + return arg.local_path + elif isinstance(arg, (Component, Job)): + # instead of returning a fake arm id here, we return the internal object for later value check + return arg + return "xxx" + + mocker.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + side_effect=mock_get_asset_arm_id, + ) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(pipeline_job) + + # Check that if compute was specified, it was resolved + # Otherwise, it should be left unset since the backend will apply the default + for job_name, job in pipeline_job.jobs.items(): + if job_name == "hello_world_inline_commandjob_1": + assert job.compute == "cpu-cluster" + else: + assert job.compute == "xxx" + + def test_inline_command_job_with_input_bindings(self, mock_machinelearning_client: MLClient, mocker: MockFixture): + test_path = "tests/test_configs/pipeline_jobs/pipeline_job_with_command_job_with_input_bindings.yml" + yaml_obj = load_yaml(test_path) + job = Job.load(test_path) + + # check when top level input not exist + with pytest.raises(Exception) as e: + Job.load( + test_path, + params_override=[{"jobs.hello_world_inline_commandjob_1.inputs.test1": "${{parent.inputs.not_found}}"}], + ) + assert "Failed to find top level definition for input binding" in str(e.value) + + # Check that all inputs are present and are of type Input or are literals + for index, input_name in enumerate(yaml_obj["inputs"].keys()): + job_obj_input = job.inputs.get(input_name, None) + assert job_obj_input + assert isinstance(job_obj_input, PipelineInput) + job_obj_input = job_obj_input._to_job_input() + if index == 0: + assert isinstance(job_obj_input, Input) + elif index == 1: + assert isinstance(job_obj_input, Input) + else: + assert isinstance(job_obj_input, int) + # Check that all inputs are present in the jobs + for job_name, job_value in yaml_obj["jobs"].items(): + job_obj = job.jobs.get(job_name, None) + assert job_obj is not None + for input_name, input_value in job_obj._build_inputs().items(): + # check for input ports or literal + if isinstance(input_value, str): + assert isinstance(job_obj.inputs[input_name]._data, str) + if isinstance(input_value, int): + assert isinstance(job_obj.inputs[input_name]._data, int) + + # "Upload" the dependencies so that the dataset serialization behavior can be verified + mocker.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + return_value="xxx", + ) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + # Convert to REST object and check that all inputs were turned into data inputs + rest_job = job._to_rest_object() + rest_job_properties: RestPipelineJob = rest_job.properties + rest_component_jobs = rest_job_properties.jobs + + # Test that each job's inputs were serialized properly in the REST translation + expected_inputs = { + "hello_world_inline_commandjob_1": { + "literal_input": {"job_input_type": "Literal", "value": "2"}, + "test1": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_data_path}}", + }, + "test2": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_data_path}}", + }, + }, + "hello_world_inline_commandjob_2": { + "input_from_previous_node": { + "job_input_type": "Literal", + "value": "${{parent.jobs.hello_world_inline_commandjob_1.outputs.job_output}}", + }, + "test2": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_data_path}}", + }, + }, + } + for job_name, job_value in yaml_obj["jobs"].items(): + component_job = rest_component_jobs[job_name] + assert isinstance(component_job, dict) + # Check that each input in the yaml is properly serialized in the REST translation + assert component_job["inputs"] == expected_inputs[job_name] + # Test that translating from REST preserves the inputs for each job + from_rest_job = PipelineJob._from_rest_object(rest_job) + rest_job = job._to_rest_object() + for job_name, job_value in from_rest_job.jobs.items(): + rest_component = rest_job.properties.jobs[job_name] + assert expected_inputs[job_name] == rest_component["inputs"] + + def test_inline_parallel_job_with_input_bindings(self, mock_machinelearning_client: MLClient, mocker: MockFixture): + test_path = "tests/test_configs/pipeline_jobs/pipeline_job_with_parallel_job_with_input_bindings.yml" + yaml_obj = load_yaml(test_path) + job = Job.load(test_path) + + # check when top level input not exist + with pytest.raises(Exception) as e: + Job.load( + test_path, + params_override=[{"jobs.batch_inference.inputs.score_input": "${{parent.inputs.not_found}}"}], + ) + assert "Failed to find top level definition for input binding" in str(e.value) + + # Check that all inputs are present and are of type Input or are literals + for index, input_name in enumerate(yaml_obj["inputs"].keys()): + job_obj_input = job.inputs.get(input_name, None) + assert job_obj_input + assert isinstance(job_obj_input, PipelineInput) + job_obj_input = job_obj_input._to_job_input() + if index == 0: + assert isinstance(job_obj_input, Input) + elif index == 1: + assert isinstance(job_obj_input, Input) + else: + assert isinstance(job_obj_input, int) + # Check that all inputs are present in the jobs + for job_name, job_value in yaml_obj["jobs"].items(): + job_obj = job.jobs.get(job_name, None) + assert job_obj is not None + for input_name, input_value in job_obj._build_inputs().items(): + # check for input ports or literal + if isinstance(input_value, str): + assert isinstance(job_obj.inputs[input_name]._data, str) + if isinstance(input_value, int): + assert isinstance(job_obj.inputs[input_name]._data, int) + + # "Upload" the dependencies so that the dataset serialization behavior can be verified + mocker.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + return_value="xxx", + ) + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + # Convert to REST object and check that all inputs were turned into data inputs + rest_job = job._to_rest_object() + rest_job_properties: RestPipelineJob = rest_job.properties + rest_component_jobs = rest_job_properties.jobs + + # Test that each job's inputs were serialized properly in the REST translation + expected_inputs = { + "batch_inference": { + "score_input": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_data_path}}", + } + }, + } + for job_name, job_value in yaml_obj["jobs"].items(): + component_job = rest_component_jobs[job_name] + assert isinstance(component_job, dict) + # Check that each input in the yaml is properly serialized in the REST translation + assert component_job["inputs"] == expected_inputs[job_name] + # Test that translating from REST preserves the inputs for each job + + from_rest_job = PipelineJob._from_rest_object(rest_job) + rest_job = job._to_rest_object() + for job_name, job_value in from_rest_job.jobs.items(): + rest_component = rest_job.properties.jobs[job_name] + assert expected_inputs[job_name] == rest_component["inputs"] + + @pytest.mark.parametrize( + "pipeline_path,expected_input_outputs", + [ + ( + "helloworld_pipeline_job_with_command_job_with_inputs_outputs.yml", + { + "hello_world_inline_commandjob_1": { + "inputs": { + "literal_input": { + "job_input_type": "Literal", + "value": "7", + }, + "test1": { + "job_input_type": "UriFile", + "mode": "ReadOnlyMount", + "uri": "https://azuremlexamples.blob.core.windows.net/datasets/iris.csv", + }, + "test2": { + "job_input_type": "UriFile", + "mode": "ReadOnlyMount", + "uri": "https://azuremlexamples.blob.core.windows.net/datasets/iris.csv", + }, + } + }, + "hello_world_inline_commandjob_2": { + "inputs": { + "test1": { + "job_input_type": "Literal", + "value": "${{parent.inputs.job_data}}", + }, + "test2": { + "job_input_type": "Literal", + "value": "${{parent.jobs.hello_world_inline_commandjob_1.outputs.test1}}", + }, + "test3": { + "job_input_type": "Literal", + "value": "${{parent.jobs.hello_world_inline_commandjob_3.outputs.test1}}", + }, + } + }, + }, + ), + ("type_contract/mltable.yml", {}), + ("type_contract/mlflow_model.yml", {}), + ("type_contract/custom_model.yml", {}), + ( + "type_contract/path.yml", + { + "hello_world_component": { + "inputs": { + "component_in_file": { + "job_input_type": "UriFile", + "mode": "ReadOnlyMount", + "uri": "azureml://datastores/mydatastore/paths/data/iris.csv", + }, + "component_in_folder": { + "job_input_type": "UriFolder", + "mode": "ReadOnlyMount", + "uri": "azureml://datastores/mydatastore/paths/data/", + }, + "component_in_path": { + "job_input_type": "UriFile", + "mode": "ReadOnlyMount", + "uri": "azureml://datastores/mydatastore/paths/data/iris.csv", + }, + } + }, + "hello_world_component_2": { + "inputs": { + "component_in_file": { + "job_input_type": "Literal", + "value": "${{parent.jobs.outputs.component_out_file}}", + }, + "component_in_folder": { + "job_input_type": "Literal", + "value": "${{parent.jobs.outputs.component_out_folder}}", + }, + "component_in_path": { + "job_input_type": "Literal", + "value": "${{parent.jobs.outputs.component_out_folder}}", + }, + } + }, + }, + ), + ], + ) + def test_pipeline_job_command_job_with_input_outputs( + self, + mock_machinelearning_client: MLClient, + mocker: MockFixture, + pipeline_path: str, + expected_input_outputs: dict, + ) -> None: + # "Upload" the dependencies so that the dataset serialization behavior can be verified + mocker.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + return_value="xxx", + ) + + test_path = "./tests/test_configs/pipeline_jobs/{}".format(pipeline_path) + yaml_obj = load_yaml(test_path) + job: PipelineJob = Job.load(test_path) + + # Check that all inputs are present and are of type Input or are literals + for name in yaml_obj["inputs"].keys(): + job_obj_input_output = job.inputs.get(name, None) + assert job_obj_input_output + assert isinstance(job_obj_input_output, PipelineInput) + job_input_output = job_obj_input_output._to_job_input() + if name.endswith("literal_input"): + assert isinstance(job_input_output, int) + else: + assert isinstance(job_input_output, Input) + + # Check that all outputs are present and are of type Input or are literals + for name in yaml_obj["outputs"].keys(): + job_obj_input_output = job.outputs.get(name, None) + assert job_obj_input_output + assert isinstance(job_obj_input_output, PipelineOutput) + job_input_output = job_obj_input_output._to_job_output() + if name.endswith("literal_input"): + assert isinstance(job_input_output, int) + else: + assert isinstance(job_input_output, Output) + + for job_name, job_value in yaml_obj["jobs"].items(): + job_obj = job.jobs.get(job_name, None) + assert job_obj is not None + for name, input_value in job_obj._build_inputs().items(): + # check for input ports or literal + if isinstance(input_value, str): + assert isinstance(job_obj.inputs[name]._data, str) + if isinstance(input_value, int): + assert isinstance(job_obj.inputs[name]._data, int) + + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) + # Convert to REST object and check that all inputs were turned into data inputs + rest_job = job._to_rest_object() + rest_job_properties: RestPipelineJob = rest_job.properties + rest_component_jobs = rest_job_properties.jobs + + _ = PipelineJob._from_rest_object(job._to_rest_object()) + + for job_name, job_value in yaml_obj["jobs"].items(): + for io_type in ["inputs", "outputs"]: + if job_name not in expected_input_outputs or io_type not in expected_input_outputs[job_name]: + continue + expected_values = expected_input_outputs[job_name][io_type] + + # Test that each job's inputs were serialized properly in the REST translation + component_job = rest_component_jobs[job_name] + assert isinstance(component_job, dict) + # Check that each input in the yaml is properly serialized in the REST translation + assert component_job[io_type] == expected_values + + # Test that translating from REST preserves the inputs for each job + rest_component = rest_job.properties.jobs[job_name] + assert expected_values == rest_component[io_type] + + def test_pipeline_job_str(self): + test_path = ( + "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_inputs_outputs.yml" + ) + pipeline_entity = PipelineJob.load(path=test_path) + pipeline_str = str(pipeline_entity) + assert pipeline_entity.name in pipeline_str + + def test_pipeline_job_with_environment_variables(self) -> None: + pipeline_job = Job.load( + path="./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_environment_variable.yml", + ) + + pipeline_job_dict = pipeline_job._to_rest_object().as_dict() + assert "environment_variables" in pipeline_job_dict["properties"]["jobs"]["world_job"] + assert pipeline_job_dict["properties"]["jobs"]["world_job"]["environment_variables"] == { + "AZUREML_COMPUTE_USE_COMMON_RUNTIME": "false", + "abc": "def", + } + + def test_pipeline_job_with_incorrect_component_content(self): + test_path = "./tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/pipeline.yml" + with pytest.raises( + ValidationError, + match="In order to specify an existing codes, please provide", + ): + job = Job.load(path=test_path) + assert isinstance(job, Job) + + @pytest.mark.skip("Pipeline: discuss how to refactor _to_dict in PipelineJob & CommandComponent later.") + def test_dump_distribution(self): + from azure.ai.ml._restclient.v2021_10_01.models import TensorFlow + from azure.ai.ml._schema.job.distribution import ( + PyTorchDistributionSchema, + TensorFlowDistributionSchema, + ) + + distribution_dict = { + "type": "tensorflow", + # "distribution_type": 'tensorflow', + "parameter_server_count": 0, + "worker_count": 5, + } + distribution_obj = TensorFlow.from_dict(distribution_dict) + + with pytest.raises(ValidationError, match=r"Value passed is not in set \['pytorch']"): + _ = PyTorchDistributionSchema(context={"base_path": "./"}).dump(distribution_dict) + with pytest.raises(ValidationError, match=r"Value passed is not in set \['pytorch']"): + _ = PyTorchDistributionSchema(context={"base_path": "./"}).dump(distribution_obj) + + after_dump_correct = TensorFlowDistributionSchema(context={"base_path": "./"}).dump(distribution_obj) + assert after_dump_correct == distribution_dict + + def test_job_defaults(self, mocker: MockFixture): + pipeline_job = Job.load(path="./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_e2e.yml") + mocker.patch( + "azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", + return_value="xxx", + ) + rest_job = pipeline_job._to_rest_object() + assert rest_job.properties.settings == { + "continue_on_step_failure": True, + "default_compute": "cpu-cluster", + "default_datastore": "workspacefilestore", + "force_rerun": False, + } + + def test_command_job_in_pipeline_to_component(self): + test_path = ( + "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_inputs_outputs.yml" + ) + pipeline_entity = PipelineJob.load(path=test_path) + # check component of pipeline job is expected + expected_components = { + "hello_world_inline_commandjob_1": { + "code": "azureml:./", + "command": "pip freeze && echo " "${{inputs.literal_input}}", + "description": "Train a model on the Iris " "dataset-1.", + "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + "inputs": { + "literal_input": {"default": "7", "type": "integer"}, + "test1": {"type": "uri_file"}, + "test2": {"type": "uri_file"}, + }, + "is_deterministic": True, + "outputs": {"test1": {"type": "uri_file"}}, + "tags": {}, + "type": "command", + "version": "1", + }, + "hello_world_inline_commandjob_2": { + "command": "echo Hello World", + "description": "Train a model on the Iris dataset-2.", + "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + "inputs": { + "test1": {"type": "uri_file"}, + "test2": {"type": "uri_file"}, + "test3": {"type": "uri_folder"}, + }, + "is_deterministic": True, + "outputs": {}, + "tags": {}, + "type": "command", + "version": "1", + }, + "hello_world_inline_commandjob_3": { + "code": "azureml:./", + "command": "pip freeze && echo ${{inputs.test1}}", + "description": "Train a model on the Iris dataset-1.", + "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + "inputs": {"test1": {"type": "uri_file"}}, + "is_deterministic": True, + "outputs": {"test1": {"type": "uri_folder"}}, + "tags": {}, + "type": "command", + "version": "1", + }, + } + for name, expected_dict in expected_components.items(): + actual_dict = pipeline_entity.jobs[name].component._to_rest_object().as_dict() + omit_fields = [ + "name", + ] + + actual_dict = pydash.omit(actual_dict["properties"]["component_spec"], omit_fields) + assert actual_dict == expected_dict + + def test_command_job_in_pipeline_deep_reference(self): + test_path = ( + "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_deep_reference.yml" + ) + pipeline_entity = PipelineJob.load(path=test_path) + expected_components = { + "hello_world_inline_commandjob_1": { + "command": "pip freeze && echo ${{inputs.literal_input}}", + "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + "inputs": { + "literal_input": {"type": "integer"}, + "test1": {"type": "uri_file"}, + "test2": {"type": "uri_file"}, + }, + "is_deterministic": True, + "outputs": {"test1": {"type": "uri_folder"}}, + "tags": {}, + "type": "command", + "version": "1", + }, + "hello_world_inline_commandjob_2": { + "command": "pip freeze && echo ${{inputs.test1}}", + "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + "inputs": { + "test1": {"type": "uri_file"}, + "test2": {"type": "uri_folder"}, + "test3": {"type": "uri_file"}, + }, + "is_deterministic": True, + "outputs": {}, + "tags": {}, + "type": "command", + "version": "1", + }, + "hello_world_inline_commandjob_3": { + "command": "pip freeze && echo ${{inputs.test1}}", + "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + "inputs": { + "test1": {"type": "uri_file"}, + "test2": {"type": "uri_file"}, + "test3": {"type": "mltable"}, + }, + "is_deterministic": True, + "outputs": {"test1": {"type": "uri_file"}}, + "tags": {}, + "type": "command", + "version": "1", + }, + } + for name, expected_dict in expected_components.items(): + actual_dict = pipeline_entity.jobs[name].component._to_rest_object().as_dict() + omit_fields = [ + "name", + ] + + actual_dict = pydash.omit(actual_dict["properties"]["component_spec"], omit_fields) + assert actual_dict == expected_dict + + def test_command_job_referenced_component_no_meta(self): + test_path = ( + "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_deep_reference.yml" + ) + params_override = [{"jobs.hello_world_component_before.component": "azureml:fake_component_arm_id:1"}] + # when component is provided as arm id, won't able to get referenced component input/output type + with pytest.raises(Exception) as e: + PipelineJob.load(path=test_path, params_override=params_override) + err_msg = "Failed to find referenced source for input binding ${{parent.jobs.hello_world_component_before.outputs.test1}}" + assert err_msg in str(e.value) + + @pytest.mark.parametrize( + "pipeline_job_path, expected_error", + [ + ( + "./tests/test_configs/pipeline_jobs/invalid/with_invalid_component.yml", + ValidationError("Validation for PipelineJobSchema failed:"), + ), + ], + ) + def test_pipeline_job_validation_load(self, pipeline_job_path: str, expected_error: Exception) -> None: + with pytest.raises(type(expected_error)) as e: + Job.load( + path=pipeline_job_path, + ) + assert str(expected_error) in str(e.value) + + def test_pipeline_node_name_validate(self): + invalid_node_names = ["1", "a-c", "1abc", ":::", "hello.world", "Abc", "aBc"] + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job.yml" + for invalid_name in invalid_node_names: + params_override = [{"jobs": {invalid_name: {"type": "command", "command": "ls"}}}] + with pytest.raises(ValidationError) as e: + PipelineJob.load(path=test_path, params_override=params_override) + err_msg = "Pipeline node name should be a valid python identifier" + assert err_msg in str(e.value) + + valid_component_names = ["_abc", "n", "name", "n_a_m_e", "name_1"] + for valid_name in valid_component_names: + params_override = [{"jobs": {valid_name: {"type": "command", "command": "ls"}}}] + PipelineJob.load(path=test_path, params_override=params_override) + + @pytest.mark.parametrize( + "test_path, job_key", + [ + # AutoML Tabular component + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_pipeline_level_output.yml", + "regression_node", + ), + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_command_node.yml", + "regression_node", + ), + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.yml", + "hello_automl_regression", + ), + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_classification.yml", + "hello_automl_classification", + ), + # AutoML NLP component + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification.yml", + "automl_text_classification", + ), + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification_multilabel.yml", + "automl_text_classification_multilabel", + ), + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_ner.yml", + "automl_text_ner", + ), + # AutoML Vision component + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multiclass_classification.yml", + "hello_automl_image_multiclass_classification", + ), + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multilabel_classification.yml", + "hello_automl_image_multilabel_classification", + ), + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_object_detection.yml", + "hello_automl_image_object_detection", + ), + ( + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_instance_segmentation.yml", + "hello_automl_image_instance_segmentation", + ), + ], + ) + def test_automl_node_in_pipeline_load_dump( + self, test_path, job_key, mock_machinelearning_client: MLClient, mocker: MockFixture + ): + pipeline: PipelineJob = Job.load(path=test_path) + + with open(test_path) as f: + original_dict = yaml.safe_load(f) + + mocker.patch("azure.ai.ml._operations.OperationOrchestrator.get_asset_arm_id", return_value="xxx") + mocker.patch("azure.ai.ml._operations.job_operations._upload_and_generate_remote_uri", return_value="yyy") + mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(pipeline) + + pipeline_dict = pipeline._to_dict() + pipeline_job_dict = json.loads(json.dumps(pipeline_dict["jobs"][job_key])) + original_job_dict = json.loads(json.dumps(original_dict["jobs"][job_key])) + omit_fields = ["display_name", "experiment_name", "log_verbosity", "name", "outputs", "properties", "tags"] + pipeline_job_dict = pydash.omit(pipeline_job_dict, omit_fields) + original_job_dict = pydash.omit(original_job_dict, omit_fields) + if job_key == "automl_text_ner": + # 1779366 target column not required for NER, remove when model gets updated + pipeline_job_dict = pydash.omit(pipeline_job_dict, ["target_column_name"]) + if "image" in job_key: + # sweep comparison won't match as pipeline dict will contain default values + pipeline_job_dict = pydash.omit(pipeline_job_dict, ["sweep"]) + original_job_dict = pydash.omit(original_job_dict, ["sweep"]) + assert pipeline_job_dict == original_job_dict + + def test_pipeline_job_with_cron_schedule(self): + test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_cron_schedule.yml" + job: PipelineJob = PipelineJob.load(path=test_path) + with open(test_path) as f: + job_dict = yaml.safe_load(f) + job_dict_schedule = job_dict["schedule"] + job_schedule = job.schedule + assert isinstance(job_schedule, CronSchedule) + + # The SDK passes through the schedule object to the REST layer + # The only assertion needed here is to make sure the schedule appears in the REST object + job_rest_object = job._to_rest_object() + rest_schedule = job_rest_object.properties.schedule + assert isinstance(rest_schedule, RestCronSchedule) + + # Test from REST deserialization + from_rest_job: PipelineJob = PipelineJob._from_rest_object(job_rest_object) + from_rest_schedule = from_rest_job.schedule + assert isinstance(from_rest_schedule, CronSchedule) + assert from_rest_schedule.expression == job_dict_schedule["expression"] + _check_common_schedule_fields(from_rest_schedule, job_dict_schedule) + + @pytest.mark.parametrize( + "test_path", + [ + "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_no_recurrence_pattern.yml", + "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_recurrence_pattern_literals.yml", + "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_recurrence_pattern_lists.yml", + ], + ) + def test_pipeline_job_with_recurrence_schedule_no_recurrence_pattern(self, test_path): + job: PipelineJob = PipelineJob.load(path=test_path) + with open(test_path) as f: + job_dict = yaml.safe_load(f) + job_dict_schedule = job_dict["schedule"] + + # The SDK passes through the schedule object to the REST layer + # The only assertion needed here is to make sure the schedule appears in the REST object + job_rest_object = job._to_rest_object() + rest_schedule = job_rest_object.properties.schedule + assert isinstance(rest_schedule, RestRecurrenceSchedule) + + # Test from REST deserialization + from_rest_job: PipelineJob = PipelineJob._from_rest_object(job_rest_object) + from_rest_schedule = from_rest_job.schedule + assert isinstance(from_rest_schedule, RecurrenceSchedule) + _check_recurrence_schedule_fields(from_rest_job.schedule, job_dict_schedule) + + @pytest.mark.parametrize( + "params_override, error_field, expecting_field", + [ + ( + [{"jobs.train_job.inputs.training_data": "${{inputs.pipeline_job_training_input}}"}], + "${{inputs.pipeline_job_training_input}}", + "${{parent.inputs.pipeline_job_training_input}}", + ), + ( + [{"jobs.score_job.inputs.model_input": "${{jobs.train_job.outputs.model_output}}"}], + "${{jobs.train_job.outputs.model_output}}", + "${{parent.jobs.train_job.outputs.model_output}}", + ), + ], + ) + def test_legacy_data_binding_error_msg(self, params_override, error_field, expecting_field): + test_path = "./tests/test_configs/dsl_pipeline/e2e_local_components/pipeline.yml" + job: PipelineJob = PipelineJob.load(path=test_path, params_override=params_override) + with pytest.raises(ValidationException) as e: + job._to_rest_object() + err_msg = "{} has changed to {}, please change to use new format.".format(error_field, expecting_field) + assert err_msg in str(e.value) + + @pytest.mark.parametrize( + "test_path", + [ + "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_no_recurrence_pattern.yml", + "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.yml", + "./tests/test_configs/pipeline_jobs/pipeline_job_with_parallel_job_with_input_bindings.yml", + ], + ) + def test_pipeline_private_preview_features_not_supported(self, test_path, mocker: MockFixture): + mocker.patch("azure.ai.ml.entities._job.pipeline.pipeline_job.is_private_preview_enabled", return_value=False) + job: PipelineJob = PipelineJob.load(path=test_path) + with pytest.raises(UserErrorException) as e: + job._to_rest_object() + err_msg = ( + "is a private preview feature, " + "please set environment variable AZURE_ML_CLI_PRIVATE_FEATURES_ENABLED to true to use it." + ) + assert err_msg in str(e.value) diff --git a/sdk/ml/azure-ai-ml/tests/sweep_job/__init__.py b/sdk/ml/azure-ai-ml/tests/sweep_job/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/sweep_job/unittests/__init__.py b/sdk/ml/azure-ai-ml/tests/sweep_job/unittests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/sweep_job/unittests/test_sweep_job.py b/sdk/ml/azure-ai-ml/tests/sweep_job/unittests/test_sweep_job.py new file mode 100644 index 000000000000..49c61b363431 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/sweep_job/unittests/test_sweep_job.py @@ -0,0 +1,279 @@ +import pytest +from azure.ai.ml.entities import ( + Job, + CommandJob, + CommandJobLimits, +) +from azure.ai.ml.entities._inputs_outputs import Input, Output +from azure.ai.ml.entities._assets import Code +from azure.ai.ml.sweep import ( + SweepJob, + SweepJobLimits, + Choice, + RandomSamplingAlgorithm, + GridSamplingAlgorithm, + BayesianSamplingAlgorithm, +) +from azure.ai.ml.constants import AssetTypes +from azure.ai.ml.entities._builders.command_func import command +from azure.ai.ml.entities._job.resource_configuration import ResourceConfiguration +from azure.ai.ml.entities._job.sweep.early_termination_policy import TruncationSelectionPolicy +from azure.ai.ml.entities._job.sweep.objective import Objective +from azure.ai.ml.entities._job.sweep.search_space import LogUniform +from azure.ai.ml._restclient.v2022_02_01_preview.models import AmlToken, UserIdentity +from azure.ai.ml import MpiDistribution + + +@pytest.mark.unittest +class TestSweepJob: + def test_sweep_job_top_level_properties(self): + command_job = CommandJob( + code="./src", + command="python train.py --ss {search_space.ss}", + # Is it expected that using dicts do not work? + # inputs={"input1": {"path": "trial.csv", "type": "uri_file", "mode": "rw_mount"}}, + # outputs={"default": {"mode": "rw_mount"}}, + inputs={"input1": Input(path="trial.csv")}, + outputs={"default": Output(path="./foo")}, + compute="trial", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + limits=CommandJobLimits(timeout=120), + ) + sweep = SweepJob( + sampling_algorithm="random", + trial=command_job, + search_space={"ss": Choice(type="choice", values=[{"space1": True}, {"space2": True}])}, + inputs={"input1": {"path": "top_level.csv", "type": "uri_file", "mode": "ro_mount"}}, + compute="top_level", + limits=SweepJobLimits(trial_timeout=600), + identity=UserIdentity(), + ) + rest = sweep._to_rest_object() + sweep_job: SweepJob = Job._from_rest_object(rest) + + assert sweep_job.compute == sweep.compute + assert sweep_job.limits.trial_timeout == sweep.limits.trial_timeout + assert sweep_job.inputs == sweep.inputs + assert sweep_job.outputs == sweep.outputs + assert sweep_job.identity == sweep.identity + + def test_sweep_job_override_missing_properties(self): + command_job = CommandJob( + code="./src", + command="python train.py --ss {search_space.ss}", + # Is it expected that using dicts do not work? + # inputs={"input1": {"path": "trial.csv", "type": "uri_file", "mode": "rw_mount"}}, + # outputs={"default": {"mode": "rw_mount"}}, + inputs={"input1": Input(path="trial.csv")}, + outputs={"default": Output(path="./foo")}, + compute="trial", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + limits=CommandJobLimits(timeout=120), + ) + sweep = SweepJob( + sampling_algorithm="random", + trial=command_job, + search_space={"ss": Choice(type="choice", values=[{"space1": True}, {"space2": True}])}, + inputs=None, + ) + rest = sweep._to_rest_object() + sweep_job: SweepJob = Job._from_rest_object(rest) + + assert sweep_job.compute == command_job.compute + assert sweep_job.limits.trial_timeout == command_job.limits.timeout + assert sweep_job.inputs == command_job.inputs + assert sweep_job.outputs == command_job.outputs + + @pytest.mark.parametrize( + "sampling_algorithm, expected_rest_type", + [ + ("random", "Random"), + ("grid", "Grid"), + ("bayesian", "Bayesian"), + (RandomSamplingAlgorithm(), "Random"), + (GridSamplingAlgorithm(), "Grid"), + (BayesianSamplingAlgorithm(), "Bayesian"), + ], + ) + def test_sampling_algorithm_to_rest(self, sampling_algorithm, expected_rest_type): + command_job = CommandJob( + code=Code(base_path="./src"), + command="python train.py --ss {search_space.ss}", + inputs={"input1": {"file": "trial.csv", "mode": "ro_mount"}}, + outputs={"default": {"mode": "rw_mount"}}, + compute="trial", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + limits=CommandJobLimits(timeout=120), + ) + + sweep = SweepJob( + sampling_algorithm=sampling_algorithm, + trial=command_job, + search_space={"ss": Choice(type="choice", values=[{"space1": True}, {"space2": True}])}, + inputs={"input1": {"file": "top_level.csv", "mode": "ro_mount"}}, + compute="top_level", + limits=SweepJobLimits(trial_timeout=600), + ) + + rest = sweep._to_rest_object() + assert rest.properties.sampling_algorithm.sampling_algorithm_type == expected_rest_type + + @pytest.mark.parametrize( + "sampling_algorithm, expected_rest_type", + [ + ("random", "Random"), + ("grid", "Grid"), + ("bayesian", "Bayesian"), + (RandomSamplingAlgorithm(), "Random"), + (GridSamplingAlgorithm(), "Grid"), + (BayesianSamplingAlgorithm(), "Bayesian"), + ], + ) + def test_sampling_algorithm_from_rest(self, sampling_algorithm, expected_rest_type): + command_job = CommandJob( + code=Code(base_path="./src"), + command="python train.py --ss {search_space.ss}", + inputs={"input1": Input(path="trial.csv")}, + outputs={"default": Output(path="./foo")}, + compute="trial", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + limits=CommandJobLimits(timeout=120), + ) + + sweep = SweepJob( + sampling_algorithm=sampling_algorithm, + trial=command_job, + search_space={"ss": Choice(type="choice", values=[{"space1": True}, {"space2": True}])}, + inputs={"input1": Input(path="trial.csv")}, + compute="top_level", + limits=SweepJobLimits(trial_timeout=600), + ) + + rest = sweep._to_rest_object() + sweep: SweepJob = Job._from_rest_object(rest) + assert sweep.sampling_algorithm.sampling_algorithm_type == expected_rest_type + + @pytest.mark.parametrize( + "properties_dict", + [{}, {"seed": 999}, {"rule": "sobol"}, {"seed": 999, "rule": "sobol"}], + ) + def test_random_sampling_object_with_props(self, properties_dict): + command_job = CommandJob( + code=Code(base_path="./src"), + command="python train.py --ss {search_space.ss}", + inputs={"input1": Input(path="trial.csv")}, + outputs={"default": Output(path="./foo")}, + compute="trial", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + limits=CommandJobLimits(timeout=120), + ) + + expected_seed = properties_dict.get("seed", None) + expected_rule = properties_dict.get("rule", None) + + random_sampling_algorithm = RandomSamplingAlgorithm(**properties_dict) + sweep = SweepJob( + sampling_algorithm=random_sampling_algorithm, + trial=command_job, + search_space={"ss": Choice(type="choice", values=[{"space1": True}, {"space2": True}])}, + inputs={"input1": Input(path="trial.csv")}, + compute="top_level", + limits=SweepJobLimits(trial_timeout=600), + ) + + rest = sweep._to_rest_object() + assert rest.properties.sampling_algorithm.sampling_algorithm_type == "Random" + assert rest.properties.sampling_algorithm.seed == expected_seed + assert rest.properties.sampling_algorithm.rule == expected_rule + + sweep: SweepJob = Job._from_rest_object(rest) + assert sweep.sampling_algorithm.sampling_algorithm_type == "Random" + assert sweep.sampling_algorithm.seed == expected_seed + assert sweep.sampling_algorithm.rule == expected_rule + + def test_sweep_job_builder_serialization(self) -> None: + + inputs = { + "uri": Input( + type=AssetTypes.URI_FILE, path="azureml://datastores/workspaceblobstore/paths/python/data.csv" + ), + "lr": LogUniform(min_value=0.001, max_value=0.1), + } + + node = command( + description="description", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + inputs=inputs, + command="echo ${{inputs.uri}} ${{inputs.lr}} ${{inputs.lr2}}", + display_name="builder-sweep-job-display", + compute="testCompute", + experiment_name="mfe-test1-dataset", + identity=UserIdentity(), + tags={"tag1": "value1"}, + properties={"prop1": "value1"}, + distribution=MpiDistribution(), + environment_variables={"EVN1": "VAR1"}, + outputs={"best_model": {}}, + instance_count=2, + instance_type="STANDARD_BLA", + timeout=300, + code="./", + ) + + sweep_node = node.sweep( + sampling_algorithm="random", + goal="maximize", + primary_metric="accuracy", + compute="sweep-compute", + max_concurrent_trials=10, + max_total_trials=100, + timeout=300, + trial_timeout=60, + early_termination_policy=TruncationSelectionPolicy( + evaluation_interval=100, delay_evaluation=200, truncation_percentage=40 + ), + search_space={"lr2": LogUniform(min_value=1, max_value=100)}, + ) + + # job name is set in job_operations.py + assert sweep_node.name is None + sweep_node.name = "builder-sweep-job" + + trial = CommandJob( + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + command="echo ${{inputs.uri}} ${{search_space.lr}} ${{search_space.lr2}}", + distribution=MpiDistribution(), + environment_variables={"EVN1": "VAR1"}, + resources=ResourceConfiguration(instance_count=2, instance_type="STANDARD_BLA"), + code="./", + ) + + expected_job = SweepJob( + trial=trial, + name="builder-sweep-job", + description="description", + display_name="builder-sweep-job-display", + compute="sweep-compute", + experiment_name="mfe-test1-dataset", + identity=UserIdentity(), + tags={"tag1": "value1"}, + properties={"prop1": "value1"}, + objective=Objective(goal="maximize", primary_metric="accuracy"), + limits=SweepJobLimits(max_concurrent_trials=10, max_total_trials=100, timeout=300, trial_timeout=60), + sampling_algorithm="random", + early_termination=TruncationSelectionPolicy( + evaluation_interval=100, delay_evaluation=200, truncation_percentage=40 + ), + inputs={ + "uri": Input( + type=AssetTypes.URI_FILE, path="azureml://datastores/workspaceblobstore/paths/python/data.csv" + ) + }, + outputs={"best_model": {}}, + search_space={ + "lr": LogUniform(min_value=0.001, max_value=0.1), + "lr2": LogUniform(min_value=1, max_value=100), + }, + ) + + assert expected_job._to_dict() == sweep_node._to_job()._to_dict() diff --git a/sdk/ml/azure-ai-ml/tests/sweep_job/unittests/test_sweep_job_schema.py b/sdk/ml/azure-ai-ml/tests/sweep_job/unittests/test_sweep_job_schema.py new file mode 100644 index 000000000000..4672ae8546c8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/sweep_job/unittests/test_sweep_job_schema.py @@ -0,0 +1,376 @@ +import json +import yaml +from azure.ai.ml.constants import InputOutputModes, BASE_PATH_CONTEXT_KEY, AssetTypes +from azure.ai.ml.entities import Job, CommandJob +from azure.ai.ml.entities._inputs_outputs import Input +from pathlib import Path +from typing import Any +from azure.ai.ml._restclient.v2022_02_01_preview.models import ( + InputDeliveryMode, + JobInputType, + JobOutputType, + OutputDeliveryMode, + UriFolderJobOutput as RestUriFolderJobOutput, + AmlToken, + UserIdentity, + ManagedIdentity, +) +import pytest +from azure.ai.ml.entities._job.sweep.search_space import SweepDistribution +from azure.ai.ml.sweep import ( + Choice, + LogNormal, + Normal, + QLogNormal, + QNormal, + Randint, + Uniform, + QUniform, + LogUniform, + QLogUniform, + SweepJob, + SamplingAlgorithm, +) +from azure.ai.ml._schema import SweepJobSchema + + +@pytest.mark.unittest +class TestSweepJobSchema: + @pytest.mark.parametrize( + "search_space, expected", + [ + (Choice([1.0, 2.0, 3.0]), ["choice", [[1.0, 2.0, 3.0]]]), + (Normal(1.0, 2.0), ["normal", [1.0, 2.0]]), + (QNormal(1.0, 2.0, 3), ["qnormal", [1.0, 2.0, 3]]), + (LogNormal(1.0, 2.0), ["lognormal", [1.0, 2.0]]), + (QLogNormal(1.0, 2.0, 3), ["qlognormal", [1.0, 2.0, 3]]), + (Randint(3), ["randint", [3]]), + (Uniform(1.0, 10.0), ["uniform", [1.0, 10.0]]), + (QUniform(1.0, 10.0, 3), ["quniform", [1.0, 10.0, 3]]), + (LogUniform(1.0, 10.0), ["loguniform", [1.0, 10.0]]), + (QLogUniform(1.0, 10.0, 3), ["qloguniform", [1.0, 10.0, 3]]), + ], + ) + def test_search_space_to_rest(self, search_space: SweepDistribution, expected): + command_job = CommandJob( + code="./src", + command="python train.py --lr 0.01", + inputs={"input1": Input(path="testdata:1")}, + compute="local", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + ) + + sweep = SweepJob(sampling_algorithm="random", trial=command_job, search_space={"ss": search_space}) + rest = sweep._to_rest_object() + + assert rest.properties.search_space == {"ss": expected} + + @pytest.mark.parametrize( + "expected, rest_search_space", + [ + (Choice([1.0, 2.0, 3.0]), ["choice", [[1.0, 2.0, 3.0]]]), + (Normal(1.0, 2.0), ["normal", [1.0, 2.0]]), + (QNormal(1.0, 2.0, 3), ["qnormal", [1.0, 2.0, 3]]), + (LogNormal(1.0, 2.0), ["lognormal", [1.0, 2.0]]), + (QLogNormal(1.0, 2.0, 3), ["qlognormal", [1.0, 2.0, 3]]), + (Randint(3), ["randint", [3]]), + (Uniform(1.0, 10.0), ["uniform", [1.0, 10.0]]), + (QUniform(1.0, 10.0, 3), ["quniform", [1.0, 10.0, 3]]), + (LogUniform(1.0, 10.0), ["loguniform", [1.0, 10.0]]), + (QLogUniform(1.0, 10.0, 3), ["qloguniform", [1.0, 10.0, 3]]), + ], + ) + def test_search_space_from_rest(self, expected: SweepDistribution, rest_search_space): + command_job = CommandJob( + code="./src", + command="python train.py --ss {search_space.ss}", + inputs={"input1": Input(path="testdata:1")}, + compute="local", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + ) + sweep = SweepJob(sampling_algorithm="random", trial=command_job, search_space={"ss": Choice([1.0, 2.0, 3.0])}) + + rest = sweep._to_rest_object() + rest.properties.search_space = {"ss": rest_search_space} + sweep: SweepJob = Job._from_rest_object(rest) + assert sweep.search_space == {"ss": expected} + + def test_sweep_with_ints(self): + expected_rest = ["quniform", [1, 100, 1]] + expected_ss = {"type": "quniform", "min_value": 1, "max_value": 100, "q": 1} + + command_job = CommandJob( + code="./src", + command="python train.py --ss {search_space.ss}", + inputs={"input1": Input(path="testdata:1")}, + compute="local", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + ) + sweep = SweepJob( + sampling_algorithm="random", + trial=command_job, + search_space={"ss": QUniform(type="quniform", min_value=1, max_value=100, q=1)}, + ) + rest = sweep._to_rest_object() + sweep: SweepJob = Job._from_rest_object(rest) + + assert rest.properties.search_space["ss"] == expected_rest + assert vars(sweep.search_space["ss"]) == expected_ss + for var in rest.properties.search_space["ss"][1]: + assert type(var) == int + + def test_sweep_with_floats(self): + expected_rest = ["quniform", [1.1, 100.12, 1]] + expected_ss = {"type": "quniform", "min_value": 1.1, "max_value": 100.12, "q": 1} + + command_job = CommandJob( + code="./src", + command="python train.py --ss {search_space.ss}", + inputs={"input1": Input(path="testdata:1")}, + compute="local", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + ) + sweep = SweepJob( + sampling_algorithm="random", + trial=command_job, + search_space={"ss": QUniform(type="quniform", min_value=1.1, max_value=100.12, q=1)}, + ) + rest = sweep._to_rest_object() + sweep: SweepJob = Job._from_rest_object(rest) + + assert rest.properties.search_space["ss"] == expected_rest + assert vars(sweep.search_space["ss"]) == expected_ss + # Ensure that min_value and max_value are floats, ignoring q + for var in rest.properties.search_space["ss"][1][:2]: + assert type(var) == float + + def test_sweep_with_string(self): + expected_rest = ["choice", [["gbdt", "dart"]]] + expected_ss = {"type": "choice", "values": ["gbdt", "dart"]} + command_job = CommandJob( + code="./src", + command="python train.py --ss {search_space.ss}", + inputs={"input1": Input(path="testdata:1")}, + compute="local", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + ) + sweep = SweepJob( + sampling_algorithm="random", + trial=command_job, + search_space={"ss": Choice(type="choice", values=["gbdt", "dart"])}, + ) + rest = sweep._to_rest_object() + sweep: SweepJob = Job._from_rest_object(rest) + + assert rest.properties.search_space["ss"] == expected_rest + assert vars(sweep.search_space["ss"]) == expected_ss + + @pytest.mark.parametrize( + "yaml_path", + [ + "./tests/test_configs/command_job/command_job_input_types.yml", + "./tests/test_configs/sweep_job/sweep_job_input_types.yml", + ], + ) + def test_inputs_types_sweep_job(self, yaml_path: str): + original_entity = Job.load(Path(yaml_path)) + rest_representation = original_entity._to_rest_object() + reconstructed_entity = Job._from_rest_object(rest_representation) + + assert original_entity.inputs["test_dataset"].mode == InputOutputModes.RO_MOUNT + assert rest_representation.properties.inputs["test_dataset"].job_input_type == JobInputType.URI_FOLDER + assert rest_representation.properties.inputs["test_dataset"].mode == InputDeliveryMode.READ_ONLY_MOUNT + assert reconstructed_entity.inputs["test_dataset"].mode == InputOutputModes.RO_MOUNT + + assert original_entity.inputs["test_url"].mode == InputOutputModes.RO_MOUNT + assert original_entity.inputs["test_url"].type == AssetTypes.URI_FILE + assert original_entity.inputs["test_url"].path == "azureml://fake/url.json" + assert rest_representation.properties.inputs["test_url"].job_input_type == JobInputType.URI_FILE + assert rest_representation.properties.inputs["test_url"].mode == InputDeliveryMode.READ_ONLY_MOUNT + assert rest_representation.properties.inputs["test_url"].uri == "azureml://fake/url.json" + assert reconstructed_entity.inputs["test_url"].mode == InputOutputModes.RO_MOUNT + assert reconstructed_entity.inputs["test_url"].type == AssetTypes.URI_FILE + assert reconstructed_entity.inputs["test_url"].path == "azureml://fake/url.json" + + assert original_entity.inputs["test_string_literal"] == "literal string" + assert rest_representation.properties.inputs["test_string_literal"].job_input_type == JobInputType.LITERAL + assert rest_representation.properties.inputs["test_string_literal"].value == "literal string" + assert reconstructed_entity.inputs["test_string_literal"] == "literal string" + + assert original_entity.inputs["test_literal_valued_int"] == 42 + assert rest_representation.properties.inputs["test_literal_valued_int"].job_input_type == JobInputType.LITERAL + assert rest_representation.properties.inputs["test_literal_valued_int"].value == "42" + assert reconstructed_entity.inputs["test_literal_valued_int"] == "42" + + @pytest.mark.parametrize( + "yaml_path", + [ + "./tests/test_configs/command_job/command_job_output_types.yml", + "./tests/test_configs/sweep_job/sweep_job_output_types.yml", + ], + ) + def test_outputs_types_standalone_jobs(self, yaml_path: str): + original_entity = Job.load(Path(yaml_path)) + rest_representation = original_entity._to_rest_object() + dummy_default = RestUriFolderJobOutput(uri="azureml://foo", mode=OutputDeliveryMode.READ_WRITE_MOUNT) + rest_representation.properties.outputs["default"] = dummy_default + reconstructed_entity = Job._from_rest_object(rest_representation) + + assert original_entity.outputs["test1"] is None + assert rest_representation.properties.outputs["test1"].job_output_type == JobOutputType.URI_FOLDER + assert rest_representation.properties.outputs["test1"].mode == OutputDeliveryMode.READ_WRITE_MOUNT + + assert original_entity.outputs["test2"].mode == InputOutputModes.UPLOAD + assert rest_representation.properties.outputs["test2"].job_output_type == JobOutputType.URI_FOLDER + assert rest_representation.properties.outputs["test2"].mode == OutputDeliveryMode.UPLOAD + + assert original_entity.outputs["test3"].mode == InputOutputModes.RW_MOUNT + assert rest_representation.properties.outputs["test3"].job_output_type == JobOutputType.URI_FOLDER + assert rest_representation.properties.outputs["test3"].mode == OutputDeliveryMode.READ_WRITE_MOUNT + assert reconstructed_entity.outputs["default"].path == "azureml://foo" + + def test_sweep_with_dicts(self): + expected_rest = ["choice", [[{"space1": True}, {"space2": True}]]] + expected_ss = {"type": "choice", "values": [{"space1": True}, {"space2": True}]} + + command_job = CommandJob( + code="./src", + command="python train.py --ss {search_space.ss}", + inputs={"input1": Input(path="testdata:1")}, + compute="local", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + ) + sweep = SweepJob( + sampling_algorithm="random", + trial=command_job, + search_space={"ss": Choice(type="choice", values=[{"space1": True}, {"space2": True}])}, + ) + rest = sweep._to_rest_object() + sweep: SweepJob = Job._from_rest_object(rest) + assert rest.properties.search_space["ss"] == expected_rest + assert vars(sweep.search_space["ss"]) == expected_ss + # Ensure that all elements of values are dicts + for var in rest.properties.search_space["ss"][1][0]: + assert type(var) == dict + + def test_sweep_termination_roundtrip(self): + paths = [ + "./tests/test_configs/sweep_job/sweep-median.yaml", + "./tests/test_configs/sweep_job/sweep-bandit.yaml", + "./tests/test_configs/sweep_job/sweep-truncation.yaml", + "./tests/test_configs/sweep_job/sweep_job_search_space_choice_string.yml", + ] + context = {BASE_PATH_CONTEXT_KEY: Path(paths[0]).parent} + schema = SweepJobSchema(context=context) + cfg = None + + for path in paths: + with open(path, "r") as f: + cfg = yaml.safe_load(f) + internal_representation: SweepJob = Job._load(data=cfg) + rest_intermediate = internal_representation._to_rest_object() + internal_obj = SweepJob._from_rest_object(rest_intermediate) + reconstructed_yaml = schema.dump(internal_obj) + assert reconstructed_yaml["early_termination"]["type"] == cfg["early_termination"]["type"] + + def test_sweep_search_space_environment_variables(self): + sweep: SweepJob = Job.load(Path("./tests/test_configs/sweep_job/sweep-search.yaml")) + # This is to guard against using mutable values as default for constructor args + assert sweep.search_space["dropout_rate"] != sweep.search_space["dropout_rate2"] + + rest_intermediate = sweep._to_rest_object() + rest_command = rest_intermediate.properties.trial.command + for param in sweep.search_space.keys(): + assert f"--{param} ${{{{search_space.{param}}}}}" in rest_command + + def test_sweep_job_recursive_search_space(self): + yaml_path = Path("./tests/test_configs/sweep_job/sweep_job_recursive_search_space.yaml") + with open(yaml_path, "r") as f: + yaml_job = yaml.safe_load(f) + job: SweepJob = Job.load(Path("./tests/test_configs/sweep_job/sweep_job_recursive_search_space.yaml")) + rest_job = job._to_rest_object() + + with open("./tests/test_configs/sweep_job/expected_recursive_search_space.json") as f: + expected_recursive_search_space = json.load(f) + assert rest_job.properties.search_space == expected_recursive_search_space + + from_rest_sweep_job = Job._from_rest_object(rest_job) + assert json.loads(json.dumps(from_rest_sweep_job._to_dict()))["search_space"] == json.loads( + json.dumps(yaml_job["search_space"]) + ) + + @pytest.mark.parametrize( + "yaml_path,expected_sampling_algorithm", + [ + ("./tests/test_configs/sweep_job/sweep_job_minimal_test.yaml", "random"), + ( + "./tests/test_configs/sweep_job/string_sampling_algorithm/sweep_job_grid_sampling_algorithm_string.yml", + "grid", + ), + ( + "./tests/test_configs/sweep_job/string_sampling_algorithm/sweep_job_bayesian_sampling_algorithm_string.yml", + "bayesian", + ), + ], + ) + def test_sampling_algorithm_string_preservation(self, yaml_path: str, expected_sampling_algorithm: str): + sweep_entity: SweepJob = Job.load(Path(yaml_path)) + assert isinstance(sweep_entity.sampling_algorithm, str) + assert sweep_entity.sampling_algorithm == expected_sampling_algorithm + + @pytest.mark.parametrize( + "yaml_path,expected_sampling_algorithm", + [ + ( + "./tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_random_sampling_algorithm_object.yml", + "Random", + ), + ( + "./tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_grid_sampling_algorithm_object.yml", + "Grid", + ), + ( + "./tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_bayesian_sampling_algorithm_object.yml", + "Bayesian", + ), + ], + ) + def test_sampling_algorithm_object_preservation(self, yaml_path: str, expected_sampling_algorithm: str): + sweep_entity = Job.load(Path(yaml_path)) + assert isinstance(sweep_entity.sampling_algorithm, SamplingAlgorithm) + assert sweep_entity.sampling_algorithm.sampling_algorithm_type == expected_sampling_algorithm + + @pytest.mark.parametrize( + "yaml_path,property_name,expected_value", + [ + ("./tests/test_configs/sweep_job/sampling_algorithm_properties/sweep_job_random_seed.yml", "seed", 999), + ("./tests/test_configs/sweep_job/sampling_algorithm_properties/sweep_job_random_rule.yml", "rule", "sobol"), + ], + ) + def test_sampling_algorithm_object_properties(self, yaml_path: str, property_name: str, expected_value: Any): + sweep_entity = Job.load(Path(yaml_path)) + assert isinstance(sweep_entity.sampling_algorithm, SamplingAlgorithm) + assert sweep_entity.sampling_algorithm.__dict__[property_name] == expected_value + + @pytest.mark.parametrize( + "identity", + [AmlToken(), UserIdentity(), ManagedIdentity()], + ) + def test_identity_to_rest(self, identity): + command_job = CommandJob( + code="./src", + command="python train.py --lr 0.01", + inputs={"input1": Input(path="testdata:1")}, + compute="local", + environment="AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", + ) + + sweep = SweepJob( + sampling_algorithm="random", + trial=command_job, + identity=identity, + search_space={"ss": QUniform(type="quniform", min_value=1, max_value=100, q=1)}, + ) + rest = sweep._to_rest_object() + + assert rest.properties.identity == identity diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_beer_job.yml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_beer_job.yml new file mode 100644 index 000000000000..62a1a85a9351 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_beer_job.yml @@ -0,0 +1,35 @@ +type: automl + +name: simplebeerjob + +compute: azureml:testCompute + +general: + task: forecasting + primary_metric: normalized_root_mean_squared_error + enable_model_explainability: true + +limits: + timeout: 60 + max_total_trials: 60 + max_concurrent_trials: 4 + enable_early_termination: false + +data: + target_column_name: BeerProduction + training: + dataset: azureml:train_dataset_beer:1 + validation: + n_cross_validations: 5 + +featurization: + featurization_config: auto + +training: + enable_dnn_training: False + +forecasting: + country_or_region_for_holidays: US + forecast_horizon: 12 + target_rolling_window_size: 0 + time_column_name: DATE diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_classification_job_mock.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_classification_job_mock.yaml new file mode 100644 index 000000000000..e67471d99db7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_classification_job_mock.yaml @@ -0,0 +1,51 @@ +type: automl + +name: simpleautomlimagejob +experiment_name: "automl" +compute: azureml:cpu-cluster + +log_verbosity: debug +task: image_classification +primary_metric: accuracy + +limits: + timeout_minutes: 60 + max_concurrent_trials: 1 + max_trials: 1 + +target_column_name: label +training_data: + path: azureml:image-training-data:1 + type: mltable +validation_data: + path: azureml:image-validation-data:1 + type: mltable + +sweep: + limits: + max_trials: 20 + max_concurrent_trials: 4 + sampling_algorithm: Grid + early_termination: + type: bandit + evaluation_interval: 10 + slack_factor: 0.2 + +image_model: + checkpoint_frequency: 1 + early_stopping: true + early_stopping_delay: 2 + early_stopping_patience: 2 + evaluation_frequency: 1 + +search_space: + - model_name: "choice('vitb16r224','vits16r224')" + learning_rate: "uniform(0.005,0.05)" + number_of_epochs: "choice(15,30)" + grad_accumulation_step: "choice(1,2)" + + - model_name: "choice('seresnext','resnest50')" + learning_rate: "uniform(0.005,0.05)" + validation_resize_size: "choice(288,320,352)" + validation_crop_size: "choice(224,256)" + training_crop_size: "choice(224,256)" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_classification_multilabel_job_mock.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_classification_multilabel_job_mock.yaml new file mode 100644 index 000000000000..5c3abdd5eadd --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_classification_multilabel_job_mock.yaml @@ -0,0 +1,51 @@ +type: automl + +name: simpleautomlimagejob +experiment_name: "automl" +compute: azureml:cpu-cluster + +log_verbosity: debug +task: image_classification_multilabel +primary_metric: iou + +limits: + timeout_minutes: 60 + max_concurrent_trials: 1 + max_trials: 1 + +target_column_name: label +training_data: + path: azureml:image-training-data:1 + type: mltable +validation_data: + path: azureml:image-validation-data:1 + type: mltable + +sweep: + limits: + max_trials: 20 + max_concurrent_trials: 4 + sampling_algorithm: Grid + early_termination: + type: bandit + evaluation_interval: 10 + slack_factor: 0.2 + +image_model: + checkpoint_frequency: 1 + early_stopping: true + early_stopping_delay: 2 + early_stopping_patience: 2 + evaluation_frequency: 1 + +search_space: + - model_name: "choice('vitb16r224','vits16r224')" + learning_rate: "uniform(0.005,0.05)" + number_of_epochs: "choice(15,30)" + grad_accumulation_step: "choice(1,2)" + + - model_name: "choice('seresnext','resnest50')" + learning_rate: "uniform(0.005,0.05)" + validation_resize_size: "choice(288,320,352)" + validation_crop_size: "choice(224,256)" + training_crop_size: "choice(224,256)" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_instance_segmentation_job_mock.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_instance_segmentation_job_mock.yaml new file mode 100644 index 000000000000..a3c1f881434a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_instance_segmentation_job_mock.yaml @@ -0,0 +1,46 @@ +type: automl + +name: simpleautomlimagejob +experiment_name: "automl" +compute: azureml:cpu-cluster + +log_verbosity: debug +task: image_instance_segmentation +primary_metric: mean_average_precision + +limits: + timeout_minutes: 60 + max_concurrent_trials: 1 + max_trials: 1 + +target_column_name: label +training_data: + path: azureml:image-training-data:1 + type: mltable +validation_data: + path: azureml:image-validation-data:1 + type: mltable + +sweep: + limits: + max_trials: 20 + max_concurrent_trials: 4 + sampling_algorithm: Grid + early_termination: + type: bandit + evaluation_interval: 10 + slack_factor: 0.2 + +image_model: + checkpoint_frequency: 1 + early_stopping: true + early_stopping_delay: 2 + early_stopping_patience: 2 + evaluation_frequency: 1 + +search_space: + - model_name: "choice('maskrcnn_resnet50_fpn')" + learning_rate: "uniform(0.005,0.05)" + warmup_cosine_lr_warmup_epochs: "choice(0,3)" + optimizer: "choice('sgd','adam','adamw')" + min_size: "choice(600,800)" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_object_detection_job_mock.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_object_detection_job_mock.yaml new file mode 100644 index 000000000000..3b9767d6d524 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_image_object_detection_job_mock.yaml @@ -0,0 +1,46 @@ +type: automl + +name: simpleautomlimagejob +experiment_name: "automl" +compute: azureml:cpu-cluster + +log_verbosity: debug +task: image_object_detection +primary_metric: mean_average_precision + +limits: + timeout_minutes: 60 + max_concurrent_trials: 1 + max_trials: 1 + +target_column_name: label +training_data: + path: azureml:image-training-data:1 + type: mltable +validation_data: + path: azureml:image-validation-data:1 + type: mltable + +sweep: + limits: + max_trials: 20 + max_concurrent_trials: 4 + sampling_algorithm: Grid + early_termination: + type: bandit + evaluation_interval: 10 + slack_factor: 0.2 + +image_model: + checkpoint_frequency: 1 + early_stopping: true + early_stopping_delay: 2 + early_stopping_patience: 2 + evaluation_frequency: 1 + +search_space: + - model_name: "choice('maskrcnn_resnet50_fpn')" + learning_rate: "uniform(0.005,0.05)" + warmup_cosine_lr_warmup_epochs: "choice(0,3)" + optimizer: "choice('sgd','adam','adamw')" + min_size: "choice(600,800)" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_missing_required_fields.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_missing_required_fields.yaml new file mode 100644 index 000000000000..706cc7920ee0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_missing_required_fields.yaml @@ -0,0 +1,24 @@ +type: automl + +name: A simple AutoML Job + +compute: azureml:cpu-cluster + +limits: + timeout_minutes: 180 + max_trials: 40 + max_concurrent_trials: 5 + enable_early_termination: true + exit_score: 0.85 + +training_data: +validation_data: + path: azureml:insurance-validation-data:1 + type: mltable + +featurization: + mode: auto + +training: + enable_dnn_training: True + enable_model_explainability: true diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_auto.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_auto.yaml new file mode 100644 index 000000000000..359fa58b7e2e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_auto.yaml @@ -0,0 +1,32 @@ +type: automl + +name: A simple AutoML Job + +compute: azureml:cpu-cluster + +task: regression +primary_metric: normalized_mean_absolute_error + +limits: + timeout_minutes: 180 + max_trials: 40 + max_concurrent_trials: 5 + enable_early_termination: true + exit_score: 0.85 + +target_column_name: safedriver +training_data: + path: azureml:insurance-training-data:1 + type: mltable +validation_data: + path: azureml:insurance-validation-data:1 + type: mltable +test_data: + path: azureml:insurance-test-data:1 + type: mltable + +featurization: + mode: auto +training: + enable_dnn_training: True + enable_model_explainability: true diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_classification.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_classification.yaml new file mode 100644 index 000000000000..68c7fd5507c6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_classification.yaml @@ -0,0 +1,75 @@ +type: automl + +name: simpleautomljob +experiment_name: "automl" +compute: azureml:cpu-cluster + +log_verbosity: debug +task: classification +primary_metric: accuracy + +limits: + timeout_minutes: 180 + max_trials: 40 + max_concurrent_trials: 5 + enable_early_termination: true + exit_score: 0.85 + +# data: +target_column_name: safedriver +n_cross_validations: 2 +cv_split_column_names: + - Quantity + +training_data: + path: azureml:insurance-training-data:1 + type: mltable +validation_data: + path: azureml:insurance-validation-data:1 + type: mltable +validation_data_size: 0.2 +test_data: + path: azureml:insurance-test-data:1 + type: mltable + +featurization: + mode: custom + enable_dnn_featurization: False + blocked_transformers: [LabelEncoder, WordEmbedding] + column_name_and_types: + CPWVOL5: CategoricalHash + MYCT: Numeric + VendorName: CategoricalHash + transformer_params: + imputer: + - fields: ["Quantity"] + parameters: + strategy: constant + fill_value: 0 + - fields: ["Income", "Age"] + parameters: + strategy: median + fill_value: + - fields: ["Surface", "Tax"] + parameters: + strategy: mean + fill_value: + - fields: ["Rooms"] + parameters: + strategy: most_frequent + fill_value: test + - fields: ["Price"] + parameters: + strategy: ffill + hash_one_hot_encoder: + - fields: ["Name"] + parameters: + number_of_bits: 3 + - fields: ["Hair Color", "Eye Color"] + parameters: + number_of_bits: 1 + dataset_language: English +training: + enable_dnn_training: True + enable_model_explainability: True + ensemble_model_download_timeout_minutes: 2 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_forecasting.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_forecasting.yaml new file mode 100644 index 000000000000..3dbfa40e0096 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_forecasting.yaml @@ -0,0 +1,83 @@ +type: automl + +name: simpleautomljob +experiment_name: "automl" +compute: azureml:cpu-cluster + +log_verbosity: debug +task: forecasting +primary_metric: r2_score + +limits: + timeout_minutes: 180 + max_trials: 40 + max_concurrent_trials: 5 + enable_early_termination: true + exit_score: 0.85 + +target_column_name: safedriver +n_cross_validations: 2 +cv_split_column_names: + - Quantity +validation_data_size: 0.2 + +training_data: + path: azureml:insurance-training-data:1 + type: mltable +validation_data: + path: azureml:insurance-validation-data:1 + type: mltable +test_data: + path: azureml:insurance-test-data:1 + type: mltable + +featurization: + mode: custom + enable_dnn_featurization: False + blocked_transformers: [LabelEncoder, WordEmbedding] + column_name_and_types: + CPWVOL5: CategoricalHash + MYCT: Numeric + VendorName: CategoricalHash + transformer_params: + imputer: + - fields: ["Quantity"] + parameters: + strategy: constant + fill_value: 0 + - fields: ["Income", "Age"] + parameters: + strategy: median + fill_value: + - fields: ["Surface", "Tax"] + parameters: + strategy: mean + fill_value: + - fields: ["Rooms"] + parameters: + strategy: most_frequent + fill_value: test + - fields: ["Price"] + parameters: + strategy: ffill + hash_one_hot_encoder: + - fields: ["Name"] + parameters: + number_of_bits: 3 + - fields: ["Hair Color", "Eye Color"] + parameters: + number_of_bits: 1 + dataset_language: English + +training: + enable_dnn_training: True + enable_model_explainability: True + ensemble_model_download_timeout_minutes: 2 + +forecasting: + country_or_region_for_holidays: US + forecast_horizon: 10 + target_lags: 20 + target_rolling_window_size: 3 + time_column_name: abc + time_series_id_column_names: xyz diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_regression.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_regression.yaml new file mode 100644 index 000000000000..6550c58f7220 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_mock_regression.yaml @@ -0,0 +1,74 @@ +type: automl + +name: simpleautomljob +experiment_name: "automl" +compute: azureml:cpu-cluster + +log_verbosity: debug +task: regression +primary_metric: normalized_mean_absolute_error + +limits: + timeout_minutes: 180 + max_trials: 40 + max_concurrent_trials: 5 + enable_early_termination: true + exit_score: 0.85 + +target_column_name: safedriver +n_cross_validations: 2 +cv_split_column_names: + - Quantity +validation_data_size: 0.2 + +training_data: + path: azureml:insurance-training-data:1 + type: mltable +validation_data: + path: azureml:insurance-validation-data:1 + type: mltable +test_data: + path: azureml:insurance-test-data:1 + type: mltable + +featurization: + mode: custom + enable_dnn_featurization: False + blocked_transformers: [LabelEncoder, WordEmbedding] + column_name_and_types: + CPWVOL5: CategoricalHash + MYCT: Numeric + VendorName: CategoricalHash + transformer_params: + imputer: + - fields: ["Quantity"] + parameters: + strategy: constant + fill_value: 0 + - fields: ["Income", "Age"] + parameters: + strategy: median + fill_value: + - fields: ["Surface", "Tax"] + parameters: + strategy: mean + fill_value: + - fields: ["Rooms"] + parameters: + strategy: most_frequent + fill_value: test + - fields: ["Price"] + parameters: + strategy: ffill + hash_one_hot_encoder: + - fields: ["Name"] + parameters: + number_of_bits: 3 + - fields: ["Hair Color", "Eye Color"] + parameters: + number_of_bits: 1 + dataset_language: English +training: + enable_dnn_training: True + enable_model_explainability: True + ensemble_model_download_timeout_minutes: 2 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_classification_mock.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_classification_mock.yaml new file mode 100644 index 000000000000..172a89eeac50 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_classification_mock.yaml @@ -0,0 +1,24 @@ +type: automl + +name: simpleautomlnlpjob +experiment_name: "automl" +compute: azureml:cpu-cluster + +log_verbosity: debug +task: text_classification +primary_metric: accuracy + +limits: + timeout_minutes: 30 + max_concurrent_trials: 2 + +target_column_name: label_column +training_data: + path: azureml:nlp-training-data:1 + type: mltable +validation_data: + path: azureml:nlp-validation-data:1 + type: mltable + +featurization: + dataset_language: eng diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_classification_multilabel_mock.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_classification_multilabel_mock.yaml new file mode 100644 index 000000000000..69e41b23671d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_classification_multilabel_mock.yaml @@ -0,0 +1,24 @@ +type: automl + +name: simpleautomlnlpjob +experiment_name: "automl" +compute: azureml:cpu-cluster + +log_verbosity: debug +task: text_classification_multilabel +primary_metric: accuracy + +limits: + timeout_minutes: 30 + max_concurrent_trials: 2 + +target_column_name: label_column +training_data: + path: azureml:nlp-training-data:1 + type: mltable +validation_data: + path: azureml:nlp-validation-data:1 + type: mltable + +featurization: + dataset_language: eng diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_ner_mock.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_ner_mock.yaml new file mode 100644 index 000000000000..50f79483a0b4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/automl_job_text_ner_mock.yaml @@ -0,0 +1,23 @@ +type: automl + +name: simpleautomlnlpjob +experiment_name: "automl" +compute: azureml:cpu-cluster + +log_verbosity: debug +task: text_ner +primary_metric: accuracy + +limits: + timeout_minutes: 30 + max_concurrent_trials: 2 + +training_data: + path: azureml:nlp-training-data:1 + type: mltable +validation_data: + path: azureml:nlp-validation-data:1 + type: mltable + +featurization: + dataset_language: eng diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_classification_job.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_classification_job.yaml new file mode 100644 index 000000000000..d0a1a411ae11 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_classification_job.yaml @@ -0,0 +1,46 @@ +type: automl + +experiment_name: cli_e2e_test +compute: azureml:cpu-cluster + +log_verbosity: debug +task: classification +primary_metric: accuracy + +properties: + _automl_internal_enable_mltable_quick_profile: "true" + _automl_internal_label: "latest" + _automl_internal_save_mlflow: "true" + +limits: + timeout_minutes: 180 + trial_timeout_minutes: 20 + max_trials: 2 + max_concurrent_trials: 2 + enable_early_termination: true + exit_score: 0.85 + +target_column_name: y +training_data: + path: tests/test_configs/automl_job/test_datasets/bank_marketing/train + type: mltable +validation_data: + path: tests/test_configs/automl_job/test_datasets/bank_marketing/valid + type: mltable + +featurization: + mode: custom + transformer_params: + imputer: + - fields: ["job"] + parameters: + strategy: most_frequent + blocked_transformers: + - one_hot_encoder + +training: + allowed_training_algorithms: + - gradient_boosting + - logistic_regression + blocked_training_algorithms: + - xg_boost_classifier diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_forecasting_job.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_forecasting_job.yaml new file mode 100644 index 000000000000..7cebd48faf6f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_forecasting_job.yaml @@ -0,0 +1,35 @@ +type: automl + +experiment_name: cli_e2e_test +compute: azureml:cpu-cluster + +log_verbosity: debug +task: forecasting +primary_metric: normalized_root_mean_squared_error + +properties: + _automl_internal_enable_mltable_quick_profile: "true" + _automl_internal_label: "latest" + _automl_internal_save_mlflow: "true" + +limits: + timeout_minutes: 180 + trial_timeout_minutes: 20 + max_trials: 2 + max_concurrent_trials: 2 + enable_early_termination: true + exit_score: 0.85 + +target_column_name: BeerProduction +training_data: + path: tests/test_configs/automl_job/test_datasets/beer_forecasting/train + type: mltable +n_cross_validations: 2 + +featurization: + mode: auto + +forecasting: + forecast_horizon: 12 + frequency: MS + time_column_name: DATE diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_regression_job.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_regression_job.yaml new file mode 100644 index 000000000000..2989744085ea --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_regression_job.yaml @@ -0,0 +1,40 @@ +type: automl + +experiment_name: cli_e2e_test +compute: azureml:cpu-cluster + +log_verbosity: debug +task: regression +primary_metric: r2_score + +properties: + _automl_internal_enable_mltable_quick_profile: "true" + _automl_internal_label: "latest" + _automl_internal_save_mlflow: "true" + +limits: + timeout_minutes: 180 + trial_timeout_minutes: 20 + max_trials: 2 + max_concurrent_trials: 2 + enable_early_termination: true + exit_score: 0.85 + +target_column_name: ERP +training_data: + path: tests/test_configs/automl_job/test_datasets/machine_data/train + type: mltable + +featurization: + mode: custom + transformer_params: + imputer: + - fields: ["MYCT"] + parameters: + strategy: mean + +training: + blocked_training_algorithms: + - elastic_net + - lasso_lars + - xg_boost_regressor diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_text_classification_job.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_text_classification_job.yaml new file mode 100644 index 000000000000..f1dea29201f8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/e2e_configs/automl_text_classification_job.yaml @@ -0,0 +1,27 @@ +type: automl + +experiment_name: "cli_e2e_text_classification" +compute: azureml:gpu-cluster + +log_verbosity: debug +task: text_classification +primary_metric: accuracy + +properties: + _automl_internal_enable_mltable_quick_profile: "true" + _automl_internal_label: "latest" + _automl_internal_save_mlflow: "true" + +limits: + timeout_minutes: 30 + +target_column_name: y +training_data: + path: tests/test_configs/automl_job/test_datasets/newsgroup/train + type: mltable +validation_data: + path: tests/test_configs/automl_job/test_datasets/newsgroup/valid + type: mltable + +featurization: + dataset_language: eng diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/featurization_config.json b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/featurization_config.json new file mode 100644 index 000000000000..7ee3c52c7330 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/featurization_config.json @@ -0,0 +1,63 @@ +{ + "mode": "custom", + "blocked_transformers": ["LabelEncoder", "WordEmbedding"], + "column_name_and_types": { + "CPWVOL5": "CategoricalHash", + "MYCT": "Numeric", + "VendorName": "CategoricalHash" + }, + "transformer_params": { + "imputer": [ + { + "fields": ["Quantity"], + "parameters": { + "strategy": "constant", + "fill_value": 0.0 + } + }, + { + "fields": ["Income", "Age"], + "parameters": { + "strategy": "median", + "fill_value": null + } + }, + { + "fields": ["Surface", "Tax"], + "parameters": { + "strategy": "mean", + "fill_value": null + } + }, + { + "fields": ["Rooms"], + "parameters": { + "strategy": "most_frequent", + "fill_value": "test" + } + }, + { + "fields": ["Price"], + "parameters": { + "strategy": "ffill" + } + } + ], + "hash_one_hot_encoder": [ + { + "fields": ["Name"], + "parameters": { + "number_of_bits": 3.0 + } + }, + { + "fields": ["Hair Color", "Eye Color"], + "parameters": { + "number_of_bits": 1.0 + } + } + ] + }, + "dataset_language": "English", + "enable_dnn_featurization": false +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/rest_featurization_config.json b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/rest_featurization_config.json new file mode 100644 index 000000000000..2c9d00522ea3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/rest_featurization_config.json @@ -0,0 +1,62 @@ +{ + "mode": "custom", + "blocked_transformers": ["LabelEncoder", "WordEmbedding"], + "column_purposes": { + "CPWVOL5": "CategoricalHash", + "MYCT": "Numeric", + "VendorName": "CategoricalHash" + }, + "transformer_params": { + "imputer": [ + { + "fields": ["Quantity"], + "parameters": { + "strategy": "constant", + "fill_value": 0.0 + } + }, + { + "fields":["Income", "Age"], + "parameters": { + "strategy": "median", + "fill_value": null + } + }, + { + "fields":["Surface", "Tax"], + "parameters": { + "strategy": "mean", + "fill_value": null + } + }, + { + "fields": ["Rooms"], + "parameters": { + "strategy": "most_frequent", + "fill_value": "test" + } + }, + { + "fields": ["Price"], + "parameters": { + "strategy": "ffill" + } + } + ], + "hash_one_hot_encoder": [ + { + "fields": ["Name"], + "parameters": { + "number_of_bits": 3 + } + }, + { + "fields": ["Hair Color", "Eye Color"], + "parameters": { + "number_of_bits": 1 + } + } + ] + }, + "dataset_language": "English", +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/bank_marketing/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/bank_marketing/train/MLTable new file mode 100644 index 000000000000..d82a7f85e404 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/bank_marketing/train/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-notebook-data/bankmarketing_train.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/bank_marketing/valid/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/bank_marketing/valid/MLTable new file mode 100644 index 000000000000..b2b5fd2cc879 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/bank_marketing/valid/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-notebook-data/bankmarketing_validate.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/beer_forecasting/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/beer_forecasting/train/MLTable new file mode 100644 index 000000000000..6099c847a63b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/beer_forecasting/train/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-notebook-data/Beer_no_valid_split_train.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' + empty_as_string: false diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/conll2003/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/conll2003/train/MLTable new file mode 100644 index 000000000000..e6679e94f0c2 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/conll2003/train/MLTable @@ -0,0 +1,4 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-nlp-data/text-ner_train.txt +transformations: + - take: 1 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/conll2003/valid/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/conll2003/valid/MLTable new file mode 100644 index 000000000000..056e2e3ca483 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/conll2003/valid/MLTable @@ -0,0 +1,4 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-nlp-data/text-ner_valid.txt +transformations: + - take: 1 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/test/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/test/MLTable new file mode 100644 index 000000000000..03a9cb36433e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/test/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-notebook-data/creditcard_test.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/train/MLTable new file mode 100644 index 000000000000..ea82b9c447d3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/train/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-notebook-data/creditcard_train.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/valid/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/valid/MLTable new file mode 100644 index 000000000000..9a4a8eac4d32 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/credit_card_fraud/valid/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-notebook-data/creditcard_validate.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/test/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/test/MLTable new file mode 100644 index 000000000000..fe222d645391 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/test/MLTable @@ -0,0 +1,7 @@ +paths: + - file: ./house_pricing_test.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/test/house_pricing_test.csv b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/test/house_pricing_test.csv new file mode 100644 index 000000000000..a8222bbef9d6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/test/house_pricing_test.csv @@ -0,0 +1,13 @@ +Id,SalePrice +1496,207210 +1497,194970 +1498,155637.5 +1499,155750 +1500,153227.96 +1501,181970 +1502,149225 +1503,292298.4 +1504,237780 +1505,218207.9 +1506,197530 +1507,233000 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/train/MLTable new file mode 100644 index 000000000000..e03bd791cf9d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/train/MLTable @@ -0,0 +1,7 @@ +paths: + - file: ./house_pricing_train.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/train/house_pricing_train.csv b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/train/house_pricing_train.csv new file mode 100644 index 000000000000..2d43417caeff --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/train/house_pricing_train.csv @@ -0,0 +1,1460 @@ +Id,SalePrice +1461,115220.0 +1462,133400.0 +1463,163500.0 +1464,192500.0 +1465,223950.0 +1466,176300.0 +1467,176590.0 +1468,177439.0 +1469,178507.9 +1470,111550.0 +1471,183000.0 +1472,89200.0 +1473,105540.0 +1474,149240.0 +1475,154335.0 +1476,397628.3 +1477,270595.0 +1478,310922.6 +1479,289342.6 +1480,441421.2 +1481,305745.0 +1482,212691.2 +1483,179413.0 +1484,178609.5 +1485,163973.2 +1486,210650.0 +1487,319866.8 +1488,243172.8 +1489,208166.0 +1490,192845.0 +1491,186150.0 +1492,93600.0 +1493,192205.0 +1494,289710.0 +1495,275562.4 +1496,207210.0 +1497,194970.0 +1498,155637.5 +1499,155750.0 +1500,153227.96000000002 +1501,181970.0 +1502,149225.0 +1503,292298.4 +1504,237780.0 +1505,218207.9 +1506,197530.0 +1507,233000.0 +1508,203935.0 +1509,167555.0 +1510,136730.0 +1511,135900.0 +1512,147460.0 +1513,144930.0 +1514,155936.8 +1515,187750.0 +1516,149685.0 +1517,144595.0 +1518,129240.0 +1519,216333.9 +1520,140990.0 +1521,135900.0 +1522,155570.0 +1523,112685.0 +1524,126612.5 +1525,125650.0 +1526,120275.0 +1527,112200.0 +1528,127950.0 +1529,134155.0 +1530,151225.0 +1531,144428.7 +1532,107770.0 +1533,106390.0 +1534,128387.5 +1535,151270.0 +1536,115080.0 +1537,105475.0 +1538,208890.0 +1539,234190.0 +1540,130118.7 +1541,160840.0 +1542,149671.8 +1543,225047.9 +1544,79400.0 +1545,108440.0 +1546,129000.0 +1547,105950.0 +1548,111950.0 +1549,112130.0 +1550,156950.0 +1551,132340.0 +1552,138740.0 +1553,129140.0 +1554,102600.8 +1555,161335.0 +1556,100370.0 +1557,125630.0 +1558,107340.0 +1559,105060.0 +1560,155578.7 +1561,137246.4 +1562,130320.0 +1563,114150.0 +1564,153196.0 +1565,145640.0 +1566,174130.0 +1567,90230.0 +1568,216540.0 +1569,155325.0 +1570,119620.0 +1571,153000.0 +1572,132660.0 +1573,232243.8 +1574,134820.0 +1575,173455.0 +1576,201050.0 +1577,207836.0 +1578,133950.4 +1579,151200.0 +1580,188100.0 +1581,143900.0 +1582,116240.0 +1583,352780.0 +1584,240082.5 +1585,137333.33333333334 +1586,80410.0 +1587,105540.0 +1588,128560.0 +1589,102950.0 +1590,131650.0 +1591,100975.0 +1592,141000.0 +1593,121310.0 +1594,124030.6 +1595,144150.0 +1596,232400.0 +1597,144995.3 +1598,195466.5 +1599,216900.0 +1600,185300.0 +1601,72560.0 +1602,109650.4 +1603,103700.0 +1604,243550.0 +1605,248596.0 +1606,168750.0 +1607,210440.0 +1608,216320.0 +1609,208130.1 +1610,159293.8 +1611,149740.0 +1612,181790.5 +1613,165790.0 +1614,114850.0 +1615,92300.0 +1616,92300.0 +1617,95600.0 +1618,132500.0 +1619,136590.0 +1620,161060.0 +1621,132790.0 +1622,129588.7 +1623,308400.0 +1624,201375.0 +1625,112715.0 +1626,172160.0 +1627,188550.0 +1628,263080.0 +1629,177046.5 +1630,306265.0 +1631,229240.0 +1632,238300.0 +1633,152720.0 +1634,180000.0 +1635,177390.0 +1636,168890.0 +1637,160645.0 +1638,200340.0 +1639,177820.0 +1640,255056.0 +1641,188999.0 +1642,223150.0 +1643,246650.0 +1644,233630.0 +1645,203935.0 +1646,151430.0 +1647,165600.0 +1648,146210.0 +1649,137960.0 +1650,113025.0 +1651,130625.0 +1652,86650.0 +1653,95250.0 +1654,156840.0 +1655,167620.0 +1656,155000.0 +1657,159900.0 +1658,155150.0 +1659,150860.0 +1660,152400.0 +1661,425391.4 +1662,397334.3 +1663,388878.3 +1664,468854.8 +1665,353847.8 +1666,262500.0 +1667,329579.0 +1668,349308.3 +1669,287382.2 +1670,354860.0 +1671,244462.8 +1672,411754.8 +1673,322964.5 +1674,261238.4 +1675,185730.0 +1676,182138.2 +1677,224897.1 +1678,391875.0 +1679,347370.2 +1680,348635.7 +1681,291320.2 +1682,279469.3 +1683,175575.0 +1684,177663.0 +1685,170358.0 +1686,163154.5 +1687,165089.7 +1688,176750.0 +1689,176802.5 +1690,181498.0 +1691,162099.0 +1692,259343.5 +1693,163973.2 +1694,178530.0 +1695,170700.0 +1696,280605.0 +1697,169450.0 +1698,356624.3 +1699,327690.0 +1700,223750.0 +1701,275130.0 +1702,295252.6 +1703,305975.0 +1704,317348.7 +1705,237941.2 +1706,388897.0 +1707,223694.5 +1708,224471.8 +1709,341373.4 +1710,246544.6 +1711,241852.2 +1712,269893.5 +1713,230216.1 +1714,215840.0 +1715,199380.0 +1716,190138.5 +1717,167259.5 +1718,138500.0 +1719,211135.0 +1720,255306.1 +1721,174190.0 +1722,137050.0 +1723,152690.0 +1724,233297.0 +1725,223550.0 +1726,194275.0 +1727,172340.0 +1728,183390.0 +1729,154400.0 +1730,188400.0 +1731,132040.0 +1732,122435.0 +1733,115320.0 +1734,126395.0 +1735,124890.0 +1736,113940.0 +1737,303190.0 +1738,218407.8 +1739,294994.9 +1740,196758.0 +1741,179153.2 +1742,181120.0 +1743,177000.0 +1744,295021.9 +1745,232332.8 +1746,234120.0 +1747,187470.0 +1748,201890.0 +1749,147210.0 +1750,145802.5 +1751,218450.0 +1752,117200.0 +1753,152000.5 +1754,206100.0 +1755,159985.0 +1756,115650.0 +1757,119730.0 +1758,142120.0 +1759,150470.0 +1760,136560.0 +1761,158850.0 +1762,162800.0 +1763,161910.0 +1764,122300.0 +1765,166300.0 +1766,154730.0 +1767,197450.0 +1768,135800.0 +1769,154350.0 +1770,129345.0 +1771,128835.0 +1772,120625.0 +1773,139545.0 +1774,149690.0 +1775,133720.0 +1776,113460.4 +1777,103900.0 +1778,131922.5 +1779,118660.4 +1780,173656.5 +1781,124605.0 +1782,101880.0 +1783,132300.0 +1784,105075.0 +1785,135522.5 +1786,194950.0 +1787,159940.0 +1788,55180.0 +1789,99540.0 +1790,75515.0 +1791,187740.0 +1792,146390.0 +1793,150950.0 +1794,154180.0 +1795,138140.0 +1796,119900.0 +1797,126980.0 +1798,129950.0 +1799,110300.0 +1800,122000.0 +1801,132793.4 +1802,176190.0 +1803,148140.0 +1804,134080.0 +1805,132500.0 +1806,123812.5 +1807,153550.0 +1808,124690.0 +1809,113050.0 +1810,160040.0 +1811,94540.0 +1812,102780.0 +1813,126230.4 +1814,99190.0 +1815,65020.0 +1816,99350.0 +1817,111540.0 +1818,149350.0 +1819,114500.0 +1820,67020.0 +1821,127810.0 +1822,157390.0 +1823,53310.0 +1824,138450.0 +1825,153090.0 +1826,96470.0 +1827,114150.0 +1828,144520.0 +1829,123465.0 +1830,159090.0 +1831,182092.5 +1832,128092.5 +1833,149300.0 +1834,120950.4 +1835,200067.5 +1836,134450.0 +1837,88730.0 +1838,131270.8 +1839,92640.0 +1840,152556.4 +1841,139826.4 +1842,100700.0 +1843,143390.0 +1844,145080.0 +1845,148490.0 +1846,144630.0 +1847,157610.0 +1848,57920.0 +1849,107565.0 +1850,133412.5 +1851,151995.0 +1852,128910.0 +1853,127962.5 +1854,161524.0 +1855,147062.475 +1856,206120.0 +1857,166120.0 +1858,143381.2 +1859,134865.5 +1860,148906.0 +1861,134865.5 +1862,292069.9 +1863,292069.9 +1864,292069.9 +1865,334300.6 +1866,353693.2 +1867,253840.7 +1868,288310.0 +1869,188044.8 +1870,249174.0 +1871,251727.3 +1872,169428.6 +1873,218030.0 +1874,135300.0 +1875,189550.0 +1876,197790.0 +1877,184625.0 +1878,214997.9 +1879,127700.0 +1880,129446.0 +1881,229981.1 +1882,272773.0 +1883,193500.0 +1884,231500.0 +1885,232160.0 +1886,241350.0 +1887,188999.0 +1888,249774.0 +1889,160807.16 +1890,132900.0 +1891,143490.0 +1892,105565.0 +1893,121945.0 +1894,114750.0 +1895,154560.0 +1896,112950.0 +1897,113437.5 +1898,101410.0 +1899,144340.0 +1900,130015.4 +1901,147560.0 +1902,115075.0 +1903,216380.0 +1904,137300.0 +1905,171590.0 +1906,155613.4 +1907,203495.0 +1908,128600.0 +1909,124480.0 +1910,124480.0 +1911,183500.0 +1912,281375.9 +1913,151450.0 +1914,72360.0 +1915,296530.2 +1916,82380.0 +1917,269246.3 +1918,134671.0 +1919,151435.0 +1920,158790.5 +1921,406234.2 +1922,308838.3 +1923,190700.0 +1924,206650.0 +1925,240935.0 +1926,362358.5 +1927,125330.0 +1928,151400.0 +1929,129540.0 +1930,138970.0 +1931,139750.0 +1932,135490.0 +1933,158350.0 +1934,192500.0 +1935,178973.2 +1936,205140.0 +1937,181490.0 +1938,164536.9 +1939,250340.0 +1940,223950.0 +1941,190850.0 +1942,175210.0 +1943,203350.0 +1944,302926.9 +1945,334620.4 +1946,166640.0 +1947,288680.0 +1948,163280.0 +1949,221925.0 +1950,171920.0 +1951,299890.0 +1952,231690.0 +1953,166390.0 +1954,199850.0 +1955,123200.0 +1956,255700.0 +1957,164600.0 +1958,304310.0 +1959,150471.1 +1960,112860.0 +1961,120315.0 +1962,87700.0 +1963,109500.0 +1964,110900.0 +1965,149815.0 +1966,154350.0 +1967,233849.9 +1968,403649.5 +1969,358975.0 +1970,389554.8 +1971,403574.0 +1972,350239.5 +1973,304646.3 +1974,281863.7 +1975,399017.6 +1976,267250.0 +1977,362789.4 +1978,352044.0 +1979,375798.1 +1980,189271.5 +1981,362213.0 +1982,247124.6 +1983,247124.6 +1984,160840.0 +1985,201239.0 +1986,211596.1 +1987,195473.5 +1988,181803.0 +1989,198000.0 +1990,213850.0 +1991,224897.1 +1992,208460.0 +1993,170923.0 +1994,264877.5 +1995,190750.0 +1996,271000.0 +1997,316236.6 +1998,340450.0 +1999,246410.0 +2000,303446.9 +2001,239850.0 +2002,229140.0 +2003,286307.1 +2004,255637.8 +2005,240791.2 +2006,268245.4 +2007,290823.2 +2008,212080.6 +2009,192500.0 +2010,188250.0 +2011,130400.0 +2012,175767.2 +2013,187940.0 +2014,191770.0 +2015,185870.0 +2016,191510.0 +2017,205817.5 +2018,126365.0 +2019,136440.0 +2020,111950.0 +2021,113450.0 +2022,175510.0 +2023,163530.0 +2024,225550.0 +2025,441877.0 +2026,185314.5 +2027,153663.16 +2028,173690.0 +2029,184890.0 +2030,288630.0 +2031,269282.2 +2032,281390.0 +2033,337940.0 +2034,164800.0 +2035,213710.0 +2036,232900.0 +2037,232900.0 +2038,377900.0 +2039,193200.0 +2040,383242.2 +2041,223611.7 +2042,213670.0 +2043,161980.5 +2044,178060.0 +2045,169990.0 +2046,141280.5 +2047,138650.0 +2048,139646.0 +2049,139521.0 +2050,169785.0 +2051,108750.4 +2052,136070.3 +2053,136800.0 +2054,81610.0 +2055,144050.5 +2056,134795.0 +2057,122500.0 +2058,211140.0 +2059,143195.0 +2060,145540.0 +2061,135250.0 +2062,131095.0 +2063,105850.0 +2064,141095.0 +2065,126790.0 +2066,190190.0 +2067,148940.0 +2068,138170.5 +2069,84530.0 +2070,108850.0 +2071,101400.0 +2072,143640.0 +2073,134386.0 +2074,160400.0 +2075,143480.0 +2076,117270.0 +2077,134060.0 +2078,128680.0 +2079,126240.0 +2080,123440.0 +2081,123412.5 +2082,132400.0 +2083,135830.5 +2084,127710.0 +2085,143205.0 +2086,135046.28 +2087,128540.0 +2088,116350.4 +2089,107900.0 +2090,137420.4 +2091,109720.0 +2092,115500.0 +2093,141887.4 +2094,144140.0 +2095,146750.0 +2096,88650.0 +2097,106290.4 +2098,145840.0 +2099,69200.0 +2100,111985.1 +2101,138026.8 +2102,142725.0 +2103,107635.0 +2104,123390.0 +2105,124133.4 +2106,110300.0 +2107,283423.8 +2108,124150.0 +2109,124900.0 +2110,122500.0 +2111,169750.0 +2112,157450.0 +2113,121150.0 +2114,114400.4 +2115,157055.0 +2116,139320.0 +2117,171035.0 +2118,125870.0 +2119,106980.0 +2120,101750.4 +2121,106960.0 +2122,109855.0 +2123,109950.0 +2124,202959.0 +2125,138425.0 +2126,171350.0 +2127,165809.9 +2128,133540.0 +2129,96740.0 +2130,147490.0 +2131,181950.0 +2132,127850.0 +2133,135800.0 +2134,126110.0 +2135,95175.0 +2136,90015.0 +2137,136230.0 +2138,139900.0 +2139,151860.0 +2140,134000.0 +2141,147780.0 +2142,136490.0 +2143,151545.3 +2144,98960.0 +2145,132275.0 +2146,132480.0 +2147,157650.0 +2148,115890.0 +2149,124480.0 +2150,236060.0 +2151,127990.0 +2152,206560.0 +2153,179785.0 +2154,108100.0 +2155,125890.0 +2156,225950.0 +2157,229685.0 +2158,224652.5 +2159,203795.3 +2160,160746.4 +2161,281488.1 +2162,399529.4 +2163,364271.2 +2164,240920.0 +2165,167800.0 +2166,142100.0 +2167,191714.0 +2168,209445.0 +2169,185890.0 +2170,229670.0 +2171,148790.0 +2172,153980.0 +2173,155005.3 +2174,263278.6 +2175,315731.1 +2176,278350.0 +2177,276630.0 +2178,232009.3 +2179,139758.33333333334 +2180,213375.0 +2181,189560.0 +2182,223922.2 +2183,201273.8 +2184,134110.0 +2185,120860.0 +2186,153170.0 +2187,149120.0 +2188,165173.2 +2189,172650.0 +2190,87050.0 +2191,85600.0 +2192,83020.0 +2193,119800.0 +2194,104875.0 +2195,115370.0 +2196,96150.0 +2197,122272.5 +2198,153500.0 +2199,167180.0 +2200,129800.0 +2201,142540.0 +2202,216400.0 +2203,166730.0 +2204,179740.0 +2205,110387.5 +2206,128230.0 +2207,200390.0 +2208,232530.0 +2209,185820.0 +2210,128600.0 +2211,118550.0 +2212,131870.0 +2213,112280.0 +2214,169940.0 +2215,104400.0 +2216,132490.0 +2217,85190.0 +2218,95120.0 +2219,87430.0 +2220,68270.0 +2221,267840.2 +2222,221067.4 +2223,262150.0 +2224,226265.0 +2225,132966.4 +2226,205460.0 +2227,194665.0 +2228,245143.3 +2229,228181.2 +2230,159293.8 +2231,212230.0 +2232,187920.5 +2233,171900.0 +2234,244335.6 +2235,208900.0 +2236,251650.0 +2237,329150.0 +2238,190620.0 +2239,145012.5 +2240,169380.0 +2241,146540.0 +2242,140970.0 +2243,124880.0 +2244,102450.0 +2245,92000.0 +2246,131740.0 +2247,114050.0 +2248,116000.0 +2249,122500.0 +2250,137200.0 +2251,121238.7 +2252,188270.0 +2253,155289.0 +2254,178690.0 +2255,194750.0 +2256,177540.0 +2257,203800.0 +2258,172224.0 +2259,182190.0 +2260,153040.0 +2261,185300.0 +2262,221300.0 +2263,317064.5 +2264,420623.1 +2265,159190.5 +2266,284130.0 +2267,332062.4 +2268,361276.7 +2269,167480.0 +2270,168710.5 +2271,191040.0 +2272,187880.0 +2273,168470.0 +2274,168860.0 +2275,166780.0 +2276,154390.0 +2277,187725.0 +2278,161315.5 +2279,130300.0 +2280,106360.0 +2281,178694.0 +2282,184470.0 +2283,94500.0 +2284,116400.0 +2285,153945.0 +2286,126470.0 +2287,346520.6 +2288,298271.9 +2289,388367.7 +2290,388482.0 +2291,323379.7 +2292,371462.4 +2293,419273.1 +2294,389929.8 +2295,418033.7 +2296,300051.5 +2297,303248.6 +2298,320840.0 +2299,399348.0 +2300,303620.0 +2301,259576.1 +2302,225130.0 +2303,253140.0 +2304,257422.1 +2305,186721.4 +2306,186721.4 +2307,191198.0 +2308,224751.7 +2309,287480.0 +2310,247124.6 +2311,182220.0 +2312,168878.5 +2313,170718.0 +2314,169887.2 +2315,169728.0 +2316,181349.0 +2317,175887.0 +2318,169922.5 +2319,188251.0 +2320,187904.2 +2321,241292.2 +2322,165901.7 +2323,167290.5 +2324,163973.2 +2325,219221.5 +2326,165300.0 +2327,201500.0 +2328,218619.0 +2329,184100.0 +2330,179350.0 +2331,344550.0 +2332,416084.2 +2333,298206.6 +2334,271080.0 +2335,258320.0 +2336,320530.0 +2337,206341.8 +2338,243518.9 +2339,253241.7 +2340,377722.5 +2341,215948.0 +2342,248880.0 +2343,224546.9 +2344,239067.5 +2345,259432.1 +2346,269316.8 +2347,190392.2 +2348,234214.4 +2349,164491.9 +2350,256540.7 +2351,262802.9 +2352,282419.3 +2353,222000.0 +2354,126000.0 +2355,129690.0 +2356,157880.0 +2357,197242.8 +2358,208150.0 +2359,126175.0 +2360,118700.0 +2361,138270.0 +2362,280628.0 +2363,135650.0 +2364,163590.0 +2365,222281.2 +2366,191800.0 +2367,262942.2 +2368,188728.2 +2369,233950.0 +2370,178340.0 +2371,181760.0 +2372,183251.9 +2373,271048.5 +2374,305970.0 +2375,250910.0 +2376,250397.9 +2377,309016.1 +2378,155625.0 +2379,201994.0 +2380,143620.0 +2381,154240.0 +2382,181160.0 +2383,215765.0 +2384,230388.0 +2385,149815.0 +2386,137780.0 +2387,136010.0 +2388,119175.0 +2389,129090.0 +2390,133100.0 +2391,133620.0 +2392,115280.0 +2393,159240.0 +2394,151100.0 +2395,185885.0 +2396,146100.0 +2397,183100.0 +2398,124386.0 +2399,64810.0 +2400,53030.0 +2401,127430.0 +2402,135930.0 +2403,137090.5 +2404,132025.0 +2405,149200.0 +2406,134546.0 +2407,113990.0 +2408,137385.0 +2409,145890.0 +2410,179320.0 +2411,121986.0 +2412,151850.0 +2413,128995.0 +2414,139415.0 +2415,128480.0 +2416,135665.0 +2417,127920.0 +2418,120550.0 +2419,118075.0 +2420,129686.0 +2421,147690.0 +2422,117276.0 +2423,117968.4 +2424,194175.0 +2425,149803.7 +2426,113790.0 +2427,128558.4 +2428,170610.0 +2429,106350.0 +2430,122300.0 +2431,123640.0 +2432,137165.0 +2433,141235.0 +2434,129120.0 +2435,152820.0 +2436,105710.0 +2437,110540.0 +2438,118540.0 +2439,118835.0 +2440,131375.0 +2441,106505.0 +2442,114300.0 +2443,126170.0 +2444,128300.0 +2445,112450.0 +2446,90540.0 +2447,202930.0 +2448,161000.0 +2449,102300.0 +2450,165080.0 +2451,125000.0 +2452,201097.9 +2453,90340.0 +2454,104385.0 +2455,119780.4 +2456,101550.0 +2457,118850.4 +2458,104660.0 +2459,104000.0 +2460,143490.0 +2461,116560.4 +2462,128500.0 +2463,106130.0 +2464,202480.0 +2465,126810.0 +2466,114140.0 +2467,154990.0 +2468,103940.0 +2469,107212.5 +2470,168930.0 +2471,198957.5 +2472,185850.0 +2473,113475.0 +2474,112560.0 +2475,188580.0 +2476,120400.4 +2477,129926.0 +2478,169250.0 +2479,119850.0 +2480,146075.0 +2481,123300.0 +2482,130715.0 +2483,118650.0 +2484,128492.0 +2485,118320.0 +2486,156080.0 +2487,176300.0 +2488,144825.4 +2489,152180.0 +2490,135390.0 +2491,97810.0 +2492,184590.0 +2493,132880.0 +2494,168640.0 +2495,98180.0 +2496,236378.0 +2497,123110.0 +2498,122480.0 +2499,103850.0 +2500,127962.5 +2501,116635.0 +2502,158652.5 +2503,114890.0 +2504,196190.0 +2505,206829.9 +2506,274519.5 +2507,385247.7 +2508,274519.5 +2509,218690.0 +2510,239452.2 +2511,185273.3 +2512,217937.8 +2513,225790.0 +2514,263100.0 +2515,144400.0 +2516,153249.7 +2517,133150.0 +2518,140995.0 +2519,232670.0 +2520,213720.0 +2521,188050.0 +2522,212910.0 +2523,122200.0 +2524,141830.0 +2525,143200.0 +2526,142600.0 +2527,127000.0 +2528,119090.0 +2529,134025.0 +2530,112940.0 +2531,223557.8 +2532,231590.0 +2533,202437.5 +2534,260600.0 +2535,280020.0 +2536,226750.0 +2537,220600.0 +2538,191150.0 +2539,178090.0 +2540,181136.0 +2541,180576.0 +2542,161982.1 +2543,129186.0 +2544,139760.0 +2545,118490.0 +2546,143390.0 +2547,146665.0 +2548,140486.5 +2549,159278.5 +2550,330963.6 +2551,144240.0 +2552,134475.0 +2553,85600.0 +2554,134200.0 +2555,113550.4 +2556,98980.0 +2557,109200.0 +2558,135840.0 +2559,125425.0 +2560,119890.4 +2561,133665.4 +2562,102450.0 +2563,142015.4 +2564,176460.0 +2565,120185.0 +2566,183145.0 +2567,120400.0 +2568,185000.0 +2569,176840.0 +2570,128600.0 +2571,164615.5 +2572,194750.0 +2573,213180.0 +2574,303400.0 +2575,131020.0 +2576,140331.8 +2577,146788.4 +2578,98640.0 +2579,81020.0 +2580,140317.1 +2581,133675.0 +2582,115450.0 +2583,254590.0 +2584,162775.0 +2585,185190.0 +2586,183725.0 +2587,188130.0 +2588,163985.0 +2589,145045.0 +2590,217030.0 +2591,191540.0 +2592,225016.5 +2593,234695.6 +2594,173220.0 +2595,217040.0 +2596,339035.2 +2597,208150.0 +2598,295997.0 +2599,351961.1 +2600,115640.0 +2601,145550.0 +2602,95750.0 +2603,93350.0 +2604,94800.0 +2605,99680.0 +2606,140946.0 +2607,157100.0 +2608,164810.0 +2609,146566.0 +2610,111000.0 +2611,117500.0 +2612,147825.0 +2613,116000.0 +2614,117500.0 +2615,141490.0 +2616,124440.0 +2617,185545.0 +2618,178790.0 +2619,213970.0 +2620,176670.0 +2621,178400.0 +2622,193250.0 +2623,255100.0 +2624,276568.6 +2625,311777.0 +2626,169610.0 +2627,180100.0 +2628,389730.2 +2629,438601.3 +2630,328139.6 +2631,420015.4 +2632,388493.2 +2633,306000.0 +2634,352363.0 +2635,152085.0 +2636,182240.0 +2637,157810.0 +2638,251142.8 +2639,177800.0 +2640,156760.0 +2641,113150.0 +2642,210005.0 +2643,120925.0 +2644,125880.0 +2645,94650.0 +2646,89700.0 +2647,93900.0 +2648,157090.0 +2649,144480.0 +2650,157325.0 +2651,149550.0 +2652,365829.7 +2653,256960.2 +2654,244048.4 +2655,334800.0 +2656,332066.8 +2657,308409.8 +2658,265875.4 +2659,324356.5 +2660,332344.3 +2661,316340.0 +2662,326300.0 +2663,265442.2 +2664,276440.0 +2665,280600.0 +2666,284530.0 +2667,167393.0 +2668,186971.5 +2669,182748.1 +2670,295113.9 +2671,186971.5 +2672,185417.4 +2673,200098.0 +2674,209433.7 +2675,168081.0 +2676,176802.5 +2677,197350.0 +2678,265909.8 +2679,283300.0 +2680,262600.0 +2681,399492.8 +2682,329762.0 +2683,449315.4 +2684,300275.0 +2685,330387.0 +2686,260618.3 +2687,255885.6 +2688,238701.7 +2689,234995.6 +2690,399236.2 +2691,195395.0 +2692,118699.0 +2693,198662.4 +2694,109249.0 +2695,191300.0 +2696,186328.5 +2697,214725.0 +2698,202500.0 +2699,182910.0 +2700,173640.0 +2701,150466.5 +2702,133510.0 +2703,162760.0 +2704,147390.0 +2705,129865.0 +2706,120250.0 +2707,129512.0 +2708,126325.0 +2709,103140.0 +2710,120650.0 +2711,248628.0 +2712,346517.8 +2713,173200.0 +2714,147566.93333333335 +2715,181970.0 +2716,149225.0 +2717,180856.5 +2718,241051.7 +2719,146710.0 +2720,145815.0 +2721,136170.0 +2722,163997.0 +2723,152121.66666666666 +2724,120170.0 +2725,126700.0 +2726,133150.0 +2727,168475.0 +2728,156340.0 +2729,135480.0 +2730,132935.0 +2731,112000.0 +2732,110000.0 +2733,163790.0 +2734,174820.0 +2735,127095.0 +2736,149100.0 +2737,118400.0 +2738,138990.5 +2739,156690.0 +2740,153550.0 +2741,153735.0 +2742,159100.0 +2743,148520.0 +2744,141227.5 +2745,134400.0 +2746,126630.0 +2747,150350.0 +2748,116070.0 +2749,122930.0 +2750,129860.0 +2751,118750.0 +2752,235030.0 +2753,142190.0 +2754,198840.0 +2755,130170.0 +2756,92950.0 +2757,89150.0 +2758,78420.0 +2759,158180.0 +2760,141440.0 +2761,140290.0 +2762,134747.5 +2763,201470.0 +2764,163760.0 +2765,294428.0 +2766,121400.0 +2767,99330.0 +2768,126850.0 +2769,137175.0 +2770,159120.0 +2771,120040.0 +2772,107590.0 +2773,136600.0 +2774,132578.7 +2775,142410.0 +2776,149050.0 +2777,165800.0 +2778,120995.2 +2779,102300.0 +2780,128840.0 +2781,100390.0 +2782,92500.0 +2783,103860.0 +2784,128040.0 +2785,125180.0 +2786,70640.0 +2787,119800.0 +2788,88940.0 +2789,245600.0 +2790,97530.0 +2791,128980.0 +2792,99740.0 +2793,178990.0 +2794,119960.0 +2795,117790.4 +2796,99390.0 +2797,199395.0 +2798,105160.0 +2799,121200.0 +2800,93260.0 +2801,117400.0 +2802,124600.4 +2803,183550.0 +2804,167990.0 +2805,108655.0 +2806,97590.0 +2807,147690.0 +2808,140850.0 +2809,134240.0 +2810,132040.0 +2811,158150.0 +2812,148825.0 +2813,166651.0 +2814,162911.0 +2815,106350.0 +2816,238050.0 +2817,150665.0 +2818,120725.0 +2819,183550.0 +2820,128520.0 +2821,110475.0 +2822,179325.0 +2823,240250.0 +2824,180925.0 +2825,164250.0 +2826,136170.0 +2827,133350.0 +2828,195500.0 +2829,185535.0 +2830,237581.4 +2831,192990.0 +2832,203267.4 +2833,246212.8 +2834,241393.3 +2835,218340.0 +2836,195350.0 +2837,155740.0 +2838,153590.0 +2839,185120.0 +2840,186062.9 +2841,210482.5 +2842,218700.0 +2843,155100.0 +2844,155265.0 +2845,115200.0 +2846,215365.0 +2847,198445.0 +2848,221290.0 +2849,209390.0 +2850,267421.3 +2851,237275.0 +2852,231390.0 +2853,234369.0 +2854,137333.33333333334 +2855,182885.0 +2856,213577.5 +2857,181988.5 +2858,188788.4 +2859,111550.0 +2860,118100.0 +2861,137452.5 +2862,204890.0 +2863,115883.33333333334 +2864,275050.0 +2865,141890.0 +2866,155220.0 +2867,90610.0 +2868,131165.0 +2869,101250.0 +2870,141230.0 +2871,104325.0 +2872,74040.0 +2873,114330.0 +2874,139862.5 +2875,121300.0 +2876,149780.0 +2877,157320.0 +2878,157750.0 +2879,122650.0 +2880,109537.5 +2881,143630.0 +2882,158645.0 +2883,147700.0 +2884,166280.0 +2885,166245.0 +2886,168030.0 +2887,106300.0 +2888,127175.0 +2889,62170.0 +2890,86880.0 +2891,136890.0 +2892,57810.0 +2893,112390.0 +2894,64350.0 +2895,254290.0 +2896,243550.0 +2897,192925.0 +2898,172210.5 +2899,245460.0 +2900,161130.0 +2901,184650.0 +2902,186794.0 +2903,338536.9 +2904,322135.2 +2905,101850.0 +2906,198540.0 +2907,118356.0 +2908,126550.0 +2909,140380.5 +2910,74380.0 +2911,95750.0 +2912,151210.0 +2913,96950.0 +2914,92300.0 +2915,92300.0 +2916,97350.0 +2917,141775.0 +2918,124460.0 +2919,232800.0 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/valid/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/valid/MLTable new file mode 100644 index 000000000000..44450efd7edf --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/valid/MLTable @@ -0,0 +1,7 @@ +paths: + - file: ./house_pricing_valid.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/valid/house_pricing_valid.csv b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/valid/house_pricing_valid.csv new file mode 100644 index 000000000000..a8222bbef9d6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/house_pricing/valid/house_pricing_valid.csv @@ -0,0 +1,13 @@ +Id,SalePrice +1496,207210 +1497,194970 +1498,155637.5 +1499,155750 +1500,153227.96 +1501,181970 +1502,149225 +1503,292298.4 +1504,237780 +1505,218207.9 +1506,197530 +1507,233000 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification/train/MLTable new file mode 100644 index 000000000000..a00ef86f0f42 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification/train/MLTable @@ -0,0 +1,10 @@ +paths: + - file: ./train_annotations.jsonl +transformations: + - read_json_lines: + encoding: utf8 + invalid_lines: error + include_path_column: false + - convert_column_types: + - columns: image_url + column_type: stream_info \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification/valid/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification/valid/MLTable new file mode 100644 index 000000000000..02ef2bd40b09 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification/valid/MLTable @@ -0,0 +1,10 @@ +paths: + - file: ./validation_annotations.jsonl +transformations: + - read_json_lines: + encoding: utf8 + invalid_lines: error + include_path_column: false + - convert_column_types: + - columns: image_url + column_type: stream_info \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification_multilabel/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification_multilabel/train/MLTable new file mode 100644 index 000000000000..a00ef86f0f42 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification_multilabel/train/MLTable @@ -0,0 +1,10 @@ +paths: + - file: ./train_annotations.jsonl +transformations: + - read_json_lines: + encoding: utf8 + invalid_lines: error + include_path_column: false + - convert_column_types: + - columns: image_url + column_type: stream_info \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification_multilabel/valid/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification_multilabel/valid/MLTable new file mode 100644 index 000000000000..02ef2bd40b09 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_classification_multilabel/valid/MLTable @@ -0,0 +1,10 @@ +paths: + - file: ./validation_annotations.jsonl +transformations: + - read_json_lines: + encoding: utf8 + invalid_lines: error + include_path_column: false + - convert_column_types: + - columns: image_url + column_type: stream_info \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/train/MLTable new file mode 100644 index 000000000000..a00ef86f0f42 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/train/MLTable @@ -0,0 +1,10 @@ +paths: + - file: ./train_annotations.jsonl +transformations: + - read_json_lines: + encoding: utf8 + invalid_lines: error + include_path_column: false + - convert_column_types: + - columns: image_url + column_type: stream_info \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/train/train_annotations.jsonl b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/train/train_annotations.jsonl new file mode 100644 index 000000000000..7e6122fb04ab --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/train/train_annotations.jsonl @@ -0,0 +1,102 @@ +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/10.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.24048096192384769, 0.6576576576576577, 0.23446893787575152, 0.6546546546546547, 0.23046092184368738, 0.6471471471471472, 0.21042084168336672, 0.512012012012012, 0.20240480961923848, 0.4039039039039039, 0.18236472945891782, 0.2672672672672673, 0.1843687374749499, 0.24174174174174173, 0.18036072144288579, 0.16666666666666666, 0.18637274549098196, 0.15915915915915915, 0.19839679358717435, 0.15615615615615616, 0.3967935871743487, 0.16216216216216217, 0.4088176352705411, 0.16966966966966968, 0.40681362725450904, 0.21771771771771772, 0.4148296593186373, 0.24924924924924924, 0.4228456913827655, 0.2627627627627628, 0.4228456913827655, 0.5690690690690691, 0.342685370741483, 0.5690690690690691, 0.3346693386773547, 0.5720720720720721, 0.32064128256513025, 0.5855855855855856, 0.30861723446893785, 0.6246246246246246, 0.3066132264529058, 0.6486486486486487, 0.24048096192384769, 0.6576576576576577]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6753507014028056, 0.7327327327327328, 0.6352705410821643, 0.7312312312312312, 0.6212424849699398, 0.7252252252252253, 0.5731462925851704, 0.7177177177177178, 0.5190380761523046, 0.7177177177177178, 0.5050100200400801, 0.7207207207207207, 0.46292585170340683, 0.7222222222222222, 0.43887775551102204, 0.7192192192192193, 0.3967935871743487, 0.7192192192192193, 0.3587174348697395, 0.7147147147147147, 0.3346693386773547, 0.7147147147147147, 0.3226452905811623, 0.7117117117117117, 0.312625250501002, 0.7012012012012012, 0.3066132264529058, 0.6876876876876877, 0.3046092184368738, 0.6636636636636637, 0.30861723446893785, 0.6306306306306306, 0.32064128256513025, 0.5960960960960962, 0.32064128256513025, 0.5885885885885885, 0.32665330661322645, 0.5795795795795796, 0.34468937875751504, 0.5690690690690691, 0.3787575150300601, 0.5690690690690691, 0.4969939879759519, 0.575075075075075, 0.5150300601202404, 0.5780780780780781, 0.531062124248497, 0.5840840840840841, 0.561122244488978, 0.5870870870870871, 0.6132264529058116, 0.5870870870870871, 0.6372745490981964, 0.5825825825825826, 0.6653306613226453, 0.5825825825825826, 0.7034068136272545, 0.5900900900900901, 0.7474949899799599, 0.6126126126126126, 0.7595190380761523, 0.6156156156156156, 0.781563126252505, 0.6156156156156156, 0.7995991983967936, 0.6081081081081081, 0.8096192384769539, 0.6066066066066066, 0.8156312625250501, 0.6081081081081081, 0.8296593186372746, 0.6186186186186187, 0.8637274549098196, 0.6201201201201201, 0.875751503006012, 0.6246246246246246, 0.8817635270541082, 0.6321321321321322, 0.8857715430861723, 0.6456456456456456, 0.8877755511022044, 0.6741741741741741, 0.8837675350701403, 0.6936936936936937, 0.8697394789579158, 0.7117117117117117, 0.8316633266533067, 0.7102102102102102, 0.8256513026052105, 0.7132132132132132, 0.8236472945891784, 0.7177177177177178, 0.8156312625250501, 0.7207207207207207, 0.8056112224448898, 0.7207207207207207, 0.7775551102204409, 0.7087087087087087, 0.7535070140280561, 0.7087087087087087, 0.7294589178356713, 0.7162162162162162, 0.7114228456913828, 0.7252252252252253, 0.6753507014028056, 0.7327327327327328]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/100.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5771543086172345, 0.6891891891891891, 0.5671342685370742, 0.6891891891891891, 0.5591182364729459, 0.6861861861861862, 0.3807615230460922, 0.5930930930930931, 0.3046092184368738, 0.5555555555555556, 0.29458917835671344, 0.545045045045045, 0.2905811623246493, 0.5345345345345346, 0.2745490981963928, 0.512012012012012, 0.27054108216432865, 0.496996996996997, 0.27054108216432865, 0.47897897897897895, 0.2845691382765531, 0.45345345345345345, 0.30861723446893785, 0.43243243243243246, 0.32665330661322645, 0.42342342342342343, 0.35671342685370744, 0.4159159159159159, 0.4188376753507014, 0.4174174174174174, 0.6352705410821643, 0.493993993993994, 0.6833667334669339, 0.5075075075075075, 0.7014028056112225, 0.5180180180180181, 0.7094188376753507, 0.5285285285285285, 0.7134268537074149, 0.545045045045045, 0.7194388777555111, 0.5540540540540541, 0.7194388777555111, 0.5795795795795796, 0.7134268537074149, 0.5975975975975976, 0.6973947895791583, 0.6216216216216216, 0.6953907815631263, 0.6291291291291291, 0.6312625250501002, 0.6786786786786787, 0.6192384769539078, 0.6831831831831832, 0.5951903807615231, 0.6831831831831832, 0.5771543086172345, 0.6891891891891891]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/101.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6052104208416834, 0.6156156156156156, 0.25851703406813625, 0.6156156156156156, 0.23046092184368738, 0.6126126126126126, 0.2124248496993988, 0.6066066066066066, 0.20240480961923848, 0.6066066066066066, 0.1843687374749499, 0.6021021021021021, 0.17234468937875752, 0.5960960960960962, 0.16633266533066132, 0.5960960960960962, 0.15030060120240482, 0.5765765765765766, 0.1523046092184369, 0.56006006006006, 0.16432865731462926, 0.5495495495495496, 0.15430861723446893, 0.5480480480480481, 0.14428857715430862, 0.5375375375375375, 0.14428857715430862, 0.5165165165165165, 0.15430861723446893, 0.509009009009009, 0.16633266533066132, 0.506006006006006, 0.156312625250501, 0.4984984984984985, 0.15030060120240482, 0.487987987987988, 0.1523046092184369, 0.47597597597597596, 0.16032064128256512, 0.46396396396396394, 0.1843687374749499, 0.45045045045045046, 0.23647294589178355, 0.43993993993993996, 0.39478957915831664, 0.44294294294294295, 0.5771543086172345, 0.44294294294294295, 0.6052104208416834, 0.4444444444444444, 0.6312625250501002, 0.45045045045045046, 0.6753507014028056, 0.47597597597597596, 0.6933867735470942, 0.4804804804804805, 0.7735470941883767, 0.487987987987988, 0.7855711422845691, 0.4924924924924925, 0.7895791583166333, 0.4924924924924925, 0.7955911823647295, 0.4864864864864865, 0.8416833667334669, 0.487987987987988, 0.8577154308617234, 0.493993993993994, 0.8697394789579158, 0.5195195195195195, 0.8697394789579158, 0.545045045045045, 0.8597194388777555, 0.566066066066066, 0.845691382765531, 0.575075075075075, 0.7935871743486974, 0.575075075075075, 0.7875751503006012, 0.5705705705705706, 0.779559118236473, 0.5705705705705706, 0.7635270541082164, 0.575075075075075, 0.7414829659318637, 0.575075075075075, 0.7214428857715431, 0.5795795795795796, 0.6973947895791583, 0.5795795795795796, 0.6753507014028056, 0.5840840840840841, 0.6533066132264529, 0.5990990990990991, 0.6312625250501002, 0.6066066066066066, 0.6292585170340681, 0.6096096096096096, 0.6212424849699398, 0.6096096096096096, 0.6192384769539078, 0.6126126126126126, 0.6052104208416834, 0.6156156156156156]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/102.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.593186372745491, 0.7507507507507507, 0.5671342685370742, 0.7507507507507507, 0.5450901803607214, 0.7447447447447447, 0.533066132264529, 0.7327327327327328, 0.5110220440881763, 0.7057057057057057, 0.5110220440881763, 0.7012012012012012, 0.5050100200400801, 0.6966966966966966, 0.503006012024048, 0.6891891891891891, 0.4709418837675351, 0.6591591591591591, 0.4649298597194389, 0.6561561561561562, 0.43887775551102204, 0.6531531531531531, 0.4088176352705411, 0.6411411411411412, 0.3867735470941884, 0.6246246246246246, 0.37074148296593185, 0.6066066066066066, 0.2865731462925852, 0.47147147147147145, 0.2865731462925852, 0.42342342342342343, 0.2905811623246493, 0.4219219219219219, 0.2905811623246493, 0.4189189189189189, 0.3026052104208417, 0.4069069069069069, 0.3226452905811623, 0.40540540540540543, 0.3306613226452906, 0.3993993993993994, 0.3306613226452906, 0.3918918918918919, 0.342685370741483, 0.38288288288288286, 0.3687374749498998, 0.3813813813813814, 0.3907815631262525, 0.38738738738738737, 0.4228456913827655, 0.38738738738738737, 0.4308617234468938, 0.39039039039039036, 0.5370741482965932, 0.47897897897897895, 0.5671342685370742, 0.5, 0.5671342685370742, 0.503003003003003, 0.5851703406813628, 0.5195195195195195, 0.5991983967935872, 0.5465465465465466, 0.6012024048096193, 0.56006006006006, 0.5951903807615231, 0.5930930930930931, 0.6092184368737475, 0.6111111111111112, 0.6172344689378757, 0.6276276276276276, 0.6332665330661322, 0.6381381381381381, 0.655310621242485, 0.6591591591591591, 0.6653306613226453, 0.6696696696696697, 0.6713426853707415, 0.6831831831831832, 0.6713426853707415, 0.6951951951951952, 0.6653306613226453, 0.7027027027027027, 0.6653306613226453, 0.7087087087087087, 0.6533066132264529, 0.7222222222222222, 0.625250501002004, 0.7402402402402403, 0.593186372745491, 0.7507507507507507]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/104.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5951903807615231, 0.6141141141141141, 0.5711422845691383, 0.6141141141141141, 0.5511022044088176, 0.6081081081081081, 0.43286573146292584, 0.53003003003003, 0.3807615230460922, 0.4984984984984985, 0.3687374749498998, 0.48348348348348347, 0.3667334669338677, 0.46846846846846846, 0.3587174348697395, 0.4594594594594595, 0.35671342685370744, 0.44894894894894893, 0.3587174348697395, 0.4294294294294294, 0.37074148296593185, 0.41291291291291293, 0.4088176352705411, 0.3888888888888889, 0.42685370741482964, 0.3858858858858859, 0.4709418837675351, 0.3858858858858859, 0.48697394789579157, 0.39039039039039036, 0.5290581162324649, 0.4099099099099099, 0.5511022044088176, 0.4174174174174174, 0.6172344689378757, 0.44894894894894893, 0.6492985971943888, 0.46096096096096095, 0.655310621242485, 0.46546546546546547, 0.6693386773547094, 0.46846846846846846, 0.6893787575150301, 0.4804804804804805, 0.6973947895791583, 0.4894894894894895, 0.7034068136272545, 0.506006006006006, 0.7034068136272545, 0.5285285285285285, 0.6973947895791583, 0.5465465465465466, 0.6733466933867736, 0.5795795795795796, 0.6432865731462926, 0.5990990990990991, 0.6192384769539078, 0.6081081081081081, 0.5971943887775552, 0.6111111111111112, 0.5951903807615231, 0.6141141141141141]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/105.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.657314629258517, 0.6891891891891891, 0.6432865731462926, 0.6891891891891891, 0.6232464929859719, 0.6831831831831832, 0.6152304609218436, 0.6831831831831832, 0.561122244488978, 0.6471471471471472, 0.501002004008016, 0.6126126126126126, 0.4789579158316633, 0.5945945945945946, 0.4529058116232465, 0.5705705705705706, 0.44889779559118237, 0.5705705705705706, 0.4348697394789579, 0.56006006006006, 0.4168336673346693, 0.5570570570570571, 0.39478957915831664, 0.5480480480480481, 0.3627254509018036, 0.5255255255255256, 0.3486973947895792, 0.5075075075075075, 0.34468937875751504, 0.493993993993994, 0.3366733466933868, 0.487987987987988, 0.3286573146292585, 0.4864864864864865, 0.31462925851703405, 0.47597597597597596, 0.30861723446893785, 0.46996996996997, 0.3026052104208417, 0.45495495495495497, 0.2925851703406814, 0.4444444444444444, 0.2905811623246493, 0.42492492492492495, 0.29458917835671344, 0.4159159159159159, 0.30861723446893785, 0.4039039039039039, 0.32665330661322645, 0.3948948948948949, 0.35671342685370744, 0.39039039039039036, 0.3867735470941884, 0.3918918918918919, 0.40080160320641284, 0.3963963963963964, 0.4148296593186373, 0.40540540540540543, 0.45490981963927857, 0.40540540540540543, 0.4789579158316633, 0.4099099099099099, 0.5090180360721442, 0.42042042042042044, 0.5390781563126252, 0.4444444444444444, 0.5551102204408818, 0.4519519519519519, 0.6212424849699398, 0.46546546546546547, 0.6633266533066132, 0.484984984984985, 0.7434869739478958, 0.515015015015015, 0.7735470941883767, 0.5330330330330331, 0.7835671342685371, 0.5540540540540541, 0.7855711422845691, 0.575075075075075, 0.7735470941883767, 0.6051051051051051, 0.7555110220440882, 0.6321321321321322, 0.7474949899799599, 0.6381381381381381, 0.7454909819639278, 0.6441441441441441, 0.7154308617234469, 0.6681681681681682, 0.687374749498998, 0.6801801801801802, 0.685370741482966, 0.6831831831831832, 0.657314629258517, 0.6891891891891891]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/106.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.30060120240480964, 0.7027027027027027, 0.2685370741482966, 0.6966966966966966, 0.250501002004008, 0.6831831831831832, 0.22444889779559118, 0.6531531531531531, 0.218436873747495, 0.6336336336336337, 0.218436873747495, 0.6216216216216216, 0.22244488977955912, 0.6141141141141141, 0.22645290581162325, 0.6096096096096096, 0.23847695390781562, 0.6051051051051051, 0.2565130260521042, 0.5930930930930931, 0.25851703406813625, 0.5825825825825826, 0.2665330661322645, 0.575075075075075, 0.2925851703406814, 0.566066066066066, 0.31462925851703405, 0.5675675675675675, 0.32665330661322645, 0.5585585585585585, 0.3306613226452906, 0.5465465465465466, 0.3406813627254509, 0.5315315315315315, 0.3807615230460922, 0.5015015015015015, 0.4028056112224449, 0.493993993993994, 0.43887775551102204, 0.487987987987988, 0.46092184368737477, 0.4804804804804805, 0.503006012024048, 0.4519519519519519, 0.5971943887775552, 0.4144144144144144, 0.6152304609218436, 0.4114114114114114, 0.6392785571142284, 0.4144144144144144, 0.6633266533066132, 0.42492492492492495, 0.6893787575150301, 0.44144144144144143, 0.7034068136272545, 0.45795795795795796, 0.7094188376753507, 0.4894894894894895, 0.7034068136272545, 0.5075075075075075, 0.6813627254509018, 0.527027027027027, 0.6533066132264529, 0.5405405405405406, 0.6092184368737475, 0.5690690690690691, 0.5951903807615231, 0.5720720720720721, 0.5811623246492986, 0.5795795795795796, 0.5651302605210421, 0.5825825825825826, 0.5410821643286573, 0.5975975975975976, 0.5250501002004008, 0.6126126126126126, 0.5250501002004008, 0.6156156156156156, 0.49298597194388777, 0.6366366366366366, 0.46092184368737477, 0.6486486486486487, 0.44488977955911824, 0.6501501501501501, 0.43887775551102204, 0.6531531531531531, 0.40080160320641284, 0.6501501501501501, 0.3927855711422846, 0.6546546546546547, 0.38877755511022044, 0.6591591591591591, 0.3867735470941884, 0.6696696696696697, 0.3687374749498998, 0.6846846846846847, 0.35470941883767537, 0.6891891891891891, 0.32665330661322645, 0.6891891891891891, 0.3186372745490982, 0.6966966966966966, 0.30060120240480964, 0.7027027027027027]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/107.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3246492985971944, 0.7462462462462462, 0.2965931863727455, 0.7462462462462462, 0.250501002004008, 0.7327327327327328, 0.23847695390781562, 0.7207207207207207, 0.23046092184368738, 0.7087087087087087, 0.22645290581162325, 0.6996996996996997, 0.23046092184368738, 0.6801801801801802, 0.22645290581162325, 0.6771771771771772, 0.22444889779559118, 0.6621621621621622, 0.23046092184368738, 0.6411411411411412, 0.24448897795591182, 0.6306306306306306, 0.24448897795591182, 0.6201201201201201, 0.23647294589178355, 0.6021021021021021, 0.23647294589178355, 0.5885885885885885, 0.2545090180360721, 0.5480480480480481, 0.28256513026052105, 0.524024024024024, 0.2845691382765531, 0.4924924924924925, 0.2925851703406814, 0.48348348348348347, 0.29458917835671344, 0.47597597597597596, 0.3026052104208417, 0.46846846846846846, 0.31462925851703405, 0.44144144144144143, 0.3226452905811623, 0.4339339339339339, 0.3527054108216433, 0.4189189189189189, 0.38877755511022044, 0.4144144144144144, 0.4228456913827655, 0.4219219219219219, 0.44288577154308617, 0.43243243243243246, 0.4649298597194389, 0.45045045045045046, 0.4709418837675351, 0.46396396396396394, 0.4709418837675351, 0.4804804804804805, 0.46693386773547096, 0.4894894894894895, 0.46092184368737477, 0.53003003003003, 0.4529058116232465, 0.5465465465465466, 0.44488977955911824, 0.5555555555555556, 0.44488977955911824, 0.5645645645645646, 0.45090180360721444, 0.5735735735735735, 0.45090180360721444, 0.5975975975975976, 0.4408817635270541, 0.6231231231231231, 0.40681362725450904, 0.6546546546546547, 0.4088176352705411, 0.6696696696696697, 0.4028056112224449, 0.6876876876876877, 0.3907815631262525, 0.6996996996996997, 0.3907815631262525, 0.7027027027027027, 0.3807615230460922, 0.7072072072072072, 0.37675350701402804, 0.7207207207207207, 0.3687374749498998, 0.7297297297297297, 0.35470941883767537, 0.7372372372372372, 0.3246492985971944, 0.7462462462462462]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.6813627254509018, 0.6651651651651652, 0.655310621242485, 0.6651651651651652, 0.625250501002004, 0.6576576576576577, 0.6132264529058116, 0.6516516516516516, 0.5711422845691383, 0.6156156156156156, 0.5591182364729459, 0.5855855855855856, 0.5470941883767535, 0.521021021021021, 0.5350701402805611, 0.49099099099099097, 0.533066132264529, 0.47297297297297297, 0.5450901803607214, 0.44894894894894893, 0.5651302605210421, 0.43243243243243246, 0.6072144288577155, 0.4189189189189189, 0.6392785571142284, 0.4189189189189189, 0.6633266533066132, 0.42342342342342343, 0.687374749498998, 0.4369369369369369, 0.7234468937875751, 0.484984984984985, 0.7474949899799599, 0.5255255255255256, 0.751503006012024, 0.527027027027027, 0.7595190380761523, 0.5420420420420421, 0.7695390781563126, 0.5525525525525525, 0.7755511022044088, 0.5705705705705706, 0.7695390781563126, 0.6126126126126126, 0.7555110220440882, 0.6351351351351351, 0.7294589178356713, 0.6516516516516516, 0.6813627254509018, 0.6651651651651652]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/109.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3106212424849699, 0.7852852852852853, 0.27054108216432865, 0.7837837837837838, 0.24849699398797595, 0.7762762762762763, 0.22444889779559118, 0.7597597597597597, 0.21643286573146292, 0.7477477477477478, 0.21442885771543085, 0.7387387387387387, 0.218436873747495, 0.7297297297297297, 0.218436873747495, 0.7192192192192193, 0.21042084168336672, 0.7072072072072072, 0.20841683366733466, 0.6936936936936937, 0.2124248496993988, 0.6786786786786787, 0.22244488977955912, 0.6651651651651652, 0.22845691382765532, 0.6636636636636637, 0.22845691382765532, 0.6561561561561562, 0.21643286573146292, 0.6321321321321322, 0.21442885771543085, 0.5975975975975976, 0.22645290581162325, 0.575075075075075, 0.2565130260521042, 0.5435435435435435, 0.2545090180360721, 0.5285285285285285, 0.2605210420841683, 0.5015015015015015, 0.27054108216432865, 0.484984984984985, 0.280561122244489, 0.45645645645645644, 0.2925851703406814, 0.4369369369369369, 0.3066132264529058, 0.4294294294294294, 0.33867735470941884, 0.4189189189189189, 0.3787575150300601, 0.4174174174174174, 0.4228456913827655, 0.4339339339339339, 0.43887775551102204, 0.44594594594594594, 0.45090180360721444, 0.46096096096096095, 0.45090180360721444, 0.5285285285285285, 0.4468937875751503, 0.5435435435435435, 0.4348697394789579, 0.566066066066066, 0.4348697394789579, 0.5735735735735735, 0.44488977955911824, 0.5975975975975976, 0.44488977955911824, 0.6126126126126126, 0.43687374749499, 0.6426426426426426, 0.4228456913827655, 0.6561561561561562, 0.4148296593186373, 0.6696696696696697, 0.4028056112224449, 0.6786786786786787, 0.4088176352705411, 0.6921921921921922, 0.40480961923847697, 0.7177177177177178, 0.38276553106212424, 0.7387387387387387, 0.38276553106212424, 0.7477477477477478, 0.3787575150300601, 0.7537537537537538, 0.3667334669338677, 0.7672672672672672, 0.35671342685370744, 0.7732732732732732, 0.3346693386773547, 0.7822822822822822, 0.3106212424849699, 0.7852852852852853]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7875751503006012, 0.5960960960960962, 0.7354709418837675, 0.5960960960960962, 0.48096192384769537, 0.5870870870870871, 0.46092184368737477, 0.5675675675675675, 0.4589178356713427, 0.5045045045045045, 0.46092184368737477, 0.47597597597597596, 0.4649298597194389, 0.46396396396396394, 0.4749498997995992, 0.4594594594594595, 0.4909819639278557, 0.4444444444444444, 0.4969939879759519, 0.4444444444444444, 0.5230460921843687, 0.44744744744744747, 0.7835671342685371, 0.44894894894894893, 0.8176352705410822, 0.46546546546546547, 0.8396793587174348, 0.46546546546546547, 0.8476953907815631, 0.4744744744744745, 0.8577154308617234, 0.5105105105105106, 0.8557114228456913, 0.5435435435435435, 0.8496993987975952, 0.5630630630630631, 0.8376753507014028, 0.5825825825825826, 0.8216432865731463, 0.5825825825825826, 0.8096192384769539, 0.5855855855855856, 0.7875751503006012, 0.5960960960960962]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/11.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.22044088176352705, 0.7672672672672672, 0.20240480961923848, 0.7672672672672672, 0.19839679358717435, 0.7627627627627628, 0.19839679358717435, 0.7447447447447447, 0.17034068136272545, 0.6141141141141141, 0.15430861723446893, 0.5225225225225225, 0.12024048096192384, 0.36486486486486486, 0.11422845691382766, 0.35135135135135137, 0.11823647294589178, 0.3258258258258258, 0.11623246492985972, 0.23273273273273273, 0.12424849699398798, 0.22672672672672672, 0.1402805611222445, 0.22372372372372373, 0.3587174348697395, 0.22372372372372373, 0.3687374749498998, 0.22972972972972974, 0.37074148296593185, 0.30180180180180183, 0.37675350701402804, 0.32432432432432434, 0.3867735470941884, 0.33933933933933935, 0.38877755511022044, 0.4114114114114114, 0.40080160320641284, 0.5675675675675675, 0.40681362725450904, 0.5825825825825826, 0.4088176352705411, 0.6096096096096096, 0.4088176352705411, 0.6816816816816816, 0.41282565130260523, 0.6981981981981982, 0.4148296593186373, 0.7402402402402403, 0.41082164328657317, 0.7447447447447447, 0.40480961923847697, 0.7462462462462462, 0.33867735470941884, 0.7507507507507507, 0.30060120240480964, 0.7582582582582582, 0.2545090180360721, 0.7612612612612613, 0.22044088176352705, 0.7672672672672672]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7635270541082164, 0.7507507507507507, 0.7474949899799599, 0.7507507507507507, 0.7354709418837675, 0.7477477477477478, 0.7254509018036072, 0.7387387387387387, 0.7254509018036072, 0.7342342342342343, 0.7194388777555111, 0.7297297297297297, 0.7074148296593187, 0.7342342342342343, 0.6953907815631263, 0.7312312312312312, 0.6813627254509018, 0.7177177177177178, 0.6693386773547094, 0.6936936936936937, 0.6633266533066132, 0.6531531531531531, 0.6693386773547094, 0.5705705705705706, 0.6693386773547094, 0.47897897897897895, 0.6773547094188377, 0.44894894894894893, 0.6913827655310621, 0.43093093093093093, 0.7134268537074149, 0.4144144144144144, 0.7214428857715431, 0.4009009009009009, 0.7374749498997996, 0.3408408408408408, 0.7434869739478958, 0.3303303303303303, 0.7434869739478958, 0.32432432432432434, 0.7394789579158316, 0.31981981981981983, 0.7414829659318637, 0.2822822822822823, 0.751503006012024, 0.27627627627627627, 0.7615230460921844, 0.2747747747747748, 0.8296593186372746, 0.2747747747747748, 0.8577154308617234, 0.27927927927927926, 0.8637274549098196, 0.2822822822822823, 0.8657314629258517, 0.2882882882882883, 0.8617234468937875, 0.3228228228228228, 0.8537074148296593, 0.32882882882882886, 0.8537074148296593, 0.33933933933933935, 0.8577154308617234, 0.34384384384384387, 0.8597194388777555, 0.4024024024024024, 0.8637274549098196, 0.4159159159159159, 0.8937875751503006, 0.4444444444444444, 0.8977955911823647, 0.45795795795795796, 0.8977955911823647, 0.481981981981982, 0.8917835671342685, 0.506006006006006, 0.8897795591182365, 0.5330330330330331, 0.8637274549098196, 0.6891891891891891, 0.8517034068136272, 0.7042042042042042, 0.8476953907815631, 0.7147147147147147, 0.843687374749499, 0.7162162162162162, 0.8416833667334669, 0.7237237237237237, 0.8236472945891784, 0.7417417417417418, 0.8096192384769539, 0.7477477477477478, 0.7995991983967936, 0.7477477477477478, 0.7875751503006012, 0.7417417417417418, 0.781563126252505, 0.7342342342342343, 0.7635270541082164, 0.7507507507507507]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/110.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.49498997995991983, 0.6216216216216216, 0.45090180360721444, 0.6216216216216216, 0.4248496993987976, 0.6141141141141141, 0.40080160320641284, 0.6111111111111112, 0.33867735470941884, 0.6111111111111112, 0.30861723446893785, 0.6186186186186187, 0.1523046092184369, 0.6186186186186187, 0.1342685370741483, 0.6156156156156156, 0.12424849699398798, 0.6081081081081081, 0.11623246492985972, 0.5975975975975976, 0.1062124248496994, 0.5720720720720721, 0.10420841683366733, 0.5465465465465466, 0.11422845691382766, 0.5015015015015015, 0.12625250501002003, 0.48348348348348347, 0.1402805611222445, 0.4744744744744745, 0.15831663326653306, 0.46996996996997, 0.1903807615230461, 0.46996996996997, 0.29458917835671344, 0.47297297297297297, 0.35070140280561124, 0.481981981981982, 0.3807615230460922, 0.48348348348348347, 0.4348697394789579, 0.481981981981982, 0.44488977955911824, 0.4774774774774775, 0.4849699398797595, 0.4774774774774775, 0.5250501002004008, 0.4864864864864865, 0.5531062124248497, 0.5015015015015015, 0.5651302605210421, 0.5045045045045045, 0.591182364729459, 0.5045045045045045, 0.6112224448897795, 0.496996996996997, 0.6212424849699398, 0.496996996996997, 0.6332665330661322, 0.5075075075075075, 0.6613226452905812, 0.5075075075075075, 0.6793587174348698, 0.512012012012012, 0.685370741482966, 0.527027027027027, 0.685370741482966, 0.5675675675675675, 0.6813627254509018, 0.5885885885885885, 0.6713426853707415, 0.5975975975975976, 0.6312625250501002, 0.5975975975975976, 0.6232464929859719, 0.6066066066066066, 0.6072144288577155, 0.6051051051051051, 0.5891783567134269, 0.5975975975975976, 0.5591182364729459, 0.5975975975975976, 0.5210420841683366, 0.6126126126126126, 0.5190380761523046, 0.6156156156156156, 0.4969939879759519, 0.6186186186186187, 0.49498997995991983, 0.6216216216216216]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7735470941883767, 0.6111111111111112, 0.7414829659318637, 0.6081081081081081, 0.7254509018036072, 0.6036036036036037, 0.7034068136272545, 0.5945945945945946, 0.6833667334669339, 0.581081081081081, 0.687374749498998, 0.56006006006006, 0.685370741482966, 0.521021021021021, 0.6813627254509018, 0.512012012012012, 0.6713426853707415, 0.5075075075075075, 0.6713426853707415, 0.5, 0.6973947895791583, 0.3633633633633634, 0.7054108216432866, 0.35135135135135137, 0.7194388777555111, 0.34234234234234234, 0.7214428857715431, 0.32732732732732733, 0.7254509018036072, 0.3228228228228228, 0.7414829659318637, 0.31681681681681684, 0.8056112224448898, 0.3123123123123123, 0.8717434869739479, 0.3228228228228228, 0.8917835671342685, 0.3303303303303303, 0.8997995991983968, 0.33783783783783783, 0.9018036072144289, 0.34384384384384387, 0.8977955911823647, 0.35735735735735735, 0.9078156312625251, 0.3738738738738739, 0.9098196392785571, 0.3948948948948949, 0.8977955911823647, 0.4294294294294294, 0.8937875751503006, 0.45345345345345345, 0.8857715430861723, 0.47147147147147145, 0.8777555110220441, 0.506006006006006, 0.8697394789579158, 0.521021021021021, 0.8537074148296593, 0.581081081081081, 0.8416833667334669, 0.5930930930930931, 0.8156312625250501, 0.6036036036036037, 0.7935871743486974, 0.6096096096096096, 0.7735470941883767, 0.6111111111111112]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/111.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3166332665330661, 0.7417417417417418, 0.2985971943887776, 0.7387387387387387, 0.2845691382765531, 0.7237237237237237, 0.26452905811623245, 0.7222222222222222, 0.250501002004008, 0.7102102102102102, 0.24248496993987975, 0.6966966966966966, 0.23446893787575152, 0.6726726726726727, 0.23046092184368738, 0.6276276276276276, 0.20440881763527055, 0.47597597597597596, 0.20440881763527055, 0.45495495495495497, 0.21042084168336672, 0.44144144144144143, 0.22244488977955912, 0.42492492492492495, 0.23046092184368738, 0.4189189189189189, 0.24048096192384769, 0.3993993993993994, 0.24248496993987975, 0.33933933933933935, 0.24649298597194388, 0.3258258258258258, 0.24248496993987975, 0.32432432432432434, 0.23847695390781562, 0.31681681681681684, 0.23446893787575152, 0.2807807807807808, 0.23847695390781562, 0.27627627627627627, 0.25250501002004005, 0.27177177177177175, 0.2925851703406814, 0.2672672672672673, 0.32064128256513025, 0.2672672672672673, 0.34468937875751504, 0.2702702702702703, 0.35671342685370744, 0.2777777777777778, 0.36072144288577157, 0.31681681681681684, 0.35470941883767537, 0.3258258258258258, 0.36072144288577157, 0.33633633633633636, 0.3727454909819639, 0.3858858858858859, 0.3807615230460922, 0.4039039039039039, 0.4028056112224449, 0.42042042042042044, 0.4188376753507014, 0.43843843843843844, 0.4248496993987976, 0.46546546546546547, 0.4248496993987976, 0.551051051051051, 0.4308617234468938, 0.6606606606606606, 0.42685370741482964, 0.6876876876876877, 0.4168336673346693, 0.7027027027027027, 0.40681362725450904, 0.7102102102102102, 0.40080160320641284, 0.7102102102102102, 0.38877755511022044, 0.7267267267267268, 0.374749498997996, 0.7342342342342343, 0.3667334669338677, 0.7357357357357357, 0.3587174348697395, 0.7327327327327328, 0.35070140280561124, 0.7267267267267268, 0.3486973947895792, 0.7192192192192193, 0.342685370741483, 0.7162162162162162, 0.3366733466933868, 0.7312312312312312, 0.3166332665330661, 0.7417417417417418]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.5490981963927856, 0.7492492492492493, 0.5450901803607214, 0.7492492492492493, 0.5390781563126252, 0.7432432432432432, 0.44488977955911824, 0.6621621621621622, 0.44889779559118237, 0.6261261261261262, 0.45490981963927857, 0.28678678678678676, 0.4789579158316633, 0.26876876876876876, 0.5190380761523046, 0.24624624624624625, 0.5190380761523046, 0.2147147147147147, 0.5250501002004008, 0.2057057057057057, 0.531062124248497, 0.20270270270270271, 0.7014028056112225, 0.1996996996996997, 0.7134268537074149, 0.2057057057057057, 0.7114228456913828, 0.24324324324324326, 0.749498997995992, 0.2702702702702703, 0.7755511022044088, 0.29429429429429427, 0.779559118236473, 0.30180180180180183, 0.7254509018036072, 0.5840840840840841, 0.7094188376753507, 0.6816816816816816, 0.7094188376753507, 0.6981981981981982, 0.5490981963927856, 0.7492492492492493]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/113.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.20040080160320642, 0.5615615615615616, 0.19839679358717435, 0.56006006006006, 0.17034068136272545, 0.38288288288288286, 0.17234468937875752, 0.3708708708708709, 0.18036072144288579, 0.35435435435435436, 0.20440881763527055, 0.32732732732732733, 0.20641282565130262, 0.2672672672672673, 0.2124248496993988, 0.25975975975975973, 0.2124248496993988, 0.24924924924924924, 0.20240480961923848, 0.24474474474474475, 0.20240480961923848, 0.2057057057057057, 0.20841683366733466, 0.20270270270270271, 0.22444889779559118, 0.2012012012012012, 0.30060120240480964, 0.20270270270270271, 0.3106212424849699, 0.2042042042042042, 0.3166332665330661, 0.2147147147147147, 0.3166332665330661, 0.24474474474474475, 0.312625250501002, 0.24924924924924924, 0.312625250501002, 0.25675675675675674, 0.3226452905811623, 0.27927927927927926, 0.3306613226452906, 0.31681681681681684, 0.33867735470941884, 0.3303303303303303, 0.36472945891783565, 0.35135135135135137, 0.37675350701402804, 0.37237237237237236, 0.38276553106212424, 0.5405405405405406, 0.20040080160320642, 0.5615615615615616]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.23847695390781562, 0.8198198198198198, 0.23446893787575152, 0.8153153153153153, 0.22645290581162325, 0.7582582582582582, 0.218436873747495, 0.7387387387387387, 0.2124248496993988, 0.7102102102102102, 0.20440881763527055, 0.6966966966966966, 0.1963927855711423, 0.6471471471471472, 0.1903807615230461, 0.6306306306306306, 0.1903807615230461, 0.6111111111111112, 0.1843687374749499, 0.5855855855855856, 0.1843687374749499, 0.5690690690690691, 0.18837675350701402, 0.5645645645645646, 0.32064128256513025, 0.5480480480480481, 0.37074148296593185, 0.545045045045045, 0.47695390781563124, 0.5315315315315315, 0.6833667334669339, 0.5105105105105106, 0.7294589178356713, 0.503003003003003, 0.7454909819639278, 0.509009009009009, 0.7855711422845691, 0.5180180180180181, 0.8236472945891784, 0.5315315315315315, 0.845691382765531, 0.5330330330330331, 0.8577154308617234, 0.53003003003003, 0.8717434869739479, 0.53003003003003, 0.8777555110220441, 0.5345345345345346, 0.8557114228456913, 0.5825825825825826, 0.8557114228456913, 0.5915915915915916, 0.8677354709418837, 0.5915915915915916, 0.87374749498998, 0.5945945945945946, 0.8777555110220441, 0.6081081081081081, 0.8717434869739479, 0.6501501501501501, 0.8657314629258517, 0.6576576576576577, 0.8577154308617234, 0.6606606606606606, 0.8416833667334669, 0.6576576576576577, 0.8276553106212425, 0.6576576576576577, 0.8256513026052105, 0.6591591591591591, 0.8216432865731463, 0.6936936936936937, 0.8156312625250501, 0.7057057057057057, 0.8096192384769539, 0.7102102102102102, 0.503006012024048, 0.7672672672672672, 0.4028056112224449, 0.7882882882882883, 0.28256513026052105, 0.8093093093093093, 0.280561122244489, 0.8123123123123123, 0.2685370741482966, 0.8123123123123123, 0.23847695390781562, 0.8198198198198198]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/114.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.19839679358717435, 0.545045045045045, 0.1963927855711423, 0.5435435435435435, 0.19438877755511022, 0.5375375375375375, 0.15831663326653306, 0.37537537537537535, 0.15831663326653306, 0.35135135135135137, 0.18637274549098196, 0.3078078078078078, 0.18637274549098196, 0.24024024024024024, 0.1903807615230461, 0.23573573573573572, 0.1903807615230461, 0.22822822822822822, 0.1843687374749499, 0.22822822822822822, 0.18036072144288579, 0.22072072072072071, 0.17635270541082165, 0.18468468468468469, 0.18637274549098196, 0.17867867867867868, 0.19839679358717435, 0.17717717717717718, 0.23046092184368738, 0.17417417417417416, 0.2785571142284569, 0.17567567567567569, 0.2925851703406814, 0.1816816816816817, 0.2985971943887776, 0.21771771771771772, 0.2985971943887776, 0.22072072072072071, 0.2925851703406814, 0.22372372372372373, 0.2925851703406814, 0.22972972972972974, 0.3026052104208417, 0.24474474474474475, 0.3186372745490982, 0.30180180180180183, 0.3486973947895792, 0.3258258258258258, 0.36472945891783565, 0.35285285285285284, 0.37074148296593185, 0.42342342342342343, 0.38276553106212424, 0.506006006006006, 0.38276553106212424, 0.5285285285285285, 0.19839679358717435, 0.545045045045045]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.17034068136272545, 0.8108108108108109, 0.16032064128256512, 0.8078078078078078, 0.15831663326653306, 0.7837837837837838, 0.14428857715430862, 0.7252252252252253, 0.13026052104208416, 0.6771771771771772, 0.12224448897795591, 0.6636636636636637, 0.12224448897795591, 0.6546546546546547, 0.1282565130260521, 0.6396396396396397, 0.1342685370741483, 0.581081081081081, 0.1402805611222445, 0.5690690690690691, 0.1402805611222445, 0.5555555555555556, 0.14428857715430862, 0.5495495495495496, 0.16432865731462926, 0.5495495495495496, 0.4168336673346693, 0.5285285285285285, 0.6833667334669339, 0.5045045045045045, 0.7294589178356713, 0.503003003003003, 0.7354709418837675, 0.5045045045045045, 0.7474949899799599, 0.512012012012012, 0.7755511022044088, 0.5405405405405406, 0.7875751503006012, 0.5375375375375375, 0.8076152304609219, 0.527027027027027, 0.8256513026052105, 0.5345345345345346, 0.8637274549098196, 0.5765765765765766, 0.8657314629258517, 0.5855855855855856, 0.8557114228456913, 0.5915915915915916, 0.8557114228456913, 0.5945945945945946, 0.9198396793587175, 0.6591591591591591, 0.9198396793587175, 0.6621621621621622, 0.9138276553106213, 0.6651651651651652, 0.8917835671342685, 0.6636636636636637, 0.8697394789579158, 0.6666666666666666, 0.8296593186372746, 0.7087087087087087, 0.7935871743486974, 0.7372372372372372, 0.7695390781563126, 0.7372372372372372, 0.6653306613226453, 0.7492492492492493, 0.4168336673346693, 0.7807807807807807, 0.20040080160320642, 0.8048048048048048, 0.17034068136272545, 0.8108108108108109]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/115.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.6613226452905812, 0.6306306306306306, 0.627254509018036, 0.6171171171171171, 0.5711422845691383, 0.6036036036036037, 0.4749498997995992, 0.5765765765765766, 0.46893787575150303, 0.5720720720720721, 0.46893787575150303, 0.2552552552552553, 0.4789579158316633, 0.23423423423423423, 0.4789579158316633, 0.1921921921921922, 0.4849699398797595, 0.1831831831831832, 0.5571142284569138, 0.1816816816816817, 0.6753507014028056, 0.18468468468468469, 0.6813627254509018, 0.18618618618618618, 0.6893787575150301, 0.19369369369369369, 0.685370741482966, 0.2012012012012012, 0.6833667334669339, 0.23273273273273273, 0.6893787575150301, 0.23873873873873874, 0.7074148296593187, 0.28678678678678676, 0.6913827655310621, 0.37237237237237236, 0.6653306613226453, 0.6021021021021021, 0.6653306613226453, 0.6246246246246246, 0.6613226452905812, 0.6306306306306306]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8336673346693386, 0.8243243243243243, 0.8256513026052105, 0.8243243243243243, 0.7775551102204409, 0.8078078078078078, 0.7715430861723447, 0.7987987987987988, 0.749498997995992, 0.7972972972972973, 0.6733466933867736, 0.7792792792792793, 0.6492985971943888, 0.7792792792792793, 0.6212424849699398, 0.7867867867867868, 0.5971943887775552, 0.7867867867867868, 0.5791583166332666, 0.7837837837837838, 0.5571142284569138, 0.7747747747747747, 0.533066132264529, 0.7687687687687688, 0.5190380761523046, 0.7612612612612613, 0.3066132264529058, 0.6816816816816816, 0.2845691382765531, 0.6636636636636637, 0.2725450901803607, 0.6471471471471472, 0.2725450901803607, 0.6411411411411412, 0.28256513026052105, 0.6321321321321322, 0.28256513026052105, 0.6276276276276276, 0.27655310621242485, 0.6246246246246246, 0.2725450901803607, 0.6156156156156156, 0.2725450901803607, 0.6096096096096096, 0.2785571142284569, 0.5990990990990991, 0.2965931863727455, 0.5930930930930931, 0.312625250501002, 0.5915915915915916, 0.3026052104208417, 0.5825825825825826, 0.3026052104208417, 0.5765765765765766, 0.30861723446893785, 0.566066066066066, 0.32064128256513025, 0.56006006006006, 0.3486973947895792, 0.5585585585585585, 0.35070140280561124, 0.5555555555555556, 0.3587174348697395, 0.5540540540540541, 0.38877755511022044, 0.5540540540540541, 0.6032064128256514, 0.6141141141141141, 0.627254509018036, 0.6186186186186187, 0.6533066132264529, 0.6276276276276276, 0.687374749498998, 0.6471471471471472, 0.7074148296593187, 0.6696696696696697, 0.7074148296593187, 0.6726726726726727, 0.7194388777555111, 0.6831831831831832, 0.7955911823647295, 0.7147147147147147, 0.8056112224448898, 0.7222222222222222, 0.8196392785571143, 0.7192192192192193, 0.8657314629258517, 0.7342342342342343, 0.87374749498998, 0.7387387387387387, 0.875751503006012, 0.7477477477477478, 0.8657314629258517, 0.7807807807807807, 0.8476953907815631, 0.8108108108108109, 0.8336673346693386, 0.8243243243243243]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/116.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.28857715430861725, 0.7147147147147147, 0.2785571142284569, 0.7147147147147147, 0.2665330661322645, 0.7027027027027027, 0.2605210420841683, 0.6936936936936937, 0.2545090180360721, 0.7072072072072072, 0.24048096192384769, 0.7147147147147147, 0.22444889779559118, 0.7132132132132132, 0.218436873747495, 0.7087087087087087, 0.21442885771543085, 0.7087087087087087, 0.21042084168336672, 0.6981981981981982, 0.20440881763527055, 0.6951951951951952, 0.1963927855711423, 0.6951951951951952, 0.18236472945891782, 0.6801801801801802, 0.1743486973947896, 0.6681681681681682, 0.1683366733466934, 0.6501501501501501, 0.1623246492985972, 0.5930930930930931, 0.13827655310621242, 0.46096096096096095, 0.13827655310621242, 0.43543543543543545, 0.14228456913827656, 0.42342342342342343, 0.1683366733466934, 0.3963963963963964, 0.17234468937875752, 0.3843843843843844, 0.17635270541082165, 0.30930930930930933, 0.1683366733466934, 0.3048048048048048, 0.16633266533066132, 0.26876876876876876, 0.1683366733466934, 0.26576576576576577, 0.20040080160320642, 0.25975975975975973, 0.25250501002004005, 0.25825825825825827, 0.2665330661322645, 0.25975975975975973, 0.28256513026052105, 0.26576576576576577, 0.28857715430861725, 0.30180180180180183, 0.280561122244489, 0.3078078078078078, 0.280561122244489, 0.3138138138138138, 0.2845691382765531, 0.31681681681681684, 0.2925851703406814, 0.33633633633633636, 0.3046092184368738, 0.3858858858858859, 0.3366733466933868, 0.41291291291291293, 0.3486973947895792, 0.43543543543543545, 0.3527054108216433, 0.46396396396396394, 0.36072144288577157, 0.6546546546546547, 0.35070140280561124, 0.6786786786786787, 0.34468937875751504, 0.6816816816816816, 0.3366733466933868, 0.6921921921921922, 0.3286573146292585, 0.6951951951951952, 0.3186372745490982, 0.6936936936936937, 0.30861723446893785, 0.7072072072072072, 0.2905811623246493, 0.7117117117117117, 0.28857715430861725, 0.7147147147147147]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.6773547094188377, 0.7747747747747747, 0.5531062124248497, 0.7282282282282282, 0.501002004008016, 0.7102102102102102, 0.533066132264529, 0.3048048048048048, 0.5350701402805611, 0.30180180180180183, 0.5791583166332666, 0.27927927927927926, 0.5891783567134269, 0.2777777777777778, 0.5991983967935872, 0.27177177177177175, 0.6192384769539078, 0.26876876876876876, 0.6452905811623246, 0.25675675675675674, 0.6492985971943888, 0.24774774774774774, 0.6492985971943888, 0.22972972972972974, 0.6533066132264529, 0.22372372372372373, 0.6533066132264529, 0.2147147147147147, 0.657314629258517, 0.2132132132132132, 0.657314629258517, 0.21021021021021022, 0.6673346693386774, 0.2072072072072072, 0.7434869739478958, 0.2057057057057057, 0.751503006012024, 0.2132132132132132, 0.751503006012024, 0.23273273273273273, 0.7595190380761523, 0.23273273273273273, 0.7855711422845691, 0.24024024024024024, 0.8256513026052105, 0.26426426426426425, 0.8336673346693386, 0.2747747747747748, 0.8316633266533067, 0.28678678678678676, 0.845691382765531, 0.2957957957957958, 0.8476953907815631, 0.3003003003003003, 0.8476953907815631, 0.3228228228228228, 0.8416833667334669, 0.33783783783783783, 0.8416833667334669, 0.3483483483483483, 0.8236472945891784, 0.4144144144144144, 0.8236472945891784, 0.4294294294294294, 0.7975951903807615, 0.53003003003003, 0.7895791583166333, 0.5870870870870871, 0.7735470941883767, 0.6501501501501501, 0.7675350701402806, 0.6951951951951952, 0.7434869739478958, 0.7162162162162162, 0.7414829659318637, 0.7207207207207207, 0.7314629258517034, 0.7267267267267268, 0.7114228456913828, 0.7492492492492493, 0.6773547094188377, 0.7747747747747747]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/118.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.40681362725450904, 0.6276276276276276, 0.40480961923847697, 0.5825825825825826, 0.40681362725450904, 0.5675675675675675, 0.41282565130260523, 0.5555555555555556, 0.41282565130260523, 0.5075075075075075, 0.40080160320641284, 0.4744744744744745, 0.40080160320641284, 0.46096096096096095, 0.41282565130260523, 0.43093093093093093, 0.4288577154308617, 0.4144144144144144, 0.43687374749499, 0.4009009009009009, 0.4348697394789579, 0.38288288288288286, 0.4288577154308617, 0.3783783783783784, 0.42084168336673344, 0.36486486486486486, 0.4228456913827655, 0.36036036036036034, 0.4348697394789579, 0.35135135135135137, 0.4348697394789579, 0.3213213213213213, 0.43687374749499, 0.3183183183183183, 0.4589178356713427, 0.3108108108108108, 0.5190380761523046, 0.30930930930930933, 0.5450901803607214, 0.3138138138138138, 0.5591182364729459, 0.3213213213213213, 0.5591182364729459, 0.35135135135135137, 0.5671342685370742, 0.35585585585585583, 0.5731462925851704, 0.36186186186186187, 0.5711422845691383, 0.37237237237237236, 0.5651302605210421, 0.3768768768768769, 0.5591182364729459, 0.38738738738738737, 0.5571142284569138, 0.4009009009009009, 0.5711422845691383, 0.4189189189189189, 0.5891783567134269, 0.4519519519519519, 0.591182364729459, 0.47597597597597596, 0.5771543086172345, 0.5075075075075075, 0.5751503006012024, 0.521021021021021, 0.5751503006012024, 0.5555555555555556, 0.5791583166332666, 0.5630630630630631, 0.5831663326653307, 0.5915915915915916, 0.5811623246492986, 0.6201201201201201, 0.5771543086172345, 0.6246246246246246, 0.4729458917835671, 0.6246246246246246, 0.40681362725450904, 0.6276276276276276]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.2985971943887776, 0.8033033033033034, 0.23647294589178355, 0.7987987987987988, 0.23446893787575152, 0.7957957957957958, 0.20440881763527055, 0.7897897897897898, 0.19238476953907815, 0.7807807807807807, 0.18637274549098196, 0.7702702702702703, 0.18637274549098196, 0.7552552552552553, 0.19839679358717435, 0.7432432432432432, 0.18236472945891782, 0.7327327327327328, 0.18036072144288579, 0.7102102102102102, 0.20040080160320642, 0.6951951951951952, 0.1903807615230461, 0.6861861861861862, 0.18837675350701402, 0.6696696696696697, 0.19438877755511022, 0.6591591591591591, 0.20641282565130262, 0.6516516516516516, 0.21042084168336672, 0.6456456456456456, 0.2565130260521042, 0.6321321321321322, 0.3046092184368738, 0.6291291291291291, 0.39879759519038077, 0.6291291291291291, 0.49298597194388777, 0.6246246246246246, 0.6172344689378757, 0.6246246246246246, 0.6533066132264529, 0.6351351351351351, 0.6833667334669339, 0.6516516516516516, 0.6953907815631263, 0.6546546546546547, 0.7755511022044088, 0.6606606606606606, 0.7915831663326653, 0.6651651651651652, 0.8016032064128257, 0.6591591591591591, 0.845691382765531, 0.6591591591591591, 0.8517034068136272, 0.6606606606606606, 0.8637274549098196, 0.6681681681681682, 0.87374749498998, 0.6846846846846847, 0.8777555110220441, 0.6996996996996997, 0.8777555110220441, 0.7207207207207207, 0.87374749498998, 0.7327327327327328, 0.8657314629258517, 0.7417417417417418, 0.8557114228456913, 0.7447447447447447, 0.811623246492986, 0.7462462462462462, 0.8036072144288577, 0.7402402402402403, 0.7995991983967936, 0.7402402402402403, 0.7855711422845691, 0.7462462462462462, 0.7154308617234469, 0.7537537537537538, 0.6953907815631263, 0.7597597597597597, 0.6713426853707415, 0.7777777777777778, 0.6412825651302605, 0.7912912912912913, 0.6092184368737475, 0.7957957957957958, 0.5150300601202404, 0.7957957957957958, 0.2985971943887776, 0.8033033033033034]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/119.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.49498997995991983, 0.5975975975975976, 0.4228456913827655, 0.5915915915915916, 0.3106212424849699, 0.5900900900900901, 0.3106212424849699, 0.5645645645645646, 0.2985971943887776, 0.46396396396396394, 0.2985971943887776, 0.42792792792792794, 0.2905811623246493, 0.3993993993993994, 0.2905811623246493, 0.36786786786786785, 0.29458917835671344, 0.35735735735735735, 0.30060120240480964, 0.35135135135135137, 0.30060120240480964, 0.34684684684684686, 0.32665330661322645, 0.31981981981981983, 0.3306613226452906, 0.3063063063063063, 0.33266533066132264, 0.26126126126126126, 0.3346693386773547, 0.24774774774774774, 0.33867735470941884, 0.24474474474474475, 0.33867735470941884, 0.23273273273273273, 0.33266533066132264, 0.22822822822822822, 0.3306613226452906, 0.1906906906906907, 0.33867735470941884, 0.18618618618618618, 0.40480961923847697, 0.18468468468468469, 0.4288577154308617, 0.18618618618618618, 0.44889779559118237, 0.1906906906906907, 0.44889779559118237, 0.23273273273273273, 0.4408817635270541, 0.23573573573573572, 0.4408817635270541, 0.23873873873873874, 0.44889779559118237, 0.25375375375375375, 0.4589178356713427, 0.3138138138138138, 0.46292585170340683, 0.31681681681681684, 0.46292585170340683, 0.3213213213213213, 0.4909819639278557, 0.3483483483483483, 0.501002004008016, 0.36936936936936937, 0.501002004008016, 0.5855855855855856, 0.49498997995991983, 0.5975975975975976]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6913827655310621, 0.7762762762762763, 0.6513026052104208, 0.7747747747747747, 0.6212424849699398, 0.7657657657657657, 0.5791583166332666, 0.7612612612612613, 0.5070140280561122, 0.7627627627627628, 0.4909819639278557, 0.7672672672672672, 0.4288577154308617, 0.7672672672672672, 0.36072144288577157, 0.7642642642642643, 0.3466933867735471, 0.7612612612612613, 0.2905811623246493, 0.7597597597597597, 0.2845691382765531, 0.7537537537537538, 0.2725450901803607, 0.7342342342342343, 0.27054108216432865, 0.6816816816816816, 0.2785571142284569, 0.6381381381381381, 0.2865731462925852, 0.6171171171171171, 0.29458917835671344, 0.6051051051051051, 0.3066132264529058, 0.5945945945945946, 0.3166332665330661, 0.5915915915915916, 0.45090180360721444, 0.5930930930930931, 0.49298597194388777, 0.5975975975975976, 0.5551102204408818, 0.6096096096096096, 0.627254509018036, 0.6096096096096096, 0.6753507014028056, 0.6036036036036037, 0.7214428857715431, 0.6111111111111112, 0.7294589178356713, 0.6156156156156156, 0.7354709418837675, 0.6156156156156156, 0.7835671342685371, 0.6396396396396397, 0.811623246492986, 0.6396396396396397, 0.8236472945891784, 0.6366366366366366, 0.8336673346693386, 0.6306306306306306, 0.8517034068136272, 0.6306306306306306, 0.8697394789579158, 0.6426426426426426, 0.9038076152304609, 0.6441441441441441, 0.9138276553106213, 0.6471471471471472, 0.9218436873747495, 0.6516516516516516, 0.9338677354709419, 0.6771771771771772, 0.9378757515030061, 0.7027027027027027, 0.935871743486974, 0.7177177177177178, 0.9278557114228457, 0.7387387387387387, 0.9158316633266533, 0.7492492492492493, 0.8697394789579158, 0.7492492492492493, 0.8597194388777555, 0.7582582582582582, 0.845691382765531, 0.7612612612612613, 0.8136272545090181, 0.7477477477477478, 0.781563126252505, 0.7477477477477478, 0.7334669338677354, 0.7687687687687688, 0.6913827655310621, 0.7762762762762763]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/12.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.1903807615230461, 0.6951951951951952, 0.18837675350701402, 0.6921921921921922, 0.18036072144288579, 0.6546546546546547, 0.1342685370741483, 0.4114114114114114, 0.1062124248496994, 0.28678678678678676, 0.1062124248496994, 0.17417417417417416, 0.10821643286573146, 0.16816816816816818, 0.11623246492985972, 0.16216216216216217, 0.3466933867735471, 0.16516516516516516, 0.3587174348697395, 0.17417417417417416, 0.35470941883767537, 0.22672672672672672, 0.36072144288577157, 0.24024024024024024, 0.36472945891783565, 0.26126126126126126, 0.3727454909819639, 0.2747747747747748, 0.37675350701402804, 0.4009009009009009, 0.3867735470941884, 0.5135135135135135, 0.3907815631262525, 0.6066066066066066, 0.2725450901803607, 0.6081081081081081, 0.23847695390781562, 0.6156156156156156, 0.20641282565130262, 0.6381381381381381, 0.20240480961923848, 0.6486486486486487, 0.20240480961923848, 0.6606606606606606, 0.218436873747495, 0.6741741741741741, 0.20440881763527055, 0.6771771771771772, 0.19438877755511022, 0.6846846846846847, 0.1903807615230461, 0.6951951951951952]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6472945891783567, 0.7852852852852853, 0.2905811623246493, 0.7792792792792793, 0.2605210420841683, 0.7717717717717718, 0.22645290581162325, 0.7672672672672672, 0.20440881763527055, 0.7552552552552553, 0.19839679358717435, 0.7432432432432432, 0.19839679358717435, 0.7342342342342343, 0.20841683366733466, 0.7192192192192193, 0.1963927855711423, 0.7132132132132132, 0.19238476953907815, 0.7057057057057057, 0.19438877755511022, 0.6861861861861862, 0.20440881763527055, 0.6786786786786787, 0.22044088176352705, 0.6741741741741741, 0.20240480961923848, 0.6561561561561562, 0.20641282565130262, 0.6411411411411412, 0.21442885771543085, 0.6321321321321322, 0.22044088176352705, 0.6306306306306306, 0.23046092184368738, 0.6216216216216216, 0.24248496993987975, 0.6156156156156156, 0.280561122244489, 0.6081081081081081, 0.6092184368737475, 0.6096096096096096, 0.6372745490981964, 0.6111111111111112, 0.6593186372745491, 0.6171171171171171, 0.6793587174348698, 0.6261261261261262, 0.7034068136272545, 0.6411411411411412, 0.7274549098196392, 0.6471471471471472, 0.7595190380761523, 0.6501501501501501, 0.779559118236473, 0.6546546546546547, 0.8076152304609219, 0.6561561561561562, 0.8196392785571143, 0.6606606606606606, 0.8236472945891784, 0.6606606606606606, 0.8296593186372746, 0.6561561561561562, 0.875751503006012, 0.6561561561561562, 0.8917835671342685, 0.6636636636636637, 0.8997995991983968, 0.6771771771771772, 0.9038076152304609, 0.6921921921921922, 0.9038076152304609, 0.7297297297297297, 0.8897795591182365, 0.7447447447447447, 0.845691382765531, 0.7462462462462462, 0.8336673346693386, 0.7447447447447447, 0.8296593186372746, 0.7402402402402403, 0.8216432865731463, 0.7402402402402403, 0.8056112224448898, 0.7462462462462462, 0.7555110220440882, 0.7477477477477478, 0.717434869739479, 0.7522522522522522, 0.685370741482966, 0.7717717717717718, 0.6693386773547094, 0.7792792792792793, 0.6633266533066132, 0.7792792792792793, 0.6472945891783567, 0.7852852852852853]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/120.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.38877755511022044, 0.6621621621621622, 0.37675350701402804, 0.6516516516516516, 0.3587174348697395, 0.6516516516516516, 0.3366733466933868, 0.6246246246246246, 0.3346693386773547, 0.6111111111111112, 0.3306613226452906, 0.6051051051051051, 0.3306613226452906, 0.5840840840840841, 0.30861723446893785, 0.42492492492492495, 0.3066132264529058, 0.3918918918918919, 0.3106212424849699, 0.3813813813813814, 0.34468937875751504, 0.33933933933933935, 0.34468937875751504, 0.2807807807807808, 0.3486973947895792, 0.2747747747747748, 0.35070140280561124, 0.26126126126126126, 0.342685370741483, 0.26126126126126126, 0.3406813627254509, 0.2552552552552553, 0.342685370741483, 0.21921921921921922, 0.35470941883767537, 0.2147147147147147, 0.4148296593186373, 0.21171171171171171, 0.44288577154308617, 0.2147147147147147, 0.44889779559118237, 0.21621621621621623, 0.4529058116232465, 0.21921921921921922, 0.45490981963927857, 0.25675675675675674, 0.44889779559118237, 0.2627627627627628, 0.45090180360721444, 0.2732732732732733, 0.45490981963927857, 0.27627627627627627, 0.46292585170340683, 0.32432432432432434, 0.46893787575150303, 0.3408408408408408, 0.48897795591182364, 0.3588588588588589, 0.501002004008016, 0.3738738738738739, 0.5090180360721442, 0.3933933933933934, 0.5090180360721442, 0.4174174174174174, 0.5130260521042084, 0.43543543543543545, 0.5150300601202404, 0.6036036036036037, 0.5110220440881763, 0.6126126126126126, 0.5050100200400801, 0.6171171171171171, 0.48296593186372744, 0.6201201201201201, 0.45090180360721444, 0.6321321321321322, 0.4188376753507014, 0.6501501501501501, 0.40681362725450904, 0.6531531531531531, 0.38877755511022044, 0.6621621621621622]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.44488977955911824, 0.8498498498498499, 0.4288577154308617, 0.8498498498498499, 0.4148296593186373, 0.8468468468468469, 0.4028056112224449, 0.8393393393393394, 0.38877755511022044, 0.8348348348348348, 0.3627254509018036, 0.8123123123123123, 0.33266533066132264, 0.7762762762762763, 0.3186372745490982, 0.7507507507507507, 0.31462925851703405, 0.7372372372372372, 0.3166332665330661, 0.7072072072072072, 0.32665330661322645, 0.6936936936936937, 0.3807615230460922, 0.6666666666666666, 0.41082164328657317, 0.6531531531531531, 0.4228456913827655, 0.6501501501501501, 0.45090180360721444, 0.6336336336336337, 0.48296593186372744, 0.6216216216216216, 0.501002004008016, 0.6201201201201201, 0.5290581162324649, 0.6111111111111112, 0.5811623246492986, 0.5765765765765766, 0.5971943887775552, 0.5690690690690691, 0.627254509018036, 0.5615615615615616, 0.6513026052104208, 0.5615615615615616, 0.6693386773547094, 0.5645645645645646, 0.6813627254509018, 0.551051051051051, 0.6993987975951904, 0.545045045045045, 0.7194388777555111, 0.5465465465465466, 0.7294589178356713, 0.5420420420420421, 0.7434869739478958, 0.5420420420420421, 0.7695390781563126, 0.551051051051051, 0.7935871743486974, 0.5735735735735735, 0.7975951903807615, 0.581081081081081, 0.7975951903807615, 0.5930930930930931, 0.7895791583166333, 0.6066066066066066, 0.781563126252505, 0.6126126126126126, 0.779559118236473, 0.6231231231231231, 0.7575150300601202, 0.6381381381381381, 0.7434869739478958, 0.6396396396396397, 0.7374749498997996, 0.6591591591591591, 0.717434869739479, 0.6861861861861862, 0.6893787575150301, 0.7027027027027027, 0.6653306613226453, 0.7117117117117117, 0.6533066132264529, 0.7132132132132132, 0.6332665330661322, 0.7252252252252253, 0.5811623246492986, 0.7717717717717718, 0.5551102204408818, 0.7852852852852853, 0.5190380761523046, 0.8093093093093093, 0.44488977955911824, 0.8498498498498499]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/122.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3346693386773547, 0.6216216216216216, 0.3046092184368738, 0.6216216216216216, 0.2545090180360721, 0.6036036036036037, 0.16432865731462926, 0.6051051051051051, 0.15831663326653306, 0.6021021021021021, 0.1462925851703407, 0.6021021021021021, 0.14228456913827656, 0.6081081081081081, 0.09418837675350701, 0.6126126126126126, 0.0841683366733467, 0.5990990990990991, 0.08016032064128256, 0.5855855855855856, 0.08016032064128256, 0.539039039039039, 0.08216432865731463, 0.536036036036036, 0.09218436873747494, 0.5330330330330331, 0.12625250501002003, 0.53003003003003, 0.13226452905811623, 0.5330330330330331, 0.14428857715430862, 0.5330330330330331, 0.1623246492985972, 0.5255255255255256, 0.17234468937875752, 0.5255255255255256, 0.18637274549098196, 0.521021021021021, 0.1963927855711423, 0.521021021021021, 0.23046092184368738, 0.5135135135135135, 0.24248496993987975, 0.509009009009009, 0.2625250501002004, 0.4924924924924925, 0.2665330661322645, 0.4924924924924925, 0.28256513026052105, 0.481981981981982, 0.32064128256513025, 0.4744744744744745, 0.44889779559118237, 0.46546546546546547, 0.5811623246492986, 0.4519519519519519, 0.5991983967935872, 0.4519519519519519, 0.625250501002004, 0.45645645645645644, 0.6372745490981964, 0.46096096096096095, 0.6452905811623246, 0.46096096096096095, 0.657314629258517, 0.46546546546546547, 0.6673346693386774, 0.47897897897897895, 0.6673346693386774, 0.487987987987988, 0.6593186372745491, 0.4924924924924925, 0.6593186372745491, 0.4954954954954955, 0.6733466933867736, 0.5015015015015015, 0.6813627254509018, 0.5105105105105106, 0.6813627254509018, 0.5225225225225225, 0.6673346693386774, 0.5330330330330331, 0.6693386773547094, 0.5375375375375375, 0.6753507014028056, 0.5375375375375375, 0.6793587174348698, 0.5435435435435435, 0.6793587174348698, 0.551051051051051, 0.6673346693386774, 0.566066066066066, 0.6492985971943888, 0.5735735735735735, 0.6372745490981964, 0.575075075075075, 0.6152304609218436, 0.5840840840840841, 0.6072144288577155, 0.5840840840840841, 0.5951903807615231, 0.5885885885885885, 0.5691382765531062, 0.5855855855855856, 0.49899799599198397, 0.5855855855855856, 0.46693386773547096, 0.5870870870870871, 0.4468937875751503, 0.5915915915915916, 0.38877755511022044, 0.5930930930930931, 0.3627254509018036, 0.5960960960960962, 0.3527054108216433, 0.6066066066066066, 0.3527054108216433, 0.6171171171171171, 0.3346693386773547, 0.6216216216216216]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3927855711422846, 0.7732732732732732, 0.3807615230460922, 0.7732732732732732, 0.3727454909819639, 0.7672672672672672, 0.3667334669338677, 0.7552552552552553, 0.3627254509018036, 0.7357357357357357, 0.3627254509018036, 0.7147147147147147, 0.3527054108216433, 0.6441441441441441, 0.3527054108216433, 0.6111111111111112, 0.3627254509018036, 0.5975975975975976, 0.40480961923847697, 0.5930930930930931, 0.44488977955911824, 0.5930930930930931, 0.46693386773547096, 0.5885885885885885, 0.49498997995991983, 0.5885885885885885, 0.5150300601202404, 0.5855855855855856, 0.6292585170340681, 0.5885885885885885, 0.6713426853707415, 0.5825825825825826, 0.7134268537074149, 0.5720720720720721, 0.7595190380761523, 0.5720720720720721, 0.8016032064128257, 0.5825825825825826, 0.8216432865731463, 0.5930930930930931, 0.8476953907815631, 0.5930930930930931, 0.8657314629258517, 0.5825825825825826, 0.875751503006012, 0.5795795795795796, 0.8877755511022044, 0.5795795795795796, 0.905811623246493, 0.5885885885885885, 0.9438877755511023, 0.5885885885885885, 0.9659318637274549, 0.6006006006006006, 0.9779559118236473, 0.6156156156156156, 0.9859719438877755, 0.6366366366366366, 0.9859719438877755, 0.6591591591591591, 0.9799599198396793, 0.6726726726726727, 0.9619238476953907, 0.6831831831831832, 0.9318637274549099, 0.6891891891891891, 0.9318637274549099, 0.6921921921921922, 0.9178356713426854, 0.7012012012012012, 0.8977955911823647, 0.7027027027027027, 0.8837675350701403, 0.6966966966966966, 0.8597194388777555, 0.6951951951951952, 0.8476953907815631, 0.6996996996996997, 0.8396793587174348, 0.7072072072072072, 0.8036072144288577, 0.7282282282282282, 0.7855711422845691, 0.7312312312312312, 0.7835671342685371, 0.7342342342342343, 0.7715430861723447, 0.7372372372372372, 0.6492985971943888, 0.7372372372372372, 0.6132264529058116, 0.7432432432432432, 0.5551102204408818, 0.7582582582582582, 0.49899799599198397, 0.7612612612612613, 0.4749498997995992, 0.7657657657657657, 0.4348697394789579, 0.7672672672672672, 0.3927855711422846, 0.7732732732732732]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/123.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.35070140280561124, 0.7417417417417418, 0.312625250501002, 0.7417417417417418, 0.2965931863727455, 0.7387387387387387, 0.2865731462925852, 0.7357357357357357, 0.2625250501002004, 0.7207207207207207, 0.24849699398797595, 0.7027027027027027, 0.23847695390781562, 0.6351351351351351, 0.22444889779559118, 0.5015015015015015, 0.23046092184368738, 0.49099099099099097, 0.24248496993987975, 0.4804804804804805, 0.24248496993987975, 0.46396396396396394, 0.24849699398797595, 0.45495495495495497, 0.2665330661322645, 0.44594594594594594, 0.3106212424849699, 0.4369369369369369, 0.36472945891783565, 0.4369369369369369, 0.3867735470941884, 0.43993993993993996, 0.40480961923847697, 0.44594594594594594, 0.4228456913827655, 0.45495495495495497, 0.4248496993987976, 0.47147147147147145, 0.44288577154308617, 0.4894894894894895, 0.4468937875751503, 0.6741741741741741, 0.44488977955911824, 0.6936936936936937, 0.43887775551102204, 0.7042042042042042, 0.4028056112224449, 0.7297297297297297, 0.37074148296593185, 0.7387387387387387, 0.35070140280561124, 0.7417417417417418]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.56312625250501, 0.7357357357357357, 0.5490981963927856, 0.7357357357357357, 0.5470941883767535, 0.7327327327327328, 0.4969939879759519, 0.6411411411411412, 0.5130260521042084, 0.3978978978978979, 0.5230460921843687, 0.2957957957957958, 0.5230460921843687, 0.2627627627627628, 0.533066132264529, 0.25075075075075076, 0.56312625250501, 0.22672672672672672, 0.5651302605210421, 0.1891891891891892, 0.5791583166332666, 0.17567567567567569, 0.7895791583166333, 0.1816816816816817, 0.8016032064128257, 0.1891891891891892, 0.7955911823647295, 0.23273273273273273, 0.8296593186372746, 0.27177177177177175, 0.8416833667334669, 0.2912912912912913, 0.843687374749499, 0.30180180180180183, 0.7875751503006012, 0.515015015015015, 0.7555110220440882, 0.6591591591591591, 0.7474949899799599, 0.7117117117117117, 0.7354709418837675, 0.7162162162162162, 0.5891783567134269, 0.7312312312312312, 0.56312625250501, 0.7357357357357357]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/124.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.23046092184368738, 0.6996996996996997, 0.20841683366733466, 0.6996996996996997, 0.1743486973947896, 0.6921921921921922, 0.15430861723446893, 0.6786786786786787, 0.1462925851703407, 0.6666666666666666, 0.12625250501002003, 0.5585585585585585, 0.1062124248496994, 0.47297297297297297, 0.11022044088176353, 0.4594594594594595, 0.12224448897795591, 0.44144144144144143, 0.12224448897795591, 0.42342342342342343, 0.1342685370741483, 0.4159159159159159, 0.1523046092184369, 0.4099099099099099, 0.1903807615230461, 0.4024024024024024, 0.250501002004008, 0.4024024024024024, 0.2545090180360721, 0.4039039039039039, 0.2565130260521042, 0.4189189189189189, 0.26452905811623245, 0.42492492492492495, 0.28256513026052105, 0.4264264264264264, 0.280561122244489, 0.45645645645645644, 0.2925851703406814, 0.46996996996997, 0.3286573146292585, 0.487987987987988, 0.3306613226452906, 0.496996996996997, 0.3306613226452906, 0.53003003003003, 0.3406813627254509, 0.6456456456456456, 0.33867735470941884, 0.6561561561561562, 0.3226452905811623, 0.6711711711711712, 0.29458917835671344, 0.6861861861861862, 0.2665330661322645, 0.6936936936936937, 0.23046092184368738, 0.6996996996996997]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.7755511022044088, 0.7237237237237237, 0.7294589178356713, 0.6966966966966966, 0.2925851703406814, 0.466966966966967, 0.280561122244489, 0.45345345345345345, 0.28256513026052105, 0.4264264264264264, 0.2605210420841683, 0.4219219219219219, 0.2565130260521042, 0.4159159159159159, 0.2545090180360721, 0.40540540540540543, 0.2565130260521042, 0.36786786786786785, 0.2625250501002004, 0.35585585585585583, 0.2745490981963928, 0.34534534534534533, 0.2745490981963928, 0.34234234234234234, 0.2605210420841683, 0.3303303303303303, 0.25851703406813625, 0.3213213213213213, 0.2865731462925852, 0.29429429429429427, 0.30861723446893785, 0.3033033033033033, 0.3246492985971944, 0.3138138138138138, 0.3366733466933868, 0.3153153153153153, 0.38276553106212424, 0.2972972972972973, 0.40480961923847697, 0.2912912912912913, 0.4408817635270541, 0.28378378378378377, 0.44889779559118237, 0.2852852852852853, 0.6513026052104208, 0.4039039039039039, 0.8416833667334669, 0.5195195195195195, 0.87374749498998, 0.5330330330330331, 0.8857715430861723, 0.551051051051051, 0.9298597194388778, 0.5930930930930931, 0.9438877755511023, 0.6156156156156156, 0.7755511022044088, 0.7237237237237237]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/125.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5210420841683366, 0.7162162162162162, 0.43687374749499, 0.7162162162162162, 0.4348697394789579, 0.7147147147147147, 0.2965931863727455, 0.7147147147147147, 0.29458917835671344, 0.7132132132132132, 0.22244488977955912, 0.7132132132132132, 0.22044088176352705, 0.7117117117117117, 0.218436873747495, 0.7117117117117117, 0.21442885771543085, 0.7072072072072072, 0.21442885771543085, 0.7057057057057057, 0.21042084168336672, 0.7027027027027027, 0.21042084168336672, 0.7012012012012012, 0.20841683366733466, 0.6996996996996997, 0.20841683366733466, 0.6981981981981982, 0.20440881763527055, 0.6951951951951952, 0.20440881763527055, 0.6936936936936937, 0.20040080160320642, 0.6906906906906907, 0.20040080160320642, 0.6876876876876877, 0.19839679358717435, 0.6861861861861862, 0.19839679358717435, 0.6846846846846847, 0.1963927855711423, 0.6831831831831832, 0.1963927855711423, 0.6816816816816816, 0.1903807615230461, 0.6771771771771772, 0.1903807615230461, 0.6756756756756757, 0.18837675350701402, 0.6741741741741741, 0.18837675350701402, 0.6726726726726727, 0.18637274549098196, 0.6711711711711712, 0.18637274549098196, 0.6681681681681682, 0.1843687374749499, 0.6666666666666666, 0.1843687374749499, 0.6351351351351351, 0.18637274549098196, 0.6336336336336337, 0.18637274549098196, 0.6246246246246246, 0.18837675350701402, 0.6231231231231231, 0.18837675350701402, 0.6141141141141141, 0.1903807615230461, 0.6126126126126126, 0.1903807615230461, 0.6051051051051051, 0.19238476953907815, 0.6036036036036037, 0.19238476953907815, 0.6021021021021021, 0.19438877755511022, 0.6006006006006006, 0.19438877755511022, 0.5975975975975976, 0.1963927855711423, 0.5960960960960962, 0.1963927855711423, 0.5915915915915916, 0.20240480961923848, 0.5870870870870871, 0.20240480961923848, 0.5840840840840841, 0.20240480961923848, 0.5840840840840841, 0.20440881763527055, 0.5840840840840841, 0.20841683366733466, 0.581081081081081, 0.21042084168336672, 0.581081081081081, 0.21643286573146292, 0.5765765765765766, 0.21643286573146292, 0.575075075075075, 0.23046092184368738, 0.5645645645645646, 0.2605210420841683, 0.5645645645645646, 0.2625250501002004, 0.566066066066066, 0.43887775551102204, 0.566066066066066, 0.4408817635270541, 0.5675675675675675, 0.5150300601202404, 0.5675675675675675, 0.5170340681362725, 0.5690690690690691, 0.5210420841683366, 0.5690690690690691, 0.5230460921843687, 0.5705705705705706, 0.5250501002004008, 0.5705705705705706, 0.5270541082164328, 0.5720720720720721, 0.5290581162324649, 0.5720720720720721, 0.5390781563126252, 0.5795795795795796, 0.5410821643286573, 0.5795795795795796, 0.5430861723446894, 0.581081081081081, 0.5450901803607214, 0.581081081081081, 0.5470941883767535, 0.5825825825825826, 0.5490981963927856, 0.5825825825825826, 0.5511022044088176, 0.5840840840840841, 0.5591182364729459, 0.5840840840840841, 0.561122244488978, 0.5825825825825826, 0.5671342685370742, 0.5825825825825826, 0.5691382765531062, 0.5825825825825826, 0.5691382765531062, 0.5840840840840841, 0.5711422845691383, 0.5855855855855856, 0.5711422845691383, 0.5945945945945946, 0.5731462925851704, 0.5960960960960962, 0.5731462925851704, 0.6876876876876877, 0.5711422845691383, 0.6891891891891891, 0.5711422845691383, 0.6996996996996997, 0.5691382765531062, 0.7012012012012012, 0.5691382765531062, 0.7027027027027027, 0.5671342685370742, 0.7042042042042042, 0.56312625250501, 0.7042042042042042, 0.561122244488978, 0.7027027027027027, 0.5450901803607214, 0.7027027027027027, 0.5390781563126252, 0.7072072072072072, 0.5370741482965932, 0.7072072072072072, 0.533066132264529, 0.7102102102102102, 0.531062124248497, 0.7102102102102102, 0.5270541082164328, 0.7132132132132132, 0.5230460921843687, 0.7132132132132132, 0.5230460921843687, 0.7132132132132132, 0.5230460921843687, 0.7147147147147147, 0.5210420841683366, 0.7162162162162162]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.6352705410821643, 0.7252252252252253, 0.6092184368737475, 0.7252252252252253, 0.6032064128256514, 0.7192192192192193, 0.5731462925851704, 0.6306306306306306, 0.5791583166332666, 0.6006006006006006, 0.591182364729459, 0.45345345345345345, 0.6132264529058116, 0.26426426426426425, 0.6332665330661322, 0.23723723723723725, 0.6432865731462926, 0.22822822822822822, 0.6432865731462926, 0.2222222222222222, 0.6472945891783567, 0.21771771771771772, 0.6492985971943888, 0.1891891891891892, 0.655310621242485, 0.18018018018018017, 0.6613226452905812, 0.17717717717717718, 0.6793587174348698, 0.17567567567567569, 0.7575150300601202, 0.18018018018018017, 0.8476953907815631, 0.1816816816816817, 0.8797595190380761, 0.18468468468468469, 0.8877755511022044, 0.18768768768768768, 0.8917835671342685, 0.1921921921921922, 0.8857715430861723, 0.21021021021021022, 0.8837675350701403, 0.23423423423423423, 0.9098196392785571, 0.2702702702702703, 0.9178356713426854, 0.28678678678678676, 0.9198396793587175, 0.3048048048048048, 0.905811623246493, 0.34534534534534533, 0.8777555110220441, 0.4624624624624625, 0.8396793587174348, 0.5930930930930931, 0.8236472945891784, 0.6726726726726727, 0.8156312625250501, 0.6921921921921922, 0.8136272545090181, 0.7162162162162162, 0.8096192384769539, 0.7207207207207207, 0.6352705410821643, 0.7252252252252253]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/127.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.35671342685370744, 0.8393393393393394, 0.32064128256513025, 0.8363363363363363, 0.29458917835671344, 0.8288288288288288, 0.2725450901803607, 0.8138138138138138, 0.2565130260521042, 0.7942942942942943, 0.250501002004008, 0.7807807807807807, 0.24649298597194388, 0.7567567567567568, 0.24649298597194388, 0.7342342342342343, 0.218436873747495, 0.5420420420420421, 0.22244488977955912, 0.5315315315315315, 0.22645290581162325, 0.53003003003003, 0.23446893787575152, 0.515015015015015, 0.24048096192384769, 0.5105105105105106, 0.23446893787575152, 0.496996996996997, 0.23647294589178355, 0.49099099099099097, 0.2545090180360721, 0.47597597597597596, 0.2905811623246493, 0.46396396396396394, 0.30060120240480964, 0.46396396396396394, 0.312625250501002, 0.4594594594594595, 0.33867735470941884, 0.45645645645645644, 0.37675350701402804, 0.45645645645645644, 0.41282565130260523, 0.4594594594594595, 0.4348697394789579, 0.466966966966967, 0.4408817635270541, 0.466966966966967, 0.4529058116232465, 0.47297297297297297, 0.46893787575150303, 0.4864864864864865, 0.46693386773547096, 0.5, 0.48096192384769537, 0.512012012012012, 0.4909819639278557, 0.527027027027027, 0.49298597194388777, 0.7732732732732732, 0.48096192384769537, 0.7927927927927928, 0.45090180360721444, 0.8168168168168168, 0.43687374749499, 0.8213213213213213, 0.4348697394789579, 0.8243243243243243, 0.4028056112224449, 0.8318318318318318, 0.39879759519038077, 0.8348348348348348, 0.35671342685370744, 0.8393393393393394]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.5811623246492986, 0.6726726726726727, 0.5771543086172345, 0.6726726726726727, 0.5430861723446894, 0.6501501501501501, 0.49298597194388777, 0.6126126126126126, 0.4909819639278557, 0.524024024024024, 0.48697394789579157, 0.5165165165165165, 0.4749498997995992, 0.506006006006006, 0.4849699398797595, 0.2087087087087087, 0.5210420841683366, 0.1816816816816817, 0.5551102204408818, 0.16216216216216217, 0.5571142284569138, 0.12912912912912913, 0.5651302605210421, 0.11711711711711711, 0.5691382765531062, 0.11561561561561562, 0.7254509018036072, 0.12162162162162163, 0.7334669338677354, 0.12462462462462462, 0.7394789579158316, 0.13213213213213212, 0.7354709418837675, 0.14114114114114115, 0.7354709418837675, 0.15765765765765766, 0.7535070140280561, 0.17117117117117117, 0.7535070140280561, 0.17717717717717718, 0.7675350701402806, 0.18468468468468469, 0.7955911823647295, 0.2042042042042042, 0.7955911823647295, 0.2072072072072072, 0.8076152304609219, 0.21921921921921922, 0.8076152304609219, 0.23273273273273273, 0.7915831663326653, 0.3183183183183183, 0.7555110220440882, 0.484984984984985, 0.7555110220440882, 0.5, 0.7434869739478958, 0.5465465465465466, 0.7434869739478958, 0.56006006006006, 0.7334669338677354, 0.6036036036036037, 0.7334669338677354, 0.6231231231231231, 0.7274549098196392, 0.6291291291291291, 0.6753507014028056, 0.6426426426426426, 0.6533066132264529, 0.6516516516516516, 0.6292585170340681, 0.6561561561561562, 0.6112224448897795, 0.6621621621621622, 0.6092184368737475, 0.6651651651651652, 0.591182364729459, 0.6681681681681682, 0.5891783567134269, 0.6711711711711712, 0.5811623246492986, 0.6726726726726727]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/128.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.36072144288577157, 0.6171171171171171, 0.33867735470941884, 0.6171171171171171, 0.3286573146292585, 0.6141141141141141, 0.3066132264529058, 0.6051051051051051, 0.2925851703406814, 0.5930930930930931, 0.28857715430861725, 0.575075075075075, 0.2865731462925852, 0.5135135135135135, 0.27655310621242485, 0.4444444444444444, 0.2785571142284569, 0.42792792792792794, 0.28857715430861725, 0.4159159159159159, 0.28857715430861725, 0.4009009009009009, 0.2985971943887776, 0.3948948948948949, 0.35070140280561124, 0.3888888888888889, 0.3787575150300601, 0.39039039039039036, 0.41282565130260523, 0.3963963963963964, 0.42084168336673344, 0.4009009009009009, 0.4188376753507014, 0.4114114114114114, 0.4348697394789579, 0.4294294294294294, 0.43887775551102204, 0.5870870870870871, 0.42685370741482964, 0.5990990990990991, 0.41282565130260523, 0.6066066066066066, 0.36072144288577157, 0.6171171171171171]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.6172344689378757, 0.7717717717717718, 0.501002004008016, 0.6876876876876877, 0.5110220440881763, 0.5345345345345346, 0.5110220440881763, 0.46096096096096095, 0.5190380761523046, 0.36936936936936937, 0.5190380761523046, 0.3033033033033033, 0.5370741482965932, 0.2882882882882883, 0.593186372745491, 0.25675675675675674, 0.5951903807615231, 0.22522522522522523, 0.6032064128256514, 0.2147147147147147, 0.6092184368737475, 0.21171171171171171, 0.7615230460921844, 0.2147147147147147, 0.7695390781563126, 0.21771771771771772, 0.7755511022044088, 0.2222222222222222, 0.7735470941883767, 0.25225225225225223, 0.7875751503006012, 0.2627627627627628, 0.7935871743486974, 0.2732732732732733, 0.811623246492986, 0.2822822822822823, 0.8356713426853707, 0.3003003003003003, 0.8496993987975952, 0.31981981981981983, 0.8396793587174348, 0.35435435435435436, 0.8296593186372746, 0.4159159159159159, 0.7895791583166333, 0.6096096096096096, 0.7835671342685371, 0.6531531531531531, 0.7735470941883767, 0.6906906906906907, 0.7735470941883767, 0.7117117117117117, 0.7715430861723447, 0.7192192192192193, 0.7655310621242485, 0.7207207207207207, 0.7635270541082164, 0.7237237237237237, 0.7014028056112225, 0.7417417417417418, 0.6172344689378757, 0.7717717717717718]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/13.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.2605210420841683, 0.7087087087087087, 0.2545090180360721, 0.7087087087087087, 0.250501002004008, 0.7027027027027027, 0.23046092184368738, 0.5885885885885885, 0.20440881763527055, 0.4024024024024024, 0.18837675350701402, 0.3138138138138138, 0.1843687374749499, 0.3063063063063063, 0.18637274549098196, 0.23123123123123124, 0.18236472945891782, 0.1921921921921922, 0.1903807615230461, 0.18618618618618618, 0.21643286573146292, 0.18468468468468469, 0.41082164328657317, 0.18618618618618618, 0.4168336673346693, 0.18768768768768768, 0.4228456913827655, 0.19369369369369369, 0.42084168336673344, 0.24024024024024024, 0.4248496993987976, 0.24174174174174173, 0.4288577154308617, 0.25075075075075076, 0.4288577154308617, 0.26426426426426425, 0.4408817635270541, 0.2897897897897898, 0.4408817635270541, 0.3918918918918919, 0.4468937875751503, 0.5015015015015015, 0.44889779559118237, 0.6501501501501501, 0.4529058116232465, 0.6846846846846847, 0.44889779559118237, 0.6876876876876877, 0.43286573146292584, 0.6876876876876877, 0.2605210420841683, 0.7087087087087087]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.655310621242485, 0.7027027027027027, 0.6292585170340681, 0.7027027027027027, 0.5951903807615231, 0.6936936936936937, 0.5571142284569138, 0.6726726726726727, 0.5531062124248497, 0.6681681681681682, 0.5511022044088176, 0.6621621621621622, 0.5511022044088176, 0.4744744744744745, 0.561122244488978, 0.45795795795795796, 0.5711422845691383, 0.44894894894894893, 0.5691382765531062, 0.4369369369369369, 0.5711422845691383, 0.4339339339339339, 0.6052104208416834, 0.4219219219219219, 0.6352705410821643, 0.4189189189189189, 0.6593186372745491, 0.4189189189189189, 0.7034068136272545, 0.42492492492492495, 0.7314629258517034, 0.43543543543543545, 0.7374749498997996, 0.44144144144144143, 0.7334669338677354, 0.45495495495495497, 0.751503006012024, 0.47597597597597596, 0.7274549098196392, 0.6666666666666666, 0.717434869739479, 0.6801801801801802, 0.7014028056112225, 0.6906906906906907, 0.6813627254509018, 0.6951951951951952, 0.6733466933867736, 0.6996996996996997, 0.655310621242485, 0.7027027027027027]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/14.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.6412825651302605, 0.8093093093093093, 0.625250501002004, 0.8093093093093093, 0.6172344689378757, 0.8048048048048048, 0.5991983967935872, 0.8018018018018018, 0.5511022044088176, 0.7852852852852853, 0.3066132264529058, 0.7117117117117117, 0.23647294589178355, 0.6936936936936937, 0.19839679358717435, 0.6801801801801802, 0.17635270541082165, 0.6756756756756757, 0.1683366733466934, 0.6711711711711712, 0.156312625250501, 0.6696696696696697, 0.1523046092184369, 0.6621621621621622, 0.1402805611222445, 0.5825825825825826, 0.13026052104208416, 0.545045045045045, 0.14829659318637275, 0.536036036036036, 0.22044088176352705, 0.5075075075075075, 0.22645290581162325, 0.503003003003003, 0.23847695390781562, 0.5, 0.250501002004008, 0.4924924924924925, 0.26452905811623245, 0.4894894894894895, 0.3166332665330661, 0.5015015015015015, 0.3286573146292585, 0.5015015015015015, 0.34468937875751504, 0.5075075075075075, 0.3727454909819639, 0.5135135135135135, 0.4308617234468938, 0.5225225225225225, 0.5390781563126252, 0.5465465465465466, 0.7214428857715431, 0.5825825825825826, 0.7374749498997996, 0.6006006006006006, 0.7535070140280561, 0.6351351351351351, 0.7615230460921844, 0.6411411411411412, 0.7875751503006012, 0.6441441441441441, 0.8096192384769539, 0.6561561561561562, 0.8016032064128257, 0.6861861861861862, 0.8016032064128257, 0.7012012012012012, 0.7875751503006012, 0.7462462462462462, 0.7875751503006012, 0.7612612612612613, 0.7835671342685371, 0.7747747747747747, 0.7755511022044088, 0.7807807807807807, 0.7655310621242485, 0.7822822822822822, 0.7414829659318637, 0.7747747747747747, 0.7214428857715431, 0.7732732732732732, 0.6953907815631263, 0.7882882882882883, 0.6713426853707415, 0.7972972972972973, 0.6653306613226453, 0.8018018018018018, 0.6412825651302605, 0.8093093093093093]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7955911823647295, 0.6471471471471472, 0.7875751503006012, 0.6426426426426426, 0.7615230460921844, 0.6396396396396397, 0.7555110220440882, 0.6351351351351351, 0.7414829659318637, 0.6036036036036037, 0.7294589178356713, 0.5855855855855856, 0.7214428857715431, 0.581081081081081, 0.6432865731462926, 0.5645645645645646, 0.6513026052104208, 0.4519519519519519, 0.657314629258517, 0.44144144144144143, 0.6713426853707415, 0.4294294294294294, 0.6713426853707415, 0.4189189189189189, 0.6833667334669339, 0.4099099099099099, 0.7074148296593187, 0.40540540540540543, 0.7615230460921844, 0.40540540540540543, 0.7875751503006012, 0.4084084084084084, 0.8136272545090181, 0.4174174174174174, 0.8296593186372746, 0.42792792792792794, 0.8256513026052105, 0.43993993993993996, 0.8396793587174348, 0.45795795795795796, 0.8376753507014028, 0.4804804804804805, 0.8336673346693386, 0.4864864864864865, 0.8256513026052105, 0.5375375375375375, 0.8076152304609219, 0.6111111111111112, 0.8056112224448898, 0.6321321321321322, 0.7955911823647295, 0.6471471471471472]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/16.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.2785571142284569, 0.6711711711711712, 0.2725450901803607, 0.6696696696696697, 0.2605210420841683, 0.5975975975975976, 0.26452905811623245, 0.512012012012012, 0.2625250501002004, 0.5015015015015015, 0.250501002004008, 0.48348348348348347, 0.24448897795591182, 0.46546546546546547, 0.24649298597194388, 0.4294294294294294, 0.2745490981963928, 0.38738738738738737, 0.2725450901803607, 0.3663663663663664, 0.25851703406813625, 0.35135135135135137, 0.2565130260521042, 0.33783783783783783, 0.2685370741482966, 0.32882882882882886, 0.2665330661322645, 0.29429429429429427, 0.27054108216432865, 0.2912912912912913, 0.28256513026052105, 0.2852852852852853, 0.312625250501002, 0.2807807807807808, 0.36472945891783565, 0.2807807807807808, 0.3907815631262525, 0.28678678678678676, 0.4028056112224449, 0.29429429429429427, 0.40480961923847697, 0.32732732732732733, 0.4148296593186373, 0.33183183183183185, 0.42084168336673344, 0.33783783783783783, 0.42084168336673344, 0.34984984984984985, 0.41082164328657317, 0.35735735735735735, 0.4088176352705411, 0.3633633633633634, 0.4088176352705411, 0.37987987987987987, 0.4148296593186373, 0.3918918918918919, 0.43887775551102204, 0.4174174174174174, 0.4468937875751503, 0.43543543543543545, 0.44889779559118237, 0.46846846846846846, 0.44488977955911824, 0.481981981981982, 0.4408817635270541, 0.484984984984985, 0.4408817635270541, 0.539039039039039, 0.44889779559118237, 0.5555555555555556, 0.45090180360721444, 0.6066066066066066, 0.3226452905811623, 0.6396396396396397, 0.3046092184368738, 0.6471471471471472, 0.2905811623246493, 0.6606606606606606, 0.2905811623246493, 0.6636636636636637, 0.2785571142284569, 0.6711711711711712]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.3286573146292585, 0.8168168168168168, 0.3226452905811623, 0.8168168168168168, 0.30861723446893785, 0.8048048048048048, 0.2865731462925852, 0.7762762762762763, 0.27054108216432865, 0.7432432432432432, 0.25851703406813625, 0.6921921921921922, 0.2605210420841683, 0.6771771771771772, 0.27054108216432865, 0.6711711711711712, 0.2845691382765531, 0.6696696696696697, 0.3046092184368738, 0.6486486486486487, 0.3527054108216433, 0.6321321321321322, 0.4408817635270541, 0.6126126126126126, 0.561122244488978, 0.5825825825825826, 0.593186372745491, 0.5720720720720721, 0.6112224448897795, 0.5735735735735735, 0.625250501002004, 0.5795795795795796, 0.6733466933867736, 0.6126126126126126, 0.687374749498998, 0.6291291291291291, 0.6973947895791583, 0.6516516516516516, 0.6953907815631263, 0.6861861861861862, 0.6893787575150301, 0.7042042042042042, 0.6733466933867736, 0.7177177177177178, 0.46292585170340683, 0.7897897897897898, 0.4288577154308617, 0.7987987987987988, 0.3927855711422846, 0.8138138138138138, 0.33867735470941884, 0.8093093093093093, 0.3366733466933868, 0.8138138138138138, 0.3286573146292585, 0.8168168168168168]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/17.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.312625250501002, 0.7537537537537538, 0.2965931863727455, 0.7537537537537538, 0.28256513026052105, 0.7507507507507507, 0.26452905811623245, 0.7342342342342343, 0.250501002004008, 0.7312312312312312, 0.23446893787575152, 0.7132132132132132, 0.22444889779559118, 0.6966966966966966, 0.22044088176352705, 0.6456456456456456, 0.21042084168336672, 0.5990990990990991, 0.20240480961923848, 0.512012012012012, 0.19438877755511022, 0.46846846846846846, 0.1963927855711423, 0.4294294294294294, 0.20641282565130262, 0.4114114114114114, 0.22845691382765532, 0.3933933933933934, 0.23647294589178355, 0.36786786786786785, 0.23647294589178355, 0.31981981981981983, 0.24248496993987975, 0.3063063063063063, 0.24248496993987975, 0.2927927927927928, 0.23446893787575152, 0.2852852852852853, 0.23246492985971945, 0.2777777777777778, 0.23246492985971945, 0.24474474474474475, 0.24248496993987975, 0.24024024024024024, 0.2785571142284569, 0.23723723723723725, 0.34468937875751504, 0.23873873873873874, 0.36072144288577157, 0.24174174174174173, 0.36472945891783565, 0.25075075075075076, 0.3667334669338677, 0.2897897897897898, 0.3587174348697395, 0.2927927927927928, 0.3587174348697395, 0.2972972972972973, 0.3667334669338677, 0.30930930930930933, 0.3807615230460922, 0.37537537537537535, 0.3927855711422846, 0.3918918918918919, 0.41282565130260523, 0.4084084084084084, 0.4308617234468938, 0.44294294294294295, 0.4308617234468938, 0.6951951951951952, 0.4148296593186373, 0.7192192192192193, 0.40681362725450904, 0.7252252252252253, 0.39478957915831664, 0.7267267267267268, 0.38276553106212424, 0.7417417417417418, 0.374749498997996, 0.7462462462462462, 0.36072144288577157, 0.7492492492492493, 0.3587174348697395, 0.7522522522522522, 0.3486973947895792, 0.7507507507507507, 0.3346693386773547, 0.7342342342342343, 0.3346693386773547, 0.7297297297297297, 0.32665330661322645, 0.7267267267267268, 0.32665330661322645, 0.7387387387387387, 0.312625250501002, 0.7537537537537538]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5811623246492986, 0.7462462462462462, 0.5470941883767535, 0.7462462462462462, 0.5070140280561122, 0.7372372372372372, 0.4909819639278557, 0.7297297297297297, 0.4729458917835671, 0.7147147147147147, 0.46092184368737477, 0.6966966966966966, 0.46292585170340683, 0.5945945945945946, 0.4749498997995992, 0.5630630630630631, 0.4749498997995992, 0.5180180180180181, 0.4649298597194389, 0.4924924924924925, 0.46292585170340683, 0.4744744744744745, 0.46693386773547096, 0.45495495495495497, 0.4749498997995992, 0.43843843843843844, 0.48296593186372744, 0.4264264264264264, 0.4969939879759519, 0.4144144144144144, 0.5050100200400801, 0.4009009009009009, 0.5050100200400801, 0.3813813813813814, 0.49498997995991983, 0.3708708708708709, 0.4909819639278557, 0.35585585585585583, 0.49298597194388777, 0.34984984984984985, 0.5070140280561122, 0.34234234234234234, 0.5090180360721442, 0.30930930930930933, 0.5290581162324649, 0.30180180180180183, 0.5571142284569138, 0.2987987987987988, 0.5951903807615231, 0.2987987987987988, 0.6192384769539078, 0.30180180180180183, 0.6352705410821643, 0.3048048048048048, 0.6472945891783567, 0.3108108108108108, 0.6472945891783567, 0.34984984984984985, 0.6513026052104208, 0.35135135135135137, 0.6613226452905812, 0.3588588588588589, 0.6613226452905812, 0.36786786786786785, 0.6432865731462926, 0.38738738738738737, 0.6432865731462926, 0.4069069069069069, 0.6593186372745491, 0.43543543543543545, 0.6673346693386774, 0.44294294294294295, 0.6753507014028056, 0.46846846846846846, 0.6713426853707415, 0.5015015015015015, 0.6633266533066132, 0.512012012012012, 0.6593186372745491, 0.5315315315315315, 0.655310621242485, 0.536036036036036, 0.655310621242485, 0.5825825825825826, 0.6593186372745491, 0.5900900900900901, 0.6613226452905812, 0.6246246246246246, 0.655310621242485, 0.6576576576576577, 0.6513026052104208, 0.7087087087087087, 0.6412825651302605, 0.7222222222222222, 0.625250501002004, 0.7297297297297297, 0.6212424849699398, 0.7342342342342343, 0.5811623246492986, 0.7462462462462462]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/18.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.24649298597194388, 0.6831831831831832, 0.21442885771543085, 0.6786786786786787, 0.1903807615230461, 0.6681681681681682, 0.18036072144288579, 0.6576576576576577, 0.16633266533066132, 0.5990990990990991, 0.16633266533066132, 0.5840840840840841, 0.15831663326653306, 0.5645645645645646, 0.16032064128256512, 0.493993993993994, 0.13627254509018036, 0.45495495495495497, 0.1342685370741483, 0.4189189189189189, 0.15831663326653306, 0.37987987987987987, 0.15831663326653306, 0.35735735735735735, 0.14228456913827656, 0.34384384384384387, 0.13627254509018036, 0.3333333333333333, 0.13627254509018036, 0.3303303303303303, 0.14829659318637275, 0.3213213213213213, 0.14829659318637275, 0.2852852852852853, 0.15430861723446893, 0.2807807807807808, 0.16432865731462926, 0.2777777777777778, 0.17635270541082165, 0.2777777777777778, 0.19438877755511022, 0.2732732732732733, 0.24649298597194388, 0.2732732732732733, 0.2605210420841683, 0.2747747747747748, 0.2745490981963928, 0.2807807807807808, 0.28256513026052105, 0.3123123123123123, 0.2985971943887776, 0.3228228228228228, 0.2985971943887776, 0.33183183183183185, 0.28857715430861725, 0.3483483483483483, 0.28857715430861725, 0.36186186186186187, 0.2965931863727455, 0.3738738738738739, 0.3186372745490982, 0.3933933933933934, 0.33266533066132264, 0.4144144144144144, 0.3366733466933868, 0.43093093093093093, 0.3346693386773547, 0.46096096096096095, 0.3306613226452906, 0.47147147147147145, 0.3306613226452906, 0.496996996996997, 0.33266533066132264, 0.5105105105105106, 0.33867735470941884, 0.5180180180180181, 0.3466933867735471, 0.5420420420420421, 0.3486973947895792, 0.5720720720720721, 0.34468937875751504, 0.575075075075075, 0.3066132264529058, 0.581081081081081, 0.29458917835671344, 0.5885885885885885, 0.2925851703406814, 0.6156156156156156, 0.2965931863727455, 0.6216216216216216, 0.2865731462925852, 0.6291291291291291, 0.2865731462925852, 0.6561561561561562, 0.30060120240480964, 0.6666666666666666, 0.28256513026052105, 0.6786786786786787, 0.24649298597194388, 0.6831831831831832]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7014028056112225, 0.7327327327327328, 0.3627254509018036, 0.7312312312312312, 0.3186372745490982, 0.7222222222222222, 0.3046092184368738, 0.7147147147147147, 0.28857715430861725, 0.6951951951951952, 0.2905811623246493, 0.6756756756756757, 0.3026052104208417, 0.6666666666666666, 0.28857715430861725, 0.6561561561561562, 0.2865731462925852, 0.6501501501501501, 0.2865731462925852, 0.6321321321321322, 0.2985971943887776, 0.6216216216216216, 0.2925851703406814, 0.6126126126126126, 0.2965931863727455, 0.5885885885885885, 0.3026052104208417, 0.5840840840840841, 0.312625250501002, 0.581081081081081, 0.36072144288577157, 0.5720720720720721, 0.374749498997996, 0.5720720720720721, 0.40080160320641284, 0.5675675675675675, 0.6913827655310621, 0.5675675675675675, 0.7254509018036072, 0.575075075075075, 0.7615230460921844, 0.5945945945945946, 0.7895791583166333, 0.6021021021021021, 0.8637274549098196, 0.6081081081081081, 0.875751503006012, 0.6126126126126126, 0.8817635270541082, 0.6081081081081081, 0.9318637274549099, 0.6081081081081081, 0.9378757515030061, 0.6096096096096096, 0.9498997995991983, 0.6186186186186187, 0.9579158316633266, 0.6351351351351351, 0.9599198396793587, 0.6651651651651652, 0.9579158316633266, 0.6771771771771772, 0.9498997995991983, 0.6861861861861862, 0.9398797595190381, 0.6921921921921922, 0.8917835671342685, 0.6921921921921922, 0.8837675350701403, 0.6876876876876877, 0.875751503006012, 0.6876876876876877, 0.8717434869739479, 0.6906906906906907, 0.8496993987975952, 0.6906906906906907, 0.8136272545090181, 0.6966966966966966, 0.7875751503006012, 0.6981981981981982, 0.7735470941883767, 0.7027027027027027, 0.7374749498997996, 0.7252252252252253, 0.7014028056112225, 0.7327327327327328]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/19.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3927855711422846, 0.7537537537537538, 0.37675350701402804, 0.7537537537537538, 0.36472945891783565, 0.7507507507507507, 0.3527054108216433, 0.7372372372372372, 0.3466933867735471, 0.7372372372372372, 0.34468937875751504, 0.7402402402402403, 0.32665330661322645, 0.7387387387387387, 0.30861723446893785, 0.7237237237237237, 0.2965931863727455, 0.7042042042042042, 0.2865731462925852, 0.6771771771771772, 0.25851703406813625, 0.4894894894894895, 0.250501002004008, 0.45495495495495497, 0.25851703406813625, 0.4189189189189189, 0.27655310621242485, 0.3963963963963964, 0.2865731462925852, 0.3888888888888889, 0.2905811623246493, 0.3768768768768769, 0.2905811623246493, 0.3123123123123123, 0.2965931863727455, 0.2897897897897898, 0.2865731462925852, 0.28378378378378377, 0.28256513026052105, 0.23723723723723725, 0.2985971943887776, 0.23273273273273273, 0.3286573146292585, 0.22972972972972974, 0.3967935871743487, 0.22972972972972974, 0.41282565130260523, 0.23273273273273273, 0.4168336673346693, 0.24024024024024024, 0.42084168336673344, 0.2747747747747748, 0.42084168336673344, 0.2807807807807808, 0.41282565130260523, 0.2852852852852853, 0.41282565130260523, 0.2897897897897898, 0.4168336673346693, 0.3003003003003003, 0.42084168336673344, 0.3033033033033033, 0.42084168336673344, 0.3123123123123123, 0.43887775551102204, 0.37237237237237236, 0.44288577154308617, 0.37987987987987987, 0.46893787575150303, 0.4009009009009009, 0.4789579158316633, 0.41291291291291293, 0.48697394789579157, 0.4264264264264264, 0.4909819639278557, 0.44144144144144143, 0.4909819639278557, 0.53003003003003, 0.49899799599198397, 0.6576576576576577, 0.49498997995991983, 0.6876876876876877, 0.4749498997995992, 0.7132132132132132, 0.4729458917835671, 0.7222222222222222, 0.46092184368737477, 0.7342342342342343, 0.44889779559118237, 0.7402402402402403, 0.4348697394789579, 0.7417417417417418, 0.42685370741482964, 0.7387387387387387, 0.4168336673346693, 0.7282282282282282, 0.41282565130260523, 0.7417417417417418, 0.39879759519038077, 0.7522522522522522, 0.3927855711422846, 0.7537537537537538]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7034068136272545, 0.7627627627627628, 0.6633266533066132, 0.7612612612612613, 0.6132264529058116, 0.7447447447447447, 0.591182364729459, 0.7282282282282282, 0.5811623246492986, 0.7162162162162162, 0.5771543086172345, 0.7042042042042042, 0.5811623246492986, 0.4924924924924925, 0.6052104208416834, 0.46996996996997, 0.6032064128256514, 0.45645645645645644, 0.6132264529058116, 0.4444444444444444, 0.6372745490981964, 0.4369369369369369, 0.6793587174348698, 0.43243243243243246, 0.7034068136272545, 0.43243243243243246, 0.7434869739478958, 0.4369369369369369, 0.781563126252505, 0.44744744744744747, 0.7935871743486974, 0.45345345345345345, 0.8016032064128257, 0.4594594594594595, 0.8036072144288577, 0.46996996996997, 0.7995991983967936, 0.4774774774774775, 0.8176352705410822, 0.4984984984984985, 0.8176352705410822, 0.524024024024024, 0.7955911823647295, 0.6396396396396397, 0.7835671342685371, 0.7252252252252253, 0.7775551102204409, 0.7357357357357357, 0.7595190380761523, 0.7492492492492493, 0.7334669338677354, 0.7582582582582582, 0.7114228456913828, 0.7597597597597597, 0.7034068136272545, 0.7627627627627628]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/20.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8076152304609219, 0.8183183183183184, 0.7474949899799599, 0.8018018018018018, 0.7414829659318637, 0.7927927927927928, 0.7034068136272545, 0.7912912912912913, 0.6352705410821643, 0.7777777777777778, 0.6052104208416834, 0.7762762762762763, 0.5771543086172345, 0.7867867867867868, 0.5511022044088176, 0.7912912912912913, 0.5170340681362725, 0.7867867867867868, 0.48697394789579157, 0.7777777777777778, 0.4789579158316633, 0.7777777777777778, 0.4709418837675351, 0.7717717717717718, 0.43286573146292584, 0.7627627627627628, 0.2985971943887776, 0.7192192192192193, 0.23046092184368738, 0.6996996996996997, 0.21442885771543085, 0.6891891891891891, 0.1843687374749499, 0.6771771771771772, 0.16032064128256512, 0.6561561561561562, 0.15430861723446893, 0.6441441441441441, 0.15430861723446893, 0.6366366366366366, 0.17034068136272545, 0.6231231231231231, 0.156312625250501, 0.6051051051051051, 0.16432865731462926, 0.5855855855855856, 0.17234468937875752, 0.5795795795795796, 0.1963927855711423, 0.575075075075075, 0.19238476953907815, 0.566066066066066, 0.19438877755511022, 0.5570570570570571, 0.21042084168336672, 0.5465465465465466, 0.23046092184368738, 0.5420420420420421, 0.3046092184368738, 0.5435435435435435, 0.5370741482965932, 0.5930930930930931, 0.5551102204408818, 0.5990990990990991, 0.5651302605210421, 0.5990990990990991, 0.5831663326653307, 0.6066066066066066, 0.5991983967935872, 0.6096096096096096, 0.6232464929859719, 0.6216216216216216, 0.6392785571142284, 0.6336336336336337, 0.6533066132264529, 0.6531531531531531, 0.6753507014028056, 0.6666666666666666, 0.7334669338677354, 0.6861861861861862, 0.7755511022044088, 0.7057057057057057, 0.7835671342685371, 0.7012012012012012, 0.7915831663326653, 0.7042042042042042, 0.8016032064128257, 0.7042042042042042, 0.8216432865731463, 0.7117117117117117, 0.8396793587174348, 0.7147147147147147, 0.8476953907815631, 0.7192192192192193, 0.8476953907815631, 0.7372372372372372, 0.8416833667334669, 0.7492492492492493, 0.8416833667334669, 0.7597597597597597, 0.8316633266533067, 0.7867867867867868, 0.8216432865731463, 0.8018018018018018, 0.8196392785571143, 0.8108108108108109, 0.8076152304609219, 0.8183183183183184]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7695390781563126, 0.6756756756756757, 0.749498997995992, 0.6756756756756757, 0.7154308617234469, 0.6696696696696697, 0.6773547094188377, 0.6516516516516516, 0.655310621242485, 0.6336336336336337, 0.6513026052104208, 0.6246246246246246, 0.6593186372745491, 0.53003003003003, 0.6593186372745491, 0.481981981981982, 0.6673346693386774, 0.42492492492492495, 0.6733466933867736, 0.4159159159159159, 0.687374749498998, 0.40540540540540543, 0.6893787575150301, 0.3888888888888889, 0.6953907815631263, 0.3843843843843844, 0.7074148296593187, 0.37987987987987987, 0.7414829659318637, 0.3738738738738739, 0.7895791583166333, 0.3738738738738739, 0.8096192384769539, 0.3783783783783784, 0.8316633266533067, 0.37987987987987987, 0.8517034068136272, 0.3858858858858859, 0.87374749498998, 0.3978978978978979, 0.87374749498998, 0.4069069069069069, 0.8697394789579158, 0.4144144144144144, 0.8837675350701403, 0.43093093093093093, 0.8857715430861723, 0.43993993993993996, 0.8717434869739479, 0.5195195195195195, 0.8637274549098196, 0.545045045045045, 0.8597194388777555, 0.5795795795795796, 0.843687374749499, 0.6441441441441441, 0.8376753507014028, 0.6516516516516516, 0.8156312625250501, 0.6666666666666666, 0.7935871743486974, 0.6726726726726727, 0.7695390781563126, 0.6756756756756757]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/21.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.48897795591182364, 0.7672672672672672, 0.47695390781563124, 0.7657657657657657, 0.4529058116232465, 0.7567567567567568, 0.43687374749499, 0.7492492492492493, 0.4288577154308617, 0.7417417417417418, 0.4168336673346693, 0.7417417417417418, 0.4148296593186373, 0.7387387387387387, 0.40681362725450904, 0.7387387387387387, 0.3587174348697395, 0.7252252252252253, 0.34468937875751504, 0.7237237237237237, 0.33266533066132264, 0.7282282282282282, 0.3046092184368738, 0.7327327327327328, 0.280561122244489, 0.7312312312312312, 0.26452905811623245, 0.7267267267267268, 0.056112224448897796, 0.6366366366366366, 0.02404809619238477, 0.6111111111111112, 0.01603206412825651, 0.5960960960960962, 0.018036072144288578, 0.5870870870870871, 0.028056112224448898, 0.581081081081081, 0.028056112224448898, 0.5780780780780781, 0.018036072144288578, 0.5705705705705706, 0.01603206412825651, 0.5645645645645646, 0.02404809619238477, 0.5465465465465466, 0.03206412825651302, 0.5405405405405406, 0.056112224448897796, 0.539039039039039, 0.05410821643286573, 0.5255255255255256, 0.05811623246492986, 0.521021021021021, 0.07414829659318638, 0.5135135135135135, 0.13827655310621242, 0.5135135135135135, 0.16432865731462926, 0.5195195195195195, 0.218436873747495, 0.539039039039039, 0.2905811623246493, 0.5585585585585585, 0.3727454909819639, 0.5855855855855856, 0.39478957915831664, 0.6006006006006006, 0.41082164328657317, 0.6216216216216216, 0.4148296593186373, 0.6336336336336337, 0.47695390781563124, 0.6666666666666666, 0.48697394789579157, 0.6651651651651652, 0.49298597194388777, 0.6696696696696697, 0.503006012024048, 0.6711711711711712, 0.531062124248497, 0.6816816816816816, 0.5410821643286573, 0.6906906906906907, 0.5430861723446894, 0.6996996996996997, 0.531062124248497, 0.7357357357357357, 0.5110220440881763, 0.7567567567567568, 0.48897795591182364, 0.7672672672672672]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.7214428857715431, 0.6936936936936937, 0.6993987975951904, 0.6936936936936937, 0.6933867735470942, 0.6891891891891891, 0.4969939879759519, 0.6156156156156156, 0.33266533066132264, 0.5570570570570571, 0.3286573146292585, 0.5480480480480481, 0.3226452905811623, 0.44894894894894893, 0.43286573146292584, 0.4159159159159159, 0.5551102204408818, 0.4444444444444444, 0.687374749498998, 0.47897897897897895, 0.8196392785571143, 0.509009009009009, 0.8336673346693386, 0.536036036036036, 0.8336673346693386, 0.551051051051051, 0.8597194388777555, 0.5570570570570571, 0.87374749498998, 0.5645645645645646, 0.8797595190380761, 0.5720720720720721, 0.8496993987975952, 0.6816816816816816, 0.8416833667334669, 0.6876876876876877, 0.8316633266533067, 0.6876876876876877, 0.8216432865731463, 0.6816816816816816, 0.8056112224448898, 0.6771771771771772, 0.7855711422845691, 0.6771771771771772, 0.7655310621242485, 0.6846846846846847, 0.751503006012024, 0.6861861861861862, 0.7414829659318637, 0.6906906906906907, 0.7254509018036072, 0.6906906906906907, 0.7214428857715431, 0.6936936936936937]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/22.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.18837675350701402, 0.7357357357357357, 0.0841683366733467, 0.6561561561561562, 0.07615230460921844, 0.6171171171171171, 0.06412825651302605, 0.5870870870870871, 0.06012024048096192, 0.5630630630630631, 0.052104208416833664, 0.5420420420420421, 0.050100200400801605, 0.5180180180180181, 0.052104208416833664, 0.5165165165165165, 0.312625250501002, 0.4624624624624625, 0.40480961923847697, 0.43993993993993996, 0.4348697394789579, 0.43543543543543545, 0.46092184368737477, 0.42792792792792794, 0.4789579158316633, 0.4264264264264264, 0.503006012024048, 0.4189189189189189, 0.5811623246492986, 0.4264264264264264, 0.6052104208416834, 0.4264264264264264, 0.6152304609218436, 0.4219219219219219, 0.627254509018036, 0.4219219219219219, 0.6312625250501002, 0.42342342342342343, 0.627254509018036, 0.44144144144144143, 0.6352705410821643, 0.44744744744744747, 0.6332665330661322, 0.46846846846846846, 0.6352705410821643, 0.47147147147147145, 0.6472945891783567, 0.47147147147147145, 0.6492985971943888, 0.47597597597597596, 0.6452905811623246, 0.5195195195195195, 0.6392785571142284, 0.527027027027027, 0.625250501002004, 0.527027027027027, 0.6232464929859719, 0.5705705705705706, 0.6192384769539078, 0.5735735735735735, 0.4649298597194389, 0.6291291291291291, 0.312625250501002, 0.6861861861861862, 0.3106212424849699, 0.6891891891891891, 0.2985971943887776, 0.6936936936936937, 0.280561122244489, 0.6981981981981982, 0.20440881763527055, 0.7267267267267268, 0.18837675350701402, 0.7357357357357357]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7735470941883767, 0.7282282282282282, 0.7314629258517034, 0.7267267267267268, 0.6933867735470942, 0.7177177177177178, 0.6492985971943888, 0.6891891891891891, 0.6352705410821643, 0.6711711711711712, 0.6513026052104208, 0.45495495495495497, 0.657314629258517, 0.44294294294294295, 0.6773547094188377, 0.42342342342342343, 0.6773547094188377, 0.40540540540540543, 0.6793587174348698, 0.4024024024024024, 0.6933867735470942, 0.3963963963963964, 0.751503006012024, 0.3888888888888889, 0.811623246492986, 0.3918918918918919, 0.8697394789579158, 0.40540540540540543, 0.8857715430861723, 0.4159159159159159, 0.8797595190380761, 0.4339339339339339, 0.8897795591182365, 0.44294294294294295, 0.8977955911823647, 0.45795795795795796, 0.8977955911823647, 0.47147147147147145, 0.8937875751503006, 0.4804804804804805, 0.8837675350701403, 0.539039039039039, 0.8496993987975952, 0.6906906906906907, 0.8416833667334669, 0.7042042042042042, 0.8316633266533067, 0.7117117117117117, 0.8176352705410822, 0.7177177177177178, 0.7915831663326653, 0.7222222222222222, 0.7735470941883767, 0.7282282282282282]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/23.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.22444889779559118, 0.7042042042042042, 0.218436873747495, 0.7027027027027027, 0.19438877755511022, 0.6801801801801802, 0.1342685370741483, 0.6381381381381381, 0.11623246492985972, 0.5675675675675675, 0.10420841683366733, 0.5330330330330331, 0.1062124248496994, 0.5225225225225225, 0.18637274549098196, 0.5015015015015015, 0.3066132264529058, 0.4744744744744745, 0.49899799599198397, 0.42492492492492495, 0.5591182364729459, 0.43243243243243246, 0.5791583166332666, 0.43243243243243246, 0.5951903807615231, 0.42792792792792794, 0.6032064128256514, 0.42792792792792794, 0.6072144288577155, 0.4294294294294294, 0.6072144288577155, 0.4369369369369369, 0.6032064128256514, 0.44294294294294295, 0.6032064128256514, 0.4519519519519519, 0.6072144288577155, 0.45495495495495497, 0.6072144288577155, 0.46996996996997, 0.6172344689378757, 0.47297297297297297, 0.627254509018036, 0.484984984984985, 0.6292585170340681, 0.5105105105105106, 0.6232464929859719, 0.5195195195195195, 0.6152304609218436, 0.5225225225225225, 0.6012024048096193, 0.5225225225225225, 0.5991983967935872, 0.524024024024024, 0.5991983967935872, 0.5495495495495496, 0.5971943887775552, 0.5615615615615616, 0.593186372745491, 0.5645645645645646, 0.4168336673346693, 0.6291291291291291, 0.3466933867735471, 0.6576576576576577, 0.23847695390781562, 0.6966966966966966, 0.22444889779559118, 0.7042042042042042]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.593186372745491, 0.7552552552552553, 0.5771543086172345, 0.7552552552552553, 0.561122244488978, 0.7492492492492493, 0.5390781563126252, 0.7327327327327328, 0.5210420841683366, 0.7087087087087087, 0.5170340681362725, 0.6861861861861862, 0.5270541082164328, 0.6711711711711712, 0.5410821643286573, 0.6636636636636637, 0.5470941883767535, 0.6501501501501501, 0.5551102204408818, 0.6426426426426426, 0.5591182364729459, 0.6426426426426426, 0.5651302605210421, 0.6381381381381381, 0.591182364729459, 0.6351351351351351, 0.591182364729459, 0.6246246246246246, 0.5991983967935872, 0.6096096096096096, 0.6172344689378757, 0.5915915915915916, 0.6472945891783567, 0.575075075075075, 0.6893787575150301, 0.566066066066066, 0.7234468937875751, 0.536036036036036, 0.7354709418837675, 0.5285285285285285, 0.7434869739478958, 0.527027027027027, 0.7895791583166333, 0.503003003003003, 0.8036072144288577, 0.4984984984984985, 0.8216432865731463, 0.4954954954954955, 0.8517034068136272, 0.4984984984984985, 0.875751503006012, 0.5075075075075075, 0.8917835671342685, 0.5180180180180181, 0.9078156312625251, 0.5330330330330331, 0.9178356713426854, 0.5540540540540541, 0.9138276553106213, 0.5795795795795796, 0.9038076152304609, 0.5915915915915916, 0.8316633266533067, 0.6411411411411412, 0.8076152304609219, 0.6486486486486487, 0.7895791583166333, 0.6591591591591591, 0.7555110220440882, 0.6951951951951952, 0.717434869739479, 0.7117117117117117, 0.6973947895791583, 0.7147147147147147, 0.6693386773547094, 0.7147147147147147, 0.6633266533066132, 0.7312312312312312, 0.6452905811623246, 0.7432432432432432, 0.6152304609218436, 0.7447447447447447, 0.6112224448897795, 0.7492492492492493, 0.593186372745491, 0.7552552552552553]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/25.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.33266533066132264, 0.7132132132132132, 0.30060120240480964, 0.7117117117117117, 0.2745490981963928, 0.7042042042042042, 0.24849699398797595, 0.6846846846846847, 0.24448897795591182, 0.6786786786786787, 0.23847695390781562, 0.6531531531531531, 0.23847695390781562, 0.6351351351351351, 0.22845691382765532, 0.5945945945945946, 0.23246492985971945, 0.5180180180180181, 0.22244488977955912, 0.4864864864864865, 0.21442885771543085, 0.47597597597597596, 0.20641282565130262, 0.45495495495495497, 0.20841683366733466, 0.4189189189189189, 0.22044088176352705, 0.3963963963963964, 0.23246492985971945, 0.38288288288288286, 0.23647294589178355, 0.3708708708708709, 0.23446893787575152, 0.35285285285285284, 0.22645290581162325, 0.34234234234234234, 0.21442885771543085, 0.3333333333333333, 0.21442885771543085, 0.3228228228228228, 0.23046092184368738, 0.3123123123123123, 0.22645290581162325, 0.2777777777777778, 0.23046092184368738, 0.2732732732732733, 0.24048096192384769, 0.26876876876876876, 0.28256513026052105, 0.2627627627627628, 0.342685370741483, 0.26426426426426425, 0.3587174348697395, 0.26876876876876876, 0.3667334669338677, 0.2747747747747748, 0.3727454909819639, 0.30930930930930933, 0.38877755511022044, 0.3183183183183183, 0.38877755511022044, 0.3303303303303303, 0.3787575150300601, 0.34234234234234234, 0.37675350701402804, 0.3633633633633634, 0.3847695390781563, 0.3783783783783784, 0.3967935871743487, 0.38738738738738737, 0.4168336673346693, 0.4144144144144144, 0.4228456913827655, 0.4444444444444444, 0.4148296593186373, 0.4744744744744745, 0.41282565130260523, 0.5105105105105106, 0.4168336673346693, 0.536036036036036, 0.4288577154308617, 0.5645645645645646, 0.4288577154308617, 0.6681681681681682, 0.42084168336673344, 0.6801801801801802, 0.4148296593186373, 0.6831831831831832, 0.4148296593186373, 0.6861861861861862, 0.3927855711422846, 0.6996996996996997, 0.3807615230460922, 0.7042042042042042, 0.3727454909819639, 0.7042042042042042, 0.36472945891783565, 0.7087087087087087, 0.33266533066132264, 0.7132132132132132]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.749498997995992, 0.7072072072072072, 0.45490981963927857, 0.7042042042042042, 0.44288577154308617, 0.6921921921921922, 0.43286573146292584, 0.6876876876876877, 0.4288577154308617, 0.6756756756756757, 0.42685370741482964, 0.5900900900900901, 0.4348697394789579, 0.566066066066066, 0.44488977955911824, 0.5630630630630631, 0.4529058116232465, 0.5525525525525525, 0.4649298597194389, 0.5480480480480481, 0.7595190380761523, 0.5495495495495496, 0.7675350701402806, 0.551051051051051, 0.7755511022044088, 0.5570570570570571, 0.7835671342685371, 0.5585585585585585, 0.7975951903807615, 0.566066066066066, 0.8056112224448898, 0.566066066066066, 0.811623246492986, 0.5630630630630631, 0.8176352705410822, 0.5645645645645646, 0.8316633266533067, 0.5795795795795796, 0.8376753507014028, 0.6006006006006006, 0.8416833667334669, 0.6261261261261262, 0.8416833667334669, 0.6516516516516516, 0.8376753507014028, 0.6606606606606606, 0.8376753507014028, 0.6726726726726727, 0.8256513026052105, 0.6876876876876877, 0.8016032064128257, 0.6921921921921922, 0.7755511022044088, 0.7057057057057057, 0.749498997995992, 0.7072072072072072]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/26.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.11623246492985972, 0.7312312312312312, 0.09819639278557114, 0.7312312312312312, 0.06813627254509018, 0.7177177177177178, 0.052104208416833664, 0.7192192192192193, 0.04408817635270541, 0.7132132132132132, 0.03406813627254509, 0.6996996996996997, 0.03406813627254509, 0.6921921921921922, 0.028056112224448898, 0.6801801801801802, 0.028056112224448898, 0.6531531531531531, 0.03206412825651302, 0.6321321321321322, 0.04408817635270541, 0.6081081081081081, 0.05410821643286573, 0.6021021021021021, 0.07214428857715431, 0.6036036036036037, 0.10020040080160321, 0.5885885885885885, 0.12224448897795591, 0.5855855855855856, 0.33266533066132264, 0.5825825825825826, 0.3587174348697395, 0.5795795795795796, 0.37675350701402804, 0.5795795795795796, 0.4028056112224449, 0.5945945945945946, 0.4088176352705411, 0.6996996996996997, 0.39879759519038077, 0.7027027027027027, 0.38276553106212424, 0.7192192192192193, 0.3286573146292585, 0.7222222222222222, 0.27054108216432865, 0.7222222222222222, 0.11623246492985972, 0.7312312312312312]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7715430861723447, 0.6621621621621622, 0.5050100200400801, 0.6606606606606606, 0.46292585170340683, 0.6516516516516516, 0.45090180360721444, 0.6411411411411412, 0.44889779559118237, 0.6321321321321322, 0.4529058116232465, 0.6036036036036037, 0.4468937875751503, 0.5960960960960962, 0.4468937875751503, 0.5825825825825826, 0.45490981963927857, 0.575075075075075, 0.44889779559118237, 0.5630630630630631, 0.45090180360721444, 0.5495495495495496, 0.45691382765531063, 0.5435435435435435, 0.4789579158316633, 0.536036036036036, 0.5090180360721442, 0.5315315315315315, 0.7735470941883767, 0.5315315315315315, 0.8096192384769539, 0.5420420420420421, 0.8276553106212425, 0.5540540540540541, 0.8396793587174348, 0.5570570570570571, 0.8837675350701403, 0.5630630630630631, 0.9038076152304609, 0.5630630630630631, 0.9098196392785571, 0.566066066066066, 0.9178356713426854, 0.566066066066066, 0.9198396793587175, 0.5630630630630631, 0.9639278557114228, 0.5630630630630631, 0.9739478957915831, 0.5705705705705706, 0.9839679358717435, 0.5885885885885885, 0.9839679358717435, 0.6066066066066066, 0.9759519038076152, 0.6231231231231231, 0.9679358717434869, 0.6291291291291291, 0.9258517034068137, 0.6306306306306306, 0.9138276553106213, 0.6261261261261262, 0.9098196392785571, 0.6291291291291291, 0.8637274549098196, 0.6321321321321322, 0.8356713426853707, 0.6366366366366366, 0.8056112224448898, 0.6546546546546547, 0.7715430861723447, 0.6621621621621622]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/27.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.2124248496993988, 0.7552552552552553, 0.18036072144288579, 0.7552552552552553, 0.17034068136272545, 0.7507507507507507, 0.16432865731462926, 0.7507507507507507, 0.14829659318637275, 0.7447447447447447, 0.13026052104208416, 0.7252252252252253, 0.11222444889779559, 0.6471471471471472, 0.1062124248496994, 0.6351351351351351, 0.10420841683366733, 0.56006006006006, 0.09418837675350701, 0.5375375375375375, 0.0841683366733467, 0.527027027027027, 0.08016032064128256, 0.5075075075075075, 0.07414829659318638, 0.5, 0.07615230460921844, 0.47597597597597596, 0.08216432865731463, 0.46546546546546547, 0.08216432865731463, 0.4594594594594595, 0.09819639278557114, 0.43843843843843844, 0.10220440881763528, 0.42792792792792794, 0.10220440881763528, 0.4069069069069069, 0.08016032064128256, 0.3843843843843844, 0.08016032064128256, 0.37537537537537535, 0.09218436873747494, 0.3663663663663664, 0.09018036072144289, 0.33183183183183185, 0.09218436873747494, 0.32732732732732733, 0.11222444889779559, 0.31981981981981983, 0.14428857715430862, 0.3153153153153153, 0.20040080160320642, 0.3153153153153153, 0.22044088176352705, 0.3213213213213213, 0.23046092184368738, 0.3258258258258258, 0.23446893787575152, 0.33633633633633636, 0.23446893787575152, 0.35435435435435436, 0.23847695390781562, 0.36186186186186187, 0.24849699398797595, 0.36486486486486486, 0.2565130260521042, 0.3708708708708709, 0.2565130260521042, 0.3768768768768769, 0.24448897795591182, 0.3933933933933934, 0.24649298597194388, 0.4174174174174174, 0.28256513026052105, 0.45045045045045046, 0.2905811623246493, 0.46546546546546547, 0.2965931863727455, 0.4894894894894895, 0.2965931863727455, 0.5075075075075075, 0.28857715430861725, 0.5315315315315315, 0.28857715430861725, 0.545045045045045, 0.29458917835671344, 0.5720720720720721, 0.2985971943887776, 0.575075075075075, 0.3106212424849699, 0.6081081081081081, 0.3186372745490982, 0.7012012012012012, 0.30861723446893785, 0.7177177177177178, 0.2845691382765531, 0.7357357357357357, 0.2545090180360721, 0.7477477477477478, 0.2124248496993988, 0.7552552552552553]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5070140280561122, 0.7552552552552553, 0.4789579158316633, 0.7537537537537538, 0.4709418837675351, 0.7462462462462462, 0.46693386773547096, 0.7387387387387387, 0.44889779559118237, 0.7432432432432432, 0.43887775551102204, 0.7432432432432432, 0.42084168336673344, 0.7282282282282282, 0.4148296593186373, 0.7132132132132132, 0.40681362725450904, 0.7042042042042042, 0.40480961923847697, 0.6861861861861862, 0.39879759519038077, 0.6726726726726727, 0.3907815631262525, 0.493993993993994, 0.3867735470941884, 0.46846846846846846, 0.38877755511022044, 0.44594594594594594, 0.40681362725450904, 0.4189189189189189, 0.4248496993987976, 0.40540540540540543, 0.4348697394789579, 0.38288288288288286, 0.43887775551102204, 0.32732732732732733, 0.44288577154308617, 0.3228228228228228, 0.44288577154308617, 0.30930930930930933, 0.43687374749499, 0.3033033033033033, 0.43887775551102204, 0.2627627627627628, 0.44889779559118237, 0.25825825825825827, 0.49298597194388777, 0.2552552552552553, 0.5350701402805611, 0.25675675675675674, 0.5551102204408818, 0.26126126126126126, 0.56312625250501, 0.26576576576576577, 0.56312625250501, 0.3048048048048048, 0.561122244488978, 0.30930930930930933, 0.5531062124248497, 0.3123123123123123, 0.5531062124248497, 0.31681681681681684, 0.561122244488978, 0.3303303303303303, 0.5691382765531062, 0.3993993993993994, 0.5951903807615231, 0.4219219219219219, 0.6032064128256514, 0.43243243243243246, 0.6052104208416834, 0.4444444444444444, 0.6092184368737475, 0.44894894894894893, 0.6092184368737475, 0.493993993993994, 0.6012024048096193, 0.5975975975975976, 0.6012024048096193, 0.6726726726726727, 0.5971943887775552, 0.6771771771771772, 0.5971943887775552, 0.6876876876876877, 0.591182364729459, 0.6921921921921922, 0.591182364729459, 0.6996996996996997, 0.5871743486973948, 0.7027027027027027, 0.5851703406813628, 0.7132132132132132, 0.5771543086172345, 0.7282282282282282, 0.5531062124248497, 0.7447447447447447, 0.5350701402805611, 0.7432432432432432, 0.5250501002004008, 0.7357357357357357, 0.5190380761523046, 0.7462462462462462, 0.5070140280561122, 0.7552552552552553]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.8276553106212425, 0.7567567567567568, 0.779559118236473, 0.7552552552552553, 0.7655310621242485, 0.7492492492492493, 0.7595190380761523, 0.7492492492492493, 0.7134268537074149, 0.7252252252252253, 0.6973947895791583, 0.7027027027027027, 0.7134268537074149, 0.551051051051051, 0.7234468937875751, 0.493993993993994, 0.7454909819639278, 0.4744744744744745, 0.7474949899799599, 0.46096096096096095, 0.7595190380761523, 0.45345345345345345, 0.8016032064128257, 0.44594594594594594, 0.8356713426853707, 0.44744744744744747, 0.8817635270541082, 0.45345345345345345, 0.8957915831663327, 0.45645645645645644, 0.9198396793587175, 0.466966966966967, 0.9338677354709419, 0.47597597597597596, 0.9318637274549099, 0.493993993993994, 0.9418837675350702, 0.506006006006006, 0.9458917835671342, 0.5165165165165165, 0.8997995991983968, 0.7237237237237237, 0.8937875751503006, 0.7342342342342343, 0.87374749498998, 0.7462462462462462, 0.8276553106212425, 0.7567567567567568]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/28.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.45691382765531063, 0.6321321321321322, 0.4288577154308617, 0.6276276276276276, 0.39478957915831664, 0.6261261261261262, 0.2905811623246493, 0.6246246246246246, 0.280561122244489, 0.5930930930930931, 0.24849699398797595, 0.3768768768768769, 0.2625250501002004, 0.34234234234234234, 0.28256513026052105, 0.3228228228228228, 0.2865731462925852, 0.2972972972972973, 0.2865731462925852, 0.24774774774774774, 0.2905811623246493, 0.22822822822822822, 0.2845691382765531, 0.2222222222222222, 0.28256513026052105, 0.2147147147147147, 0.280561122244489, 0.18018018018018017, 0.2845691382765531, 0.17717717717717718, 0.2985971943887776, 0.17417417417417416, 0.3486973947895792, 0.16966966966966968, 0.3867735470941884, 0.17117117117117117, 0.39879759519038077, 0.17417417417417416, 0.40480961923847697, 0.17717717717717718, 0.41082164328657317, 0.22072072072072071, 0.4028056112224449, 0.22372372372372373, 0.4028056112224449, 0.22822822822822822, 0.41082164328657317, 0.24324324324324326, 0.4248496993987976, 0.3063063063063063, 0.4308617234468938, 0.3183183183183183, 0.45691382765531063, 0.3408408408408408, 0.4729458917835671, 0.37237237237237236, 0.4789579158316633, 0.5975975975975976, 0.4749498997995992, 0.6126126126126126, 0.46693386773547096, 0.6246246246246246, 0.45691382765531063, 0.6321321321321322]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7474949899799599, 0.6606606606606606, 0.7414829659318637, 0.6606606606606606, 0.7194388777555111, 0.6486486486486487, 0.6733466933867736, 0.6306306306306306, 0.6452905811623246, 0.6276276276276276, 0.6112224448897795, 0.6276276276276276, 0.5791583166332666, 0.6306306306306306, 0.5771543086172345, 0.6096096096096096, 0.5831663326653307, 0.5045045045045045, 0.5831663326653307, 0.42792792792792794, 0.5891783567134269, 0.4189189189189189, 0.6072144288577155, 0.4024024024024024, 0.6092184368737475, 0.38288288288288286, 0.6232464929859719, 0.37537537537537535, 0.6713426853707415, 0.36786786786786785, 0.7114228456913828, 0.36786786786786785, 0.7615230460921844, 0.3768768768768769, 0.7775551102204409, 0.38288288288288286, 0.7915831663326653, 0.39039039039039036, 0.7935871743486974, 0.3948948948948949, 0.7895791583166333, 0.4009009009009009, 0.7895791583166333, 0.4099099099099099, 0.8036072144288577, 0.42342342342342343, 0.8076152304609219, 0.43543543543543545, 0.8056112224448898, 0.46096096096096095, 0.7975951903807615, 0.4894894894894895, 0.7955911823647295, 0.512012012012012, 0.7895791583166333, 0.527027027027027, 0.7835671342685371, 0.5855855855855856, 0.7775551102204409, 0.6036036036036037, 0.7735470941883767, 0.6396396396396397, 0.7675350701402806, 0.6471471471471472, 0.7474949899799599, 0.6606606606606606]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6492985971943888, 0.8168168168168168, 0.6152304609218436, 0.8153153153153153, 0.5671342685370742, 0.8063063063063063, 0.5230460921843687, 0.8033033033033034, 0.4909819639278557, 0.8033033033033034, 0.4028056112224449, 0.8153153153153153, 0.22845691382765532, 0.8138138138138138, 0.21042084168336672, 0.8093093093093093, 0.1963927855711423, 0.7897897897897898, 0.18637274549098196, 0.7432432432432432, 0.19238476953907815, 0.6846846846846847, 0.20040080160320642, 0.6681681681681682, 0.20040080160320642, 0.6621621621621622, 0.21042084168336672, 0.6456456456456456, 0.22244488977955912, 0.6321321321321322, 0.24248496993987975, 0.6261261261261262, 0.42084168336673344, 0.6276276276276276, 0.48296593186372744, 0.6381381381381381, 0.5531062124248497, 0.6381381381381381, 0.5851703406813628, 0.6321321321321322, 0.6332665330661322, 0.6276276276276276, 0.6733466933867736, 0.6321321321321322, 0.7114228456913828, 0.6471471471471472, 0.7414829659318637, 0.6621621621621622, 0.7715430861723447, 0.6621621621621622, 0.7955911823647295, 0.6531531531531531, 0.8136272545090181, 0.6516516516516516, 0.8236472945891784, 0.6546546546546547, 0.8376753507014028, 0.6651651651651652, 0.8777555110220441, 0.6651651651651652, 0.8837675350701403, 0.6666666666666666, 0.8977955911823647, 0.6756756756756757, 0.9098196392785571, 0.6966966966966966, 0.9158316633266533, 0.7192192192192193, 0.9158316633266533, 0.7522522522522522, 0.9018036072144289, 0.7747747747747747, 0.8897795591182365, 0.7792792792792793, 0.8496993987975952, 0.7792792792792793, 0.8376753507014028, 0.7927927927927928, 0.8276553106212425, 0.7942942942942943, 0.8176352705410822, 0.7942942942942943, 0.8076152304609219, 0.7882882882882883, 0.7855711422845691, 0.7822822822822822, 0.751503006012024, 0.7822822822822822, 0.7394789579158316, 0.7867867867867868, 0.7294589178356713, 0.7942942942942943, 0.6893787575150301, 0.8108108108108109, 0.6813627254509018, 0.8108108108108109, 0.6713426853707415, 0.8153153153153153, 0.6492985971943888, 0.8168168168168168]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/3.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.6472945891783567, 0.6831831831831832, 0.625250501002004, 0.6831831831831832, 0.5811623246492986, 0.6756756756756757, 0.5450901803607214, 0.6576576576576577, 0.5250501002004008, 0.6336336336336337, 0.5290581162324649, 0.4069069069069069, 0.531062124248497, 0.4009009009009009, 0.5531062124248497, 0.3783783783783784, 0.5531062124248497, 0.36186186186186187, 0.5671342685370742, 0.35435435435435436, 0.6072144288577155, 0.3483483483483483, 0.6713426853707415, 0.3483483483483483, 0.7314629258517034, 0.35585585585585583, 0.751503006012024, 0.3633633633633634, 0.7474949899799599, 0.3783783783783784, 0.7675350701402806, 0.4084084084084084, 0.7655310621242485, 0.43993993993993996, 0.7615230460921844, 0.45045045045045046, 0.751503006012024, 0.5180180180180181, 0.751503006012024, 0.5405405405405406, 0.7414829659318637, 0.5990990990990991, 0.7374749498997996, 0.6456456456456456, 0.7194388777555111, 0.6606606606606606, 0.7014028056112225, 0.6696696696696697, 0.6472945891783567, 0.6831831831831832]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/30.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.2665330661322645, 0.6426426426426426, 0.24248496993987975, 0.6426426426426426, 0.21442885771543085, 0.6366366366366366, 0.19438877755511022, 0.6231231231231231, 0.18637274549098196, 0.6066066066066066, 0.18637274549098196, 0.5990990990990991, 0.18036072144288579, 0.5885885885885885, 0.1743486973947896, 0.5585585585585585, 0.1683366733466934, 0.545045045045045, 0.16432865731462926, 0.4774774774774775, 0.14428857715430862, 0.44894894894894893, 0.14228456913827656, 0.43543543543543545, 0.13827655310621242, 0.43093093093093093, 0.13827655310621242, 0.4159159159159159, 0.14428857715430862, 0.3933933933933934, 0.15831663326653306, 0.37237237237237236, 0.15831663326653306, 0.35435435435435436, 0.14228456913827656, 0.3408408408408408, 0.13827655310621242, 0.3303303303303303, 0.14228456913827656, 0.3228228228228228, 0.14829659318637275, 0.31981981981981983, 0.14428857715430862, 0.2897897897897898, 0.1462925851703407, 0.28678678678678676, 0.1623246492985972, 0.27927927927927926, 0.19839679358717435, 0.2732732732732733, 0.24448897795591182, 0.2747747747747748, 0.2625250501002004, 0.2822822822822823, 0.2685370741482966, 0.3108108108108108, 0.280561122244489, 0.31681681681681684, 0.2865731462925852, 0.3228228228228228, 0.27655310621242485, 0.3408408408408408, 0.2785571142284569, 0.3588588588588589, 0.3106212424849699, 0.38738738738738737, 0.3226452905811623, 0.4144144144144144, 0.3186372745490982, 0.47147147147147145, 0.32064128256513025, 0.48348348348348347, 0.32665330661322645, 0.4894894894894895, 0.33867735470941884, 0.5180180180180181, 0.342685370741483, 0.5630630630630631, 0.3466933867735471, 0.575075075075075, 0.3466933867735471, 0.5975975975975976, 0.342685370741483, 0.6006006006006006, 0.3406813627254509, 0.6096096096096096, 0.3226452905811623, 0.6231231231231231, 0.3066132264529058, 0.6291291291291291, 0.2985971943887776, 0.6351351351351351, 0.2665330661322645, 0.6426426426426426]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7615230460921844, 0.6591591591591591, 0.7314629258517034, 0.6591591591591591, 0.7034068136272545, 0.6501501501501501, 0.6833667334669339, 0.6411411411411412, 0.6713426853707415, 0.6306306306306306, 0.657314629258517, 0.6126126126126126, 0.6613226452905812, 0.5375375375375375, 0.6713426853707415, 0.4624624624624625, 0.6713426853707415, 0.4369369369369369, 0.687374749498998, 0.4219219219219219, 0.6893787575150301, 0.4084084084084084, 0.6993987975951904, 0.3993993993993994, 0.7274549098196392, 0.3918918918918919, 0.749498997995992, 0.3888888888888889, 0.7715430861723447, 0.3888888888888889, 0.8096192384769539, 0.3933933933933934, 0.8396793587174348, 0.4039039039039039, 0.8557114228456913, 0.4174174174174174, 0.8517034068136272, 0.4294294294294294, 0.8677354709418837, 0.45045045045045046, 0.845691382765531, 0.5420420420420421, 0.8356713426853707, 0.5975975975975976, 0.8316633266533067, 0.6051051051051051, 0.8296593186372746, 0.6291291291291291, 0.8156312625250501, 0.6441441441441441, 0.7955911823647295, 0.6531531531531531, 0.7615230460921844, 0.6591591591591591]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7434869739478958, 0.8468468468468469, 0.47695390781563124, 0.8378378378378378, 0.3847695390781563, 0.8378378378378378, 0.342685370741483, 0.8333333333333334, 0.3066132264529058, 0.8168168168168168, 0.28857715430861725, 0.8018018018018018, 0.2685370741482966, 0.7942942942942943, 0.21643286573146292, 0.7882882882882883, 0.19839679358717435, 0.7837837837837838, 0.18637274549098196, 0.7837837837837838, 0.17835671342685372, 0.7792792792792793, 0.17034068136272545, 0.7792792792792793, 0.16633266533066132, 0.7837837837837838, 0.11022044088176353, 0.7807807807807807, 0.10420841683366733, 0.7762762762762763, 0.09619238476953908, 0.7627627627627628, 0.10020040080160321, 0.7222222222222222, 0.11222444889779559, 0.7012012012012012, 0.13226452905811623, 0.6906906906906907, 0.17635270541082165, 0.6921921921921922, 0.18236472945891782, 0.6966966966966966, 0.19438877755511022, 0.6966966966966966, 0.20040080160320642, 0.6936936936936937, 0.21442885771543085, 0.6921921921921922, 0.280561122244489, 0.6876876876876877, 0.3046092184368738, 0.6801801801801802, 0.31462925851703405, 0.6726726726726727, 0.342685370741483, 0.6591591591591591, 0.37675350701402804, 0.6531531531531531, 0.7134268537074149, 0.6591591591591591, 0.7454909819639278, 0.6651651651651652, 0.7575150300601202, 0.6651651651651652, 0.7595190380761523, 0.6681681681681682, 0.7715430861723447, 0.6681681681681682, 0.8036072144288577, 0.6786786786786787, 0.811623246492986, 0.6816816816816816, 0.8196392785571143, 0.6921921921921922, 0.8196392785571143, 0.7072072072072072, 0.8136272545090181, 0.7177177177177178, 0.8296593186372746, 0.7267267267267268, 0.8316633266533067, 0.7522522522522522, 0.811623246492986, 0.7672672672672672, 0.8276553106212425, 0.7777777777777778, 0.8336673346693386, 0.7882882882882883, 0.8336673346693386, 0.7957957957957958, 0.8296593186372746, 0.8108108108108109, 0.8196392785571143, 0.8168168168168168, 0.8176352705410822, 0.8258258258258259, 0.8076152304609219, 0.8333333333333334, 0.7755511022044088, 0.8423423423423423, 0.7434869739478958, 0.8468468468468469]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/31.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3346693386773547, 0.6096096096096096, 0.30861723446893785, 0.6096096096096096, 0.2905811623246493, 0.6066066066066066, 0.2745490981963928, 0.6006006006006006, 0.2625250501002004, 0.5855855855855856, 0.2565130260521042, 0.5495495495495496, 0.24849699398797595, 0.524024024024024, 0.24849699398797595, 0.5045045045045045, 0.25250501002004005, 0.493993993993994, 0.24849699398797595, 0.4624624624624625, 0.23446893787575152, 0.44294294294294295, 0.22845691382765532, 0.42792792792792794, 0.23046092184368738, 0.4024024024024024, 0.24849699398797595, 0.3738738738738739, 0.24849699398797595, 0.3588588588588589, 0.23046092184368738, 0.3408408408408408, 0.23046092184368738, 0.33783783783783783, 0.24048096192384769, 0.33183183183183185, 0.23847695390781562, 0.3078078078078078, 0.24649298597194388, 0.3003003003003003, 0.2905811623246493, 0.29429429429429427, 0.32064128256513025, 0.2957957957957958, 0.33266533066132264, 0.3003003003003003, 0.3366733466933868, 0.3213213213213213, 0.3527054108216433, 0.3333333333333333, 0.3527054108216433, 0.33783783783783783, 0.34468937875751504, 0.3483483483483483, 0.34468937875751504, 0.3633633633633634, 0.3667334669338677, 0.3843843843843844, 0.3807615230460922, 0.4039039039039039, 0.3807615230460922, 0.42492492492492495, 0.37675350701402804, 0.4444444444444444, 0.3787575150300601, 0.481981981981982, 0.3847695390781563, 0.487987987987988, 0.3927855711422846, 0.5135135135135135, 0.39879759519038077, 0.5735735735735735, 0.3927855711422846, 0.5825825825825826, 0.374749498997996, 0.5960960960960962, 0.3587174348697395, 0.6036036036036037, 0.3346693386773547, 0.6096096096096096]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5290581162324649, 0.6876876876876877, 0.5130260521042084, 0.6876876876876877, 0.49899799599198397, 0.6846846846846847, 0.4909819639278557, 0.6741741741741741, 0.4709418837675351, 0.6711711711711712, 0.4529058116232465, 0.6471471471471472, 0.4468937875751503, 0.6231231231231231, 0.43286573146292584, 0.4444444444444444, 0.43687374749499, 0.42342342342342343, 0.46092184368737477, 0.4009009009009009, 0.46693386773547096, 0.3888888888888889, 0.46893787575150303, 0.3408408408408408, 0.4749498997995992, 0.32732732732732733, 0.4749498997995992, 0.3228228228228228, 0.46893787575150303, 0.31681681681681684, 0.46893787575150303, 0.28378378378378377, 0.48697394789579157, 0.2777777777777778, 0.5170340681362725, 0.2747747747747748, 0.5531062124248497, 0.27627627627627627, 0.5671342685370742, 0.2807807807807808, 0.5711422845691383, 0.28378378378378377, 0.5711422845691383, 0.3183183183183183, 0.5671342685370742, 0.3213213213213213, 0.5671342685370742, 0.33183183183183185, 0.5711422845691383, 0.33483483483483484, 0.5711422845691383, 0.34984984984984985, 0.5791583166332666, 0.3768768768768769, 0.5791583166332666, 0.38738738738738737, 0.6032064128256514, 0.4114114114114114, 0.6192384769539078, 0.43843843843843844, 0.6172344689378757, 0.6336336336336337, 0.6032064128256514, 0.6591591591591591, 0.593186372745491, 0.6636636636636637, 0.5791583166332666, 0.6801801801801802, 0.5651302605210421, 0.6846846846846847, 0.5551102204408818, 0.6831831831831832, 0.5511022044088176, 0.6801801801801802, 0.5450901803607214, 0.6666666666666666, 0.5410821643286573, 0.6666666666666666, 0.5410821643286573, 0.6741741741741741, 0.5290581162324649, 0.6876876876876877]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.8316633266533067, 0.8078078078078078, 0.7875751503006012, 0.8078078078078078, 0.751503006012024, 0.7987987987987988, 0.7334669338677354, 0.7912912912912913, 0.7114228456913828, 0.7747747747747747, 0.6953907815631263, 0.7537537537537538, 0.7034068136272545, 0.5540540540540541, 0.7094188376753507, 0.5435435435435435, 0.7234468937875751, 0.5315315315315315, 0.7254509018036072, 0.5165165165165165, 0.7294589178356713, 0.5105105105105106, 0.7535070140280561, 0.5, 0.7895791583166333, 0.493993993993994, 0.8296593186372746, 0.4954954954954955, 0.8597194388777555, 0.5, 0.8837675350701403, 0.506006006006006, 0.8997995991983968, 0.5135135135135135, 0.9138276553106213, 0.521021021021021, 0.9198396793587175, 0.5285285285285285, 0.9158316633266533, 0.545045045045045, 0.9278557114228457, 0.5555555555555556, 0.9338677354709419, 0.566066066066066, 0.9338677354709419, 0.5795795795795796, 0.8977955911823647, 0.7492492492492493, 0.8957915831663327, 0.7702702702702703, 0.8837675350701403, 0.7867867867867868, 0.8697394789579158, 0.7972972972972973, 0.845691382765531, 0.8033033033033034, 0.843687374749499, 0.8063063063063063, 0.8316633266533067, 0.8078078078078078]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/32.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.21643286573146292, 0.6126126126126126, 0.19839679358717435, 0.6111111111111112, 0.18837675350701402, 0.6066066066066066, 0.1843687374749499, 0.6021021021021021, 0.1743486973947896, 0.5990990990990991, 0.1683366733466934, 0.5930930930930931, 0.156312625250501, 0.5795795795795796, 0.1462925851703407, 0.5480480480480481, 0.1402805611222445, 0.503003003003003, 0.13026052104208416, 0.4774774774774775, 0.12024048096192384, 0.42492492492492495, 0.11422845691382766, 0.4099099099099099, 0.11623246492985972, 0.38738738738738737, 0.12024048096192384, 0.3783783783783784, 0.1342685370741483, 0.36486486486486486, 0.13627254509018036, 0.3588588588588589, 0.13627254509018036, 0.2927927927927928, 0.13026052104208416, 0.2882882882882883, 0.1282565130260521, 0.26126126126126126, 0.1342685370741483, 0.25825825825825827, 0.156312625250501, 0.2552552552552553, 0.19839679358717435, 0.25375375375375375, 0.21643286573146292, 0.25825825825825827, 0.22244488977955912, 0.2852852852852853, 0.218436873747495, 0.2897897897897898, 0.218436873747495, 0.2957957957957958, 0.22244488977955912, 0.3003003003003003, 0.22645290581162325, 0.31681681681681684, 0.24048096192384769, 0.3483483483483483, 0.25250501002004005, 0.36036036036036034, 0.2625250501002004, 0.3633633633633634, 0.27655310621242485, 0.37987987987987987, 0.28256513026052105, 0.3933933933933934, 0.2865731462925852, 0.43543543543543545, 0.3046092184368738, 0.539039039039039, 0.3046092184368738, 0.5690690690690691, 0.30060120240480964, 0.581081081081081, 0.2925851703406814, 0.5900900900900901, 0.2845691382765531, 0.5945945945945946, 0.2745490981963928, 0.5945945945945946, 0.2665330661322645, 0.6051051051051051, 0.24849699398797595, 0.6096096096096096, 0.24048096192384769, 0.6066066066066066, 0.22845691382765532, 0.5945945945945946, 0.22845691382765532, 0.6021021021021021, 0.22444889779559118, 0.6081081081081081, 0.21643286573146292, 0.6126126126126126]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.4248496993987976, 0.6981981981981982, 0.3967935871743487, 0.6951951951951952, 0.3807615230460922, 0.6891891891891891, 0.3667334669338677, 0.6786786786786787, 0.35671342685370744, 0.6681681681681682, 0.34468937875751504, 0.5885885885885885, 0.3486973947895792, 0.53003003003003, 0.3466933867735471, 0.5195195195195195, 0.3306613226452906, 0.484984984984985, 0.33266533066132264, 0.45795795795795796, 0.3406813627254509, 0.44144144144144143, 0.35671342685370744, 0.4219219219219219, 0.35671342685370744, 0.40540540540540543, 0.342685370741483, 0.38738738738738737, 0.342685370741483, 0.37987987987987987, 0.35470941883767537, 0.36936936936936937, 0.35470941883767537, 0.3408408408408408, 0.35671342685370744, 0.33783783783783783, 0.36472945891783565, 0.33783783783783783, 0.3807615230460922, 0.33183183183183185, 0.4028056112224449, 0.32882882882882886, 0.43687374749499, 0.3303303303303303, 0.4589178356713427, 0.33483483483483484, 0.4649298597194389, 0.33933933933933935, 0.4709418837675351, 0.36936936936936937, 0.4789579158316633, 0.37237237237237236, 0.4849699398797595, 0.37987987987987987, 0.4729458917835671, 0.4039039039039039, 0.4729458917835671, 0.4189189189189189, 0.4849699398797595, 0.42792792792792794, 0.49899799599198397, 0.4444444444444444, 0.5090180360721442, 0.4744744744744745, 0.5090180360721442, 0.487987987987988, 0.501002004008016, 0.5045045045045045, 0.49899799599198397, 0.5165165165165165, 0.501002004008016, 0.5480480480480481, 0.5110220440881763, 0.5735735735735735, 0.5130260521042084, 0.6501501501501501, 0.5070140280561122, 0.6591591591591591, 0.5070140280561122, 0.6681681681681682, 0.48296593186372744, 0.6846846846846847, 0.4649298597194389, 0.6921921921921922, 0.4468937875751503, 0.6966966966966966, 0.4248496993987976, 0.6981981981981982]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7875751503006012, 0.8213213213213213, 0.7535070140280561, 0.8183183183183184, 0.7234468937875751, 0.8093093093093093, 0.6933867735470942, 0.7912912912912913, 0.6833667334669339, 0.7822822822822822, 0.6693386773547094, 0.7612612612612613, 0.6833667334669339, 0.5585585585585585, 0.7054108216432866, 0.5375375375375375, 0.7034068136272545, 0.527027027027027, 0.7114228456913828, 0.5180180180180181, 0.7354709418837675, 0.509009009009009, 0.7735470941883767, 0.5045045045045045, 0.8136272545090181, 0.506006006006006, 0.843687374749499, 0.5135135135135135, 0.8537074148296593, 0.5135135135135135, 0.8877755511022044, 0.5285285285285285, 0.9018036072144289, 0.5420420420420421, 0.8977955911823647, 0.5585585585585585, 0.9078156312625251, 0.566066066066066, 0.9138276553106213, 0.5795795795795796, 0.9118236472945892, 0.6051051051051051, 0.875751503006012, 0.7537537537537538, 0.8717434869739479, 0.7822822822822822, 0.8637274549098196, 0.7957957957957958, 0.8416833667334669, 0.8108108108108109, 0.8156312625250501, 0.8183183183183184, 0.7875751503006012, 0.8213213213213213]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/34.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.27054108216432865, 0.5945945945945946, 0.250501002004008, 0.5945945945945946, 0.23847695390781562, 0.5855855855855856, 0.22845691382765532, 0.5840840840840841, 0.22044088176352705, 0.5765765765765766, 0.20841683366733466, 0.5615615615615616, 0.20040080160320642, 0.5375375375375375, 0.19839679358717435, 0.5180180180180181, 0.17234468937875752, 0.4069069069069069, 0.16432865731462926, 0.38738738738738737, 0.16633266533066132, 0.36036036036036034, 0.18637274549098196, 0.3408408408408408, 0.18637274549098196, 0.26576576576576577, 0.18236472945891782, 0.26426426426426425, 0.17835671342685372, 0.25675675675675674, 0.17635270541082165, 0.23273273273273273, 0.19438877755511022, 0.22822822822822822, 0.2124248496993988, 0.22822822822822822, 0.22645290581162325, 0.22522522522522523, 0.25250501002004005, 0.22522522522522523, 0.26452905811623245, 0.22822822822822822, 0.2685370741482966, 0.23423423423423423, 0.2725450901803607, 0.25675675675675674, 0.2725450901803607, 0.26126126126126126, 0.2665330661322645, 0.26576576576576577, 0.27054108216432865, 0.26876876876876876, 0.27054108216432865, 0.2732732732732733, 0.280561122244489, 0.2897897897897898, 0.2865731462925852, 0.3123123123123123, 0.2965931863727455, 0.32882882882882886, 0.3166332665330661, 0.34384384384384387, 0.32665330661322645, 0.35585585585585583, 0.3346693386773547, 0.37987987987987987, 0.3527054108216433, 0.5180180180180181, 0.35671342685370744, 0.524024024024024, 0.35671342685370744, 0.551051051051051, 0.3466933867735471, 0.5705705705705706, 0.3366733466933868, 0.5765765765765766, 0.3286573146292585, 0.5765765765765766, 0.32064128256513025, 0.5870870870870871, 0.3046092184368738, 0.5915915915915916, 0.2925851703406814, 0.5900900900900901, 0.28256513026052105, 0.5765765765765766, 0.280561122244489, 0.5885885885885885, 0.27054108216432865, 0.5945945945945946]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.4789579158316633, 0.6726726726726727, 0.44889779559118237, 0.6696696696696697, 0.43286573146292584, 0.6636636636636637, 0.4168336673346693, 0.6561561561561562, 0.4028056112224449, 0.6426426426426426, 0.38877755511022044, 0.5645645645645646, 0.3867735470941884, 0.5255255255255256, 0.37675350701402804, 0.46546546546546547, 0.3807615230460922, 0.45495495495495497, 0.3907815631262525, 0.44594594594594594, 0.3867735470941884, 0.4294294294294294, 0.39879759519038077, 0.42042042042042044, 0.40480961923847697, 0.42042042042042044, 0.42685370741482964, 0.41291291291291293, 0.45090180360721444, 0.4099099099099099, 0.501002004008016, 0.4099099099099099, 0.533066132264529, 0.4189189189189189, 0.5430861723446894, 0.4264264264264264, 0.5390781563126252, 0.4369369369369369, 0.5591182364729459, 0.45495495495495497, 0.5591182364729459, 0.5570570570570571, 0.56312625250501, 0.6336336336336337, 0.5551102204408818, 0.6456456456456456, 0.533066132264529, 0.6591591591591591, 0.5270541082164328, 0.6591591591591591, 0.5130260521042084, 0.6666666666666666, 0.4789579158316633, 0.6726726726726727]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8176352705410822, 0.8138138138138138, 0.7835671342685371, 0.8138138138138138, 0.7394789579158316, 0.8033033033033034, 0.7034068136272545, 0.7792792792792793, 0.6893787575150301, 0.7597597597597597, 0.6893787575150301, 0.6531531531531531, 0.7054108216432866, 0.6156156156156156, 0.7054108216432866, 0.5720720720720721, 0.6993987975951904, 0.5630630630630631, 0.6953907815631263, 0.5465465465465466, 0.6953907815631263, 0.5165165165165165, 0.7134268537074149, 0.4864864864864865, 0.7374749498997996, 0.46546546546546547, 0.7454909819639278, 0.45495495495495497, 0.7454909819639278, 0.43543543543543545, 0.7334669338677354, 0.42042042042042044, 0.7334669338677354, 0.4084084084084084, 0.7414829659318637, 0.3993993993993994, 0.7535070140280561, 0.3933933933933934, 0.7575150300601202, 0.36036036036036034, 0.7655310621242485, 0.35435435435435436, 0.7895791583166333, 0.34684684684684686, 0.8617234468937875, 0.34534534534534533, 0.8957915831663327, 0.35285285285285284, 0.9118236472945892, 0.36036036036036034, 0.9158316633266533, 0.3633633633633634, 0.9158316633266533, 0.4009009009009009, 0.9258517034068137, 0.4084084084084084, 0.9298597194388778, 0.42342342342342343, 0.9218436873747495, 0.43543543543543545, 0.9098196392785571, 0.4444444444444444, 0.905811623246493, 0.4519519519519519, 0.905811623246493, 0.46846846846846846, 0.9278557114228457, 0.496996996996997, 0.9278557114228457, 0.503003003003003, 0.9338677354709419, 0.5105105105105106, 0.9378757515030061, 0.527027027027027, 0.9378757515030061, 0.5480480480480481, 0.9298597194388778, 0.5705705705705706, 0.9118236472945892, 0.5975975975975976, 0.9098196392785571, 0.6051051051051051, 0.9078156312625251, 0.6486486486486487, 0.9118236472945892, 0.6831831831831832, 0.905811623246493, 0.6981981981981982, 0.9038076152304609, 0.7177177177177178, 0.8977955911823647, 0.7312312312312312, 0.8977955911823647, 0.7477477477477478, 0.8897795591182365, 0.7777777777777778, 0.8797595190380761, 0.7897897897897898, 0.8597194388777555, 0.8033033033033034, 0.8496993987975952, 0.8078078078078078, 0.8176352705410822, 0.8138138138138138]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/35.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.2965931863727455, 0.8303303303303303, 0.280561122244489, 0.8303303303303303, 0.2625250501002004, 0.8138138138138138, 0.25851703406813625, 0.8213213213213213, 0.24849699398797595, 0.8288288288288288, 0.23647294589178355, 0.8288288288288288, 0.22044088176352705, 0.8243243243243243, 0.2124248496993988, 0.8168168168168168, 0.17635270541082165, 0.7747747747747747, 0.1743486973947896, 0.7627627627627628, 0.1683366733466934, 0.7537537537537538, 0.12424849699398798, 0.5630630630630631, 0.12424849699398798, 0.5330330330330331, 0.14228456913827656, 0.503003003003003, 0.15831663326653306, 0.4864864864864865, 0.16032064128256512, 0.4024024024024024, 0.15430861723446893, 0.3993993993993994, 0.1523046092184369, 0.3948948948948949, 0.1462925851703407, 0.35735735735735735, 0.156312625250501, 0.3483483483483483, 0.17034068136272545, 0.34384384384384387, 0.21042084168336672, 0.33933933933933935, 0.23847695390781562, 0.33933933933933935, 0.2685370741482966, 0.34534534534534533, 0.27655310621242485, 0.3483483483483483, 0.2845691382765531, 0.38738738738738737, 0.2845691382765531, 0.39039039039039036, 0.2785571142284569, 0.3948948948948949, 0.2785571142284569, 0.4009009009009009, 0.2845691382765531, 0.4069069069069069, 0.3066132264529058, 0.47297297297297297, 0.342685370741483, 0.5, 0.3587174348697395, 0.5255255255255256, 0.36472945891783565, 0.5585585585585585, 0.36472945891783565, 0.5915915915915916, 0.3787575150300601, 0.7237237237237237, 0.3787575150300601, 0.7612612612612613, 0.37074148296593185, 0.7822822822822822, 0.35470941883767537, 0.8018018018018018, 0.34468937875751504, 0.8063063063063063, 0.3286573146292585, 0.8048048048048048, 0.3186372745490982, 0.8228228228228228, 0.2965931863727455, 0.8303303303303303]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5150300601202404, 0.6906906906906907, 0.4909819639278557, 0.6906906906906907, 0.4729458917835671, 0.6876876876876877, 0.4408817635270541, 0.6711711711711712, 0.42685370741482964, 0.6561561561561562, 0.42685370741482964, 0.6306306306306306, 0.41282565130260523, 0.4924924924924925, 0.4228456913827655, 0.47597597597597596, 0.4288577154308617, 0.47297297297297297, 0.4248496993987976, 0.46096096096096095, 0.4308617234468938, 0.45495495495495497, 0.4468937875751503, 0.44744744744744747, 0.48296593186372744, 0.44144144144144143, 0.5170340681362725, 0.44144144144144143, 0.5490981963927856, 0.44594594594594594, 0.561122244488978, 0.45045045045045046, 0.5691382765531062, 0.45795795795795796, 0.5691382765531062, 0.47147147147147145, 0.5831663326653307, 0.48348348348348347, 0.5851703406813628, 0.4924924924924925, 0.5831663326653307, 0.6546546546546547, 0.5651302605210421, 0.6726726726726727, 0.531062124248497, 0.6876876876876877, 0.5150300601202404, 0.6906906906906907]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7114228456913828, 0.6171171171171171, 0.685370741482966, 0.6171171171171171, 0.6653306613226453, 0.6141141141141141, 0.6472945891783567, 0.6081081081081081, 0.6352705410821643, 0.6021021021021021, 0.6232464929859719, 0.5900900900900901, 0.6192384769539078, 0.5795795795795796, 0.6212424849699398, 0.5105105105105106, 0.6312625250501002, 0.49099099099099097, 0.6332665330661322, 0.4744744744744745, 0.6312625250501002, 0.44744744744744747, 0.625250501002004, 0.43843843843843844, 0.627254509018036, 0.4144144144144144, 0.6332665330661322, 0.4024024024024024, 0.657314629258517, 0.37537537537537535, 0.657314629258517, 0.3663663663663664, 0.655310621242485, 0.3588588588588589, 0.6513026052104208, 0.35585585585585583, 0.6492985971943888, 0.34234234234234234, 0.6613226452905812, 0.33483483483483484, 0.6633266533066132, 0.3123123123123123, 0.6693386773547094, 0.3078078078078078, 0.6993987975951904, 0.3033033033033033, 0.7334669338677354, 0.3048048048048048, 0.751503006012024, 0.30930930930930933, 0.7575150300601202, 0.3123123123123123, 0.7595190380761523, 0.33933933933933935, 0.7695390781563126, 0.34384384384384387, 0.7695390781563126, 0.34984984984984985, 0.7535070140280561, 0.3663663663663664, 0.7535070140280561, 0.37537537537537535, 0.7755511022044088, 0.4084084084084084, 0.7755511022044088, 0.44144144144144143, 0.7635270541082164, 0.45645645645645644, 0.7615230460921844, 0.46396396396396394, 0.7615230460921844, 0.5015015015015015, 0.7655310621242485, 0.5165165165165165, 0.7655310621242485, 0.5330330330330331, 0.7575150300601202, 0.5915915915915916, 0.7394789579158316, 0.6081081081081081, 0.7114228456913828, 0.6171171171171171]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/36.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.24849699398797595, 0.8978978978978979, 0.23847695390781562, 0.8978978978978979, 0.218436873747495, 0.8828828828828829, 0.20240480961923848, 0.8933933933933934, 0.18036072144288579, 0.8903903903903904, 0.15831663326653306, 0.8723723723723724, 0.14829659318637275, 0.8603603603603603, 0.12625250501002003, 0.8258258258258259, 0.10821643286573146, 0.7597597597597597, 0.06813627254509018, 0.6411411411411412, 0.06212424849699399, 0.6156156156156156, 0.06813627254509018, 0.581081081081081, 0.07615230460921844, 0.5675675675675675, 0.09418837675350701, 0.5495495495495496, 0.09418837675350701, 0.45645645645645644, 0.0841683366733467, 0.45045045045045046, 0.07615230460921844, 0.4084084084084084, 0.09819639278557114, 0.3963963963963964, 0.11422845691382766, 0.3933933933933934, 0.17635270541082165, 0.3888888888888889, 0.20040080160320642, 0.3918918918918919, 0.2124248496993988, 0.3978978978978979, 0.22044088176352705, 0.4144144144144144, 0.22044088176352705, 0.45495495495495497, 0.23647294589178355, 0.481981981981982, 0.25250501002004005, 0.5255255255255256, 0.2845691382765531, 0.545045045045045, 0.3026052104208417, 0.5645645645645646, 0.312625250501002, 0.5840840840840841, 0.312625250501002, 0.5960960960960962, 0.3186372745490982, 0.6156156156156156, 0.3186372745490982, 0.6381381381381381, 0.3246492985971944, 0.6666666666666666, 0.3286573146292585, 0.7117117117117117, 0.342685370741483, 0.7837837837837838, 0.342685370741483, 0.8138138138138138, 0.33867735470941884, 0.8213213213213213, 0.3366733466933868, 0.8378378378378378, 0.3286573146292585, 0.8543543543543544, 0.32064128256513025, 0.8633633633633634, 0.31462925851703405, 0.8678678678678678, 0.3026052104208417, 0.8708708708708709, 0.28857715430861725, 0.8678678678678678, 0.2845691382765531, 0.8723723723723724, 0.280561122244489, 0.8843843843843844, 0.2685370741482966, 0.8918918918918919, 0.24849699398797595, 0.8978978978978979]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.5771543086172345, 0.7567567567567568, 0.39478957915831664, 0.7507507507507507, 0.38877755511022044, 0.7462462462462462, 0.3847695390781563, 0.6651651651651652, 0.3727454909819639, 0.5720720720720721, 0.36072144288577157, 0.43093093093093093, 0.3527054108216433, 0.38738738738738737, 0.37074148296593185, 0.3153153153153153, 0.3727454909819639, 0.27927927927927926, 0.3787575150300601, 0.2747747747747748, 0.5751503006012024, 0.2747747747747748, 0.5851703406813628, 0.27627627627627627, 0.5971943887775552, 0.2807807807807808, 0.593186372745491, 0.35435435435435436, 0.593186372745491, 0.6426426426426426, 0.591182364729459, 0.6906906906906907, 0.5871743486973948, 0.7042042042042042, 0.5871743486973948, 0.7372372372372372, 0.5831663326653307, 0.7507507507507507, 0.5771543086172345, 0.7567567567567568]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7214428857715431, 0.6606606606606606, 0.685370741482966, 0.6606606606606606, 0.6653306613226453, 0.6576576576576577, 0.6452905811623246, 0.6486486486486487, 0.625250501002004, 0.6276276276276276, 0.6232464929859719, 0.5585585585585585, 0.625250501002004, 0.5435435435435435, 0.6332665330661322, 0.5315315315315315, 0.6332665330661322, 0.493993993993994, 0.625250501002004, 0.47597597597597596, 0.625250501002004, 0.45795795795795796, 0.6372745490981964, 0.43093093093093093, 0.6412825651302605, 0.42492492492492495, 0.6513026052104208, 0.4189189189189189, 0.6593186372745491, 0.40540540540540543, 0.657314629258517, 0.3933933933933934, 0.6492985971943888, 0.3858858858858859, 0.6492985971943888, 0.37237237237237236, 0.6593186372745491, 0.3663663663663664, 0.6613226452905812, 0.34534534534534533, 0.6673346693386774, 0.33933933933933935, 0.6973947895791583, 0.33183183183183185, 0.749498997995992, 0.33633633633633636, 0.7635270541082164, 0.34234234234234234, 0.7635270541082164, 0.3663663663663664, 0.7735470941883767, 0.3738738738738739, 0.7735470941883767, 0.38288288288288286, 0.7675350701402806, 0.38738738738738737, 0.7675350701402806, 0.3918918918918919, 0.7615230460921844, 0.3978978978978979, 0.7615230460921844, 0.4159159159159159, 0.7775551102204409, 0.43093093093093093, 0.7855711422845691, 0.4519519519519519, 0.7855711422845691, 0.46996996996997, 0.7715430861723447, 0.4984984984984985, 0.7715430861723447, 0.545045045045045, 0.7755511022044088, 0.5570570570570571, 0.7755511022044088, 0.5735735735735735, 0.7715430861723447, 0.5900900900900901, 0.7695390781563126, 0.6321321321321322, 0.7555110220440882, 0.6471471471471472, 0.7414829659318637, 0.6546546546546547, 0.7214428857715431, 0.6606606606606606]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/37.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.35671342685370744, 0.8453453453453453, 0.30861723446893785, 0.8423423423423423, 0.27655310621242485, 0.8363363363363363, 0.21042084168336672, 0.8318318318318318, 0.18837675350701402, 0.8273273273273273, 0.17034068136272545, 0.8273273273273273, 0.15831663326653306, 0.8258258258258259, 0.15430861723446893, 0.8213213213213213, 0.1523046092184369, 0.7927927927927928, 0.13627254509018036, 0.7342342342342343, 0.12024048096192384, 0.6501501501501501, 0.09619238476953908, 0.5585585585585585, 0.06813627254509018, 0.4264264264264264, 0.06813627254509018, 0.4219219219219219, 0.09218436873747494, 0.3783783783783784, 0.11623246492985972, 0.34534534534534533, 0.11623246492985972, 0.30930930930930933, 0.11823647294589178, 0.3033033033033033, 0.12625250501002003, 0.3003003003003003, 0.20641282565130262, 0.30180180180180183, 0.2665330661322645, 0.3063063063063063, 0.3246492985971944, 0.3063063063063063, 0.35470941883767537, 0.3108108108108108, 0.3667334669338677, 0.31681681681681684, 0.36472945891783565, 0.35585585585585583, 0.38877755511022044, 0.37237237237237236, 0.39879759519038077, 0.3843843843843844, 0.4028056112224449, 0.6336336336336337, 0.4088176352705411, 0.7417417417417418, 0.4028056112224449, 0.7507507507507507, 0.38877755511022044, 0.7897897897897898, 0.3727454909819639, 0.8198198198198198, 0.3727454909819639, 0.8258258258258259, 0.3667334669338677, 0.8363363363363363, 0.35671342685370744, 0.8453453453453453]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.593186372745491, 0.7072072072072072, 0.5871743486973948, 0.7072072072072072, 0.5771543086172345, 0.6996996996996997, 0.5751503006012024, 0.6876876876876877, 0.5711422845691383, 0.6861861861861862, 0.5691382765531062, 0.6861861861861862, 0.5651302605210421, 0.6981981981981982, 0.5531062124248497, 0.7042042042042042, 0.5350701402805611, 0.6981981981981982, 0.5270541082164328, 0.6876876876876877, 0.5110220440881763, 0.6786786786786787, 0.49899799599198397, 0.6606606606606606, 0.49498997995991983, 0.6336336336336337, 0.4969939879759519, 0.46846846846846846, 0.5050100200400801, 0.4519519519519519, 0.5130260521042084, 0.44294294294294295, 0.5290581162324649, 0.43243243243243246, 0.533066132264529, 0.42342342342342343, 0.5370741482965932, 0.3888888888888889, 0.5450901803607214, 0.3663663663663664, 0.5450901803607214, 0.3588588588588589, 0.5410821643286573, 0.35435435435435436, 0.5430861723446894, 0.32882882882882886, 0.5511022044088176, 0.3228228228228228, 0.5691382765531062, 0.31981981981981983, 0.6232464929859719, 0.3213213213213213, 0.6392785571142284, 0.32732732732732733, 0.6352705410821643, 0.36036036036036034, 0.6312625250501002, 0.36186186186186187, 0.6352705410821643, 0.37237237237237236, 0.6392785571142284, 0.42042042042042044, 0.6452905811623246, 0.43243243243243246, 0.6653306613226453, 0.45345345345345345, 0.6733466933867736, 0.46996996996997, 0.6653306613226453, 0.581081081081081, 0.6613226452905812, 0.5915915915915916, 0.6613226452905812, 0.6366366366366366, 0.655310621242485, 0.6696696696696697, 0.6472945891783567, 0.6816816816816816, 0.6352705410821643, 0.6921921921921922, 0.6192384769539078, 0.6936936936936937, 0.6072144288577155, 0.7057057057057057, 0.593186372745491, 0.7072072072072072]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7715430861723447, 0.6366366366366366, 0.7274549098196392, 0.6336336336336337, 0.7054108216432866, 0.6261261261261262, 0.687374749498998, 0.6096096096096096, 0.6833667334669339, 0.6021021021021021, 0.685370741482966, 0.545045045045045, 0.6893787575150301, 0.5375375375375375, 0.6893787575150301, 0.5255255255255256, 0.7014028056112225, 0.5045045045045045, 0.7014028056112225, 0.4744744744744745, 0.6973947895791583, 0.466966966966967, 0.6953907815631263, 0.44894894894894893, 0.7014028056112225, 0.43093093093093093, 0.7294589178356713, 0.4009009009009009, 0.7294589178356713, 0.38738738738738737, 0.7234468937875751, 0.36936936936936937, 0.7354709418837675, 0.3588588588588589, 0.7374749498997996, 0.3408408408408408, 0.7434869739478958, 0.33633633633633636, 0.7535070140280561, 0.3333333333333333, 0.7915831663326653, 0.33183183183183185, 0.8196392785571143, 0.33633633633633636, 0.8316633266533067, 0.34234234234234234, 0.8316633266533067, 0.3663663663663664, 0.8376753507014028, 0.3708708708708709, 0.8396793587174348, 0.3783783783783784, 0.8276553106212425, 0.3888888888888889, 0.8256513026052105, 0.4084084084084084, 0.8356713426853707, 0.4189189189189189, 0.843687374749499, 0.43543543543543545, 0.845691382765531, 0.46396396396396394, 0.8316633266533067, 0.4804804804804805, 0.8256513026052105, 0.4984984984984985, 0.8256513026052105, 0.527027027027027, 0.8296593186372746, 0.5330330330330331, 0.8296593186372746, 0.5540540540540541, 0.8236472945891784, 0.5735735735735735, 0.8196392785571143, 0.6126126126126126, 0.8036072144288577, 0.6276276276276276, 0.7755511022044088, 0.6336336336336337, 0.7715430861723447, 0.6366366366366366]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/39.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.32064128256513025, 0.8318318318318318, 0.1402805611222445, 0.8168168168168168, 0.12625250501002003, 0.8153153153153153, 0.12424849699398798, 0.8123123123123123, 0.09218436873747494, 0.6726726726726727, 0.06212424849699399, 0.5675675675675675, 0.03006012024048096, 0.43093093093093093, 0.026052104208416832, 0.4264264264264264, 0.07615230460921844, 0.34234234234234234, 0.07615230460921844, 0.3183183183183183, 0.07214428857715431, 0.3123123123123123, 0.08016032064128256, 0.3033033033033033, 0.15831663326653306, 0.30180180180180183, 0.20240480961923848, 0.3063063063063063, 0.29458917835671344, 0.3078078078078078, 0.312625250501002, 0.3108108108108108, 0.32064128256513025, 0.31681681681681684, 0.32064128256513025, 0.35435435435435436, 0.33266533066132264, 0.36486486486486486, 0.3366733466933868, 0.36486486486486486, 0.35671342685370744, 0.37987987987987987, 0.36072144288577157, 0.527027027027027, 0.3667334669338677, 0.5915915915915916, 0.3727454909819639, 0.7297297297297297, 0.3346693386773547, 0.8183183183183184, 0.32064128256513025, 0.8318318318318318]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5390781563126252, 0.6786786786786787, 0.49899799599198397, 0.6726726726726727, 0.4749498997995992, 0.6576576576576577, 0.46292585170340683, 0.6396396396396397, 0.46092184368737477, 0.6156156156156156, 0.46292585170340683, 0.5630630630630631, 0.46893787575150303, 0.5495495495495496, 0.4709418837675351, 0.5255255255255256, 0.46693386773547096, 0.5015015015015015, 0.4589178356713427, 0.4894894894894895, 0.4589178356713427, 0.4744744744744745, 0.46292585170340683, 0.45795795795795796, 0.4709418837675351, 0.44594594594594594, 0.48296593186372744, 0.43543543543543545, 0.48897795591182364, 0.4219219219219219, 0.48897795591182364, 0.4144144144144144, 0.48096192384769537, 0.4084084084084084, 0.47695390781563124, 0.3993993993993994, 0.4789579158316633, 0.3918918918918919, 0.48897795591182364, 0.3813813813813814, 0.48897795591182364, 0.36036036036036034, 0.49498997995991983, 0.35585585585585583, 0.5170340681362725, 0.35135135135135137, 0.561122244488978, 0.35135135135135137, 0.5771543086172345, 0.35435435435435436, 0.5891783567134269, 0.36036036036036034, 0.5891783567134269, 0.3843843843843844, 0.5971943887775552, 0.3918918918918919, 0.5971943887775552, 0.4039039039039039, 0.5891783567134269, 0.4114114114114114, 0.5891783567134269, 0.43093093093093093, 0.593186372745491, 0.43843843843843844, 0.6032064128256514, 0.4444444444444444, 0.6032064128256514, 0.44894894894894893, 0.6112224448897795, 0.45795795795795796, 0.6132264529058116, 0.46546546546546547, 0.6132264529058116, 0.493993993993994, 0.6092184368737475, 0.4984984984984985, 0.6032064128256514, 0.5195195195195195, 0.6032064128256514, 0.5540540540540541, 0.6092184368737475, 0.5675675675675675, 0.6072144288577155, 0.6426426426426426, 0.5951903807615231, 0.6591591591591591, 0.5831663326653307, 0.6681681681681682, 0.561122244488978, 0.6756756756756757, 0.5390781563126252, 0.6786786786786787]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7635270541082164, 0.6141141141141141, 0.749498997995992, 0.6141141141141141, 0.7414829659318637, 0.6111111111111112, 0.7374749498997996, 0.6051051051051051, 0.7374749498997996, 0.5975975975975976, 0.7334669338677354, 0.5960960960960962, 0.7274549098196392, 0.6066066066066066, 0.7194388777555111, 0.6111111111111112, 0.6993987975951904, 0.6036036036036037, 0.6953907815631263, 0.5960960960960962, 0.6813627254509018, 0.5885885885885885, 0.6733466933867736, 0.5735735735735735, 0.6733466933867736, 0.5435435435435435, 0.6793587174348698, 0.509009009009009, 0.685370741482966, 0.42042042042042044, 0.6953907815631263, 0.3933933933933934, 0.7214428857715431, 0.37237237237237236, 0.7274549098196392, 0.36186186186186187, 0.7334669338677354, 0.33183183183183185, 0.7394789579158316, 0.3213213213213213, 0.7394789579158316, 0.2897897897897898, 0.7474949899799599, 0.28378378378378377, 0.7935871743486974, 0.2822822822822823, 0.8096192384769539, 0.2852852852852853, 0.8216432865731463, 0.2897897897897898, 0.8176352705410822, 0.3153153153153153, 0.811623246492986, 0.3183183183183183, 0.811623246492986, 0.32432432432432434, 0.8156312625250501, 0.32882882882882886, 0.8176352705410822, 0.3768768768768769, 0.8396793587174348, 0.4024024024024024, 0.8396793587174348, 0.4294294294294294, 0.8236472945891784, 0.506006006006006, 0.8176352705410822, 0.56006006006006, 0.811623246492986, 0.5735735735735735, 0.811623246492986, 0.581081081081081, 0.8056112224448898, 0.5930930930930931, 0.7915831663326653, 0.6051051051051051, 0.7735470941883767, 0.6066066066066066, 0.7635270541082164, 0.6141141141141141]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/4.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6492985971943888, 0.7732732732732732, 0.6332665330661322, 0.7702702702702703, 0.625250501002004, 0.7627627627627628, 0.6192384769539078, 0.7432432432432432, 0.6152304609218436, 0.7447447447447447, 0.6152304609218436, 0.7492492492492493, 0.6092184368737475, 0.7537537537537538, 0.6092184368737475, 0.7597597597597597, 0.593186372745491, 0.7702702702702703, 0.5791583166332666, 0.7702702702702703, 0.5551102204408818, 0.7612612612612613, 0.5430861723446894, 0.7432432432432432, 0.5390781563126252, 0.7417417417417418, 0.5250501002004008, 0.7402402402402403, 0.5170340681362725, 0.7312312312312312, 0.501002004008016, 0.7012012012012012, 0.49899799599198397, 0.6831831831831832, 0.5050100200400801, 0.515015015015015, 0.5050100200400801, 0.42792792792792794, 0.5110220440881763, 0.4084084084084084, 0.5250501002004008, 0.38738738738738737, 0.5571142284569138, 0.36036036036036034, 0.5671342685370742, 0.33783783783783783, 0.5771543086172345, 0.2807807807807808, 0.5811623246492986, 0.2672672672672673, 0.5871743486973948, 0.25975975975975973, 0.5871743486973948, 0.24324324324324326, 0.5831663326653307, 0.23723723723723725, 0.5851703406813628, 0.19519519519519518, 0.593186372745491, 0.18618618618618618, 0.6232464929859719, 0.1831831831831832, 0.6733466933867736, 0.1831831831831832, 0.7054108216432866, 0.18618618618618618, 0.7294589178356713, 0.1891891891891892, 0.7394789579158316, 0.19369369369369369, 0.7334669338677354, 0.24024024024024024, 0.7214428857715431, 0.24924924924924924, 0.7214428857715431, 0.25975975975975973, 0.7274549098196392, 0.2702702702702703, 0.7294589178356713, 0.34684684684684686, 0.7374749498997996, 0.3663663663663664, 0.751503006012024, 0.3813813813813814, 0.7735470941883767, 0.4159159159159159, 0.7715430861723447, 0.47897897897897895, 0.7635270541082164, 0.5075075075075075, 0.7615230460921844, 0.5315315315315315, 0.7555110220440882, 0.545045045045045, 0.7414829659318637, 0.6396396396396397, 0.7414829659318637, 0.6621621621621622, 0.7294589178356713, 0.7147147147147147, 0.7014028056112225, 0.7462462462462462, 0.6913827655310621, 0.7477477477477478, 0.687374749498998, 0.7537537537537538, 0.6653306613226453, 0.7687687687687688, 0.6492985971943888, 0.7732732732732732]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/40.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.3246492985971944, 0.8603603603603603, 0.32064128256513025, 0.8603603603603603, 0.3066132264529058, 0.8483483483483484, 0.24649298597194388, 0.7957957957957958, 0.1342685370741483, 0.7072072072072072, 0.11823647294589178, 0.6906906906906907, 0.07214428857715431, 0.6561561561561562, 0.04809619238476954, 0.5795795795795796, 0.04208416833667335, 0.5525525525525525, 0.20040080160320642, 0.509009009009009, 0.21643286573146292, 0.5195195195195195, 0.2605210420841683, 0.539039039039039, 0.3406813627254509, 0.581081081081081, 0.48897795591182364, 0.6501501501501501, 0.48897795591182364, 0.6546546546546547, 0.49298597194388777, 0.6576576576576577, 0.5270541082164328, 0.7297297297297297, 0.5450901803607214, 0.7417417417417418, 0.5591182364729459, 0.7447447447447447, 0.561122244488978, 0.7507507507507507, 0.4849699398797595, 0.7987987987987988, 0.48897795591182364, 0.8093093093093093, 0.47695390781563124, 0.8183183183183184, 0.4228456913827655, 0.8483483483483484, 0.40681362725450904, 0.8483483483483484, 0.40080160320641284, 0.8528528528528528, 0.3927855711422846, 0.8543543543543544, 0.3867735470941884, 0.8528528528528528, 0.3727454909819639, 0.8423423423423423, 0.36472945891783565, 0.8423423423423423, 0.3406813627254509, 0.8573573573573574, 0.3246492985971944, 0.8603603603603603]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5771543086172345, 0.6396396396396397, 0.561122244488978, 0.6396396396396397, 0.5270541082164328, 0.6321321321321322, 0.5090180360721442, 0.6201201201201201, 0.501002004008016, 0.6126126126126126, 0.4969939879759519, 0.6036036036036037, 0.4969939879759519, 0.536036036036036, 0.5050100200400801, 0.515015015015015, 0.5050100200400801, 0.4744744744744745, 0.49899799599198397, 0.46546546546546547, 0.49498997995991983, 0.44594594594594594, 0.5090180360721442, 0.4159159159159159, 0.5230460921843687, 0.4039039039039039, 0.5270541082164328, 0.3948948948948949, 0.5270541082164328, 0.3888888888888889, 0.5150300601202404, 0.37237237237237236, 0.5170340681362725, 0.36486486486486486, 0.5290581162324649, 0.35735735735735735, 0.5270541082164328, 0.3408408408408408, 0.533066132264529, 0.3333333333333333, 0.5531062124248497, 0.3258258258258258, 0.5991983967935872, 0.32732732732732733, 0.6072144288577155, 0.32882882882882886, 0.6232464929859719, 0.33783783783783783, 0.625250501002004, 0.36036036036036034, 0.6312625250501002, 0.3663663663663664, 0.6292585170340681, 0.38288288288288286, 0.6232464929859719, 0.38738738738738737, 0.6232464929859719, 0.4069069069069069, 0.6372745490981964, 0.42042042042042044, 0.6452905811623246, 0.43843843843843844, 0.6432865731462926, 0.47147147147147145, 0.6332665330661322, 0.484984984984985, 0.6332665330661322, 0.524024024024024, 0.6392785571142284, 0.539039039039039, 0.6352705410821643, 0.6066066066066066, 0.6232464929859719, 0.6231231231231231, 0.6032064128256514, 0.6336336336336337, 0.5771543086172345, 0.6396396396396397]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7855711422845691, 0.5825825825825826, 0.7715430861723447, 0.581081081081081, 0.7655310621242485, 0.575075075075075, 0.7635270541082164, 0.5675675675675675, 0.7535070140280561, 0.5780780780780781, 0.7434869739478958, 0.581081081081081, 0.7314629258517034, 0.5765765765765766, 0.7214428857715431, 0.5675675675675675, 0.7094188376753507, 0.5645645645645646, 0.7014028056112225, 0.5525525525525525, 0.6973947895791583, 0.5420420420420421, 0.6973947895791583, 0.515015015015015, 0.7034068136272545, 0.493993993993994, 0.7114228456913828, 0.43543543543543545, 0.7114228456913828, 0.40540540540540543, 0.7154308617234469, 0.3813813813813814, 0.7254509018036072, 0.3708708708708709, 0.7254509018036072, 0.36486486486486486, 0.7434869739478958, 0.35435435435435436, 0.749498997995992, 0.34534534534534533, 0.7635270541082164, 0.3033033033033033, 0.7675350701402806, 0.2987987987987988, 0.7655310621242485, 0.2822822822822823, 0.7695390781563126, 0.2672672672672673, 0.7775551102204409, 0.26426426426426425, 0.8056112224448898, 0.2627627627627628, 0.8336673346693386, 0.26576576576576577, 0.8476953907815631, 0.27177177177177175, 0.845691382765531, 0.2882882882882883, 0.8396793587174348, 0.2987987987987988, 0.8396793587174348, 0.34534534534534533, 0.8416833667334669, 0.3588588588588589, 0.8517034068136272, 0.3663663663663664, 0.8617234468937875, 0.3843843843843844, 0.8617234468937875, 0.4009009009009009, 0.8396793587174348, 0.4984984984984985, 0.8396793587174348, 0.515015015015015, 0.8316633266533067, 0.551051051051051, 0.8276553106212425, 0.5585585585585585, 0.8096192384769539, 0.5735735735735735, 0.8036072144288577, 0.5735735735735735, 0.7855711422845691, 0.5825825825825826]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/41.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.5711422845691383, 0.8483483483483484, 0.561122244488978, 0.8453453453453453, 0.4088176352705411, 0.7507507507507507, 0.39879759519038077, 0.6276276276276276, 0.40080160320641284, 0.6246246246246246, 0.6833667334669339, 0.4924924924924925, 0.7294589178356713, 0.47297297297297297, 0.7414829659318637, 0.46546546546546547, 0.8877755511022044, 0.5105105105105106, 0.9078156312625251, 0.5135135135135135, 0.9118236472945892, 0.5315315315315315, 0.9138276553106213, 0.536036036036036, 0.9298597194388778, 0.5420420420420421, 0.9298597194388778, 0.5465465465465466, 0.9198396793587175, 0.5525525525525525, 0.9138276553106213, 0.56006006006006, 0.8817635270541082, 0.6171171171171171, 0.8797595190380761, 0.6261261261261262, 0.6052104208416834, 0.8213213213213213, 0.5711422845691383, 0.8483483483483484]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.36472945891783565, 0.6096096096096096, 0.33266533066132264, 0.6066066066066066, 0.312625250501002, 0.5960960960960962, 0.30060120240480964, 0.5840840840840841, 0.2905811623246493, 0.5420420420420421, 0.2905811623246493, 0.524024024024024, 0.2865731462925852, 0.5075075075075075, 0.2905811623246493, 0.481981981981982, 0.2905811623246493, 0.45345345345345345, 0.2865731462925852, 0.44894894894894893, 0.28256513026052105, 0.43243243243243246, 0.27655310621242485, 0.42492492492492495, 0.27054108216432865, 0.3993993993993994, 0.28256513026052105, 0.36936936936936937, 0.29458917835671344, 0.35735735735735735, 0.29458917835671344, 0.33633633633633636, 0.28256513026052105, 0.32732732732732733, 0.2785571142284569, 0.31681681681681684, 0.2785571142284569, 0.3138138138138138, 0.28857715430861725, 0.3063063063063063, 0.2905811623246493, 0.3003003003003003, 0.28857715430861725, 0.2807807807807808, 0.29458917835671344, 0.2747747747747748, 0.33266533066132264, 0.2672672672672673, 0.3667334669338677, 0.26876876876876876, 0.3927855711422846, 0.27627627627627627, 0.3967935871743487, 0.2822822822822823, 0.39879759519038077, 0.3033033033033033, 0.41082164328657317, 0.30930930930930933, 0.41082164328657317, 0.31981981981981983, 0.4028056112224449, 0.3303303303303303, 0.4028056112224449, 0.3483483483483483, 0.4288577154308617, 0.37537537537537535, 0.4348697394789579, 0.3843843843843844, 0.43887775551102204, 0.4009009009009009, 0.43687374749499, 0.42042042042042044, 0.4288577154308617, 0.44144144144144143, 0.4288577154308617, 0.46096096096096095, 0.44288577154308617, 0.5015015015015015, 0.44488977955911824, 0.5705705705705706, 0.4408817635270541, 0.5795795795795796, 0.4168336673346693, 0.5960960960960962, 0.3907815631262525, 0.6051051051051051, 0.36472945891783565, 0.6096096096096096]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5711422845691383, 0.536036036036036, 0.5490981963927856, 0.5315315315315315, 0.5430861723446894, 0.524024024024024, 0.5370741482965932, 0.524024024024024, 0.531062124248497, 0.5180180180180181, 0.5230460921843687, 0.5075075075075075, 0.5170340681362725, 0.4924924924924925, 0.5190380761523046, 0.32882882882882886, 0.5250501002004008, 0.3153153153153153, 0.5470941883767535, 0.2957957957957958, 0.5551102204408818, 0.27627627627627627, 0.5571142284569138, 0.24924924924924924, 0.56312625250501, 0.23273273273273273, 0.5591182364729459, 0.22822822822822822, 0.561122244488978, 0.2012012012012012, 0.5711422845691383, 0.1966966966966967, 0.6092184368737475, 0.19369369369369369, 0.6332665330661322, 0.1966966966966967, 0.6452905811623246, 0.20270270270270271, 0.6432865731462926, 0.22822822822822822, 0.6392785571142284, 0.23273273273273273, 0.6452905811623246, 0.28678678678678676, 0.6492985971943888, 0.2972972972972973, 0.6593186372745491, 0.3033033033033033, 0.6673346693386774, 0.3123123123123123, 0.6713426853707415, 0.32432432432432434, 0.6713426853707415, 0.35735735735735735, 0.6653306613226453, 0.3858858858858859, 0.657314629258517, 0.5, 0.6533066132264529, 0.506006006006006, 0.5951903807615231, 0.5330330330330331, 0.591182364729459, 0.5315315315315315, 0.5891783567134269, 0.5225225225225225, 0.5831663326653307, 0.521021021021021, 0.5791583166332666, 0.5315315315315315, 0.5711422845691383, 0.536036036036036]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/43.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.34468937875751504, 0.8618618618618619, 0.3106212424849699, 0.8603603603603603, 0.280561122244489, 0.8543543543543544, 0.2605210420841683, 0.8453453453453453, 0.25250501002004005, 0.8378378378378378, 0.23446893787575152, 0.8153153153153153, 0.23446893787575152, 0.8018018018018018, 0.218436873747495, 0.7222222222222222, 0.22444889779559118, 0.6741741741741741, 0.22444889779559118, 0.6486486486486487, 0.21442885771543085, 0.6216216216216216, 0.20641282565130262, 0.6141141141141141, 0.20040080160320642, 0.6006006006006006, 0.1963927855711423, 0.581081081081081, 0.19839679358717435, 0.5555555555555556, 0.20641282565130262, 0.536036036036036, 0.23446893787575152, 0.4984984984984985, 0.23046092184368738, 0.47897897897897895, 0.21042084168336672, 0.4594594594594595, 0.21042084168336672, 0.4444444444444444, 0.22645290581162325, 0.43243243243243246, 0.22645290581162325, 0.3963963963963964, 0.23046092184368738, 0.3918918918918919, 0.2545090180360721, 0.38288288288288286, 0.2925851703406814, 0.3783783783783784, 0.342685370741483, 0.37987987987987987, 0.36472945891783565, 0.3843843843843844, 0.38276553106212424, 0.3918918918918919, 0.38877755511022044, 0.42792792792792794, 0.4028056112224449, 0.43543543543543545, 0.41082164328657317, 0.45045045045045046, 0.41082164328657317, 0.45645645645645644, 0.3967935871743487, 0.4744744744744745, 0.3967935871743487, 0.4924924924924925, 0.40080160320641284, 0.5, 0.4148296593186373, 0.5105105105105106, 0.4168336673346693, 0.5165165165165165, 0.4248496993987976, 0.524024024024024, 0.4248496993987976, 0.5285285285285285, 0.4348697394789579, 0.5420420420420421, 0.4348697394789579, 0.5525525525525525, 0.43887775551102204, 0.5585585585585585, 0.43887775551102204, 0.581081081081081, 0.42685370741482964, 0.6156156156156156, 0.42685370741482964, 0.6606606606606606, 0.4308617234468938, 0.6621621621621622, 0.4308617234468938, 0.6696696696696697, 0.4408817635270541, 0.6921921921921922, 0.44488977955911824, 0.7927927927927928, 0.4288577154308617, 0.8228228228228228, 0.41082164328657317, 0.8393393393393394, 0.3787575150300601, 0.8528528528528528, 0.34468937875751504, 0.8618618618618619]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.43887775551102204, 0.6021021021021021, 0.4348697394789579, 0.6006006006006006, 0.43887775551102204, 0.5870870870870871, 0.43887775551102204, 0.5540540540540541, 0.4348697394789579, 0.5465465465465466, 0.4348697394789579, 0.5375375375375375, 0.4168336673346693, 0.5105105105105106, 0.40681362725450904, 0.5045045045045045, 0.3967935871743487, 0.4894894894894895, 0.3967935871743487, 0.4774774774774775, 0.41082164328657317, 0.4594594594594595, 0.41082164328657317, 0.44594594594594594, 0.40480961923847697, 0.43543543543543545, 0.38877755511022044, 0.42492492492492495, 0.3847695390781563, 0.3918918918918919, 0.3727454909819639, 0.3858858858858859, 0.35070140280561124, 0.37987987987987987, 0.28256513026052105, 0.3783783783783784, 0.2625250501002004, 0.37987987987987987, 0.2625250501002004, 0.33633633633633636, 0.2565130260521042, 0.26126126126126126, 0.27655310621242485, 0.24774774774774774, 0.31462925851703405, 0.22972972972972974, 0.312625250501002, 0.1996996996996997, 0.3226452905811623, 0.19369369369369369, 0.43687374749499, 0.19519519519519518, 0.44288577154308617, 0.1996996996996997, 0.44288577154308617, 0.22072072072072071, 0.46092184368737477, 0.23273273273273273, 0.46292585170340683, 0.23873873873873874, 0.48697394789579157, 0.25075075075075076, 0.5050100200400801, 0.26876876876876876, 0.503006012024048, 0.3768768768768769, 0.49498997995991983, 0.4804804804804805, 0.49298597194388777, 0.5765765765765766, 0.43887775551102204, 0.6021021021021021]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6833667334669339, 0.7282282282282282, 0.6613226452905812, 0.7282282282282282, 0.6513026052104208, 0.7237237237237237, 0.6412825651302605, 0.7057057057057057, 0.6392785571142284, 0.7057057057057057, 0.6392785571142284, 0.7117117117117117, 0.627254509018036, 0.7192192192192193, 0.6212424849699398, 0.7192192192192193, 0.6032064128256514, 0.7117117117117117, 0.593186372745491, 0.6996996996996997, 0.591182364729459, 0.6921921921921922, 0.5751503006012024, 0.6711711711711712, 0.5711422845691383, 0.6516516516516516, 0.5791583166332666, 0.551051051051051, 0.5791583166332666, 0.47597597597597596, 0.5871743486973948, 0.44144144144144143, 0.6032064128256514, 0.4219219219219219, 0.627254509018036, 0.4009009009009009, 0.6432865731462926, 0.34234234234234234, 0.6513026052104208, 0.3333333333333333, 0.6513026052104208, 0.32432432432432434, 0.6452905811623246, 0.31981981981981983, 0.6513026052104208, 0.2852852852852853, 0.657314629258517, 0.2822822822822823, 0.7134268537074149, 0.27927927927927926, 0.7454909819639278, 0.28378378378378377, 0.7615230460921844, 0.2882882882882883, 0.7575150300601202, 0.32732732732732733, 0.749498997995992, 0.33183183183183185, 0.749498997995992, 0.33783783783783783, 0.7555110220440882, 0.3483483483483483, 0.7555110220440882, 0.3993993993993994, 0.7575150300601202, 0.4099099099099099, 0.7635270541082164, 0.4189189189189189, 0.7835671342685371, 0.4369369369369369, 0.7875751503006012, 0.44744744744744747, 0.7875751503006012, 0.47897897897897895, 0.7835671342685371, 0.4954954954954955, 0.781563126252505, 0.5375375375375375, 0.7735470941883767, 0.56006006006006, 0.7735470941883767, 0.5780780780780781, 0.7695390781563126, 0.5885885885885885, 0.7555110220440882, 0.6756756756756757, 0.7474949899799599, 0.6876876876876877, 0.7474949899799599, 0.6936936936936937, 0.7254509018036072, 0.7147147147147147, 0.7194388777555111, 0.7177177177177178, 0.6993987975951904, 0.7147147147147147, 0.6953907815631263, 0.7207207207207207, 0.6833667334669339, 0.7282282282282282]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/44.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.12224448897795591, 0.7492492492492493, 0.11422845691382766, 0.7462462462462462, 0.09819639278557114, 0.6561561561561562, 0.07615230460921844, 0.5615615615615616, 0.06012024048096192, 0.466966966966967, 0.04208416833667335, 0.39039039039039036, 0.06412825651302605, 0.32432432432432434, 0.06412825651302605, 0.2897897897897898, 0.07414829659318638, 0.2852852852852853, 0.2725450901803607, 0.2882882882882883, 0.2845691382765531, 0.2972972972972973, 0.28256513026052105, 0.32732732732732733, 0.2965931863727455, 0.35135135135135137, 0.2965931863727455, 0.3888888888888889, 0.30861723446893785, 0.5630630630630631, 0.31462925851703405, 0.6006006006006006, 0.3166332665330661, 0.6651651651651652, 0.3066132264529058, 0.7357357357357357, 0.2965931863727455, 0.7447447447447447, 0.23647294589178355, 0.7447447447447447, 0.12224448897795591, 0.7492492492492493]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5110220440881763, 0.7732732732732732, 0.48697394789579157, 0.7702702702702703, 0.4749498997995992, 0.7567567567567568, 0.46893787575150303, 0.7597597597597597, 0.45691382765531063, 0.7597597597597597, 0.44288577154308617, 0.7492492492492493, 0.4308617234468938, 0.7342342342342343, 0.42084168336673344, 0.6981981981981982, 0.42084168336673344, 0.6351351351351351, 0.4148296593186373, 0.5135135135135135, 0.42084168336673344, 0.4954954954954955, 0.43887775551102204, 0.4744744744744745, 0.44889779559118237, 0.466966966966967, 0.4529058116232465, 0.45645645645645644, 0.45691382765531063, 0.44294294294294295, 0.4589178356713427, 0.4084084084084084, 0.46292585170340683, 0.4039039039039039, 0.46292585170340683, 0.3948948948948949, 0.4589178356713427, 0.3918918918918919, 0.4589178356713427, 0.36186186186186187, 0.46292585170340683, 0.35435435435435436, 0.46693386773547096, 0.35135135135135137, 0.4789579158316633, 0.34984984984984985, 0.533066132264529, 0.3483483483483483, 0.5591182364729459, 0.35585585585585583, 0.5651302605210421, 0.3633633633633634, 0.56312625250501, 0.3948948948948949, 0.5571142284569138, 0.3978978978978979, 0.5571142284569138, 0.4024024024024024, 0.56312625250501, 0.4084084084084084, 0.5671342685370742, 0.45495495495495497, 0.5711422845691383, 0.466966966966967, 0.591182364729459, 0.48348348348348347, 0.6032064128256514, 0.5045045045045045, 0.6072144288577155, 0.5195195195195195, 0.5991983967935872, 0.6396396396396397, 0.5991983967935872, 0.6966966966966966, 0.5951903807615231, 0.7162162162162162, 0.5751503006012024, 0.7507507507507507, 0.5571142284569138, 0.7642642642642643, 0.5511022044088176, 0.7657657657657657, 0.5350701402805611, 0.7627627627627628, 0.5290581162324649, 0.7552552552552553, 0.5270541082164328, 0.7627627627627628, 0.5110220440881763, 0.7732732732732732]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7995991983967936, 0.7912912912912913, 0.7715430861723447, 0.7897897897897898, 0.7454909819639278, 0.7837837837837838, 0.717434869739479, 0.7717717717717718, 0.7014028056112225, 0.7537537537537538, 0.6933867735470942, 0.7402402402402403, 0.6973947895791583, 0.6666666666666666, 0.7034068136272545, 0.6411411411411412, 0.7154308617234469, 0.6216216216216216, 0.7154308617234469, 0.5765765765765766, 0.7114228456913828, 0.5690690690690691, 0.7094188376753507, 0.5480480480480481, 0.717434869739479, 0.5255255255255256, 0.7555110220440882, 0.487987987987988, 0.7555110220440882, 0.47297297297297297, 0.7454909819639278, 0.46096096096096095, 0.7454909819639278, 0.45045045045045046, 0.7535070140280561, 0.44294294294294295, 0.7635270541082164, 0.43993993993993996, 0.7655310621242485, 0.4159159159159159, 0.7755511022044088, 0.4084084084084084, 0.7975951903807615, 0.4039039039039039, 0.8356713426853707, 0.4039039039039039, 0.875751503006012, 0.4114114114114114, 0.8917835671342685, 0.4219219219219219, 0.8897795591182365, 0.45045045045045046, 0.8977955911823647, 0.45645645645645644, 0.8977955911823647, 0.46396396396396394, 0.8937875751503006, 0.4774774774774775, 0.8837675350701403, 0.48348348348348347, 0.8817635270541082, 0.487987987987988, 0.8817635270541082, 0.5045045045045045, 0.8997995991983968, 0.5285285285285285, 0.9078156312625251, 0.5570570570570571, 0.9038076152304609, 0.5780780780780781, 0.8957915831663327, 0.5885885885885885, 0.8797595190380761, 0.6216216216216216, 0.8817635270541082, 0.6816816816816816, 0.8677354709418837, 0.7342342342342343, 0.8637274549098196, 0.7627627627627628, 0.8396793587174348, 0.7807807807807807, 0.8296593186372746, 0.7852852852852853, 0.7995991983967936, 0.7912912912912913]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/45.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3046092184368738, 0.7402402402402403, 0.2845691382765531, 0.7402402402402403, 0.2665330661322645, 0.7267267267267268, 0.250501002004008, 0.7297297297297297, 0.23046092184368738, 0.7117117117117117, 0.22244488977955912, 0.6996996996996997, 0.21442885771543085, 0.6711711711711712, 0.20040080160320642, 0.5375375375375375, 0.19438877755511022, 0.5135135135135135, 0.1963927855711423, 0.46996996996997, 0.20040080160320642, 0.46096096096096095, 0.21042084168336672, 0.45045045045045046, 0.22044088176352705, 0.4444444444444444, 0.22845691382765532, 0.42792792792792794, 0.22845691382765532, 0.4009009009009009, 0.23446893787575152, 0.36036036036036034, 0.22645290581162325, 0.35135135135135137, 0.22645290581162325, 0.31981981981981983, 0.24048096192384769, 0.3138138138138138, 0.2685370741482966, 0.3108108108108108, 0.31462925851703405, 0.3123123123123123, 0.3286573146292585, 0.31681681681681684, 0.3366733466933868, 0.3213213213213213, 0.33867735470941884, 0.35585585585585583, 0.33266533066132264, 0.3588588588588589, 0.33266533066132264, 0.3663663663663664, 0.3366733466933868, 0.36936936936936937, 0.33867735470941884, 0.3813813813813814, 0.34468937875751504, 0.3918918918918919, 0.34468937875751504, 0.4024024024024024, 0.35070140280561124, 0.4144144144144144, 0.35070140280561124, 0.4264264264264264, 0.3847695390781563, 0.45795795795795796, 0.39478957915831664, 0.4774774774774775, 0.39478957915831664, 0.5795795795795796, 0.39879759519038077, 0.6771771771771772, 0.3867735470941884, 0.6996996996996997, 0.3787575150300601, 0.7072072072072072, 0.374749498997996, 0.7072072072072072, 0.3727454909819639, 0.7162162162162162, 0.3587174348697395, 0.7282282282282282, 0.342685370741483, 0.7342342342342343, 0.3306613226452906, 0.7267267267267268, 0.3226452905811623, 0.7162162162162162, 0.3166332665330661, 0.7312312312312312, 0.3046092184368738, 0.7402402402402403]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.4348697394789579, 0.7537537537537538, 0.4248496993987976, 0.7522522522522522, 0.40480961923847697, 0.6816816816816816, 0.40480961923847697, 0.6666666666666666, 0.40080160320641284, 0.6621621621621622, 0.40480961923847697, 0.32882882882882886, 0.4168336673346693, 0.3078078078078078, 0.4188376753507014, 0.2672672672672673, 0.42685370741482964, 0.25975975975975973, 0.625250501002004, 0.26126126126126126, 0.6312625250501002, 0.2627627627627628, 0.6372745490981964, 0.26876876876876876, 0.6332665330661322, 0.30930930930930933, 0.6472945891783567, 0.3333333333333333, 0.6613226452905812, 0.36936936936936937, 0.6372745490981964, 0.5075075075075075, 0.6152304609218436, 0.7012012012012012, 0.6152304609218436, 0.7312312312312312, 0.6092184368737475, 0.7387387387387387, 0.5410821643286573, 0.7417417417417418, 0.4348697394789579, 0.7537537537537538]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.717434869739479, 0.7342342342342343, 0.6833667334669339, 0.7342342342342343, 0.6513026052104208, 0.7282282282282282, 0.625250501002004, 0.7147147147147147, 0.6172344689378757, 0.7072072072072072, 0.6172344689378757, 0.6996996996996997, 0.6452905811623246, 0.466966966966967, 0.6472945891783567, 0.45645645645645644, 0.6593186372745491, 0.44744744744744747, 0.6613226452905812, 0.43993993993993996, 0.6593186372745491, 0.42492492492492495, 0.6533066132264529, 0.4189189189189189, 0.655310621242485, 0.40540540540540543, 0.6653306613226453, 0.3978978978978979, 0.6693386773547094, 0.3858858858858859, 0.6693386773547094, 0.37237237237237236, 0.6733466933867736, 0.36786786786786785, 0.6933867735470942, 0.36186186186186187, 0.7454909819639278, 0.36186186186186187, 0.7735470941883767, 0.36786786786786785, 0.7875751503006012, 0.3768768768768769, 0.7855711422845691, 0.4039039039039039, 0.7935871743486974, 0.4099099099099099, 0.7955911823647295, 0.4219219219219219, 0.7775551102204409, 0.43993993993993996, 0.7775551102204409, 0.45645645645645644, 0.7915831663326653, 0.47297297297297297, 0.7995991983967936, 0.4894894894894895, 0.8016032064128257, 0.5225225225225225, 0.7935871743486974, 0.5405405405405406, 0.781563126252505, 0.5570570570570571, 0.7775551102204409, 0.5690690690690691, 0.781563126252505, 0.6321321321321322, 0.7775551102204409, 0.6381381381381381, 0.7655310621242485, 0.7042042042042042, 0.751503006012024, 0.7192192192192193, 0.7354709418837675, 0.7282282282282282, 0.717434869739479, 0.7342342342342343]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/46.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.25851703406813625, 0.6966966966966966, 0.24248496993987975, 0.6966966966966966, 0.22845691382765532, 0.6936936936936937, 0.22044088176352705, 0.6846846846846847, 0.20240480961923848, 0.6846846846846847, 0.18236472945891782, 0.6666666666666666, 0.17234468937875752, 0.6426426426426426, 0.16432865731462926, 0.6081081081081081, 0.1402805611222445, 0.47297297297297297, 0.13827655310621242, 0.43543543543543545, 0.1462925851703407, 0.4174174174174174, 0.1623246492985972, 0.4009009009009009, 0.1683366733466934, 0.38738738738738737, 0.17034068136272545, 0.31981981981981983, 0.16432865731462926, 0.3123123123123123, 0.16032064128256512, 0.27927927927927926, 0.1743486973947896, 0.2732732732732733, 0.20240480961923848, 0.2702702702702703, 0.24048096192384769, 0.2702702702702703, 0.2605210420841683, 0.2732732732732733, 0.27054108216432865, 0.2777777777777778, 0.2745490981963928, 0.3123123123123123, 0.2685370741482966, 0.31681681681681684, 0.2685370741482966, 0.3213213213213213, 0.2845691382765531, 0.3588588588588589, 0.28857715430861725, 0.37987987987987987, 0.29458917835671344, 0.3888888888888889, 0.3066132264529058, 0.3963963963963964, 0.30861723446893785, 0.4009009009009009, 0.3346693386773547, 0.42342342342342343, 0.34468937875751504, 0.6546546546546547, 0.33867735470941884, 0.6636636636636637, 0.3286573146292585, 0.6666666666666666, 0.3226452905811623, 0.6786786786786787, 0.2985971943887776, 0.6906906906906907, 0.2865731462925852, 0.6861861861861862, 0.27655310621242485, 0.6726726726726727, 0.2725450901803607, 0.6786786786786787, 0.27054108216432865, 0.6891891891891891, 0.25851703406813625, 0.6966966966966966]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.4649298597194389, 0.7927927927927928, 0.4589178356713427, 0.7927927927927928, 0.4529058116232465, 0.7837837837837838, 0.3466933867735471, 0.7072072072072072, 0.3406813627254509, 0.48348348348348347, 0.3306613226452906, 0.31981981981981983, 0.35070140280561124, 0.3048048048048048, 0.3847695390781563, 0.2882882882882883, 0.39478957915831664, 0.2807807807807808, 0.39478957915831664, 0.24924924924924924, 0.40480961923847697, 0.23273273273273273, 0.5751503006012024, 0.22672672672672672, 0.5851703406813628, 0.22972972972972974, 0.5891783567134269, 0.23723723723723725, 0.5871743486973948, 0.26876876876876876, 0.6352705410821643, 0.30180180180180183, 0.6633266533066132, 0.32732732732732733, 0.6613226452905812, 0.3588588588588589, 0.6533066132264529, 0.3963963963963964, 0.6533066132264529, 0.42342342342342343, 0.6432865731462926, 0.4894894894894895, 0.6432865731462926, 0.509009009009009, 0.6392785571142284, 0.5285285285285285, 0.6332665330661322, 0.539039039039039, 0.6292585170340681, 0.5705705705705706, 0.6232464929859719, 0.7222222222222222, 0.6132264529058116, 0.7297297297297297, 0.5811623246492986, 0.7447447447447447, 0.48697394789579157, 0.7837837837837838, 0.4749498997995992, 0.7867867867867868, 0.4649298597194389, 0.7927927927927928]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7414829659318637, 0.7807807807807807, 0.7114228456913828, 0.7807807807807807, 0.657314629258517, 0.7642642642642643, 0.6352705410821643, 0.7477477477477478, 0.6232464929859719, 0.7327327327327328, 0.6332665330661322, 0.545045045045045, 0.6432865731462926, 0.5225225225225225, 0.6593186372745491, 0.506006006006006, 0.6613226452905812, 0.4924924924924925, 0.6813627254509018, 0.481981981981982, 0.6913827655310621, 0.481981981981982, 0.7054108216432866, 0.4774774774774775, 0.7695390781563126, 0.4774774774774775, 0.781563126252505, 0.481981981981982, 0.7955911823647295, 0.48348348348348347, 0.8156312625250501, 0.49099099099099097, 0.8276553106212425, 0.496996996996997, 0.8416833667334669, 0.5075075075075075, 0.843687374749499, 0.515015015015015, 0.8396793587174348, 0.5255255255255256, 0.8496993987975952, 0.536036036036036, 0.8557114228456913, 0.5480480480480481, 0.8476953907815631, 0.5930930930930931, 0.8416833667334669, 0.6096096096096096, 0.8296593186372746, 0.6861861861861862, 0.8256513026052105, 0.6876876876876877, 0.8236472945891784, 0.7147147147147147, 0.8136272545090181, 0.7522522522522522, 0.7975951903807615, 0.7657657657657657, 0.7835671342685371, 0.7732732732732732, 0.7615230460921844, 0.7792792792792793, 0.7414829659318637, 0.7807807807807807]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/48.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.2685370741482966, 0.7447447447447447, 0.24248496993987975, 0.7447447447447447, 0.20040080160320642, 0.7357357357357357, 0.18637274549098196, 0.7297297297297297, 0.17635270541082165, 0.7192192192192193, 0.16633266533066132, 0.6576576576576577, 0.15831663326653306, 0.6366366366366366, 0.1462925851703407, 0.5705705705705706, 0.1462925851703407, 0.551051051051051, 0.14228456913827656, 0.5420420420420421, 0.1402805611222445, 0.5135135135135135, 0.156312625250501, 0.4954954954954955, 0.1523046092184369, 0.4864864864864865, 0.156312625250501, 0.47597597597597596, 0.1743486973947896, 0.466966966966967, 0.1843687374749499, 0.46546546546546547, 0.1963927855711423, 0.4594594594594595, 0.20841683366733466, 0.4594594594594595, 0.22444889779559118, 0.45495495495495497, 0.2785571142284569, 0.45495495495495497, 0.3066132264529058, 0.46096096096096095, 0.3246492985971944, 0.47147147147147145, 0.32665330661322645, 0.484984984984985, 0.342685370741483, 0.496996996996997, 0.3486973947895792, 0.512012012012012, 0.3486973947895792, 0.551051051051051, 0.35671342685370744, 0.6681681681681682, 0.36072144288577157, 0.6876876876876877, 0.3587174348697395, 0.6981981981981982, 0.35070140280561124, 0.7087087087087087, 0.3186372745490982, 0.7297297297297297, 0.2965931863727455, 0.7387387387387387, 0.2685370741482966, 0.7447447447447447]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.44889779559118237, 0.7642642642642643, 0.44288577154308617, 0.7627627627627628, 0.3867735470941884, 0.6936936936936937, 0.3687374749498998, 0.6756756756756757, 0.3687374749498998, 0.4864864864864865, 0.3627254509018036, 0.3993993993993994, 0.36072144288577157, 0.30180180180180183, 0.3667334669338677, 0.2927927927927928, 0.4028056112224449, 0.26426426426426425, 0.4028056112224449, 0.22822822822822822, 0.4088176352705411, 0.22072072072072071, 0.4168336673346693, 0.21771771771771772, 0.5951903807615231, 0.21771771771771772, 0.6112224448897795, 0.2222222222222222, 0.6152304609218436, 0.22522522522522523, 0.6132264529058116, 0.26576576576576577, 0.6492985971943888, 0.2957957957957958, 0.6693386773547094, 0.3258258258258258, 0.6392785571142284, 0.5330330330330331, 0.6232464929859719, 0.6891891891891891, 0.6232464929859719, 0.7207207207207207, 0.5571142284569138, 0.7357357357357357, 0.44889779559118237, 0.7642642642642643]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7474949899799599, 0.7387387387387387, 0.7354709418837675, 0.7387387387387387, 0.7274549098196392, 0.7327327327327328, 0.7234468937875751, 0.7282282282282282, 0.7214428857715431, 0.7162162162162162, 0.717434869739479, 0.7162162162162162, 0.7114228456913828, 0.7297297297297297, 0.7014028056112225, 0.7357357357357357, 0.6733466933867736, 0.7312312312312312, 0.6653306613226453, 0.7237237237237237, 0.6593186372745491, 0.7147147147147147, 0.6452905811623246, 0.7132132132132132, 0.6372745490981964, 0.7072072072072072, 0.625250501002004, 0.6891891891891891, 0.6412825651302605, 0.5330330330330331, 0.655310621242485, 0.43243243243243246, 0.6653306613226453, 0.4174174174174174, 0.6833667334669339, 0.4039039039039039, 0.6933867735470942, 0.3633633633633634, 0.7014028056112225, 0.33933933933933935, 0.7074148296593187, 0.3303303303303303, 0.7074148296593187, 0.3258258258258258, 0.7034068136272545, 0.3228228228228228, 0.7074148296593187, 0.2882882882882883, 0.7154308617234469, 0.2822822822822823, 0.7294589178356713, 0.27927927927927926, 0.7955911823647295, 0.2807807807807808, 0.7975951903807615, 0.28378378378378377, 0.8156312625250501, 0.2852852852852853, 0.8236472945891784, 0.2897897897897898, 0.8216432865731463, 0.3213213213213213, 0.8156312625250501, 0.32882882882882886, 0.8156312625250501, 0.4069069069069069, 0.8236472945891784, 0.4219219219219219, 0.8396793587174348, 0.43543543543543545, 0.8396793587174348, 0.43993993993993996, 0.8476953907815631, 0.4519519519519519, 0.8496993987975952, 0.46546546546546547, 0.8276553106212425, 0.6066066066066066, 0.8076152304609219, 0.6981981981981982, 0.7995991983967936, 0.7027027027027027, 0.7855711422845691, 0.7192192192192193, 0.7755511022044088, 0.7207207207207207, 0.7695390781563126, 0.7297297297297297, 0.7595190380761523, 0.7357357357357357, 0.7474949899799599, 0.7387387387387387]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/49.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3106212424849699, 0.8033033033033034, 0.2785571142284569, 0.8033033033033034, 0.2605210420841683, 0.8003003003003003, 0.24849699398797595, 0.7957957957957958, 0.22244488977955912, 0.7792792792792793, 0.1963927855711423, 0.7747747747747747, 0.14228456913827656, 0.7732732732732732, 0.12625250501002003, 0.7687687687687688, 0.11623246492985972, 0.7687687687687688, 0.1062124248496994, 0.7732732732732732, 0.06012024048096192, 0.7717717717717718, 0.052104208416833664, 0.7597597597597597, 0.050100200400801605, 0.7522522522522522, 0.050100200400801605, 0.7222222222222222, 0.06012024048096192, 0.6996996996996997, 0.07414829659318638, 0.6936936936936937, 0.11422845691382766, 0.6936936936936937, 0.12024048096192384, 0.6966966966966966, 0.13026052104208416, 0.6966966966966966, 0.1342685370741483, 0.6936936936936937, 0.156312625250501, 0.6921921921921922, 0.17835671342685372, 0.6861861861861862, 0.20440881763527055, 0.6846846846846847, 0.218436873747495, 0.6816816816816816, 0.24849699398797595, 0.6621621621621622, 0.2745490981963928, 0.6516516516516516, 0.3106212424849699, 0.6486486486486487, 0.43286573146292584, 0.6456456456456456, 0.49298597194388777, 0.6411411411411412, 0.5891783567134269, 0.6396396396396397, 0.6112224448897795, 0.6456456456456456, 0.627254509018036, 0.6471471471471472, 0.6352705410821643, 0.6501501501501501, 0.6533066132264529, 0.6681681681681682, 0.655310621242485, 0.6816816816816816, 0.6513026052104208, 0.6906906906906907, 0.6452905811623246, 0.6951951951951952, 0.6452905811623246, 0.6996996996996997, 0.6593186372745491, 0.7072072072072072, 0.6633266533066132, 0.7162162162162162, 0.6633266533066132, 0.7267267267267268, 0.6593186372745491, 0.7327327327327328, 0.6533066132264529, 0.7357357357357357, 0.6533066132264529, 0.7402402402402403, 0.6613226452905812, 0.7492492492492493, 0.6613226452905812, 0.7582582582582582, 0.655310621242485, 0.7687687687687688, 0.6472945891783567, 0.7732732732732732, 0.625250501002004, 0.7807807807807807, 0.5891783567134269, 0.7867867867867868, 0.5751503006012024, 0.7912912912912913, 0.48697394789579157, 0.7927927927927928, 0.42685370741482964, 0.7972972972972973, 0.3346693386773547, 0.8003003003003003, 0.3106212424849699, 0.8033033033033034]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.6212424849699398, 0.6456456456456456, 0.6192384769539078, 0.6456456456456456, 0.6172344689378757, 0.6441441441441441, 0.6112224448897795, 0.6441441441441441, 0.6092184368737475, 0.6426426426426426, 0.6052104208416834, 0.6426426426426426, 0.6032064128256514, 0.6411411411411412, 0.5991983967935872, 0.6411411411411412, 0.5971943887775552, 0.6396396396396397, 0.591182364729459, 0.6396396396396397, 0.5891783567134269, 0.6381381381381381, 0.5711422845691383, 0.6381381381381381, 0.5691382765531062, 0.6396396396396397, 0.5130260521042084, 0.6396396396396397, 0.5110220440881763, 0.6411411411411412, 0.4649298597194389, 0.6411411411411412, 0.46292585170340683, 0.6426426426426426, 0.46292585170340683, 0.6411411411411412, 0.46292585170340683, 0.5225225225225225, 0.46092184368737477, 0.521021021021021, 0.46092184368737477, 0.5135135135135135, 0.46292585170340683, 0.512012012012012, 0.46292585170340683, 0.509009009009009, 0.4649298597194389, 0.5075075075075075, 0.4649298597194389, 0.506006006006006, 0.46693386773547096, 0.5045045045045045, 0.46693386773547096, 0.5015015015015015, 0.4729458917835671, 0.496996996996997, 0.4729458917835671, 0.4954954954954955, 0.4749498997995992, 0.493993993993994, 0.4749498997995992, 0.4924924924924925, 0.47695390781563124, 0.49099099099099097, 0.47695390781563124, 0.48348348348348347, 0.4749498997995992, 0.481981981981982, 0.4749498997995992, 0.47897897897897895, 0.4749498997995992, 0.47897897897897895, 0.47695390781563124, 0.47897897897897895, 0.4789579158316633, 0.4774774774774775, 0.4789579158316633, 0.47597597597597596, 0.4789579158316633, 0.47597597597597596, 0.48096192384769537, 0.47597597597597596, 0.48296593186372744, 0.4744744744744745, 0.4849699398797595, 0.4744744744744745, 0.48897795591182364, 0.47147147147147145, 0.4909819639278557, 0.47147147147147145, 0.49298597194388777, 0.46996996996997, 0.49498997995991983, 0.46996996996997, 0.49899799599198397, 0.466966966966967, 0.503006012024048, 0.466966966966967, 0.5050100200400801, 0.46546546546546547, 0.5090180360721442, 0.46546546546546547, 0.5110220440881763, 0.46396396396396394, 0.5230460921843687, 0.46396396396396394, 0.5250501002004008, 0.4624624624624625, 0.5591182364729459, 0.4624624624624625, 0.561122244488978, 0.46396396396396394, 0.5691382765531062, 0.46396396396396394, 0.5711422845691383, 0.46546546546546547, 0.5811623246492986, 0.46546546546546547, 0.5831663326653307, 0.466966966966967, 0.591182364729459, 0.466966966966967, 0.593186372745491, 0.46846846846846846, 0.5951903807615231, 0.46846846846846846, 0.5971943887775552, 0.46996996996997, 0.5991983967935872, 0.46996996996997, 0.6072144288577155, 0.47597597597597596, 0.6092184368737475, 0.47597597597597596, 0.6112224448897795, 0.4774774774774775, 0.6132264529058116, 0.4774774774774775, 0.6152304609218436, 0.4774774774774775, 0.6152304609218436, 0.4804804804804805, 0.6172344689378757, 0.481981981981982, 0.6172344689378757, 0.48348348348348347, 0.6192384769539078, 0.484984984984985, 0.6192384769539078, 0.487987987987988, 0.6172344689378757, 0.4894894894894895, 0.6172344689378757, 0.4954954954954955, 0.6192384769539078, 0.4984984984984985, 0.6212424849699398, 0.4984984984984985, 0.6232464929859719, 0.4984984984984985, 0.6232464929859719, 0.5015015015015015, 0.6292585170340681, 0.506006006006006, 0.6292585170340681, 0.5075075075075075, 0.6312625250501002, 0.509009009009009, 0.6312625250501002, 0.512012012012012, 0.6332665330661322, 0.5135135135135135, 0.6332665330661322, 0.527027027027027, 0.6312625250501002, 0.5285285285285285, 0.6312625250501002, 0.5480480480480481, 0.6292585170340681, 0.5495495495495496, 0.6292585170340681, 0.5720720720720721, 0.627254509018036, 0.5735735735735735, 0.627254509018036, 0.5960960960960962, 0.625250501002004, 0.5975975975975976, 0.625250501002004, 0.6201201201201201, 0.6232464929859719, 0.6216216216216216, 0.6232464929859719, 0.6441441441441441, 0.6212424849699398, 0.6456456456456456]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.7074148296593187, 0.7297297297297297, 0.6993987975951904, 0.7267267267267268, 0.655310621242485, 0.6861861861861862, 0.655310621242485, 0.6726726726726727, 0.6513026052104208, 0.6636636636636637, 0.6452905811623246, 0.6606606606606606, 0.6452905811623246, 0.6576576576576577, 0.6312625250501002, 0.6471471471471472, 0.6232464929859719, 0.6441441441441441, 0.6332665330661322, 0.5525525525525525, 0.6352705410821643, 0.4594594594594595, 0.6513026052104208, 0.3408408408408408, 0.657314629258517, 0.3333333333333333, 0.6973947895791583, 0.3153153153153153, 0.7034068136272545, 0.3153153153153153, 0.7154308617234469, 0.3078078078078078, 0.7154308617234469, 0.28378378378378377, 0.7314629258517034, 0.27177177177177175, 0.7955911823647295, 0.27177177177177175, 0.8697394789579158, 0.2672672672672673, 0.8817635270541082, 0.27177177177177175, 0.8777555110220441, 0.3048048048048048, 0.9238476953907816, 0.34384384384384387, 0.9318637274549099, 0.35285285285285284, 0.935871743486974, 0.36486486486486486, 0.9318637274549099, 0.36936936936936937, 0.9018036072144289, 0.49099099099099097, 0.8476953907815631, 0.6846846846846847, 0.8476953907815631, 0.6951951951951952, 0.7895791583166333, 0.7117117117117117, 0.7074148296593187, 0.7297297297297297]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/5.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3967935871743487, 0.5930930930930931, 0.3667334669338677, 0.5930930930930931, 0.3406813627254509, 0.5885885885885885, 0.3186372745490982, 0.581081081081081, 0.2965931863727455, 0.5675675675675675, 0.2745490981963928, 0.56006006006006, 0.22244488977955912, 0.5540540540540541, 0.1903807615230461, 0.5540540540540541, 0.16633266533066132, 0.5480480480480481, 0.1623246492985972, 0.5480480480480481, 0.156312625250501, 0.5540540540540541, 0.09819639278557114, 0.5525525525525525, 0.09218436873747494, 0.5465465465465466, 0.0841683366733467, 0.5330330330330331, 0.08016032064128256, 0.509009009009009, 0.0841683366733467, 0.4804804804804805, 0.09018036072144289, 0.46996996996997, 0.09418837675350701, 0.466966966966967, 0.11022044088176353, 0.4624624624624625, 0.156312625250501, 0.4624624624624625, 0.16032064128256512, 0.466966966966967, 0.1683366733466934, 0.466966966966967, 0.18036072144288579, 0.4624624624624625, 0.20040080160320642, 0.4594594594594595, 0.23847695390781562, 0.4594594594594595, 0.2685370741482966, 0.45495495495495497, 0.28256513026052105, 0.45045045045045046, 0.3046092184368738, 0.4369369369369369, 0.3406813627254509, 0.4219219219219219, 0.38276553106212424, 0.4174174174174174, 0.6993987975951904, 0.4174174174174174, 0.7695390781563126, 0.4264264264264264, 0.7935871743486974, 0.4339339339339339, 0.8056112224448898, 0.43993993993993996, 0.811623246492986, 0.45045045045045046, 0.811623246492986, 0.46096096096096095, 0.8036072144288577, 0.47297297297297297, 0.8216432865731463, 0.481981981981982, 0.8256513026052105, 0.487987987987988, 0.8256513026052105, 0.503003003003003, 0.8196392785571143, 0.512012012012012, 0.8096192384769539, 0.515015015015015, 0.8016032064128257, 0.521021021021021, 0.8136272545090181, 0.527027027027027, 0.8196392785571143, 0.5375375375375375, 0.8196392785571143, 0.5435435435435435, 0.8036072144288577, 0.5645645645645646, 0.7655310621242485, 0.581081081081081, 0.7254509018036072, 0.5885885885885885, 0.48296593186372744, 0.5900900900900901, 0.3967935871743487, 0.5930930930930931]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/50.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.1963927855711423, 0.6711711711711712, 0.16432865731462926, 0.6441441441441441, 0.16032064128256512, 0.5975975975975976, 0.1342685370741483, 0.4519519519519519, 0.11823647294589178, 0.33933933933933935, 0.11422845691382766, 0.32882882882882886, 0.15030060120240482, 0.2987987987987988, 0.15030060120240482, 0.2852852852852853, 0.1462925851703407, 0.2732732732732733, 0.15430861723446893, 0.26426426426426425, 0.1623246492985972, 0.26126126126126126, 0.2745490981963928, 0.25825825825825827, 0.3106212424849699, 0.2552552552552553, 0.32064128256513025, 0.26126126126126126, 0.3226452905811623, 0.2912912912912913, 0.33867735470941884, 0.30180180180180183, 0.3687374749498998, 0.32882882882882886, 0.374749498997996, 0.3408408408408408, 0.374749498997996, 0.43093093093093093, 0.38276553106212424, 0.6246246246246246, 0.3406813627254509, 0.6276276276276276, 0.30861723446893785, 0.6381381381381381, 0.28857715430861725, 0.6531531531531531, 0.24048096192384769, 0.6636636636636637, 0.20641282565130262, 0.6666666666666666, 0.1963927855711423, 0.6711711711711712]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.374749498997996, 0.7732732732732732, 0.3286573146292585, 0.7717717717717718, 0.3026052104208417, 0.7597597597597597, 0.2925851703406814, 0.7522522522522522, 0.2785571142284569, 0.7477477477477478, 0.23446893787575152, 0.7432432432432432, 0.20440881763527055, 0.7432432432432432, 0.18837675350701402, 0.7387387387387387, 0.17635270541082165, 0.7447447447447447, 0.1342685370741483, 0.7432432432432432, 0.12625250501002003, 0.7312312312312312, 0.12424849699398798, 0.7207207207207207, 0.12625250501002003, 0.6876876876876877, 0.13226452905811623, 0.6801801801801802, 0.13226452905811623, 0.6756756756756757, 0.13827655310621242, 0.6711711711711712, 0.15030060120240482, 0.6681681681681682, 0.18236472945891782, 0.6681681681681682, 0.18837675350701402, 0.6711711711711712, 0.20040080160320642, 0.6711711711711712, 0.20641282565130262, 0.6681681681681682, 0.26452905811623245, 0.6606606606606606, 0.28857715430861725, 0.6546546546546547, 0.3066132264529058, 0.6411411411411412, 0.3286573146292585, 0.6321321321321322, 0.3727454909819639, 0.6261261261261262, 0.5811623246492986, 0.6231231231231231, 0.6412825651302605, 0.6201201201201201, 0.6793587174348698, 0.6276276276276276, 0.687374749498998, 0.6306306306306306, 0.6993987975951904, 0.6396396396396397, 0.6993987975951904, 0.6561561561561562, 0.7094188376753507, 0.6621621621621622, 0.7114228456913828, 0.6831831831831832, 0.6973947895791583, 0.6936936936936937, 0.7154308617234469, 0.7102102102102102, 0.7154308617234469, 0.7252252252252253, 0.7134268537074149, 0.7297297297297297, 0.7074148296593187, 0.7327327327327328, 0.7094188376753507, 0.7387387387387387, 0.7054108216432866, 0.7462462462462462, 0.6793587174348698, 0.7582582582582582, 0.6513026052104208, 0.7642642642642643, 0.5771543086172345, 0.7642642642642643, 0.374749498997996, 0.7732732732732732]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.8056112224448898, 0.7957957957957958, 0.7875751503006012, 0.7942942942942943, 0.751503006012024, 0.7822822822822822, 0.7254509018036072, 0.7687687687687688, 0.7134268537074149, 0.7567567567567568, 0.7094188376753507, 0.7477477477477478, 0.7094188376753507, 0.7327327327327328, 0.7154308617234469, 0.7282282282282282, 0.7114228456913828, 0.6846846846846847, 0.7254509018036072, 0.5540540540540541, 0.7434869739478958, 0.539039039039039, 0.749498997995992, 0.521021021021021, 0.7595190380761523, 0.515015015015015, 0.7715430861723447, 0.512012012012012, 0.8236472945891784, 0.509009009009009, 0.875751503006012, 0.5180180180180181, 0.8917835671342685, 0.5225225225225225, 0.9118236472945892, 0.5315315315315315, 0.9198396793587175, 0.539039039039039, 0.9178356713426854, 0.5570570570570571, 0.9298597194388778, 0.5720720720720721, 0.9298597194388778, 0.5960960960960962, 0.9098196392785571, 0.6681681681681682, 0.8897795591182365, 0.7657657657657657, 0.8797595190380761, 0.7777777777777778, 0.8617234468937875, 0.7867867867867868, 0.8396793587174348, 0.7927927927927928, 0.8056112224448898, 0.7957957957957958]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/52.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.19839679358717435, 0.7477477477477478, 0.15430861723446893, 0.7117117117117117, 0.12625250501002003, 0.6831831831831832, 0.12625250501002003, 0.6711711711711712, 0.11823647294589178, 0.6411411411411412, 0.10020040080160321, 0.5375375375375375, 0.06412825651302605, 0.37237237237237236, 0.09018036072144289, 0.34684684684684686, 0.09018036072144289, 0.32882882882882886, 0.08617234468937876, 0.3183183183183183, 0.09218436873747494, 0.30930930930930933, 0.2605210420841683, 0.2972972972972973, 0.2665330661322645, 0.2987987987987988, 0.27054108216432865, 0.30180180180180183, 0.2725450901803607, 0.33183183183183185, 0.30861723446893785, 0.36186186186186187, 0.32064128256513025, 0.37987987987987987, 0.32665330661322645, 0.484984984984985, 0.3366733466933868, 0.5585585585585585, 0.3366733466933868, 0.6006006006006006, 0.3406813627254509, 0.6186186186186187, 0.3406813627254509, 0.6471471471471472, 0.3466933867735471, 0.6951951951951952, 0.22645290581162325, 0.7387387387387387, 0.21042084168336672, 0.7417417417417418, 0.19839679358717435, 0.7477477477477478]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5270541082164328, 0.7687687687687688, 0.5050100200400801, 0.7687687687687688, 0.4729458917835671, 0.7612612612612613, 0.45090180360721444, 0.7477477477477478, 0.43887775551102204, 0.7342342342342343, 0.43687374749499, 0.7282282282282282, 0.43687374749499, 0.6951951951951952, 0.4248496993987976, 0.5585585585585585, 0.4408817635270541, 0.5405405405405406, 0.4408817635270541, 0.5285285285285285, 0.44889779559118237, 0.521021021021021, 0.46893787575150303, 0.5135135135135135, 0.5070140280561122, 0.5075075075075075, 0.5591182364729459, 0.512012012012012, 0.5751503006012024, 0.5180180180180181, 0.5871743486973948, 0.527027027027027, 0.5871743486973948, 0.539039039039039, 0.6012024048096193, 0.5525525525525525, 0.6052104208416834, 0.5615615615615616, 0.6052104208416834, 0.7207207207207207, 0.5991983967935872, 0.7357357357357357, 0.5811623246492986, 0.7522522522522522, 0.5731462925851704, 0.7567567567567568, 0.5270541082164328, 0.7687687687687688]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.843687374749499, 0.7522522522522522, 0.811623246492986, 0.7507507507507507, 0.7715430861723447, 0.7372372372372372, 0.7535070140280561, 0.7207207207207207, 0.7414829659318637, 0.6996996996996997, 0.749498997995992, 0.6276276276276276, 0.7655310621242485, 0.5930930930930931, 0.7655310621242485, 0.5525525525525525, 0.7615230460921844, 0.5435435435435435, 0.7635270541082164, 0.5195195195195195, 0.7755511022044088, 0.496996996996997, 0.8016032064128257, 0.47147147147147145, 0.7995991983967936, 0.45495495495495497, 0.7935871743486974, 0.44894894894894893, 0.7935871743486974, 0.4369369369369369, 0.8076152304609219, 0.42792792792792794, 0.8156312625250501, 0.4009009009009009, 0.843687374749499, 0.3933933933933934, 0.8777555110220441, 0.3933933933933934, 0.9178356713426854, 0.4024024024024024, 0.9278557114228457, 0.4099099099099099, 0.9258517034068137, 0.43543543543543545, 0.935871743486974, 0.44294294294294295, 0.935871743486974, 0.45345345345345345, 0.9198396793587175, 0.466966966966967, 0.9178356713426854, 0.481981981981982, 0.9218436873747495, 0.4894894894894895, 0.9298597194388778, 0.4954954954954955, 0.9298597194388778, 0.5, 0.9398797595190381, 0.5165165165165165, 0.9418837675350702, 0.545045045045045, 0.9298597194388778, 0.5705705705705706, 0.9198396793587175, 0.5840840840840841, 0.9198396793587175, 0.6576576576576577, 0.9138276553106213, 0.6741741741741741, 0.9038076152304609, 0.7267267267267268, 0.8837675350701403, 0.7432432432432432, 0.875751503006012, 0.7447447447447447, 0.87374749498998, 0.7477477477477478, 0.843687374749499, 0.7522522522522522]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/53.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.22444889779559118, 0.7777777777777778, 0.19238476953907815, 0.7762762762762763, 0.18637274549098196, 0.7732732732732732, 0.17835671342685372, 0.7732732732732732, 0.15831663326653306, 0.7642642642642643, 0.15030060120240482, 0.7567567567567568, 0.10220440881763528, 0.5765765765765766, 0.1062124248496994, 0.56006006006006, 0.11422845691382766, 0.551051051051051, 0.11022044088176353, 0.536036036036036, 0.12224448897795591, 0.5255255255255256, 0.1342685370741483, 0.5195195195195195, 0.16432865731462926, 0.5105105105105106, 0.21643286573146292, 0.5045045045045045, 0.24649298597194388, 0.506006006006006, 0.26452905811623245, 0.5135135135135135, 0.2745490981963928, 0.5195195195195195, 0.27655310621242485, 0.53003003003003, 0.28857715430861725, 0.5375375375375375, 0.30060120240480964, 0.5540540540540541, 0.3226452905811623, 0.7207207207207207, 0.32064128256513025, 0.7312312312312312, 0.31462925851703405, 0.7387387387387387, 0.2925851703406814, 0.7567567567567568, 0.26452905811623245, 0.7687687687687688, 0.22444889779559118, 0.7777777777777778]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.8036072144288577, 0.7747747747747747, 0.7675350701402806, 0.7597597597597597, 0.7555110220440882, 0.7597597597597597, 0.7074148296593187, 0.7717717717717718, 0.6673346693386774, 0.7732732732732732, 0.39478957915831664, 0.6291291291291291, 0.36072144288577157, 0.6141141141141141, 0.3527054108216433, 0.5165165165165165, 0.46092184368737477, 0.484984984984985, 0.46893787575150303, 0.484984984984985, 0.7955911823647295, 0.5975975975975976, 0.7995991983967936, 0.5990990990990991, 0.7995991983967936, 0.6051051051051051, 0.7935871743486974, 0.6456456456456456, 0.7975951903807615, 0.6501501501501501, 0.8136272545090181, 0.6546546546546547, 0.8296593186372746, 0.6681681681681682, 0.8156312625250501, 0.7672672672672672, 0.8096192384769539, 0.7732732732732732, 0.8036072144288577, 0.7747747747747747]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8376753507014028, 0.6666666666666666, 0.8296593186372746, 0.6666666666666666, 0.8136272545090181, 0.6531531531531531, 0.7935871743486974, 0.6441441441441441, 0.7995991983967936, 0.6171171171171171, 0.7975951903807615, 0.5960960960960962, 0.7314629258517034, 0.5735735735735735, 0.7314629258517034, 0.56006006006006, 0.7454909819639278, 0.5180180180180181, 0.7454909819639278, 0.4894894894894895, 0.7394789579158316, 0.4774774774774775, 0.7414829659318637, 0.4594594594594595, 0.751503006012024, 0.43993993993993996, 0.7755511022044088, 0.4159159159159159, 0.7755511022044088, 0.3978978978978979, 0.7675350701402806, 0.3888888888888889, 0.7675350701402806, 0.38288288288288286, 0.7835671342685371, 0.36936936936936937, 0.7855711422845691, 0.34984984984984985, 0.7995991983967936, 0.34234234234234234, 0.8136272545090181, 0.3408408408408408, 0.8617234468937875, 0.34234234234234234, 0.87374749498998, 0.34534534534534533, 0.8857715430861723, 0.35135135135135137, 0.8857715430861723, 0.3783783783783784, 0.8957915831663327, 0.3858858858858859, 0.8957915831663327, 0.3918918918918919, 0.8817635270541082, 0.4069069069069069, 0.8817635270541082, 0.42492492492492495, 0.8917835671342685, 0.43543543543543545, 0.9018036072144289, 0.45495495495495497, 0.8997995991983968, 0.487987987987988, 0.8957915831663327, 0.496996996996997, 0.8877755511022044, 0.5045045045045045, 0.8837675350701403, 0.5180180180180181, 0.8857715430861723, 0.5720720720720721, 0.87374749498998, 0.6426426426426426, 0.8597194388777555, 0.6561561561561562, 0.8376753507014028, 0.6666666666666666]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/54.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.20641282565130262, 0.7777777777777778, 0.17835671342685372, 0.7777777777777778, 0.1462925851703407, 0.7717717717717718, 0.13627254509018036, 0.7642642642642643, 0.1282565130260521, 0.7537537537537538, 0.12424849699398798, 0.7462462462462462, 0.11623246492985972, 0.7012012012012012, 0.09619238476953908, 0.6231231231231231, 0.09418837675350701, 0.6021021021021021, 0.09018036072144289, 0.5945945945945946, 0.09418837675350701, 0.5825825825825826, 0.10220440881763528, 0.5735735735735735, 0.09819639278557114, 0.5630630630630631, 0.10821643286573146, 0.551051051051051, 0.1402805611222445, 0.539039039039039, 0.18036072144288579, 0.5330330330330331, 0.21643286573146292, 0.5345345345345346, 0.23246492985971945, 0.539039039039039, 0.24048096192384769, 0.5420420420420421, 0.24649298597194388, 0.5495495495495496, 0.24448897795591182, 0.5555555555555556, 0.2625250501002004, 0.5690690690690691, 0.27054108216432865, 0.6351351351351351, 0.2785571142284569, 0.6666666666666666, 0.2785571142284569, 0.6921921921921922, 0.2845691382765531, 0.7237237237237237, 0.280561122244489, 0.7387387387387387, 0.27054108216432865, 0.7492492492492493, 0.25250501002004005, 0.7612612612612613, 0.22845691382765532, 0.7717717717717718, 0.20641282565130262, 0.7777777777777778]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5571142284569138, 0.7567567567567568, 0.5490981963927856, 0.7567567567567568, 0.5270541082164328, 0.7477477477477478, 0.5190380761523046, 0.7522522522522522, 0.5110220440881763, 0.7522522522522522, 0.503006012024048, 0.7492492492492493, 0.49498997995991983, 0.7417417417417418, 0.49298597194388777, 0.7357357357357357, 0.48096192384769537, 0.7312312312312312, 0.43687374749499, 0.7327327327327328, 0.4148296593186373, 0.7267267267267268, 0.3907815631262525, 0.7147147147147147, 0.3627254509018036, 0.6936936936936937, 0.3186372745490982, 0.6846846846846847, 0.28256513026052105, 0.6681681681681682, 0.2785571142284569, 0.6636636636636637, 0.2725450901803607, 0.6351351351351351, 0.2665330661322645, 0.5765765765765766, 0.2785571142284569, 0.5690690690690691, 0.28857715430861725, 0.566066066066066, 0.3066132264529058, 0.566066066066066, 0.3246492985971944, 0.5705705705705706, 0.33867735470941884, 0.5780780780780781, 0.3687374749498998, 0.5855855855855856, 0.3847695390781563, 0.5945945945945946, 0.3927855711422846, 0.5960960960960962, 0.4188376753507014, 0.6126126126126126, 0.43687374749499, 0.6171171171171171, 0.4529058116232465, 0.6171171171171171, 0.46292585170340683, 0.6216216216216216, 0.4789579158316633, 0.6246246246246246, 0.49899799599198397, 0.6351351351351351, 0.5250501002004008, 0.6651651651651652, 0.5430861723446894, 0.6636636636636637, 0.561122244488978, 0.6696696696696697, 0.5711422845691383, 0.6816816816816816, 0.5851703406813628, 0.6876876876876877, 0.5951903807615231, 0.6936936936936937, 0.5971943887775552, 0.7132132132132132, 0.591182364729459, 0.7282282282282282, 0.5791583166332666, 0.7417417417417418, 0.5651302605210421, 0.7537537537537538, 0.5571142284569138, 0.7567567567567568]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.7234468937875751, 0.7657657657657657, 0.6913827655310621, 0.7642642642642643, 0.6793587174348698, 0.7312312312312312, 0.657314629258517, 0.6861861861861862, 0.6633266533066132, 0.6606606606606606, 0.6913827655310621, 0.3963963963963964, 0.6973947895791583, 0.3888888888888889, 0.7214428857715431, 0.3708708708708709, 0.7234468937875751, 0.34984984984984985, 0.7374749498997996, 0.33933933933933935, 0.9038076152304609, 0.33933933933933935, 0.9158316633266533, 0.34384384384384387, 0.9098196392785571, 0.3783783783783784, 0.9298597194388778, 0.4099099099099099, 0.9398797595190381, 0.43843843843843844, 0.9298597194388778, 0.466966966966967, 0.8777555110220441, 0.6906906906906907, 0.8677354709418837, 0.7192192192192193, 0.8617234468937875, 0.7597597597597597, 0.8577154308617234, 0.7627627627627628, 0.7575150300601202, 0.7627627627627628, 0.7234468937875751, 0.7657657657657657]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/55.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.35070140280561124, 0.7147147147147147, 0.32665330661322645, 0.7147147147147147, 0.3066132264529058, 0.7117117117117117, 0.2905811623246493, 0.7057057057057057, 0.2785571142284569, 0.6951951951951952, 0.2685370741482966, 0.6831831831831832, 0.2545090180360721, 0.5990990990990991, 0.25851703406813625, 0.581081081081081, 0.25851703406813625, 0.5435435435435435, 0.2545090180360721, 0.5285285285285285, 0.24248496993987975, 0.5075075075075075, 0.23847695390781562, 0.484984984984985, 0.24048096192384769, 0.466966966966967, 0.25250501002004005, 0.44744744744744747, 0.2625250501002004, 0.4369369369369369, 0.2665330661322645, 0.4264264264264264, 0.26452905811623245, 0.4114114114114114, 0.2565130260521042, 0.40540540540540543, 0.24849699398797595, 0.3933933933933934, 0.250501002004008, 0.3843843843843844, 0.2605210420841683, 0.3768768768768769, 0.2605210420841683, 0.34684684684684686, 0.27054108216432865, 0.34234234234234234, 0.3046092184368738, 0.33633633633633636, 0.35070140280561124, 0.33783783783783783, 0.37074148296593185, 0.34234234234234234, 0.37675350701402804, 0.34684684684684686, 0.38276553106212424, 0.37537537537537535, 0.3967935871743487, 0.38288288288288286, 0.3967935871743487, 0.3933933933933934, 0.3867735470941884, 0.40540540540540543, 0.3847695390781563, 0.42042042042042044, 0.38877755511022044, 0.42792792792792794, 0.4028056112224449, 0.43843843843843844, 0.4028056112224449, 0.44144144144144143, 0.41282565130260523, 0.45045045045045046, 0.4228456913827655, 0.47297297297297297, 0.42084168336673344, 0.4804804804804805, 0.4028056112224449, 0.4864864864864865, 0.38877755511022044, 0.496996996996997, 0.38877755511022044, 0.512012012012012, 0.3727454909819639, 0.527027027027027, 0.3727454909819639, 0.575075075075075, 0.38276553106212424, 0.7042042042042042, 0.374749498997996, 0.7102102102102102, 0.35070140280561124, 0.7147147147147147]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.48897795591182364, 0.7672672672672672, 0.46693386773547096, 0.7672672672672672, 0.43687374749499, 0.7627627627627628, 0.42084168336673344, 0.7552552552552553, 0.4148296593186373, 0.7552552552552553, 0.40080160320641284, 0.7447447447447447, 0.38877755511022044, 0.7297297297297297, 0.3847695390781563, 0.7027027027027027, 0.3727454909819639, 0.53003003003003, 0.3907815631262525, 0.512012012012012, 0.38877755511022044, 0.5, 0.39879759519038077, 0.49099099099099097, 0.4228456913827655, 0.4804804804804805, 0.45691382765531063, 0.47597597597597596, 0.5110220440881763, 0.4774774774774775, 0.5430861723446894, 0.487987987987988, 0.5511022044088176, 0.49099099099099097, 0.5591182364729459, 0.5015015015015015, 0.5591182364729459, 0.5165165165165165, 0.5691382765531062, 0.5225225225225225, 0.5751503006012024, 0.5315315315315315, 0.5711422845691383, 0.7177177177177178, 0.5651302605210421, 0.7327327327327328, 0.5470941883767535, 0.7477477477477478, 0.533066132264529, 0.7552552552552553, 0.5150300601202404, 0.7597597597597597, 0.5130260521042084, 0.7627627627627628, 0.48897795591182364, 0.7672672672672672]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.6452905811623246, 0.7297297297297297, 0.5731462925851704, 0.6936936936936937, 0.5751503006012024, 0.527027027027027, 0.5571142284569138, 0.512012012012012, 0.5591182364729459, 0.4984984984984985, 0.5551102204408818, 0.4924924924924925, 0.5430861723446894, 0.4864864864864865, 0.5170340681362725, 0.4774774774774775, 0.5250501002004008, 0.30930930930930933, 0.56312625250501, 0.2897897897897898, 0.6092184368737475, 0.2732732732732733, 0.6112224448897795, 0.24924924924924924, 0.6192384769539078, 0.23273273273273273, 0.6292585170340681, 0.22972972972972974, 0.7294589178356713, 0.22372372372372373, 0.7394789579158316, 0.22822822822822822, 0.7394789579158316, 0.25375375375375375, 0.7675350701402806, 0.26426426426426425, 0.7855711422845691, 0.28378378378378377, 0.8196392785571143, 0.3108108108108108, 0.8196392785571143, 0.3228228228228228, 0.7875751503006012, 0.4774774774774775, 0.7855711422845691, 0.5045045045045045, 0.7675350701402806, 0.5900900900900901, 0.7575150300601202, 0.6636636636636637, 0.7474949899799599, 0.6741741741741741, 0.6452905811623246, 0.7297297297297297]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/57.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.280561122244489, 0.7462462462462462, 0.25250501002004005, 0.7462462462462462, 0.23446893787575152, 0.7432432432432432, 0.20641282565130262, 0.7297297297297297, 0.1963927855711423, 0.7177177177177178, 0.1743486973947896, 0.6351351351351351, 0.17234468937875752, 0.5690690690690691, 0.15430861723446893, 0.5405405405405406, 0.1462925851703407, 0.5180180180180181, 0.14829659318637275, 0.487987987987988, 0.17034068136272545, 0.45495495495495497, 0.1683366733466934, 0.4339339339339339, 0.15030060120240482, 0.4174174174174174, 0.15030060120240482, 0.4084084084084084, 0.16032064128256512, 0.3963963963963964, 0.15831663326653306, 0.36936936936936937, 0.1623246492985972, 0.36186186186186187, 0.19438877755511022, 0.35135135135135137, 0.2565130260521042, 0.34984984984984985, 0.2745490981963928, 0.35435435435435436, 0.2865731462925852, 0.36036036036036034, 0.2925851703406814, 0.3888888888888889, 0.3046092184368738, 0.3948948948948949, 0.3106212424849699, 0.3993993993993994, 0.3106212424849699, 0.4099099099099099, 0.30060120240480964, 0.4219219219219219, 0.30060120240480964, 0.43843843843843844, 0.3366733466933868, 0.47297297297297297, 0.3466933867735471, 0.496996996996997, 0.3486973947895792, 0.5165165165165165, 0.342685370741483, 0.53003003003003, 0.3406813627254509, 0.56006006006006, 0.342685370741483, 0.5720720720720721, 0.3527054108216433, 0.5900900900900901, 0.3527054108216433, 0.5960960960960962, 0.35671342685370744, 0.5990990990990991, 0.36072144288577157, 0.6141141141141141, 0.36072144288577157, 0.6486486486486487, 0.36472945891783565, 0.6546546546546547, 0.3667334669338677, 0.6906906906906907, 0.3587174348697395, 0.7072072072072072, 0.33266533066132264, 0.7297297297297297, 0.32064128256513025, 0.7357357357357357, 0.280561122244489, 0.7462462462462462]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.5711422845691383, 0.6396396396396397, 0.36072144288577157, 0.6396396396396397, 0.36072144288577157, 0.6381381381381381, 0.36072144288577157, 0.6051051051051051, 0.3587174348697395, 0.6036036036036037, 0.3587174348697395, 0.5990990990990991, 0.35671342685370744, 0.5975975975975976, 0.35671342685370744, 0.5960960960960962, 0.3527054108216433, 0.5930930930930931, 0.3527054108216433, 0.5870870870870871, 0.35070140280561124, 0.5855855855855856, 0.35070140280561124, 0.5825825825825826, 0.3486973947895792, 0.581081081081081, 0.3486973947895792, 0.5780780780780781, 0.3466933867735471, 0.5765765765765766, 0.3466933867735471, 0.5735735735735735, 0.34468937875751504, 0.5720720720720721, 0.34468937875751504, 0.5675675675675675, 0.342685370741483, 0.566066066066066, 0.342685370741483, 0.5540540540540541, 0.3406813627254509, 0.5525525525525525, 0.3406813627254509, 0.5495495495495496, 0.342685370741483, 0.5480480480480481, 0.342685370741483, 0.5345345345345346, 0.34468937875751504, 0.5330330330330331, 0.34468937875751504, 0.53003003003003, 0.3466933867735471, 0.5285285285285285, 0.3466933867735471, 0.5225225225225225, 0.3486973947895792, 0.521021021021021, 0.3486973947895792, 0.4954954954954955, 0.35070140280561124, 0.493993993993994, 0.35070140280561124, 0.4864864864864865, 0.3527054108216433, 0.484984984984985, 0.3527054108216433, 0.48348348348348347, 0.35470941883767537, 0.481981981981982, 0.35470941883767537, 0.47897897897897895, 0.35671342685370744, 0.4774774774774775, 0.35671342685370744, 0.4744744744744745, 0.35671342685370744, 0.4744744744744745, 0.6032064128256514, 0.4744744744744745, 0.6052104208416834, 0.47597597597597596, 0.6312625250501002, 0.47597597597597596, 0.6332665330661322, 0.47597597597597596, 0.6312625250501002, 0.4774774774774775, 0.625250501002004, 0.4774774774774775, 0.6232464929859719, 0.47897897897897895, 0.6152304609218436, 0.47897897897897895, 0.6132264529058116, 0.4804804804804805, 0.6112224448897795, 0.4804804804804805, 0.6092184368737475, 0.481981981981982, 0.6072144288577155, 0.481981981981982, 0.5951903807615231, 0.49099099099099097, 0.593186372745491, 0.49099099099099097, 0.591182364729459, 0.4924924924924925, 0.591182364729459, 0.503003003003003, 0.593186372745491, 0.5045045045045045, 0.591182364729459, 0.506006006006006, 0.591182364729459, 0.5075075075075075, 0.5891783567134269, 0.509009009009009, 0.5871743486973948, 0.509009009009009, 0.5831663326653307, 0.512012012012012, 0.5831663326653307, 0.5135135135135135, 0.5811623246492986, 0.515015015015015, 0.5811623246492986, 0.5165165165165165, 0.5751503006012024, 0.521021021021021, 0.5751503006012024, 0.5570570570570571, 0.5731462925851704, 0.5585585585585585, 0.5731462925851704, 0.6381381381381381, 0.5711422845691383, 0.6396396396396397], [0.7955911823647295, 0.6426426426426426, 0.7675350701402806, 0.6411411411411412, 0.7715430861723447, 0.5855855855855856, 0.7775551102204409, 0.5690690690690691, 0.7775551102204409, 0.5315315315315315, 0.7735470941883767, 0.5255255255255256, 0.7615230460921844, 0.5180180180180181, 0.7635270541082164, 0.4984984984984985, 0.7535070140280561, 0.49099099099099097, 0.749498997995992, 0.49099099099099097, 0.7414829659318637, 0.484984984984985, 0.7094188376753507, 0.47597597597597596, 0.779559118236473, 0.47597597597597596, 0.8336673346693386, 0.4984984984984985, 0.8416833667334669, 0.5045045045045045, 0.87374749498998, 0.5045045045045045, 0.8857715430861723, 0.509009009009009, 0.8617234468937875, 0.581081081081081, 0.8617234468937875, 0.5930930930930931, 0.8557114228456913, 0.6051051051051051, 0.8496993987975952, 0.6096096096096096, 0.8236472945891784, 0.6081081081081081, 0.8136272545090181, 0.6291291291291291, 0.7955911823647295, 0.6426426426426426]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.6813627254509018, 0.7642642642642643, 0.6593186372745491, 0.7642642642642643, 0.6352705410821643, 0.7597597597597597, 0.6092184368737475, 0.7507507507507507, 0.5831663326653307, 0.7297297297297297, 0.5731462925851704, 0.7162162162162162, 0.5751503006012024, 0.5255255255255256, 0.5871743486973948, 0.5105105105105106, 0.593186372745491, 0.5075075075075075, 0.593186372745491, 0.4924924924924925, 0.6052104208416834, 0.484984984984985, 0.6152304609218436, 0.4804804804804805, 0.657314629258517, 0.4744744744744745, 0.6993987975951904, 0.47597597597597596, 0.7374749498997996, 0.484984984984985, 0.749498997995992, 0.4924924924924925, 0.7535070140280561, 0.4924924924924925, 0.7635270541082164, 0.5015015015015015, 0.7595190380761523, 0.5180180180180181, 0.7715430861723447, 0.5255255255255256, 0.7775551102204409, 0.5345345345345346, 0.7755511022044088, 0.5690690690690691, 0.7695390781563126, 0.5855855855855856, 0.7655310621242485, 0.6546546546546547, 0.7555110220440882, 0.7252252252252253, 0.7334669338677354, 0.7492492492492493, 0.6993987975951904, 0.7612612612612613, 0.6813627254509018, 0.7642642642642643]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/58.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.20240480961923848, 0.7687687687687688, 0.17835671342685372, 0.7657657657657657, 0.14829659318637275, 0.7582582582582582, 0.1282565130260521, 0.7432432432432432, 0.09418837675350701, 0.566066066066066, 0.09819639278557114, 0.5495495495495496, 0.1062124248496994, 0.5405405405405406, 0.10821643286573146, 0.524024024024024, 0.13026052104208416, 0.512012012012012, 0.17635270541082165, 0.5015015015015015, 0.22845691382765532, 0.5015015015015015, 0.24448897795591182, 0.506006006006006, 0.2625250501002004, 0.5135135135135135, 0.2665330661322645, 0.5195195195195195, 0.2665330661322645, 0.527027027027027, 0.280561122244489, 0.539039039039039, 0.2865731462925852, 0.5495495495495496, 0.2985971943887776, 0.7192192192192193, 0.2905811623246493, 0.7297297297297297, 0.2905811623246493, 0.7342342342342343, 0.250501002004008, 0.7582582582582582, 0.24048096192384769, 0.7597597597597597, 0.22845691382765532, 0.7657657657657657, 0.20240480961923848, 0.7687687687687688]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.4308617234468938, 0.6546546546546547, 0.3967935871743487, 0.6516516516516516, 0.3787575150300601, 0.6456456456456456, 0.36072144288577157, 0.6246246246246246, 0.3587174348697395, 0.5555555555555556, 0.3667334669338677, 0.527027027027027, 0.3667334669338677, 0.503003003003003, 0.36472945891783565, 0.4954954954954955, 0.3587174348697395, 0.4894894894894895, 0.35470941883767537, 0.46096096096096095, 0.36072144288577157, 0.44594594594594594, 0.38276553106212424, 0.4174174174174174, 0.38276553106212424, 0.40540540540540543, 0.37074148296593185, 0.3933933933933934, 0.3727454909819639, 0.3843843843843844, 0.3807615230460922, 0.37987987987987987, 0.3807615230460922, 0.35735735735735735, 0.3927855711422846, 0.35135135135135137, 0.41282565130260523, 0.3483483483483483, 0.4408817635270541, 0.3483483483483483, 0.4729458917835671, 0.35735735735735735, 0.4729458917835671, 0.37987987987987987, 0.48296593186372744, 0.3858858858858859, 0.48296593186372744, 0.3963963963963964, 0.4729458917835671, 0.4069069069069069, 0.4729458917835671, 0.4174174174174174, 0.4789579158316633, 0.42792792792792794, 0.48897795591182364, 0.43543543543543545, 0.49498997995991983, 0.4444444444444444, 0.501002004008016, 0.466966966966967, 0.501002004008016, 0.47597597597597596, 0.49298597194388777, 0.4864864864864865, 0.49298597194388777, 0.496996996996997, 0.48897795591182364, 0.506006006006006, 0.48897795591182364, 0.527027027027027, 0.4969939879759519, 0.5555555555555556, 0.49498997995991983, 0.6246246246246246, 0.47695390781563124, 0.6411411411411412, 0.45691382765531063, 0.6486486486486487, 0.45490981963927857, 0.6516516516516516, 0.4308617234468938, 0.6546546546546547]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.7014028056112225, 0.7627627627627628, 0.6953907815631263, 0.7627627627627628, 0.6793587174348698, 0.7492492492492493, 0.6593186372745491, 0.7282282282282282, 0.6052104208416834, 0.6831831831831832, 0.6092184368737475, 0.6741741741741741, 0.6092184368737475, 0.6516516516516516, 0.625250501002004, 0.545045045045045, 0.625250501002004, 0.5255255255255256, 0.6332665330661322, 0.4924924924924925, 0.6452905811623246, 0.3948948948948949, 0.6492985971943888, 0.38288288288288286, 0.6492985971943888, 0.36486486486486486, 0.6753507014028056, 0.3483483483483483, 0.7074148296593187, 0.33783783783783783, 0.7154308617234469, 0.33183183183183185, 0.717434869739479, 0.30930930930930933, 0.7294589178356713, 0.2972972972972973, 0.8717434869739479, 0.2957957957957958, 0.8797595190380761, 0.2987987987987988, 0.8817635270541082, 0.3033033033033033, 0.8777555110220441, 0.3123123123123123, 0.8777555110220441, 0.33483483483483484, 0.8897795591182365, 0.3408408408408408, 0.9258517034068137, 0.37237237237237236, 0.9318637274549099, 0.37987987987987987, 0.935871743486974, 0.3933933933933934, 0.9258517034068137, 0.4159159159159159, 0.9238476953907816, 0.4339339339339339, 0.9138276553106213, 0.4594594594594595, 0.905811623246493, 0.4984984984984985, 0.8837675350701403, 0.5675675675675675, 0.8697394789579158, 0.6276276276276276, 0.8517034068136272, 0.6846846846846847, 0.8517034068136272, 0.6966966966966966, 0.843687374749499, 0.7192192192192193, 0.843687374749499, 0.7297297297297297, 0.7715430861723447, 0.7477477477477478, 0.7134268537074149, 0.7582582582582582, 0.7014028056112225, 0.7627627627627628]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/59.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.5731462925851704, 0.6741741741741741, 0.5691382765531062, 0.6741741741741741, 0.5691382765531062, 0.6726726726726727, 0.5691382765531062, 0.6501501501501501, 0.5711422845691383, 0.6486486486486487, 0.5711422845691383, 0.6306306306306306, 0.5731462925851704, 0.6291291291291291, 0.5731462925851704, 0.6036036036036037, 0.5751503006012024, 0.6021021021021021, 0.5751503006012024, 0.5765765765765766, 0.5771543086172345, 0.575075075075075, 0.5771543086172345, 0.5405405405405406, 0.5751503006012024, 0.539039039039039, 0.5751503006012024, 0.5375375375375375, 0.5711422845691383, 0.5345345345345346, 0.5711422845691383, 0.5330330330330331, 0.5691382765531062, 0.5315315315315315, 0.5691382765531062, 0.53003003003003, 0.5671342685370742, 0.5285285285285285, 0.5671342685370742, 0.527027027027027, 0.561122244488978, 0.5225225225225225, 0.561122244488978, 0.521021021021021, 0.5591182364729459, 0.5195195195195195, 0.5591182364729459, 0.506006006006006, 0.5571142284569138, 0.5045045045045045, 0.5571142284569138, 0.503003003003003, 0.5531062124248497, 0.5, 0.5531062124248497, 0.4984984984984985, 0.5511022044088176, 0.496996996996997, 0.5511022044088176, 0.496996996996997, 0.5571142284569138, 0.496996996996997, 0.5591182364729459, 0.4954954954954955, 0.5731462925851704, 0.4954954954954955, 0.5751503006012024, 0.493993993993994, 0.591182364729459, 0.493993993993994, 0.593186372745491, 0.4924924924924925, 0.6072144288577155, 0.4924924924924925, 0.6092184368737475, 0.49099099099099097, 0.6232464929859719, 0.49099099099099097, 0.625250501002004, 0.4894894894894895, 0.6412825651302605, 0.4894894894894895, 0.6432865731462926, 0.487987987987988, 0.6613226452905812, 0.5015015015015015, 0.6633266533066132, 0.5015015015015015, 0.687374749498998, 0.5195195195195195, 0.6893787575150301, 0.5195195195195195, 0.7014028056112225, 0.5285285285285285, 0.7034068136272545, 0.5285285285285285, 0.7114228456913828, 0.5345345345345346, 0.7134268537074149, 0.5345345345345346, 0.7194388777555111, 0.5375375375375375, 0.7194388777555111, 0.56006006006006, 0.717434869739479, 0.5615615615615616, 0.717434869739479, 0.5705705705705706, 0.7154308617234469, 0.5720720720720721, 0.7154308617234469, 0.5975975975975976, 0.7134268537074149, 0.5990990990990991, 0.7134268537074149, 0.6081081081081081, 0.7114228456913828, 0.6096096096096096, 0.7114228456913828, 0.6186186186186187, 0.7094188376753507, 0.6201201201201201, 0.7094188376753507, 0.6351351351351351, 0.7074148296593187, 0.6366366366366366, 0.7074148296593187, 0.6516516516516516, 0.7014028056112225, 0.6561561561561562, 0.6813627254509018, 0.6561561561561562, 0.6793587174348698, 0.6576576576576577, 0.6713426853707415, 0.6576576576576577, 0.6693386773547094, 0.6591591591591591, 0.6613226452905812, 0.6591591591591591, 0.6593186372745491, 0.6606606606606606, 0.6533066132264529, 0.6606606606606606, 0.6513026052104208, 0.6621621621621622, 0.6432865731462926, 0.6621621621621622, 0.6412825651302605, 0.6636636636636637, 0.6332665330661322, 0.6636636636636637, 0.6312625250501002, 0.6651651651651652, 0.6232464929859719, 0.6651651651651652, 0.6212424849699398, 0.6666666666666666, 0.6132264529058116, 0.6666666666666666, 0.6112224448897795, 0.6681681681681682, 0.6052104208416834, 0.6681681681681682, 0.6032064128256514, 0.6696696696696697, 0.5951903807615231, 0.6696696696696697, 0.593186372745491, 0.6711711711711712, 0.5851703406813628, 0.6711711711711712, 0.5831663326653307, 0.6726726726726727, 0.5751503006012024, 0.6726726726726727, 0.5731462925851704, 0.6741741741741741], [0.25250501002004005, 0.7252252252252253, 0.24048096192384769, 0.7252252252252253, 0.21042084168336672, 0.7147147147147147, 0.19238476953907815, 0.7057057057057057, 0.17635270541082165, 0.6936936936936937, 0.13026052104208416, 0.6921921921921922, 0.12424849699398798, 0.6801801801801802, 0.11022044088176353, 0.5705705705705706, 0.11623246492985972, 0.566066066066066, 0.1342685370741483, 0.5675675675675675, 0.1523046092184369, 0.566066066066066, 0.16032064128256512, 0.5630630630630631, 0.20641282565130262, 0.527027027027027, 0.3847695390781563, 0.512012012012012, 0.38877755511022044, 0.521021021021021, 0.38276553106212424, 0.524024024024024, 0.37074148296593185, 0.5375375375375375, 0.3727454909819639, 0.7042042042042042, 0.25250501002004005, 0.7252252252252253]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.4849699398797595, 0.7852852852852853, 0.4529058116232465, 0.7852852852852853, 0.4228456913827655, 0.7792792792792793, 0.40681362725450904, 0.7732732732732732, 0.39478957915831664, 0.7672672672672672, 0.38276553106212424, 0.7552552552552553, 0.374749498997996, 0.7372372372372372, 0.37074148296593185, 0.5420420420420421, 0.3787575150300601, 0.53003003003003, 0.38877755511022044, 0.5225225225225225, 0.3867735470941884, 0.5075075075075075, 0.3967935871743487, 0.496996996996997, 0.41282565130260523, 0.49099099099099097, 0.45090180360721444, 0.48348348348348347, 0.501002004008016, 0.484984984984985, 0.5150300601202404, 0.4894894894894895, 0.531062124248497, 0.49099099099099097, 0.5470941883767535, 0.496996996996997, 0.5591182364729459, 0.5105105105105106, 0.5571142284569138, 0.5195195195195195, 0.5771543086172345, 0.545045045045045, 0.5671342685370742, 0.6636636636636637, 0.5651302605210421, 0.7387387387387387, 0.5571142284569138, 0.7522522522522522, 0.5270541082164328, 0.7747747747747747, 0.4849699398797595, 0.7852852852852853]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7474949899799599, 0.6291291291291291, 0.7194388777555111, 0.6291291291291291, 0.7114228456913828, 0.6261261261261262, 0.717434869739479, 0.5945945945945946, 0.7214428857715431, 0.5405405405405406, 0.7114228456913828, 0.5315315315315315, 0.6733466933867736, 0.506006006006006, 0.6773547094188377, 0.47897897897897895, 0.6733466933867736, 0.42342342342342343, 0.685370741482966, 0.3993993993993994, 0.7094188376753507, 0.37987987987987987, 0.7114228456913828, 0.3663663663663664, 0.7094188376753507, 0.35585585585585583, 0.7054108216432866, 0.35285285285285284, 0.7054108216432866, 0.34234234234234234, 0.7194388777555111, 0.33483483483483484, 0.7214428857715431, 0.3108108108108108, 0.7334669338677354, 0.3063063063063063, 0.779559118236473, 0.3048048048048048, 0.7975951903807615, 0.30930930930930933, 0.8096192384769539, 0.30930930930930933, 0.811623246492986, 0.3123123123123123, 0.8216432865731463, 0.3138138138138138, 0.8216432865731463, 0.34384384384384387, 0.8276553106212425, 0.35285285285285284, 0.811623246492986, 0.3738738738738739, 0.811623246492986, 0.3843843843843844, 0.8256513026052105, 0.40540540540540543, 0.8316633266533067, 0.4369369369369369, 0.8096192384769539, 0.4864864864864865, 0.8096192384769539, 0.5420420420420421, 0.7995991983967936, 0.5780780780780781, 0.7975951903807615, 0.6021021021021021, 0.7895791583166333, 0.6141141141141141, 0.781563126252505, 0.6201201201201201, 0.7655310621242485, 0.6261261261261262, 0.7474949899799599, 0.6291291291291291]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/6.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.687374749498998, 0.6576576576576577, 0.3366733466933868, 0.6561561561561562, 0.3166332665330661, 0.6501501501501501, 0.2905811623246493, 0.6381381381381381, 0.27054108216432865, 0.6396396396396397, 0.26452905811623245, 0.6321321321321322, 0.2565130260521042, 0.5915915915915916, 0.25851703406813625, 0.5255255255255256, 0.2665330661322645, 0.4984984984984985, 0.27655310621242485, 0.49099099099099097, 0.2845691382765531, 0.493993993993994, 0.29458917835671344, 0.493993993993994, 0.32064128256513025, 0.4804804804804805, 0.33266533066132264, 0.4774774774774775, 0.685370741482966, 0.47597597597597596, 0.7074148296593187, 0.493993993993994, 0.7154308617234469, 0.4954954954954955, 0.7254509018036072, 0.509009009009009, 0.7294589178356713, 0.5195195195195195, 0.7294589178356713, 0.545045045045045, 0.7354709418837675, 0.5795795795795796, 0.7354709418837675, 0.5975975975975976, 0.7274549098196392, 0.6291291291291291, 0.7214428857715431, 0.6351351351351351, 0.7114228456913828, 0.6366366366366366, 0.6973947895791583, 0.6546546546546547, 0.687374749498998, 0.6576576576576577]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/61.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.21442885771543085, 0.6261261261261262, 0.20841683366733466, 0.6261261261261262, 0.18036072144288579, 0.6156156156156156, 0.14829659318637275, 0.5945945945945946, 0.12224448897795591, 0.5945945945945946, 0.11222444889779559, 0.5975975975975976, 0.1062124248496994, 0.5930930930930931, 0.09619238476953908, 0.5705705705705706, 0.0841683366733467, 0.5135135135135135, 0.07414829659318638, 0.4864864864864865, 0.07414829659318638, 0.47897897897897895, 0.0781563126252505, 0.4774774774774775, 0.12224448897795591, 0.4744744744744745, 0.1342685370741483, 0.4624624624624625, 0.1683366733466934, 0.4369369369369369, 0.2785571142284569, 0.4294294294294294, 0.3106212424849699, 0.42342342342342343, 0.3587174348697395, 0.42042042042042044, 0.3867735470941884, 0.4159159159159159, 0.4088176352705411, 0.4159159159159159, 0.4228456913827655, 0.41291291291291293, 0.44288577154308617, 0.41291291291291293, 0.46092184368737477, 0.4084084084084084, 0.503006012024048, 0.4069069069069069, 0.5210420841683366, 0.4024024024024024, 0.5591182364729459, 0.4009009009009009, 0.5971943887775552, 0.3963963963963964, 0.6052104208416834, 0.3933933933933934, 0.6733466933867736, 0.44894894894894893, 0.6693386773547094, 0.47597597597597596, 0.6693386773547094, 0.509009009009009, 0.6653306613226453, 0.5165165165165165, 0.6232464929859719, 0.527027027027027, 0.5951903807615231, 0.5375375375375375, 0.5791583166332666, 0.5480480480480481, 0.5531062124248497, 0.5585585585585585, 0.5350701402805611, 0.56006006006006, 0.5210420841683366, 0.5645645645645646, 0.4789579158316633, 0.5675675675675675, 0.45490981963927857, 0.5765765765765766, 0.43286573146292584, 0.5900900900900901, 0.23847695390781562, 0.6201201201201201, 0.21442885771543085, 0.6261261261261262]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.35070140280561124, 0.7417417417417418, 0.3406813627254509, 0.7417417417417418, 0.33266533066132264, 0.7387387387387387, 0.3226452905811623, 0.7282282282282282, 0.3046092184368738, 0.6981981981981982, 0.2965931863727455, 0.6651651651651652, 0.3026052104208417, 0.6516516516516516, 0.3366733466933868, 0.6411411411411412, 0.35070140280561124, 0.6246246246246246, 0.3927855711422846, 0.6246246246246246, 0.40080160320641284, 0.6216216216216216, 0.43687374749499, 0.5885885885885885, 0.4589178356713427, 0.5765765765765766, 0.4789579158316633, 0.5690690690690691, 0.5531062124248497, 0.56006006006006, 0.5831663326653307, 0.5480480480480481, 0.5991983967935872, 0.5375375375375375, 0.6232464929859719, 0.5285285285285285, 0.7254509018036072, 0.503003003003003, 0.7434869739478958, 0.5045045045045045, 0.7675350701402806, 0.515015015015015, 0.7855711422845691, 0.527027027027027, 0.7975951903807615, 0.5405405405405406, 0.811623246492986, 0.566066066066066, 0.8136272545090181, 0.5840840840840841, 0.8036072144288577, 0.6111111111111112, 0.7855711422845691, 0.6231231231231231, 0.7715430861723447, 0.6261261261261262, 0.6833667334669339, 0.6591591591591591, 0.625250501002004, 0.6696696696696697, 0.591182364729459, 0.6831831831831832, 0.5691382765531062, 0.6981981981981982, 0.5430861723446894, 0.7087087087087087, 0.5110220440881763, 0.7162162162162162, 0.48096192384769537, 0.7147147147147147, 0.4649298597194389, 0.7102102102102102, 0.44288577154308617, 0.7117117117117117, 0.43286573146292584, 0.7162162162162162, 0.41082164328657317, 0.7342342342342343, 0.4028056112224449, 0.7372372372372372, 0.3807615230460922, 0.7312312312312312, 0.3727454909819639, 0.7357357357357357, 0.35671342685370744, 0.7372372372372372, 0.35070140280561124, 0.7417417417417418]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.8517034068136272, 0.6276276276276276, 0.8236472945891784, 0.6276276276276276, 0.7955911823647295, 0.6186186186186187, 0.8056112224448898, 0.6111111111111112, 0.811623246492986, 0.5990990990990991, 0.811623246492986, 0.5630630630630631, 0.8036072144288577, 0.5465465465465466, 0.7895791583166333, 0.5285285285285285, 0.7555110220440882, 0.5045045045045045, 0.7735470941883767, 0.4099099099099099, 0.7855711422845691, 0.3963963963963964, 0.7955911823647295, 0.39039039039039036, 0.7995991983967936, 0.3768768768768769, 0.8096192384769539, 0.37237237237237236, 0.8356713426853707, 0.3663663663663664, 0.8697394789579158, 0.36486486486486486, 0.8897795591182365, 0.3663663663663664, 0.9158316633266533, 0.3738738738738739, 0.9238476953907816, 0.3738738738738739, 0.9519038076152304, 0.3843843843843844, 0.9599198396793587, 0.3918918918918919, 0.9579158316633266, 0.4114114114114114, 0.9679358717434869, 0.42342342342342343, 0.9679358717434869, 0.43543543543543545, 0.9298597194388778, 0.5435435435435435, 0.9138276553106213, 0.6006006006006006, 0.9078156312625251, 0.6081081081081081, 0.8897795591182365, 0.6201201201201201, 0.8517034068136272, 0.6276276276276276]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/62.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.2605210420841683, 0.7447447447447447, 0.23046092184368738, 0.7447447447447447, 0.20040080160320642, 0.7372372372372372, 0.1903807615230461, 0.7282282282282282, 0.18236472945891782, 0.7177177177177178, 0.17234468937875752, 0.6666666666666666, 0.16633266533066132, 0.6546546546546547, 0.16633266533066132, 0.5900900900900901, 0.14428857715430862, 0.5525525525525525, 0.14228456913827656, 0.5135135135135135, 0.1462925851703407, 0.5045045045045045, 0.16432865731462926, 0.481981981981982, 0.1623246492985972, 0.46546546546546547, 0.1462925851703407, 0.4519519519519519, 0.14829659318637275, 0.4369369369369369, 0.15430861723446893, 0.4339339339339339, 0.1523046092184369, 0.4069069069069069, 0.1623246492985972, 0.3993993993993994, 0.1963927855711423, 0.39039039039039036, 0.23847695390781562, 0.39039039039039036, 0.26452905811623245, 0.3978978978978979, 0.2685370741482966, 0.40540540540540543, 0.27054108216432865, 0.42492492492492495, 0.2745490981963928, 0.4264264264264264, 0.2865731462925852, 0.4339339339339339, 0.2865731462925852, 0.44594594594594594, 0.280561122244489, 0.44894894894894893, 0.2785571142284569, 0.45345345345345345, 0.2785571142284569, 0.46996996996997, 0.3026052104208417, 0.49099099099099097, 0.31462925851703405, 0.506006006006006, 0.32064128256513025, 0.5285285285285285, 0.3166332665330661, 0.5840840840840841, 0.3346693386773547, 0.6291291291291291, 0.33867735470941884, 0.6651651651651652, 0.33867735470941884, 0.7027027027027027, 0.3286573146292585, 0.7177177177177178, 0.30060120240480964, 0.7357357357357357, 0.2605210420841683, 0.7447447447447447]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.49298597194388777, 0.7642642642642643, 0.4729458917835671, 0.7642642642642643, 0.45490981963927857, 0.7612612612612613, 0.4248496993987976, 0.7507507507507507, 0.40681362725450904, 0.7342342342342343, 0.40080160320641284, 0.7012012012012012, 0.3907815631262525, 0.5540540540540541, 0.40681362725450904, 0.5345345345345346, 0.40480961923847697, 0.5255255255255256, 0.41282565130260523, 0.5165165165165165, 0.42685370741482964, 0.509009009009009, 0.46893787575150303, 0.5015015015015015, 0.49899799599198397, 0.5015015015015015, 0.5170340681362725, 0.506006006006006, 0.5270541082164328, 0.506006006006006, 0.5410821643286573, 0.512012012012012, 0.5551102204408818, 0.524024024024024, 0.5531062124248497, 0.536036036036036, 0.56312625250501, 0.5420420420420421, 0.5691382765531062, 0.5555555555555556, 0.5711422845691383, 0.6171171171171171, 0.5651302605210421, 0.7312312312312312, 0.5591182364729459, 0.7357357357357357, 0.5591182364729459, 0.7387387387387387, 0.5370741482965932, 0.7522522522522522, 0.49298597194388777, 0.7642642642642643]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.8416833667334669, 0.7147147147147147, 0.8336673346693386, 0.7117117117117117, 0.8076152304609219, 0.7102102102102102, 0.7915831663326653, 0.7057057057057057, 0.7755511022044088, 0.7057057057057057, 0.7214428857715431, 0.6966966966966966, 0.6813627254509018, 0.6936936936936937, 0.6733466933867736, 0.6891891891891891, 0.685370741482966, 0.5480480480480481, 0.7014028056112225, 0.4294294294294294, 0.7094188376753507, 0.39039039039039036, 0.7094188376753507, 0.36786786786786785, 0.7154308617234469, 0.36186186186186187, 0.7154308617234469, 0.34984984984984985, 0.7254509018036072, 0.3228228228228228, 0.7254509018036072, 0.3063063063063063, 0.7294589178356713, 0.30180180180180183, 0.7334669338677354, 0.2807807807807808, 0.7414829659318637, 0.2747747747747748, 0.8156312625250501, 0.27627627627627627, 0.8537074148296593, 0.2807807807807808, 0.9298597194388778, 0.28378378378378377, 0.9378757515030061, 0.2897897897897898, 0.9378757515030061, 0.29429429429429427, 0.9318637274549099, 0.30180180180180183, 0.9318637274549099, 0.3138138138138138, 0.9238476953907816, 0.33483483483483484, 0.9258517034068137, 0.37987987987987987, 0.9218436873747495, 0.3843843843843844, 0.9218436873747495, 0.3963963963963964, 0.9138276553106213, 0.4159159159159159, 0.8857715430861723, 0.5480480480480481, 0.8797595190380761, 0.56006006006006, 0.8496993987975952, 0.7072072072072072, 0.8416833667334669, 0.7147147147147147]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/63.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.21643286573146292, 0.7282282282282282, 0.19238476953907815, 0.7252252252252253, 0.17835671342685372, 0.7192192192192193, 0.16633266533066132, 0.7057057057057057, 0.16633266533066132, 0.6966966966966966, 0.156312625250501, 0.6711711711711712, 0.15430861723446893, 0.6531531531531531, 0.1462925851703407, 0.6306306306306306, 0.1462925851703407, 0.5870870870870871, 0.14228456913827656, 0.5735735735735735, 0.13026052104208416, 0.5585585585585585, 0.12424849699398798, 0.539039039039039, 0.12424849699398798, 0.5225225225225225, 0.1282565130260521, 0.512012012012012, 0.1342685370741483, 0.506006006006006, 0.14228456913827656, 0.48348348348348347, 0.1402805611222445, 0.47297297297297297, 0.12625250501002003, 0.4624624624624625, 0.12424849699398798, 0.45795795795795796, 0.1282565130260521, 0.44894894894894893, 0.1342685370741483, 0.44594594594594594, 0.13226452905811623, 0.4219219219219219, 0.1342685370741483, 0.4189189189189189, 0.1523046092184369, 0.4114114114114114, 0.16633266533066132, 0.4114114114114114, 0.17234468937875752, 0.4084084084084084, 0.18837675350701402, 0.4069069069069069, 0.21442885771543085, 0.4084084084084084, 0.23046092184368738, 0.4159159159159159, 0.23446893787575152, 0.4339339339339339, 0.250501002004008, 0.4444444444444444, 0.250501002004008, 0.45345345345345345, 0.24448897795591182, 0.4594594594594595, 0.24448897795591182, 0.4744744744744745, 0.2745490981963928, 0.5015015015015015, 0.28256513026052105, 0.5195195195195195, 0.280561122244489, 0.5735735735735735, 0.2845691382765531, 0.581081081081081, 0.2845691382765531, 0.5900900900900901, 0.2965931863727455, 0.6096096096096096, 0.30861723446893785, 0.6741741741741741, 0.30861723446893785, 0.6831831831831832, 0.30060120240480964, 0.6981981981981982, 0.2785571142284569, 0.7147147147147147, 0.25250501002004005, 0.7237237237237237, 0.21643286573146292, 0.7282282282282282]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.44889779559118237, 0.7177177177177178, 0.4188376753507014, 0.7177177177177178, 0.3847695390781563, 0.7072072072072072, 0.37675350701402804, 0.7012012012012012, 0.36472945891783565, 0.6846846846846847, 0.36472945891783565, 0.6561561561561562, 0.35671342685370744, 0.6051051051051051, 0.35070140280561124, 0.5330330330330331, 0.3627254509018036, 0.5225225225225225, 0.36072144288577157, 0.5075075075075075, 0.3667334669338677, 0.503003003003003, 0.3927855711422846, 0.493993993993994, 0.41082164328657317, 0.49099099099099097, 0.46092184368737477, 0.4924924924924925, 0.47695390781563124, 0.4984984984984985, 0.4849699398797595, 0.5015015015015015, 0.48897795591182364, 0.5075075075075075, 0.48897795591182364, 0.515015015015015, 0.503006012024048, 0.527027027027027, 0.5050100200400801, 0.5345345345345346, 0.5050100200400801, 0.6156156156156156, 0.5110220440881763, 0.6816816816816816, 0.4969939879759519, 0.6981981981981982, 0.47695390781563124, 0.7087087087087087, 0.44889779559118237, 0.7177177177177178]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5831663326653307, 0.7147147147147147, 0.56312625250501, 0.7117117117117117, 0.5511022044088176, 0.6996996996996997, 0.5390781563126252, 0.6981981981981982, 0.5210420841683366, 0.6756756756756757, 0.5170340681362725, 0.6531531531531531, 0.5130260521042084, 0.4894894894894895, 0.5190380761523046, 0.4774774774774775, 0.5430861723446894, 0.45345345345345345, 0.5511022044088176, 0.4024024024024024, 0.5511022044088176, 0.36486486486486486, 0.5771543086172345, 0.3588588588588589, 0.6132264529058116, 0.3588588588588589, 0.627254509018036, 0.36186186186186187, 0.6352705410821643, 0.3663663663663664, 0.6352705410821643, 0.3933933933933934, 0.6312625250501002, 0.4009009009009009, 0.6352705410821643, 0.4069069069069069, 0.6412825651302605, 0.4519519519519519, 0.6452905811623246, 0.4594594594594595, 0.6693386773547094, 0.481981981981982, 0.6753507014028056, 0.5015015015015015, 0.6713426853707415, 0.6621621621621622, 0.6653306613226453, 0.6801801801801802, 0.657314629258517, 0.6921921921921922, 0.6513026052104208, 0.6966966966966966, 0.6432865731462926, 0.6981981981981982, 0.6352705410821643, 0.7072072072072072, 0.6192384769539078, 0.7132132132132132, 0.6112224448897795, 0.7132132132132132, 0.6032064128256514, 0.7072072072072072, 0.5971943887775552, 0.6951951951951952, 0.591182364729459, 0.7102102102102102, 0.5831663326653307, 0.7147147147147147]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.87374749498998, 0.7372372372372372, 0.7655310621242485, 0.7177177177177178, 0.7354709418837675, 0.7102102102102102, 0.7154308617234469, 0.7087087087087087, 0.7074148296593187, 0.7027027027027027, 0.7154308617234469, 0.6351351351351351, 0.7194388777555111, 0.5315315315315315, 0.7294589178356713, 0.4294294294294294, 0.7294589178356713, 0.3978978978978979, 0.7334669338677354, 0.3948948948948949, 0.7434869739478958, 0.37237237237237236, 0.7434869739478958, 0.3663663663663664, 0.751503006012024, 0.35735735735735735, 0.7535070140280561, 0.34534534534534533, 0.7615230460921844, 0.33183183183183185, 0.7635270541082164, 0.3138138138138138, 0.7675350701402806, 0.30930930930930933, 0.7735470941883767, 0.3078078078078078, 0.8637274549098196, 0.3123123123123123, 0.8837675350701403, 0.3153153153153153, 0.9458917835671342, 0.31681681681681684, 0.9539078156312625, 0.3183183183183183, 0.9599198396793587, 0.3213213213213213, 0.9599198396793587, 0.3303303303303303, 0.9539078156312625, 0.34384384384384387, 0.9539078156312625, 0.3783783783783784, 0.9498997995991983, 0.3843843843843844, 0.9338677354709419, 0.47147147147147145, 0.9178356713426854, 0.5825825825825826, 0.9098196392785571, 0.6141141141141141, 0.9098196392785571, 0.6291291291291291, 0.905811623246493, 0.6351351351351351, 0.8897795591182365, 0.7102102102102102, 0.8837675350701403, 0.7192192192192193, 0.8837675350701403, 0.7252252252252253, 0.87374749498998, 0.7372372372372372]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/64.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.3026052104208417, 0.7327327327327328, 0.28256513026052105, 0.7312312312312312, 0.15430861723446893, 0.7072072072072072, 0.15430861723446893, 0.6921921921921922, 0.08817635270541083, 0.3978978978978979, 0.08817635270541083, 0.3918918918918919, 0.11222444889779559, 0.3588588588588589, 0.1342685370741483, 0.33783783783783783, 0.1342685370741483, 0.3078078078078078, 0.14428857715430862, 0.3048048048048048, 0.2985971943887776, 0.3138138138138138, 0.30861723446893785, 0.3183183183183183, 0.30861723446893785, 0.3483483483483483, 0.342685370741483, 0.36486486486486486, 0.3527054108216433, 0.3738738738738739, 0.3527054108216433, 0.42042042042042044, 0.3587174348697395, 0.46396396396396394, 0.3587174348697395, 0.506006006006006, 0.3627254509018036, 0.5675675675675675, 0.3687374749498998, 0.6051051051051051, 0.37074148296593185, 0.6591591591591591, 0.3627254509018036, 0.6711711711711712, 0.342685370741483, 0.6891891891891891, 0.32665330661322645, 0.7102102102102102, 0.3026052104208417, 0.7327327327327328]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.4649298597194389, 0.7162162162162162, 0.4348697394789579, 0.7162162162162162, 0.4148296593186373, 0.7102102102102102, 0.3927855711422846, 0.6951951951951952, 0.3867735470941884, 0.6846846846846847, 0.3847695390781563, 0.6411411411411412, 0.3787575150300601, 0.6111111111111112, 0.3847695390781563, 0.5855855855855856, 0.3847695390781563, 0.5645645645645646, 0.38276553106212424, 0.5525525525525525, 0.37074148296593185, 0.53003003003003, 0.37074148296593185, 0.506006006006006, 0.37675350701402804, 0.4894894894894895, 0.3927855711422846, 0.47147147147147145, 0.3927855711422846, 0.45345345345345345, 0.3807615230460922, 0.44144144144144143, 0.3807615230460922, 0.4339339339339339, 0.3907815631262525, 0.4264264264264264, 0.3907815631262525, 0.4039039039039039, 0.39879759519038077, 0.3978978978978979, 0.42084168336673344, 0.3933933933933934, 0.4729458917835671, 0.3948948948948949, 0.48897795591182364, 0.4024024024024024, 0.48897795591182364, 0.4189189189189189, 0.503006012024048, 0.43243243243243246, 0.503006012024048, 0.44294294294294295, 0.49498997995991983, 0.45045045045045046, 0.49298597194388777, 0.46396396396396394, 0.5130260521042084, 0.481981981981982, 0.5230460921843687, 0.5045045045045045, 0.5170340681362725, 0.575075075075075, 0.5270541082164328, 0.6066066066066066, 0.5290581162324649, 0.6801801801801802, 0.5210420841683366, 0.6921921921921922, 0.5070140280561122, 0.7042042042042042, 0.4649298597194389, 0.7162162162162162]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.6713426853707415, 0.7117117117117117, 0.6452905811623246, 0.7102102102102102, 0.6152304609218436, 0.6996996996996997, 0.5991983967935872, 0.6876876876876877, 0.5871743486973948, 0.6741741741741741, 0.5891783567134269, 0.5255255255255256, 0.593186372745491, 0.515015015015015, 0.6052104208416834, 0.5045045045045045, 0.6032064128256514, 0.493993993993994, 0.6092184368737475, 0.4894894894894895, 0.627254509018036, 0.481981981981982, 0.6432865731462926, 0.47897897897897895, 0.6813627254509018, 0.4774774774774775, 0.7214428857715431, 0.4864864864864865, 0.7374749498997996, 0.4954954954954955, 0.7394789579158316, 0.5015015015015015, 0.7354709418837675, 0.5105105105105106, 0.749498997995992, 0.5225225225225225, 0.749498997995992, 0.536036036036036, 0.7374749498997996, 0.6801801801801802, 0.7334669338677354, 0.6831831831831832, 0.7314629258517034, 0.6906906906906907, 0.717434869739479, 0.6996996996996997, 0.6713426853707415, 0.7117117117117117]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8557114228456913, 0.7102102102102102, 0.8396793587174348, 0.7072072072072072, 0.8316633266533067, 0.6966966966966966, 0.8256513026052105, 0.7057057057057057, 0.8176352705410822, 0.7102102102102102, 0.8036072144288577, 0.7087087087087087, 0.7895791583166333, 0.7012012012012012, 0.7835671342685371, 0.6921921921921922, 0.7695390781563126, 0.6936936936936937, 0.7615230460921844, 0.6876876876876877, 0.7555110220440882, 0.6816816816816816, 0.7454909819639278, 0.6591591591591591, 0.7454909819639278, 0.6201201201201201, 0.7575150300601202, 0.5285285285285285, 0.7595190380761523, 0.48348348348348347, 0.7715430861723447, 0.4624624624624625, 0.7995991983967936, 0.43843843843843844, 0.8076152304609219, 0.4099099099099099, 0.8196392785571143, 0.3843843843843844, 0.8156312625250501, 0.3768768768768769, 0.8176352705410822, 0.35585585585585583, 0.8216432865731463, 0.34984984984984985, 0.8316633266533067, 0.34684684684684686, 0.875751503006012, 0.34534534534534533, 0.905811623246493, 0.35135135135135137, 0.9138276553106213, 0.35585585585585583, 0.9118236472945892, 0.37987987987987987, 0.9098196392785571, 0.3843843843843844, 0.9038076152304609, 0.38738738738738737, 0.905811623246493, 0.44294294294294295, 0.9078156312625251, 0.4519519519519519, 0.9238476953907816, 0.46546546546546547, 0.9338677354709419, 0.481981981981982, 0.9338677354709419, 0.496996996996997, 0.9078156312625251, 0.6261261261261262, 0.9038076152304609, 0.6636636636636637, 0.8877755511022044, 0.6891891891891891, 0.8777555110220441, 0.6936936936936937, 0.8697394789579158, 0.7042042042042042, 0.8557114228456913, 0.7102102102102102]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/66.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.17034068136272545, 0.7192192192192193, 0.16032064128256512, 0.7192192192192193, 0.14829659318637275, 0.7102102102102102, 0.1342685370741483, 0.7177177177177178, 0.11422845691382766, 0.7117117117117117, 0.1062124248496994, 0.7042042042042042, 0.09418837675350701, 0.6876876876876877, 0.08016032064128256, 0.6606606606606606, 0.052104208416833664, 0.5525525525525525, 0.04809619238476954, 0.527027027027027, 0.04208416833667335, 0.5165165165165165, 0.04208416833667335, 0.4984984984984985, 0.04809619238476954, 0.4894894894894895, 0.04809619238476954, 0.48348348348348347, 0.06613226452905811, 0.46396396396396394, 0.06613226452905811, 0.4039039039039039, 0.056112224448897796, 0.39039039039039036, 0.05410821643286573, 0.3708708708708709, 0.05811623246492986, 0.36786786786786785, 0.0781563126252505, 0.36186186186186187, 0.11422845691382766, 0.3588588588588589, 0.13827655310621242, 0.36036036036036034, 0.1462925851703407, 0.3633633633633634, 0.1523046092184369, 0.3888888888888889, 0.14829659318637275, 0.4009009009009009, 0.15831663326653306, 0.41291291291291293, 0.16432865731462926, 0.4369369369369369, 0.17034068136272545, 0.44294294294294295, 0.1743486973947896, 0.45345345345345345, 0.1963927855711423, 0.466966966966967, 0.1963927855711423, 0.46996996996997, 0.20841683366733466, 0.4804804804804805, 0.22044088176352705, 0.503003003003003, 0.22244488977955912, 0.5375375375375375, 0.23446893787575152, 0.6111111111111112, 0.24048096192384769, 0.6306306306306306, 0.23847695390781562, 0.6696696696696697, 0.23446893787575152, 0.6861861861861862, 0.21442885771543085, 0.7057057057057057, 0.20641282565130262, 0.7057057057057057, 0.1963927855711423, 0.7012012012012012, 0.19238476953907815, 0.7102102102102102, 0.1843687374749499, 0.7162162162162162, 0.17034068136272545, 0.7192192192192193]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.29458917835671344, 0.7252252252252253, 0.2925851703406814, 0.7177177177177178, 0.25851703406813625, 0.6846846846846847, 0.24048096192384769, 0.6621621621621622, 0.24048096192384769, 0.6216216216216216, 0.22645290581162325, 0.551051051051051, 0.22044088176352705, 0.496996996996997, 0.21442885771543085, 0.47897897897897895, 0.20040080160320642, 0.3708708708708709, 0.21042084168336672, 0.3588588588588589, 0.22444889779559118, 0.3483483483483483, 0.22244488977955912, 0.3228228228228228, 0.23446893787575152, 0.3123123123123123, 0.2745490981963928, 0.3123123123123123, 0.31462925851703405, 0.3078078078078078, 0.38276553106212424, 0.3063063063063063, 0.3927855711422846, 0.3123123123123123, 0.3927855711422846, 0.33783783783783783, 0.43286573146292584, 0.3813813813813814, 0.43687374749499, 0.6561561561561562, 0.4408817635270541, 0.6831831831831832, 0.43286573146292584, 0.6876876876876877, 0.4028056112224449, 0.6936936936936937, 0.29458917835671344, 0.7252252252252253]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5250501002004008, 0.6906906906906907, 0.503006012024048, 0.6906906906906907, 0.4729458917835671, 0.6816816816816816, 0.45490981963927857, 0.6696696696696697, 0.44889779559118237, 0.6621621621621622, 0.44488977955911824, 0.6501501501501501, 0.43887775551102204, 0.5180180180180181, 0.44288577154308617, 0.509009009009009, 0.4529058116232465, 0.4984984984984985, 0.45090180360721444, 0.484984984984985, 0.46292585170340683, 0.47897897897897895, 0.49498997995991983, 0.47147147147147145, 0.531062124248497, 0.47147147147147145, 0.5571142284569138, 0.47597597597597596, 0.5731462925851704, 0.484984984984985, 0.5731462925851704, 0.493993993993994, 0.5831663326653307, 0.503003003003003, 0.5891783567134269, 0.5180180180180181, 0.5871743486973948, 0.6591591591591591, 0.5791583166332666, 0.6681681681681682, 0.5651302605210421, 0.6771771771771772, 0.5250501002004008, 0.6906906906906907]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8657314629258517, 0.7057057057057057, 0.8236472945891784, 0.7012012012012012, 0.7935871743486974, 0.6876876876876877, 0.779559118236473, 0.6696696696696697, 0.7775551102204409, 0.6576576576576577, 0.7835671342685371, 0.6336336336336337, 0.7835671342685371, 0.5975975975975976, 0.7995991983967936, 0.5570570570570571, 0.7955911823647295, 0.4954954954954955, 0.8316633266533067, 0.45795795795795796, 0.8316633266533067, 0.44144144144144143, 0.8276553106212425, 0.43843843843843844, 0.8236472945891784, 0.42792792792792794, 0.8296593186372746, 0.42042042042042044, 0.8376753507014028, 0.4159159159159159, 0.8396793587174348, 0.4039039039039039, 0.843687374749499, 0.3948948948948949, 0.8476953907815631, 0.3918918918918919, 0.8697394789579158, 0.3858858858858859, 0.8917835671342685, 0.3858858858858859, 0.9278557114228457, 0.3918918918918919, 0.9378757515030061, 0.3963963963963964, 0.9438877755511023, 0.4009009009009009, 0.9418837675350702, 0.42492492492492495, 0.9498997995991983, 0.4294294294294294, 0.9519038076152304, 0.43543543543543545, 0.9458917835671342, 0.44594594594594594, 0.9398797595190381, 0.44744744744744747, 0.935871743486974, 0.45345345345345345, 0.935871743486974, 0.46996996996997, 0.9559118236472945, 0.493993993993994, 0.9559118236472945, 0.5195195195195195, 0.935871743486974, 0.5615615615615616, 0.935871743486974, 0.6171171171171171, 0.9298597194388778, 0.6321321321321322, 0.9298597194388778, 0.6471471471471472, 0.9218436873747495, 0.6816816816816816, 0.905811623246493, 0.6966966966966966, 0.8897795591182365, 0.7027027027027027, 0.8657314629258517, 0.7057057057057057]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/67.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.2725450901803607, 0.6726726726726727, 0.2625250501002004, 0.6696696696696697, 0.2545090180360721, 0.6606606606606606, 0.24849699398797595, 0.6666666666666666, 0.23847695390781562, 0.6711711711711712, 0.22244488977955912, 0.6666666666666666, 0.21042084168336672, 0.6546546546546547, 0.1903807615230461, 0.6261261261261262, 0.18837675350701402, 0.6171171171171171, 0.18236472945891782, 0.6096096096096096, 0.17234468937875752, 0.56006006006006, 0.1523046092184369, 0.4864864864864865, 0.14829659318637275, 0.44594594594594594, 0.15430861723446893, 0.43093093093093093, 0.17234468937875752, 0.4099099099099099, 0.1743486973947896, 0.3483483483483483, 0.1683366733466934, 0.34534534534534533, 0.16633266533066132, 0.3408408408408408, 0.1623246492985972, 0.3123123123123123, 0.18036072144288579, 0.3063063063063063, 0.20440881763527055, 0.3033033033033033, 0.23647294589178355, 0.3033033033033033, 0.2565130260521042, 0.3078078078078078, 0.2625250501002004, 0.33483483483483484, 0.25851703406813625, 0.34984984984984985, 0.26452905811623245, 0.35735735735735735, 0.280561122244489, 0.3978978978978979, 0.2865731462925852, 0.40540540540540543, 0.31462925851703405, 0.4264264264264264, 0.3166332665330661, 0.43243243243243246, 0.3226452905811623, 0.4369369369369369, 0.32665330661322645, 0.45045045045045046, 0.32665330661322645, 0.46846846846846846, 0.34468937875751504, 0.5930930930930931, 0.342685370741483, 0.6306306306306306, 0.3346693386773547, 0.6441441441441441, 0.3186372745490982, 0.6576576576576577, 0.30861723446893785, 0.6576576576576577, 0.3026052104208417, 0.6546546546546547, 0.30060120240480964, 0.6621621621621622, 0.2905811623246493, 0.6696696696696697, 0.2725450901803607, 0.6726726726726727]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.40480961923847697, 0.6756756756756757, 0.34468937875751504, 0.6171171171171171, 0.342685370741483, 0.5570570570570571, 0.3286573146292585, 0.46846846846846846, 0.3286573146292585, 0.45045045045045046, 0.3186372745490982, 0.4219219219219219, 0.3066132264529058, 0.31681681681681684, 0.32064128256513025, 0.30180180180180183, 0.33867735470941884, 0.2912912912912913, 0.33867735470941884, 0.26426426426426425, 0.342685370741483, 0.25675675675675674, 0.3486973947895792, 0.25375375375375375, 0.374749498997996, 0.25375375375375375, 0.45490981963927857, 0.24624624624624625, 0.4969939879759519, 0.24474474474474475, 0.5050100200400801, 0.24924924924924924, 0.5050100200400801, 0.27927927927927926, 0.5450901803607214, 0.3183183183183183, 0.5531062124248497, 0.3303303303303303, 0.5470941883767535, 0.4069069069069069, 0.5450901803607214, 0.6141141141141141, 0.5190380761523046, 0.6171171171171171, 0.49498997995991983, 0.6351351351351351, 0.4749498997995992, 0.6366366366366366, 0.4749498997995992, 0.6531531531531531, 0.4709418837675351, 0.6561561561561562, 0.40480961923847697, 0.6756756756756757]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5551102204408818, 0.7552552552552553, 0.5450901803607214, 0.7552552552552553, 0.5170340681362725, 0.7462462462462462, 0.5070140280561122, 0.7462462462462462, 0.503006012024048, 0.7492492492492493, 0.49899799599198397, 0.7462462462462462, 0.48897795591182364, 0.7267267267267268, 0.48096192384769537, 0.6996996996996997, 0.4749498997995992, 0.6621621621621622, 0.4749498997995992, 0.6381381381381381, 0.48296593186372744, 0.6351351351351351, 0.49498997995991983, 0.6366366366366366, 0.5090180360721442, 0.6246246246246246, 0.5250501002004008, 0.6171171171171171, 0.56312625250501, 0.6156156156156156, 0.6633266533066132, 0.6051051051051051, 0.7555110220440882, 0.5915915915915916, 0.7675350701402806, 0.5915915915915916, 0.7735470941883767, 0.5945945945945946, 0.7875751503006012, 0.6021021021021021, 0.811623246492986, 0.6201201201201201, 0.8196392785571143, 0.6321321321321322, 0.8296593186372746, 0.6606606606606606, 0.8296593186372746, 0.6861861861861862, 0.8176352705410822, 0.7117117117117117, 0.8056112224448898, 0.7207207207207207, 0.5551102204408818, 0.7552552552552553]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8276553106212425, 0.6486486486486487, 0.8256513026052105, 0.6471471471471472, 0.8216432865731463, 0.6321321321321322, 0.811623246492986, 0.6171171171171171, 0.7715430861723447, 0.5915915915915916, 0.7454909819639278, 0.5915915915915916, 0.7194388777555111, 0.5945945945945946, 0.7214428857715431, 0.5435435435435435, 0.7254509018036072, 0.527027027027027, 0.7334669338677354, 0.5135135135135135, 0.7334669338677354, 0.4744744744744745, 0.7294589178356713, 0.46546546546546547, 0.7294589178356713, 0.44144144144144143, 0.7374749498997996, 0.42792792792792794, 0.7635270541082164, 0.4009009009009009, 0.7635270541082164, 0.3858858858858859, 0.7595190380761523, 0.38288288288288286, 0.7555110220440882, 0.3708708708708709, 0.7575150300601202, 0.3663663663663664, 0.7695390781563126, 0.36036036036036034, 0.7715430861723447, 0.33933933933933935, 0.781563126252505, 0.3333333333333333, 0.7975951903807615, 0.32882882882882886, 0.8316633266533067, 0.32882882882882886, 0.8677354709418837, 0.33633633633633636, 0.875751503006012, 0.3408408408408408, 0.87374749498998, 0.36486486486486486, 0.8837675350701403, 0.37237237237237236, 0.8817635270541082, 0.3843843843843844, 0.8717434869739479, 0.3918918918918919, 0.8697394789579158, 0.4069069069069069, 0.8897795591182365, 0.43993993993993996, 0.8897795591182365, 0.4594594594594595, 0.8857715430861723, 0.47897897897897895, 0.8797595190380761, 0.484984984984985, 0.87374749498998, 0.5045045045045045, 0.87374749498998, 0.5615615615615616, 0.8657314629258517, 0.5900900900900901, 0.8637274549098196, 0.6186186186186187, 0.8537074148296593, 0.6366366366366366, 0.8276553106212425, 0.6486486486486487]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/68.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.15030060120240482, 0.7522522522522522, 0.11623246492985972, 0.7507507507507507, 0.10420841683366733, 0.7477477477477478, 0.0841683366733467, 0.7342342342342343, 0.07615230460921844, 0.7102102102102102, 0.06012024048096192, 0.6036036036036037, 0.052104208416833664, 0.5795795795795796, 0.052104208416833664, 0.5675675675675675, 0.06613226452905811, 0.5525525525525525, 0.06412825651302605, 0.5435435435435435, 0.07214428857715431, 0.5315315315315315, 0.07615230460921844, 0.5285285285285285, 0.10420841683366733, 0.5195195195195195, 0.1282565130260521, 0.515015015015015, 0.16633266533066132, 0.515015015015015, 0.18637274549098196, 0.5180180180180181, 0.20240480961923848, 0.5255255255255256, 0.20641282565130262, 0.53003003003003, 0.20641282565130262, 0.539039039039039, 0.22444889779559118, 0.5525525525525525, 0.22444889779559118, 0.5690690690690691, 0.23046092184368738, 0.5990990990990991, 0.23246492985971945, 0.6621621621621622, 0.23446893787575152, 0.6801801801801802, 0.23847695390781562, 0.6861861861861862, 0.23647294589178355, 0.7147147147147147, 0.22645290581162325, 0.7267267267267268, 0.19839679358717435, 0.7432432432432432, 0.17635270541082165, 0.7507507507507507, 0.15030060120240482, 0.7522522522522522]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3306613226452906, 0.7372372372372372, 0.3226452905811623, 0.7372372372372372, 0.3166332665330661, 0.7342342342342343, 0.3066132264529058, 0.7192192192192193, 0.3046092184368738, 0.7207207207207207, 0.3046092184368738, 0.7297297297297297, 0.30060120240480964, 0.7342342342342343, 0.2865731462925852, 0.7372372372372372, 0.27054108216432865, 0.7312312312312312, 0.26452905811623245, 0.7207207207207207, 0.25250501002004005, 0.7147147147147147, 0.24248496993987975, 0.7027027027027027, 0.23647294589178355, 0.6801801801801802, 0.23647294589178355, 0.6411411411411412, 0.22845691382765532, 0.5555555555555556, 0.22444889779559118, 0.5435435435435435, 0.22444889779559118, 0.5195195195195195, 0.23246492985971945, 0.4954954954954955, 0.2545090180360721, 0.47297297297297297, 0.2605210420841683, 0.4294294294294294, 0.2605210420841683, 0.4159159159159159, 0.2565130260521042, 0.41291291291291293, 0.2565130260521042, 0.3843843843843844, 0.28256513026052105, 0.3768768768768769, 0.3186372745490982, 0.3768768768768769, 0.33867735470941884, 0.3813813813813814, 0.34468937875751504, 0.3858858858858859, 0.3466933867735471, 0.4144144144144144, 0.342685370741483, 0.4159159159159159, 0.342685370741483, 0.4219219219219219, 0.35470941883767537, 0.46396396396396394, 0.3587174348697395, 0.4744744744744745, 0.3807615230460922, 0.4924924924924925, 0.3907815631262525, 0.509009009009009, 0.3927855711422846, 0.5225225225225225, 0.3907815631262525, 0.6921921921921922, 0.37675350701402804, 0.7162162162162162, 0.3687374749498998, 0.7222222222222222, 0.35470941883767537, 0.7222222222222222, 0.3466933867735471, 0.7327327327327328, 0.3306613226452906, 0.7372372372372372]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.8096192384769539, 0.8138138138138138, 0.6012024048096193, 0.7582582582582582, 0.4168336673346693, 0.7057057057057057, 0.39879759519038077, 0.7027027027027027, 0.39478957915831664, 0.6981981981981982, 0.39478957915831664, 0.5975975975975976, 0.46893787575150303, 0.551051051051051, 0.7595190380761523, 0.6096096096096096, 0.8136272545090181, 0.6186186186186187, 0.8416833667334669, 0.6261261261261262, 0.8657314629258517, 0.6276276276276276, 0.8857715430861723, 0.6501501501501501, 0.8897795591182365, 0.6621621621621622, 0.8977955911823647, 0.6726726726726727, 0.8977955911823647, 0.6801801801801802, 0.9038076152304609, 0.6876876876876877, 0.9138276553106213, 0.6921921921921922, 0.9398797595190381, 0.6936936936936937, 0.9478957915831663, 0.6966966966966966, 0.9298597194388778, 0.7732732732732732, 0.9258517034068137, 0.7807807807807807, 0.9178356713426854, 0.7852852852852853, 0.9038076152304609, 0.7792792792792793, 0.8917835671342685, 0.7792792792792793, 0.875751503006012, 0.7897897897897898, 0.8657314629258517, 0.7927927927927928, 0.8557114228456913, 0.7912912912912913, 0.8336673346693386, 0.8048048048048048, 0.8096192384769539, 0.8138138138138138]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8997995991983968, 0.6786786786786787, 0.8877755511022044, 0.6501501501501501, 0.8677354709418837, 0.6276276276276276, 0.8416833667334669, 0.6246246246246246, 0.7715430861723447, 0.6081081081081081, 0.7835671342685371, 0.581081081081081, 0.7835671342685371, 0.5225225225225225, 0.7875751503006012, 0.5075075075075075, 0.8156312625250501, 0.481981981981982, 0.8216432865731463, 0.47147147147147145, 0.8216432865731463, 0.4624624624624625, 0.8136272545090181, 0.4519519519519519, 0.8156312625250501, 0.44594594594594594, 0.8276553106212425, 0.43843843843843844, 0.8316633266533067, 0.42042042042042044, 0.8356713426853707, 0.4159159159159159, 0.8637274549098196, 0.4114114114114114, 0.9078156312625251, 0.4159159159159159, 0.9278557114228457, 0.4264264264264264, 0.9258517034068137, 0.45045045045045046, 0.9298597194388778, 0.4519519519519519, 0.935871743486974, 0.46096096096096095, 0.9338677354709419, 0.46546546546546547, 0.9198396793587175, 0.47597597597597596, 0.9198396793587175, 0.4924924924924925, 0.9298597194388778, 0.5045045045045045, 0.935871743486974, 0.536036036036036, 0.9318637274549099, 0.551051051051051, 0.9278557114228457, 0.5525525525525525, 0.9278557114228457, 0.5570570570570571, 0.9218436873747495, 0.5630630630630631, 0.9178356713426854, 0.5795795795795796, 0.9118236472945892, 0.5900900900900901, 0.9138276553106213, 0.6231231231231231, 0.8997995991983968, 0.6786786786786787]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/69.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.34468937875751504, 0.6366366366366366, 0.33266533066132264, 0.6336336336336337, 0.3226452905811623, 0.6216216216216216, 0.31462925851703405, 0.6276276276276276, 0.2985971943887776, 0.6306306306306306, 0.2905811623246493, 0.6276276276276276, 0.27655310621242485, 0.6156156156156156, 0.25250501002004005, 0.5705705705705706, 0.24649298597194388, 0.545045045045045, 0.24649298597194388, 0.5195195195195195, 0.23246492985971945, 0.44894894894894893, 0.22645290581162325, 0.3843843843843844, 0.22244488977955912, 0.36936936936936937, 0.22244488977955912, 0.34684684684684686, 0.22845691382765532, 0.3333333333333333, 0.24849699398797595, 0.3138138138138138, 0.2565130260521042, 0.3003003003003003, 0.25851703406813625, 0.23873873873873874, 0.26452905811623245, 0.21621621621621623, 0.2565130260521042, 0.2147147147147147, 0.2545090180360721, 0.17417417417417416, 0.2665330661322645, 0.17117117117117117, 0.3166332665330661, 0.16966966966966968, 0.35671342685370744, 0.17117117117117117, 0.3687374749498998, 0.17417417417417416, 0.3727454909819639, 0.2147147147147147, 0.36472945891783565, 0.21621621621621623, 0.36472945891783565, 0.22372372372372373, 0.374749498997996, 0.24624624624624625, 0.37675350701402804, 0.26126126126126126, 0.38276553106212424, 0.2702702702702703, 0.38276553106212424, 0.28378378378378377, 0.3867735470941884, 0.2957957957957958, 0.3967935871743487, 0.30930930930930933, 0.4248496993987976, 0.33483483483483484, 0.4308617234468938, 0.35135135135135137, 0.43687374749499, 0.45495495495495497, 0.43687374749499, 0.5705705705705706, 0.4288577154308617, 0.5840840840840841, 0.4248496993987976, 0.6051051051051051, 0.40480961923847697, 0.6216216216216216, 0.38877755511022044, 0.6246246246246246, 0.37675350701402804, 0.6186186186186187, 0.3727454909819639, 0.6276276276276276, 0.36472945891783565, 0.6336336336336337, 0.34468937875751504, 0.6366366366366366]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6913827655310621, 0.7057057057057057, 0.6693386773547094, 0.6966966966966966, 0.6593186372745491, 0.6786786786786787, 0.6533066132264529, 0.6741741741741741, 0.6472945891783567, 0.6591591591591591, 0.6232464929859719, 0.6291291291291291, 0.5511022044088176, 0.6111111111111112, 0.5531062124248497, 0.5885885885885885, 0.5591182364729459, 0.581081081081081, 0.5591182364729459, 0.5495495495495496, 0.5531062124248497, 0.5345345345345346, 0.5511022044088176, 0.512012012012012, 0.561122244488978, 0.48348348348348347, 0.5831663326653307, 0.46096096096096095, 0.5831663326653307, 0.44144144144144143, 0.5751503006012024, 0.43093093093093093, 0.5751503006012024, 0.42042042042042044, 0.5871743486973948, 0.41291291291291293, 0.5891783567134269, 0.39039039039039036, 0.6072144288577155, 0.37987987987987987, 0.6513026052104208, 0.3783783783783784, 0.685370741482966, 0.3843843843843844, 0.6993987975951904, 0.3933933933933934, 0.6973947895791583, 0.4174174174174174, 0.7054108216432866, 0.42042042042042044, 0.7094188376753507, 0.42792792792792794, 0.7054108216432866, 0.43993993993993996, 0.6993987975951904, 0.44294294294294295, 0.6953907815631263, 0.44894894894894893, 0.6933867735470942, 0.46546546546546547, 0.7034068136272545, 0.47297297297297297, 0.7154308617234469, 0.49099099099099097, 0.7194388777555111, 0.5285285285285285, 0.7034068136272545, 0.5735735735735735, 0.7074148296593187, 0.6336336336336337, 0.7014028056112225, 0.6606606606606606, 0.7014028056112225, 0.6876876876876877, 0.6993987975951904, 0.6966966966966966, 0.6913827655310621, 0.7057057057057057]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.8236472945891784, 0.7657657657657657, 0.7995991983967936, 0.7642642642642643, 0.7715430861723447, 0.7537537537537538, 0.7414829659318637, 0.7327327327327328, 0.7294589178356713, 0.7192192192192193, 0.751503006012024, 0.551051051051051, 0.7595190380761523, 0.5375375375375375, 0.7755511022044088, 0.5255255255255256, 0.7755511022044088, 0.5180180180180181, 0.7895791583166333, 0.5075075075075075, 0.8256513026052105, 0.5015015015015015, 0.8657314629258517, 0.503003003003003, 0.8997995991983968, 0.5105105105105106, 0.9318637274549099, 0.5255255255255256, 0.9378757515030061, 0.5345345345345346, 0.9338677354709419, 0.545045045045045, 0.9458917835671342, 0.5630630630630631, 0.9458917835671342, 0.5735735735735735, 0.9398797595190381, 0.5885885885885885, 0.9338677354709419, 0.6216216216216216, 0.9278557114228457, 0.6336336336336337, 0.9018036072144289, 0.7417417417417418, 0.8877755511022044, 0.7522522522522522, 0.8717434869739479, 0.7597597597597597, 0.8236472945891784, 0.7657657657657657]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.5250501002004008, 0.8438438438438438, 0.5190380761523046, 0.8438438438438438, 0.42685370741482964, 0.8078078078078078, 0.40480961923847697, 0.8018018018018018, 0.2625250501002004, 0.7492492492492493, 0.12625250501002003, 0.7027027027027027, 0.12424849699398798, 0.6996996996996997, 0.12424849699398798, 0.6891891891891891, 0.09819639278557114, 0.5960960960960962, 0.10020040080160321, 0.5915915915915916, 0.20841683366733466, 0.545045045045045, 0.22444889779559118, 0.539039039039039, 0.23246492985971945, 0.539039039039039, 0.24649298597194388, 0.5435435435435435, 0.250501002004008, 0.5705705705705706, 0.2565130260521042, 0.5780780780780781, 0.2725450901803607, 0.6141141141141141, 0.2905811623246493, 0.6291291291291291, 0.2965931863727455, 0.6306306306306306, 0.31462925851703405, 0.6291291291291291, 0.3226452905811623, 0.6231231231231231, 0.33266533066132264, 0.6351351351351351, 0.35070140280561124, 0.6366366366366366, 0.36472945891783565, 0.6351351351351351, 0.374749498997996, 0.6276276276276276, 0.3787575150300601, 0.6186186186186187, 0.3807615230460922, 0.6216216216216216, 0.3847695390781563, 0.6246246246246246, 0.40080160320641284, 0.6246246246246246, 0.42685370741482964, 0.6051051051051051, 0.4308617234468938, 0.5855855855855856, 0.593186372745491, 0.6246246246246246, 0.6212424849699398, 0.6291291291291291, 0.6452905811623246, 0.6591591591591591, 0.6513026052104208, 0.6741741741741741, 0.6593186372745491, 0.6816816816816816, 0.6653306613226453, 0.6951951951951952, 0.6713426853707415, 0.7012012012012012, 0.685370741482966, 0.7057057057057057, 0.7054108216432866, 0.7057057057057057, 0.7114228456913828, 0.7102102102102102, 0.6773547094188377, 0.7522522522522522, 0.6513026052104208, 0.7927927927927928, 0.6472945891783567, 0.7942942942942943, 0.6412825651302605, 0.8048048048048048, 0.6312625250501002, 0.8138138138138138, 0.6232464929859719, 0.8153153153153153, 0.6192384769539078, 0.8123123123123123, 0.6112224448897795, 0.8123123123123123, 0.6052104208416834, 0.8183183183183184, 0.5971943887775552, 0.8183183183183184, 0.5891783567134269, 0.8123123123123123, 0.5791583166332666, 0.8093093093093093, 0.5531062124248497, 0.8318318318318318, 0.5250501002004008, 0.8438438438438438]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/70.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.43687374749499, 0.7987987987987988, 0.4168336673346693, 0.7972972972972973, 0.3066132264529058, 0.7582582582582582, 0.25851703406813625, 0.7312312312312312, 0.22845691382765532, 0.7192192192192193, 0.18837675350701402, 0.7162162162162162, 0.156312625250501, 0.7042042042042042, 0.1402805611222445, 0.6891891891891891, 0.12224448897795591, 0.6666666666666666, 0.10020040080160321, 0.6666666666666666, 0.08016032064128256, 0.6576576576576577, 0.07615230460921844, 0.6531531531531531, 0.07414829659318638, 0.6471471471471472, 0.06212424849699399, 0.6426426426426426, 0.052104208416833664, 0.6321321321321322, 0.050100200400801605, 0.6126126126126126, 0.06613226452905811, 0.5885885885885885, 0.07414829659318638, 0.5825825825825826, 0.09819639278557114, 0.5735735735735735, 0.11022044088176353, 0.5735735735735735, 0.11623246492985972, 0.5765765765765766, 0.1462925851703407, 0.5735735735735735, 0.1623246492985972, 0.581081081081081, 0.17034068136272545, 0.5885885885885885, 0.1903807615230461, 0.5870870870870871, 0.20440881763527055, 0.5825825825825826, 0.24248496993987975, 0.5840840840840841, 0.26452905811623245, 0.5915915915915916, 0.3046092184368738, 0.6126126126126126, 0.312625250501002, 0.6126126126126126, 0.3246492985971944, 0.6171171171171171, 0.3627254509018036, 0.6186186186186187, 0.37675350701402804, 0.6231231231231231, 0.3847695390781563, 0.6231231231231231, 0.45090180360721444, 0.6426426426426426, 0.4749498997995992, 0.6471471471471472, 0.4969939879759519, 0.6561561561561562, 0.5150300601202404, 0.6711711711711712, 0.5170340681362725, 0.6771771771771772, 0.5170340681362725, 0.7012012012012012, 0.5110220440881763, 0.7267267267267268, 0.49498997995991983, 0.7537537537537538, 0.4729458917835671, 0.7792792792792793, 0.43687374749499, 0.7987987987987988]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.533066132264529, 0.7357357357357357, 0.5230460921843687, 0.7342342342342343, 0.5130260521042084, 0.7282282282282282, 0.5170340681362725, 0.7087087087087087, 0.5170340681362725, 0.6711711711711712, 0.4969939879759519, 0.6546546546546547, 0.4749498997995992, 0.6456456456456456, 0.46092184368737477, 0.6441441441441441, 0.4308617234468938, 0.6336336336336337, 0.3847695390781563, 0.6216216216216216, 0.3226452905811623, 0.6156156156156156, 0.312625250501002, 0.6111111111111112, 0.3046092184368738, 0.6111111111111112, 0.2685370741482966, 0.5915915915915916, 0.24248496993987975, 0.5825825825825826, 0.19839679358717435, 0.5825825825825826, 0.17234468937875752, 0.5885885885885885, 0.1623246492985972, 0.5795795795795796, 0.15030060120240482, 0.5735735735735735, 0.14428857715430862, 0.5720720720720721, 0.1282565130260521, 0.5105105105105106, 0.1843687374749499, 0.484984984984985, 0.22845691382765532, 0.46996996996997, 0.24248496993987975, 0.4624624624624625, 0.25250501002004005, 0.4624624624624625, 0.625250501002004, 0.5405405405405406, 0.6492985971943888, 0.5720720720720721, 0.6633266533066132, 0.6021021021021021, 0.6693386773547094, 0.6066066066066066, 0.7014028056112225, 0.6096096096096096, 0.7074148296593187, 0.6111111111111112, 0.7074148296593187, 0.6171171171171171, 0.6973947895791583, 0.6261261261261262, 0.6352705410821643, 0.7057057057057057, 0.6212424849699398, 0.7057057057057057, 0.6072144288577155, 0.7147147147147147, 0.6032064128256514, 0.7147147147147147, 0.5831663326653307, 0.7027027027027027, 0.5591182364729459, 0.7252252252252253, 0.533066132264529, 0.7357357357357357]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5691382765531062, 0.527027027027027, 0.4168336673346693, 0.493993993993994, 0.41082164328657317, 0.39039039039039036, 0.4168336673346693, 0.3708708708708709, 0.4408817635270541, 0.3483483483483483, 0.44488977955911824, 0.32882882882882886, 0.44488977955911824, 0.30180180180180183, 0.4529058116232465, 0.2882882882882883, 0.4468937875751503, 0.2822822822822823, 0.4468937875751503, 0.25225225225225223, 0.45691382765531063, 0.24774774774774774, 0.5170340681362725, 0.24774774774774774, 0.531062124248497, 0.25075075075075076, 0.5370741482965932, 0.25675675675675674, 0.5370741482965932, 0.2822822822822823, 0.531062124248497, 0.28678678678678676, 0.531062124248497, 0.2927927927927928, 0.5370741482965932, 0.3033033033033033, 0.5390781563126252, 0.33483483483483484, 0.5450901803607214, 0.34534534534534533, 0.5450901803607214, 0.35135135135135137, 0.5511022044088176, 0.35435435435435436, 0.5671342685370742, 0.37237237237237236, 0.5711422845691383, 0.3843843843843844, 0.5731462925851704, 0.4189189189189189, 0.5691382765531062, 0.527027027027027]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.8316633266533067, 0.6741741741741741, 0.8076152304609219, 0.6741741741741741, 0.7735470941883767, 0.6636636636636637, 0.7454909819639278, 0.6441441441441441, 0.7394789579158316, 0.6381381381381381, 0.7334669338677354, 0.6246246246246246, 0.749498997995992, 0.53003003003003, 0.7555110220440882, 0.46996996996997, 0.7615230460921844, 0.4594594594594595, 0.779559118236473, 0.44594594594594594, 0.779559118236473, 0.4369369369369369, 0.7855711422845691, 0.43093093093093093, 0.8156312625250501, 0.42342342342342343, 0.8496993987975952, 0.42342342342342343, 0.8837675350701403, 0.42792792792792794, 0.9178356713426854, 0.43843843843843844, 0.9318637274549099, 0.44744744744744747, 0.9298597194388778, 0.4624624624624625, 0.9418837675350702, 0.4804804804804805, 0.8997995991983968, 0.6456456456456456, 0.8937875751503006, 0.6531531531531531, 0.8777555110220441, 0.6636636636636637, 0.8537074148296593, 0.6711711711711712, 0.8316633266533067, 0.6741741741741741]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/71.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.2665330661322645, 0.8558558558558559, 0.2625250501002004, 0.8558558558558559, 0.24649298597194388, 0.8393393393393394, 0.17034068136272545, 0.7537537537537538, 0.1623246492985972, 0.6876876876876877, 0.1462925851703407, 0.6351351351351351, 0.156312625250501, 0.6306306306306306, 0.22044088176352705, 0.6156156156156156, 0.44488977955911824, 0.5495495495495496, 0.45691382765531063, 0.5480480480480481, 0.5551102204408818, 0.521021021021021, 0.5751503006012024, 0.5135135135135135, 0.5891783567134269, 0.5180180180180181, 0.6052104208416834, 0.527027027027027, 0.6292585170340681, 0.5345345345345346, 0.687374749498998, 0.5630630630630631, 0.7054108216432866, 0.5675675675675675, 0.7214428857715431, 0.5825825825825826, 0.7414829659318637, 0.5900900900900901, 0.7535070140280561, 0.5990990990990991, 0.7535070140280561, 0.6021021021021021, 0.7414829659318637, 0.6066066066066066, 0.7294589178356713, 0.6171171171171171, 0.7074148296593187, 0.6576576576576577, 0.687374749498998, 0.6816816816816816, 0.6633266533066132, 0.6891891891891891, 0.5591182364729459, 0.7342342342342343, 0.46292585170340683, 0.7717717717717718, 0.30060120240480964, 0.8393393393393394, 0.2665330661322645, 0.8558558558558559]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.12625250501002003, 0.6546546546546547, 0.09819639278557114, 0.6531531531531531, 0.08016032064128256, 0.6456456456456456, 0.06012024048096192, 0.6291291291291291, 0.03006012024048096, 0.493993993993994, 0.022044088176352707, 0.47297297297297297, 0.022044088176352707, 0.466966966966967, 0.03406813627254509, 0.44594594594594594, 0.03206412825651302, 0.43543543543543545, 0.036072144288577156, 0.43093093093093093, 0.05811623246492986, 0.4219219219219219, 0.1062124248496994, 0.41291291291291293, 0.1402805611222445, 0.4144144144144144, 0.1683366733466934, 0.4219219219219219, 0.1743486973947896, 0.42792792792792794, 0.1743486973947896, 0.4339339339339339, 0.19238476953907815, 0.44894894894894893, 0.21643286573146292, 0.5990990990990991, 0.21442885771543085, 0.6156156156156156, 0.1523046092184369, 0.6306306306306306, 0.1462925851703407, 0.6336336336336337, 0.15030060120240482, 0.6471471471471472, 0.12625250501002003, 0.6546546546546547]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.48897795591182364, 0.5375375375375375, 0.4849699398797595, 0.536036036036036, 0.4849699398797595, 0.4024024024024024, 0.48897795591182364, 0.38738738738738737, 0.4969939879759519, 0.37537537537537535, 0.5190380761523046, 0.35585585585585583, 0.5270541082164328, 0.3228228228228228, 0.5270541082164328, 0.30930930930930933, 0.533066132264529, 0.3033033033033033, 0.533066132264529, 0.2987987987987988, 0.5270541082164328, 0.2957957957957958, 0.5270541082164328, 0.2732732732732733, 0.533066132264529, 0.26576576576576577, 0.5551102204408818, 0.26126126126126126, 0.5991983967935872, 0.26426426426426425, 0.6132264529058116, 0.26876876876876876, 0.6112224448897795, 0.2972972972972973, 0.6052104208416834, 0.30180180180180183, 0.6092184368737475, 0.3108108108108108, 0.6132264529058116, 0.36186186186186187, 0.6192384769539078, 0.36486486486486486, 0.6372745490981964, 0.3858858858858859, 0.6412825651302605, 0.40540540540540543, 0.6292585170340681, 0.5315315315315315, 0.6132264529058116, 0.5285285285285285, 0.5891783567134269, 0.5165165165165165, 0.5711422845691383, 0.5135135135135135, 0.48897795591182364, 0.5375375375375375]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8196392785571143, 0.6471471471471472, 0.7935871743486974, 0.6441441441441441, 0.7695390781563126, 0.6381381381381381, 0.7414829659318637, 0.6201201201201201, 0.7374749498997996, 0.6126126126126126, 0.7434869739478958, 0.6066066066066066, 0.7535070140280561, 0.6021021021021021, 0.7535070140280561, 0.5975975975975976, 0.7414829659318637, 0.5885885885885885, 0.7354709418837675, 0.5855855855855856, 0.7354709418837675, 0.5690690690690691, 0.7394789579158316, 0.56006006006006, 0.7394789579158316, 0.5435435435435435, 0.7555110220440882, 0.5045045045045045, 0.7575150300601202, 0.43843843843843844, 0.7675350701402806, 0.4189189189189189, 0.7975951903807615, 0.3888888888888889, 0.7915831663326653, 0.35585585585585583, 0.8036072144288577, 0.34984984984984985, 0.811623246492986, 0.32432432432432434, 0.8216432865731463, 0.31981981981981983, 0.8677354709418837, 0.3183183183183183, 0.8857715430861723, 0.3213213213213213, 0.9118236472945892, 0.33183183183183185, 0.9098196392785571, 0.3588588588588589, 0.9158316633266533, 0.36186186186186187, 0.9178356713426854, 0.36786786786786785, 0.9138276553106213, 0.3768768768768769, 0.9018036072144289, 0.38738738738738737, 0.9018036072144289, 0.40540540540540543, 0.9178356713426854, 0.43243243243243246, 0.9178356713426854, 0.45795795795795796, 0.8997995991983968, 0.4894894894894895, 0.8957915831663327, 0.503003003003003, 0.8937875751503006, 0.5555555555555556, 0.8897795591182365, 0.575075075075075, 0.8837675350701403, 0.5870870870870871, 0.8837675350701403, 0.6021021021021021, 0.8777555110220441, 0.6231231231231231, 0.8637274549098196, 0.6366366366366366, 0.8336673346693386, 0.6456456456456456, 0.8196392785571143, 0.6471471471471472]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/72.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.10420841683366733, 0.7357357357357357, 0.07014028056112225, 0.7342342342342343, 0.03406813627254509, 0.7192192192192193, 0.026052104208416832, 0.7087087087087087, 0.026052104208416832, 0.6981981981981982, 0.012024048096192385, 0.6546546546546547, 0.006012024048096192, 0.6156156156156156, 0.0, 0.6036036036036037, 0.0, 0.5, 0.02004008016032064, 0.49099099099099097, 0.07214428857715431, 0.4804804804804805, 0.11623246492985972, 0.4804804804804805, 0.1402805611222445, 0.4864864864864865, 0.14829659318637275, 0.4894894894894895, 0.1523046092184369, 0.4954954954954955, 0.1523046092184369, 0.503003003003003, 0.17234468937875752, 0.5180180180180181, 0.17835671342685372, 0.566066066066066, 0.18637274549098196, 0.5930930930930931, 0.19438877755511022, 0.6636636636636637, 0.19839679358717435, 0.6756756756756757, 0.19438877755511022, 0.6966966966966966, 0.17234468937875752, 0.7132132132132132, 0.10420841683366733, 0.7357357357357357]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.44488977955911824, 0.7297297297297297, 0.2725450901803607, 0.7267267267267268, 0.2625250501002004, 0.6381381381381381, 0.25250501002004005, 0.5870870870870871, 0.24248496993987975, 0.506006006006006, 0.218436873747495, 0.37537537537537535, 0.22645290581162325, 0.35735735735735735, 0.23046092184368738, 0.3333333333333333, 0.23647294589178355, 0.32432432432432434, 0.23647294589178355, 0.3003003003003003, 0.23046092184368738, 0.2897897897897898, 0.23046092184368738, 0.2852852852852853, 0.23446893787575152, 0.2807807807807808, 0.3727454909819639, 0.2747747747747748, 0.42685370741482964, 0.2747747747747748, 0.43687374749499, 0.27927927927927926, 0.43887775551102204, 0.3078078078078078, 0.4529058116232465, 0.33933933933933935, 0.4589178356713427, 0.5555555555555556, 0.4649298597194389, 0.6036036036036037, 0.4649298597194389, 0.6561561561561562, 0.46092184368737477, 0.6921921921921922, 0.45691382765531063, 0.6996996996996997, 0.45490981963927857, 0.7237237237237237, 0.44488977955911824, 0.7297297297297297]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5731462925851704, 0.6831831831831832, 0.5551102204408818, 0.6831831831831832, 0.5470941883767535, 0.6771771771771772, 0.5410821643286573, 0.6681681681681682, 0.5350701402805611, 0.6726726726726727, 0.5210420841683366, 0.6756756756756757, 0.5070140280561122, 0.6666666666666666, 0.48697394789579157, 0.6306306306306306, 0.48296593186372744, 0.6081081081081081, 0.48296593186372744, 0.46546546546546547, 0.48697394789579157, 0.44894894894894893, 0.4909819639278557, 0.43993993993993996, 0.5190380761523046, 0.4114114114114114, 0.5270541082164328, 0.36186186186186187, 0.533066132264529, 0.35435435435435436, 0.5270541082164328, 0.3483483483483483, 0.5270541082164328, 0.3228228228228228, 0.531062124248497, 0.3183183183183183, 0.5390781563126252, 0.3153153153153153, 0.5671342685370742, 0.3123123123123123, 0.5951903807615231, 0.3138138138138138, 0.6172344689378757, 0.31981981981981983, 0.6192384769539078, 0.34984984984984985, 0.6132264529058116, 0.35435435435435436, 0.6132264529058116, 0.3633633633633634, 0.6172344689378757, 0.3708708708708709, 0.6212424849699398, 0.41291291291291293, 0.6232464929859719, 0.4189189189189189, 0.6452905811623246, 0.43993993993993996, 0.6513026052104208, 0.45495495495495497, 0.6412825651302605, 0.6096096096096096, 0.6312625250501002, 0.6486486486486487, 0.6192384769539078, 0.6666666666666666, 0.6072144288577155, 0.6756756756756757, 0.5991983967935872, 0.6771771771771772, 0.5851703406813628, 0.6711711711711712, 0.5831663326653307, 0.6771771771771772, 0.5731462925851704, 0.6831831831831832]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8617234468937875, 0.7282282282282282, 0.8476953907815631, 0.7282282282282282, 0.8096192384769539, 0.7222222222222222, 0.781563126252505, 0.7102102102102102, 0.7595190380761523, 0.6876876876876877, 0.7555110220440882, 0.6801801801801802, 0.7555110220440882, 0.6666666666666666, 0.7635270541082164, 0.6276276276276276, 0.7635270541082164, 0.6096096096096096, 0.781563126252505, 0.5705705705705706, 0.7835671342685371, 0.49099099099099097, 0.7915831663326653, 0.4774774774774775, 0.8156312625250501, 0.45645645645645644, 0.8236472945891784, 0.44594594594594594, 0.8236472945891784, 0.43243243243243246, 0.8156312625250501, 0.42042042042042044, 0.8176352705410822, 0.4099099099099099, 0.8316633266533067, 0.4039039039039039, 0.8336673346693386, 0.3843843843843844, 0.8416833667334669, 0.3768768768768769, 0.8677354709418837, 0.3708708708708709, 0.8877755511022044, 0.3708708708708709, 0.9318637274549099, 0.3783783783783784, 0.9438877755511023, 0.38288288288288286, 0.9498997995991983, 0.38738738738738737, 0.9458917835671342, 0.41291291291291293, 0.9539078156312625, 0.4189189189189189, 0.9579158316633266, 0.43093093093093093, 0.9378757515030061, 0.44894894894894893, 0.9378757515030061, 0.4624624624624625, 0.9559118236472945, 0.487987987987988, 0.9579158316633266, 0.5225225225225225, 0.9539078156312625, 0.5345345345345346, 0.9478957915831663, 0.539039039039039, 0.9458917835671342, 0.5480480480480481, 0.9378757515030061, 0.5570570570570571, 0.9318637274549099, 0.575075075075075, 0.9318637274549099, 0.6336336336336337, 0.9238476953907816, 0.6546546546546547, 0.9158316633266533, 0.6996996996996997, 0.9098196392785571, 0.7102102102102102, 0.9018036072144289, 0.7162162162162162, 0.8877755511022044, 0.7222222222222222, 0.8617234468937875, 0.7282282282282282]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/73.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.21042084168336672, 0.7207207207207207, 0.18236472945891782, 0.7207207207207207, 0.1623246492985972, 0.7162162162162162, 0.14829659318637275, 0.7102102102102102, 0.13627254509018036, 0.6996996996996997, 0.13026052104208416, 0.6906906906906907, 0.11623246492985972, 0.5960960960960962, 0.10420841683366733, 0.5375375375375375, 0.10420841683366733, 0.5285285285285285, 0.11022044088176353, 0.5135135135135135, 0.11823647294589178, 0.506006006006006, 0.11823647294589178, 0.49099099099099097, 0.13226452905811623, 0.481981981981982, 0.1683366733466934, 0.47297297297297297, 0.1843687374749499, 0.47147147147147145, 0.21442885771543085, 0.47147147147147145, 0.24649298597194388, 0.4774774774774775, 0.2605210420841683, 0.484984984984985, 0.26452905811623245, 0.4894894894894895, 0.26452905811623245, 0.496996996996997, 0.27655310621242485, 0.506006006006006, 0.2845691382765531, 0.5165165165165165, 0.28857715430861725, 0.6081081081081081, 0.29458917835671344, 0.6666666666666666, 0.28256513026052105, 0.6741741741741741, 0.250501002004008, 0.6771771771771772, 0.24448897795591182, 0.6816816816816816, 0.24248496993987975, 0.7117117117117117, 0.21042084168336672, 0.7207207207207207]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.3687374749498998, 0.6636636636636637, 0.3687374749498998, 0.6621621621621622, 0.3687374749498998, 0.6381381381381381, 0.3667334669338677, 0.6366366366366366, 0.3667334669338677, 0.6126126126126126, 0.36472945891783565, 0.6111111111111112, 0.36472945891783565, 0.5870870870870871, 0.3627254509018036, 0.5855855855855856, 0.3627254509018036, 0.5525525525525525, 0.36072144288577157, 0.551051051051051, 0.36072144288577157, 0.5180180180180181, 0.3587174348697395, 0.5165165165165165, 0.3587174348697395, 0.4954954954954955, 0.35671342685370744, 0.493993993993994, 0.35671342685370744, 0.47297297297297297, 0.35470941883767537, 0.47147147147147145, 0.35470941883767537, 0.45045045045045046, 0.3527054108216433, 0.44894894894894893, 0.3527054108216433, 0.42792792792792794, 0.35070140280561124, 0.4264264264264264, 0.35070140280561124, 0.40540540540540543, 0.3486973947895792, 0.4039039039039039, 0.3486973947895792, 0.3813813813813814, 0.3466933867735471, 0.37987987987987987, 0.3466933867735471, 0.37237237237237236, 0.34468937875751504, 0.3708708708708709, 0.34468937875751504, 0.36936936936936937, 0.3486973947895792, 0.3663663663663664, 0.3486973947895792, 0.3483483483483483, 0.35070140280561124, 0.34684684684684686, 0.35070140280561124, 0.33633633633633636, 0.3527054108216433, 0.33483483483483484, 0.3527054108216433, 0.31681681681681684, 0.35470941883767537, 0.3153153153153153, 0.35470941883767537, 0.3033033033033033, 0.3527054108216433, 0.30180180180180183, 0.3527054108216433, 0.2897897897897898, 0.35070140280561124, 0.2882882882882883, 0.35070140280561124, 0.2852852852852853, 0.35070140280561124, 0.2852852852852853, 0.3527054108216433, 0.2852852852852853, 0.35671342685370744, 0.2822822822822823, 0.3587174348697395, 0.2822822822822823, 0.36072144288577157, 0.2807807807807808, 0.3967935871743487, 0.2807807807807808, 0.39879759519038077, 0.27927927927927926, 0.46092184368737477, 0.27927927927927926, 0.46292585170340683, 0.2777777777777778, 0.5090180360721442, 0.2777777777777778, 0.5110220440881763, 0.27627627627627627, 0.5370741482965932, 0.27627627627627627, 0.5390781563126252, 0.2777777777777778, 0.5410821643286573, 0.2777777777777778, 0.5470941883767535, 0.2807807807807808, 0.5470941883767535, 0.28378378378378377, 0.5490981963927856, 0.2852852852852853, 0.5490981963927856, 0.3108108108108108, 0.5470941883767535, 0.3123123123123123, 0.5470941883767535, 0.33933933933933935, 0.5490981963927856, 0.3408408408408408, 0.5490981963927856, 0.3588588588588589, 0.5511022044088176, 0.36036036036036034, 0.5511022044088176, 0.3663663663663664, 0.5531062124248497, 0.36786786786786785, 0.5531062124248497, 0.6411411411411412, 0.5511022044088176, 0.6426426426426426, 0.5490981963927856, 0.6426426426426426, 0.5470941883767535, 0.6441441441441441, 0.5350701402805611, 0.6441441441441441, 0.533066132264529, 0.6456456456456456, 0.5250501002004008, 0.6456456456456456, 0.5230460921843687, 0.6471471471471472, 0.4789579158316633, 0.6471471471471472, 0.47695390781563124, 0.6456456456456456, 0.4709418837675351, 0.6456456456456456, 0.46893787575150303, 0.6441441441441441, 0.45490981963927857, 0.6441441441441441, 0.4529058116232465, 0.6426426426426426, 0.4188376753507014, 0.6426426426426426, 0.4168336673346693, 0.6441441441441441, 0.41082164328657317, 0.6441441441441441, 0.4088176352705411, 0.6456456456456456, 0.40681362725450904, 0.6456456456456456, 0.40480961923847697, 0.6471471471471472, 0.4028056112224449, 0.6471471471471472, 0.40080160320641284, 0.6486486486486487, 0.39879759519038077, 0.6486486486486487, 0.3967935871743487, 0.6501501501501501, 0.39478957915831664, 0.6501501501501501, 0.3927855711422846, 0.6516516516516516, 0.3907815631262525, 0.6516516516516516, 0.38877755511022044, 0.6531531531531531, 0.3867735470941884, 0.6531531531531531, 0.3847695390781563, 0.6546546546546547, 0.38276553106212424, 0.6546546546546547, 0.3807615230460922, 0.6561561561561562, 0.3787575150300601, 0.6561561561561562, 0.3687374749498998, 0.6636636636636637]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5751503006012024, 0.6381381381381381, 0.5731462925851704, 0.6366366366366366, 0.56312625250501, 0.6156156156156156, 0.5691382765531062, 0.49099099099099097, 0.5751503006012024, 0.43993993993993996, 0.5851703406813628, 0.4264264264264264, 0.5971943887775552, 0.4189189189189189, 0.6072144288577155, 0.4084084084084084, 0.6172344689378757, 0.36936936936936937, 0.6212424849699398, 0.35735735735735735, 0.625250501002004, 0.35435435435435436, 0.6212424849699398, 0.34684684684684686, 0.6232464929859719, 0.31981981981981983, 0.6392785571142284, 0.3138138138138138, 0.6933867735470942, 0.3153153153153153, 0.7054108216432866, 0.3183183183183183, 0.7094188376753507, 0.32432432432432434, 0.7094188376753507, 0.3483483483483483, 0.7054108216432866, 0.35135135135135137, 0.7054108216432866, 0.4099099099099099, 0.7214428857715431, 0.4264264264264264, 0.7334669338677354, 0.44594594594594594, 0.7314629258517034, 0.49099099099099097, 0.7194388777555111, 0.5540540540540541, 0.7134268537074149, 0.6171171171171171, 0.7094188376753507, 0.6231231231231231, 0.7094188376753507, 0.6306306306306306, 0.6112224448897795, 0.6336336336336337, 0.5751503006012024, 0.6381381381381381]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.44488977955911824, 0.7807807807807807, 0.42084168336673344, 0.7807807807807807, 0.4088176352705411, 0.7762762762762763, 0.3927855711422846, 0.7747747747747747, 0.3587174348697395, 0.7597597597597597, 0.3346693386773547, 0.7597597597597597, 0.3226452905811623, 0.7642642642642643, 0.3166332665330661, 0.7702702702702703, 0.3066132264529058, 0.7717717717717718, 0.2965931863727455, 0.7687687687687688, 0.2905811623246493, 0.7627627627627628, 0.2545090180360721, 0.7627627627627628, 0.24649298597194388, 0.7567567567567568, 0.24248496993987975, 0.7357357357357357, 0.24248496993987975, 0.6981981981981982, 0.24649298597194388, 0.6816816816816816, 0.2545090180360721, 0.6771771771771772, 0.27054108216432865, 0.6771771771771772, 0.2905811623246493, 0.6726726726726727, 0.29458917835671344, 0.6681681681681682, 0.3046092184368738, 0.6651651651651652, 0.32665330661322645, 0.6726726726726727, 0.35671342685370744, 0.6711711711711712, 0.3787575150300601, 0.6576576576576577, 0.41082164328657317, 0.6456456456456456, 0.42685370741482964, 0.6426426426426426, 0.4969939879759519, 0.6486486486486487, 0.5470941883767535, 0.6456456456456456, 0.5591182364729459, 0.6411411411411412, 0.5991983967935872, 0.6351351351351351, 0.7134268537074149, 0.6321321321321322, 0.7254509018036072, 0.6366366366366366, 0.7354709418837675, 0.6441441441441441, 0.7454909819639278, 0.6576576576576577, 0.7454909819639278, 0.6636636636636637, 0.751503006012024, 0.6726726726726727, 0.7595190380761523, 0.7162162162162162, 0.7575150300601202, 0.7387387387387387, 0.7535070140280561, 0.7492492492492493, 0.7394789579158316, 0.7612612612612613, 0.7294589178356713, 0.7642642642642643, 0.6312625250501002, 0.7702702702702703, 0.5130260521042084, 0.7672672672672672, 0.47695390781563124, 0.7732732732732732, 0.46893787575150303, 0.7777777777777778, 0.44488977955911824, 0.7807807807807807]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/75.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.24448897795591182, 0.6906906906906907, 0.23847695390781562, 0.6876876876876877, 0.23647294589178355, 0.6801801801801802, 0.18236472945891782, 0.4039039039039039, 0.17835671342685372, 0.3978978978978979, 0.18236472945891782, 0.3918918918918919, 0.1843687374749499, 0.3768768768768769, 0.1963927855711423, 0.35135135135135137, 0.19438877755511022, 0.32882882882882886, 0.1903807615230461, 0.31981981981981983, 0.20841683366733466, 0.31681681681681684, 0.2605210420841683, 0.31681681681681684, 0.2725450901803607, 0.3138138138138138, 0.35470941883767537, 0.3138138138138138, 0.36072144288577157, 0.3183183183183183, 0.3667334669338677, 0.34384384384384387, 0.3847695390781563, 0.36186186186186187, 0.3927855711422846, 0.4924924924924925, 0.40480961923847697, 0.5870870870870871, 0.4028056112224449, 0.6006006006006006, 0.40681362725450904, 0.6156156156156156, 0.40681362725450904, 0.6336336336336337, 0.27054108216432865, 0.6786786786786787, 0.24448897795591182, 0.6906906906906907]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.11623246492985972, 0.8543543543543544, 0.10821643286573146, 0.8513513513513513, 0.08817635270541083, 0.8243243243243243, 0.07615230460921844, 0.7912912912912913, 0.0781563126252505, 0.7837837837837838, 0.09218436873747494, 0.7762762762762763, 0.12024048096192384, 0.7672672672672672, 0.13226452905811623, 0.7687687687687688, 0.15030060120240482, 0.7567567567567568, 0.20440881763527055, 0.7327327327327328, 0.22044088176352705, 0.7192192192192193, 0.23046092184368738, 0.7027027027027027, 0.24649298597194388, 0.6906906906906907, 0.2625250501002004, 0.6831831831831832, 0.4228456913827655, 0.6306306306306306, 0.4308617234468938, 0.6306306306306306, 0.43286573146292584, 0.6276276276276276, 0.44488977955911824, 0.6261261261261262, 0.45490981963927857, 0.6201201201201201, 0.4749498997995992, 0.6141141141141141, 0.5050100200400801, 0.6096096096096096, 0.5170340681362725, 0.6096096096096096, 0.5210420841683366, 0.6141141141141141, 0.5350701402805611, 0.6141141141141141, 0.5470941883767535, 0.6171171171171171, 0.5591182364729459, 0.6261261261261262, 0.5591182364729459, 0.6336336336336337, 0.5531062124248497, 0.6411411411411412, 0.5711422845691383, 0.6441441441441441, 0.5791583166332666, 0.6486486486486487, 0.5831663326653307, 0.6636636636636637, 0.5751503006012024, 0.6741741741741741, 0.5851703406813628, 0.6816816816816816, 0.5831663326653307, 0.6906906906906907, 0.5691382765531062, 0.7057057057057057, 0.5450901803607214, 0.7222222222222222, 0.5170340681362725, 0.7312312312312312, 0.5150300601202404, 0.7342342342342343, 0.3687374749498998, 0.7927927927927928, 0.35671342685370744, 0.8003003003003003, 0.32665330661322645, 0.8093093093093093, 0.31462925851703405, 0.8153153153153153, 0.2845691382765531, 0.8153153153153153, 0.2685370741482966, 0.8108108108108109, 0.24849699398797595, 0.8108108108108109, 0.1963927855711423, 0.8258258258258259, 0.1623246492985972, 0.8318318318318318, 0.1623246492985972, 0.8363363363363363, 0.156312625250501, 0.8378378378378378, 0.15430861723446893, 0.8408408408408409, 0.14829659318637275, 0.8408408408408409, 0.1462925851703407, 0.8438438438438438, 0.1402805611222445, 0.8438438438438438, 0.12424849699398798, 0.8528528528528528, 0.11623246492985972, 0.8543543543543544]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.6753507014028056, 0.7072072072072072, 0.6513026052104208, 0.7057057057057057, 0.6352705410821643, 0.6996996996996997, 0.6152304609218436, 0.6876876876876877, 0.6052104208416834, 0.6786786786786787, 0.6032064128256514, 0.6741741741741741, 0.6012024048096193, 0.6681681681681682, 0.6052104208416834, 0.53003003003003, 0.6212424849699398, 0.5105105105105106, 0.6232464929859719, 0.4984984984984985, 0.6352705410821643, 0.4924924924924925, 0.657314629258517, 0.487987987987988, 0.6953907815631263, 0.487987987987988, 0.7214428857715431, 0.4924924924924925, 0.7454909819639278, 0.5045045045045045, 0.7474949899799599, 0.5180180180180181, 0.7575150300601202, 0.53003003003003, 0.7575150300601202, 0.5495495495495496, 0.7434869739478958, 0.6756756756756757, 0.7394789579158316, 0.6831831831831832, 0.7274549098196392, 0.6936936936936937, 0.7094188376753507, 0.7012012012012012, 0.6753507014028056, 0.7072072072072072]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8877755511022044, 0.7252252252252253, 0.8396793587174348, 0.7222222222222222, 0.8276553106212425, 0.7192192192192193, 0.8176352705410822, 0.7132132132132132, 0.811623246492986, 0.7132132132132132, 0.7975951903807615, 0.7042042042042042, 0.7855711422845691, 0.6921921921921922, 0.781563126252505, 0.6831831831831832, 0.7855711422845691, 0.6666666666666666, 0.7875751503006012, 0.6156156156156156, 0.8036072144288577, 0.5780780780780781, 0.7995991983967936, 0.5180180180180181, 0.8076152304609219, 0.5045045045045045, 0.8376753507014028, 0.47297297297297297, 0.8376753507014028, 0.4624624624624625, 0.8296593186372746, 0.4519519519519519, 0.8296593186372746, 0.44594594594594594, 0.843687374749499, 0.43543543543543545, 0.8476953907815631, 0.4144144144144144, 0.8577154308617234, 0.4099099099099099, 0.875751503006012, 0.4069069069069069, 0.8997995991983968, 0.4069069069069069, 0.9298597194388778, 0.4114114114114114, 0.9398797595190381, 0.4159159159159159, 0.9498997995991983, 0.42342342342342343, 0.9478957915831663, 0.4444444444444444, 0.9579158316633266, 0.45495495495495497, 0.9559118236472945, 0.4624624624624625, 0.9418837675350702, 0.47297297297297297, 0.9398797595190381, 0.47897897897897895, 0.9398797595190381, 0.4894894894894895, 0.9579158316633266, 0.5135135135135135, 0.9599198396793587, 0.5420420420420421, 0.9559118236472945, 0.5555555555555556, 0.9418837675350702, 0.5735735735735735, 0.9398797595190381, 0.6411411411411412, 0.9338677354709419, 0.6591591591591591, 0.9278557114228457, 0.6981981981981982, 0.9198396793587175, 0.7102102102102102, 0.9118236472945892, 0.7162162162162162, 0.8957915831663327, 0.7222222222222222, 0.8897795591182365, 0.7222222222222222, 0.8877755511022044, 0.7252252252252253]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/76.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.19839679358717435, 0.7642642642642643, 0.17635270541082165, 0.7642642642642643, 0.14829659318637275, 0.7567567567567568, 0.12224448897795591, 0.7327327327327328, 0.10420841683366733, 0.6591591591591591, 0.10420841683366733, 0.6006006006006006, 0.09619238476953908, 0.581081081081081, 0.07615230460921844, 0.5495495495495496, 0.07414829659318638, 0.539039039039039, 0.07414829659318638, 0.521021021021021, 0.0781563126252505, 0.506006006006006, 0.09619238476953908, 0.47897897897897895, 0.09619238476953908, 0.46396396396396394, 0.07615230460921844, 0.43993993993993996, 0.07615230460921844, 0.43093093093093093, 0.08817635270541083, 0.4189189189189189, 0.08617234468937876, 0.3933933933933934, 0.09418837675350701, 0.3858858858858859, 0.11623246492985972, 0.3783783783783784, 0.14228456913827656, 0.37537537537537535, 0.18637274549098196, 0.3768768768768769, 0.20240480961923848, 0.3813813813813814, 0.2124248496993988, 0.3858858858858859, 0.218436873747495, 0.41291291291291293, 0.23046092184368738, 0.4189189189189189, 0.23647294589178355, 0.4294294294294294, 0.23446893787575152, 0.43843843843843844, 0.22645290581162325, 0.44894894894894893, 0.22645290581162325, 0.4624624624624625, 0.2565130260521042, 0.4894894894894895, 0.2685370741482966, 0.503003003003003, 0.2725450901803607, 0.5135135135135135, 0.2745490981963928, 0.5345345345345346, 0.2685370741482966, 0.5495495495495496, 0.2685370741482966, 0.5885885885885885, 0.2865731462925852, 0.6291291291291291, 0.2905811623246493, 0.6636636636636637, 0.29458917835671344, 0.6726726726726727, 0.29458917835671344, 0.7072072072072072, 0.2725450901803607, 0.7372372372372372, 0.23647294589178355, 0.7567567567567568, 0.22044088176352705, 0.7627627627627628, 0.19839679358717435, 0.7642642642642643]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.3306613226452906, 0.6831831831831832, 0.29458917835671344, 0.6816816816816816, 0.28857715430861725, 0.6291291291291291, 0.2745490981963928, 0.5975975975975976, 0.27054108216432865, 0.5795795795795796, 0.2685370741482966, 0.5570570570570571, 0.2745490981963928, 0.5420420420420421, 0.2745490981963928, 0.5195195195195195, 0.2685370741482966, 0.5, 0.2545090180360721, 0.484984984984985, 0.24248496993987975, 0.4099099099099099, 0.22645290581162325, 0.34384384384384387, 0.24248496993987975, 0.2927927927927928, 0.24248496993987975, 0.26426426426426425, 0.23847695390781562, 0.25225225225225223, 0.24649298597194388, 0.24774774774774774, 0.43286573146292584, 0.24174174174174173, 0.4408817635270541, 0.24924924924924924, 0.44488977955911824, 0.27927927927927926, 0.45090180360721444, 0.2897897897897898, 0.45090180360721444, 0.2972972972972973, 0.45691382765531063, 0.3048048048048048, 0.4589178356713427, 0.4069069069069069, 0.4709418837675351, 0.5615615615615616, 0.4709418837675351, 0.6306306306306306, 0.3306613226452906, 0.6831831831831832]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.17835671342685372, 0.8888888888888888, 0.1683366733466934, 0.8888888888888888, 0.1623246492985972, 0.8843843843843844, 0.1342685370741483, 0.8483483483483484, 0.12424849699398798, 0.8273273273273273, 0.12224448897795591, 0.8078078078078078, 0.13026052104208416, 0.8003003003003003, 0.1402805611222445, 0.7987987987987988, 0.17635270541082165, 0.7837837837837838, 0.18036072144288579, 0.7867867867867868, 0.18637274549098196, 0.7867867867867868, 0.20040080160320642, 0.7747747747747747, 0.22044088176352705, 0.7672672672672672, 0.27054108216432865, 0.7402402402402403, 0.2785571142284569, 0.7342342342342343, 0.2905811623246493, 0.7132132132132132, 0.3166332665330661, 0.6906906906906907, 0.3587174348697395, 0.6726726726726727, 0.374749498997996, 0.6696696696696697, 0.42685370741482964, 0.6486486486486487, 0.5691382765531062, 0.5990990990990991, 0.6072144288577155, 0.5945945945945946, 0.6212424849699398, 0.6006006006006006, 0.6432865731462926, 0.6006006006006006, 0.6653306613226453, 0.6126126126126126, 0.6673346693386774, 0.6231231231231231, 0.6533066132264529, 0.6336336336336337, 0.6733466933867736, 0.6336336336336337, 0.687374749498998, 0.6381381381381381, 0.6953907815631263, 0.6516516516516516, 0.6953907815631263, 0.6606606606606606, 0.6893787575150301, 0.6666666666666666, 0.6953907815631263, 0.6846846846846847, 0.6833667334669339, 0.7027027027027027, 0.6492985971943888, 0.7252252252252253, 0.625250501002004, 0.7342342342342343, 0.44488977955911824, 0.8213213213213213, 0.43887775551102204, 0.8213213213213213, 0.4168336673346693, 0.8318318318318318, 0.3967935871743487, 0.8378378378378378, 0.3667334669338677, 0.8378378378378378, 0.35070140280561124, 0.8363363363363363, 0.3466933867735471, 0.8333333333333334, 0.32665330661322645, 0.8333333333333334, 0.24649298597194388, 0.8588588588588588, 0.23446893787575152, 0.8588588588588588, 0.22645290581162325, 0.8618618618618619, 0.22444889779559118, 0.8678678678678678, 0.17835671342685372, 0.8888888888888888]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7975951903807615, 0.7057057057057057, 0.7575150300601202, 0.7027027027027027, 0.7254509018036072, 0.6861861861861862, 0.7014028056112225, 0.6666666666666666, 0.7014028056112225, 0.6456456456456456, 0.7194388777555111, 0.4954954954954955, 0.7414829659318637, 0.4774774774774775, 0.7414829659318637, 0.466966966966967, 0.7474949899799599, 0.4624624624624625, 0.7695390781563126, 0.45645645645645644, 0.8056112224448898, 0.45345345345345345, 0.8356713426853707, 0.45645645645645644, 0.8817635270541082, 0.46996996996997, 0.8937875751503006, 0.4774774774774775, 0.8937875751503006, 0.4954954954954955, 0.9038076152304609, 0.5075075075075075, 0.9038076152304609, 0.5195195195195195, 0.8657314629258517, 0.6786786786786787, 0.8537074148296593, 0.6906906906906907, 0.8376753507014028, 0.6981981981981982, 0.7975951903807615, 0.7057057057057057]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/77.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.1462925851703407, 0.6201201201201201, 0.1402805611222445, 0.6186186186186187, 0.13827655310621242, 0.6126126126126126, 0.13827655310621242, 0.6051051051051051, 0.12224448897795591, 0.5540540540540541, 0.12224448897795591, 0.49099099099099097, 0.1062124248496994, 0.4624624624624625, 0.10020040080160321, 0.4444444444444444, 0.10220440881763528, 0.4264264264264264, 0.10821643286573146, 0.4189189189189189, 0.11222444889779559, 0.40540540540540543, 0.11823647294589178, 0.3993993993993994, 0.11823647294589178, 0.3813813813813814, 0.10420841683366733, 0.36936936936936937, 0.10220440881763528, 0.3633633633633634, 0.11222444889779559, 0.35285285285285284, 0.11022044088176353, 0.33183183183183185, 0.11623246492985972, 0.32432432432432434, 0.1462925851703407, 0.31681681681681684, 0.17835671342685372, 0.31681681681681684, 0.1963927855711423, 0.31981981981981983, 0.20841683366733466, 0.32432432432432434, 0.2124248496993988, 0.33183183183183185, 0.21442885771543085, 0.3483483483483483, 0.22845691382765532, 0.35585585585585583, 0.22845691382765532, 0.3633633633633634, 0.22044088176352705, 0.37237237237237236, 0.22044088176352705, 0.3858858858858859, 0.24849699398797595, 0.4144144144144144, 0.25851703406813625, 0.43243243243243246, 0.2545090180360721, 0.4924924924924925, 0.2605210420841683, 0.512012012012012, 0.2685370741482966, 0.5225225225225225, 0.2725450901803607, 0.5465465465465466, 0.21643286573146292, 0.5675675675675675, 0.20040080160320642, 0.5825825825825826, 0.19438877755511022, 0.5960960960960962, 0.18236472945891782, 0.6051051051051051, 0.16633266533066132, 0.6096096096096096, 0.1462925851703407, 0.6201201201201201]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.11422845691382766, 0.7102102102102102, 0.1062124248496994, 0.7102102102102102, 0.09819639278557114, 0.7057057057057057, 0.08617234468937876, 0.6921921921921922, 0.07214428857715431, 0.6651651651651652, 0.07214428857715431, 0.6501501501501501, 0.0841683366733467, 0.6411411411411412, 0.11422845691382766, 0.6321321321321322, 0.12424849699398798, 0.6336336336336337, 0.16032064128256512, 0.6141141141141141, 0.18236472945891782, 0.6066066066066066, 0.1963927855711423, 0.5960960960960962, 0.20240480961923848, 0.5825825825825826, 0.20641282565130262, 0.581081081081081, 0.21042084168336672, 0.5735735735735735, 0.22645290581162325, 0.5645645645645646, 0.24048096192384769, 0.5585585585585585, 0.2565130260521042, 0.5555555555555556, 0.27054108216432865, 0.5495495495495496, 0.42685370741482964, 0.503003003003003, 0.47695390781563124, 0.5015015015015015, 0.4909819639278557, 0.5045045045045045, 0.49899799599198397, 0.509009009009009, 0.4969939879759519, 0.521021021021021, 0.5070140280561122, 0.5225225225225225, 0.5170340681362725, 0.527027027027027, 0.5230460921843687, 0.536036036036036, 0.5230460921843687, 0.5420420420420421, 0.5170340681362725, 0.5480480480480481, 0.5170340681362725, 0.5525525525525525, 0.5250501002004008, 0.5585585585585585, 0.5250501002004008, 0.5690690690690691, 0.5110220440881763, 0.5825825825825826, 0.48897795591182364, 0.5945945945945946, 0.48296593186372744, 0.6006006006006006, 0.46292585170340683, 0.6066066066066066, 0.3486973947895792, 0.6531531531531531, 0.31462925851703405, 0.6696696696696697, 0.2905811623246493, 0.6771771771771772, 0.2665330661322645, 0.6786786786786787, 0.24849699398797595, 0.6741741741741741, 0.22244488977955912, 0.6741741741741741, 0.2124248496993988, 0.6786786786786787, 0.20440881763527055, 0.6786786786786787, 0.20240480961923848, 0.6816816816816816, 0.19438877755511022, 0.6816816816816816, 0.1843687374749499, 0.6861861861861862, 0.156312625250501, 0.6906906906906907, 0.1523046092184369, 0.6951951951951952, 0.11422845691382766, 0.7102102102102102]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.531062124248497, 0.6441441441441441, 0.5290581162324649, 0.6426426426426426, 0.531062124248497, 0.5795795795795796, 0.5370741482965932, 0.5330330330330331, 0.5370741482965932, 0.4954954954954955, 0.5410821643286573, 0.484984984984985, 0.5551102204408818, 0.47297297297297297, 0.5551102204408818, 0.46096096096096095, 0.5691382765531062, 0.4519519519519519, 0.6032064128256514, 0.44594594594594594, 0.6392785571142284, 0.44744744744744747, 0.6813627254509018, 0.45795795795795796, 0.6893787575150301, 0.46096096096096095, 0.6953907815631263, 0.46846846846846846, 0.6933867735470942, 0.47897897897897895, 0.7054108216432866, 0.4954954954954955, 0.7034068136272545, 0.5345345345345346, 0.6993987975951904, 0.545045045045045, 0.6973947895791583, 0.5705705705705706, 0.531062124248497, 0.6441441441441441]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.6092184368737475, 0.9054054054054054, 0.533066132264529, 0.8963963963963963, 0.49498997995991983, 0.8858858858858859, 0.4789579158316633, 0.8858858858858859, 0.46292585170340683, 0.8903903903903904, 0.44889779559118237, 0.9009009009009009, 0.44288577154308617, 0.8978978978978979, 0.43687374749499, 0.8888888888888888, 0.43687374749499, 0.8633633633633634, 0.4308617234468938, 0.8318318318318318, 0.4288577154308617, 0.7657657657657657, 0.43687374749499, 0.7582582582582582, 0.45490981963927857, 0.7522522522522522, 0.45490981963927857, 0.6936936936936937, 0.45090180360721444, 0.6861861861861862, 0.4529058116232465, 0.6801801801801802, 0.4589178356713427, 0.6756756756756757, 0.4709418837675351, 0.6726726726726727, 0.7895791583166333, 0.5330330330330331, 0.8256513026052105, 0.5420420420420421, 0.8557114228456913, 0.5540540540540541, 0.8917835671342685, 0.5630630630630631, 0.9318637274549099, 0.5780780780780781, 0.9418837675350702, 0.5795795795795796, 0.9498997995991983, 0.5840840840840841, 0.9478957915831663, 0.6051051051051051, 0.9178356713426854, 0.6921921921921922, 0.7314629258517034, 0.8198198198198198, 0.6492985971943888, 0.8798798798798799, 0.6092184368737475, 0.9054054054054054]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/78.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.08617234468937876, 0.7447447447447447, 0.08016032064128256, 0.7432432432432432, 0.06813627254509018, 0.7297297297297297, 0.05410821643286573, 0.6981981981981982, 0.05410821643286573, 0.6846846846846847, 0.06012024048096192, 0.6801801801801802, 0.09619238476953908, 0.6711711711711712, 0.1062124248496994, 0.6726726726726727, 0.13827655310621242, 0.6561561561561562, 0.156312625250501, 0.6516516516516516, 0.18236472945891782, 0.6366366366366366, 0.18837675350701402, 0.6261261261261262, 0.20440881763527055, 0.6126126126126126, 0.218436873747495, 0.6066066066066066, 0.2625250501002004, 0.5975975975975976, 0.37074148296593185, 0.5675675675675675, 0.40080160320641284, 0.5615615615615616, 0.39879759519038077, 0.6771771771771772, 0.2965931863727455, 0.7102102102102102, 0.29458917835671344, 0.7132132132132132, 0.2605210420841683, 0.7222222222222222, 0.24448897795591182, 0.7222222222222222, 0.22444889779559118, 0.7192192192192193, 0.218436873747495, 0.7162162162162162, 0.19238476953907815, 0.7162162162162162, 0.14428857715430862, 0.7252252252252253, 0.14228456913827656, 0.7282282282282282, 0.12625250501002003, 0.7282282282282282, 0.12224448897795591, 0.7342342342342343, 0.11623246492985972, 0.7342342342342343, 0.08617234468937876, 0.7447447447447447]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.49298597194388777, 0.7762762762762763, 0.4088176352705411, 0.7762762762762763, 0.4088176352705411, 0.7747747747747747, 0.4088176352705411, 0.7717717717717718, 0.40681362725450904, 0.7702702702702703, 0.40681362725450904, 0.7447447447447447, 0.40480961923847697, 0.7432432432432432, 0.40480961923847697, 0.7162162162162162, 0.4028056112224449, 0.7147147147147147, 0.4028056112224449, 0.6861861861861862, 0.40080160320641284, 0.6846846846846847, 0.40080160320641284, 0.44294294294294295, 0.39879759519038077, 0.44144144144144143, 0.39879759519038077, 0.4339339339339339, 0.40080160320641284, 0.43243243243243246, 0.40080160320641284, 0.3978978978978979, 0.4028056112224449, 0.3963963963963964, 0.4028056112224449, 0.34234234234234234, 0.41082164328657317, 0.33633633633633636, 0.42685370741482964, 0.33633633633633636, 0.4288577154308617, 0.33483483483483484, 0.5050100200400801, 0.33483483483483484, 0.5070140280561122, 0.33633633633633636, 0.593186372745491, 0.33633633633633636, 0.5951903807615231, 0.33783783783783783, 0.5991983967935872, 0.33783783783783783, 0.6072144288577155, 0.34234234234234234, 0.6072144288577155, 0.3483483483483483, 0.6052104208416834, 0.34984984984984985, 0.6052104208416834, 0.37237237237237236, 0.6032064128256514, 0.3738738738738739, 0.6032064128256514, 0.37537537537537535, 0.6012024048096193, 0.3768768768768769, 0.6012024048096193, 0.3843843843843844, 0.6032064128256514, 0.3858858858858859, 0.6032064128256514, 0.39039039039039036, 0.6052104208416834, 0.3918918918918919, 0.6052104208416834, 0.41291291291291293, 0.6072144288577155, 0.4144144144144144, 0.6072144288577155, 0.42042042042042044, 0.6092184368737475, 0.4219219219219219, 0.6092184368737475, 0.4264264264264264, 0.6112224448897795, 0.42792792792792794, 0.6112224448897795, 0.4339339339339339, 0.6132264529058116, 0.43543543543543545, 0.6132264529058116, 0.4369369369369369, 0.6112224448897795, 0.43843843843843844, 0.6112224448897795, 0.43993993993993996, 0.6092184368737475, 0.44144144144144143, 0.6092184368737475, 0.45795795795795796, 0.6072144288577155, 0.4594594594594595, 0.6072144288577155, 0.47897897897897895, 0.6052104208416834, 0.4804804804804805, 0.6052104208416834, 0.5135135135135135, 0.6032064128256514, 0.515015015015015, 0.6032064128256514, 0.5405405405405406, 0.6012024048096193, 0.5420420420420421, 0.6012024048096193, 0.5705705705705706, 0.5991983967935872, 0.5720720720720721, 0.5991983967935872, 0.6006006006006006, 0.5971943887775552, 0.6021021021021021, 0.5971943887775552, 0.6321321321321322, 0.5951903807615231, 0.6336336336336337, 0.5951903807615231, 0.6621621621621622, 0.593186372745491, 0.6636636636636637, 0.593186372745491, 0.6906906906906907, 0.591182364729459, 0.6921921921921922, 0.591182364729459, 0.7207207207207207, 0.5891783567134269, 0.7222222222222222, 0.5891783567134269, 0.7687687687687688, 0.5831663326653307, 0.7732732732732732, 0.5370741482965932, 0.7732732732732732, 0.5350701402805611, 0.7747747747747747, 0.49498997995991983, 0.7747747747747747, 0.49298597194388777, 0.7762762762762763]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6913827655310621, 0.7777777777777778, 0.6633266533066132, 0.7777777777777778, 0.6212424849699398, 0.7672672672672672, 0.6032064128256514, 0.7552552552552553, 0.591182364729459, 0.7357357357357357, 0.5971943887775552, 0.6396396396396397, 0.6032064128256514, 0.6291291291291291, 0.6052104208416834, 0.6126126126126126, 0.6052104208416834, 0.5990990990990991, 0.6012024048096193, 0.5900900900900901, 0.6032064128256514, 0.5405405405405406, 0.6052104208416834, 0.53003003003003, 0.6112224448897795, 0.5225225225225225, 0.6212424849699398, 0.5165165165165165, 0.6312625250501002, 0.4984984984984985, 0.6312625250501002, 0.49099099099099097, 0.6212424849699398, 0.47897897897897895, 0.6192384769539078, 0.46996996996997, 0.6332665330661322, 0.4594594594594595, 0.6372745490981964, 0.4369369369369369, 0.6472945891783567, 0.43093093093093093, 0.6653306613226453, 0.4264264264264264, 0.6993987975951904, 0.4264264264264264, 0.7274549098196392, 0.43093093093093093, 0.7354709418837675, 0.4339339339339339, 0.7454909819639278, 0.44144144144144143, 0.7454909819639278, 0.46546546546546547, 0.7555110220440882, 0.47597597597597596, 0.7555110220440882, 0.48348348348348347, 0.7414829659318637, 0.5, 0.7414829659318637, 0.515015015015015, 0.7575150300601202, 0.5330330330330331, 0.7675350701402806, 0.5585585585585585, 0.7655310621242485, 0.5795795795795796, 0.7474949899799599, 0.6171171171171171, 0.7474949899799599, 0.6351351351351351, 0.751503006012024, 0.6486486486486487, 0.751503006012024, 0.6876876876876877, 0.7414829659318637, 0.7477477477477478, 0.7274549098196392, 0.7627627627627628, 0.7134268537074149, 0.7717717717717718, 0.6913827655310621, 0.7777777777777778]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.8416833667334669, 0.7492492492492493, 0.8056112224448898, 0.7492492492492493, 0.781563126252505, 0.7447447447447447, 0.7615230460921844, 0.7387387387387387, 0.7474949899799599, 0.7267267267267268, 0.7535070140280561, 0.6651651651651652, 0.7474949899799599, 0.6231231231231231, 0.749498997995992, 0.6126126126126126, 0.7535070140280561, 0.6111111111111112, 0.7575150300601202, 0.5960960960960962, 0.7635270541082164, 0.5900900900900901, 0.7675350701402806, 0.5795795795795796, 0.7675350701402806, 0.5525525525525525, 0.7595190380761523, 0.5375375375375375, 0.7655310621242485, 0.5345345345345346, 0.7635270541082164, 0.5255255255255256, 0.7655310621242485, 0.5225225225225225, 0.7895791583166333, 0.5135135135135135, 0.8016032064128257, 0.512012012012012, 0.8517034068136272, 0.5135135135135135, 0.8917835671342685, 0.5255255255255256, 0.9078156312625251, 0.536036036036036, 0.9078156312625251, 0.5525525525525525, 0.9178356713426854, 0.5645645645645646, 0.9178356713426854, 0.5795795795795796, 0.905811623246493, 0.6246246246246246, 0.8997995991983968, 0.6696696696696697, 0.8917835671342685, 0.6921921921921922, 0.8917835671342685, 0.7117117117117117, 0.8877755511022044, 0.7267267267267268, 0.8697394789579158, 0.7432432432432432, 0.8617234468937875, 0.7432432432432432, 0.8416833667334669, 0.7492492492492493]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/8.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.8196392785571143, 0.6531531531531531, 0.2124248496993988, 0.6516516516516516, 0.18637274549098196, 0.6261261261261262, 0.18036072144288579, 0.6126126126126126, 0.17034068136272545, 0.6036036036036037, 0.15030060120240482, 0.6051051051051051, 0.14228456913827656, 0.5990990990990991, 0.13627254509018036, 0.5990990990990991, 0.13026052104208416, 0.5945945945945946, 0.11022044088176353, 0.512012012012012, 0.11022044088176353, 0.5, 0.09819639278557114, 0.46096096096096095, 0.10420841683366733, 0.45495495495495497, 0.12024048096192384, 0.45795795795795796, 0.156312625250501, 0.45645645645645644, 0.20841683366733466, 0.43243243243243246, 0.23446893787575152, 0.42342342342342343, 0.7975951903807615, 0.42342342342342343, 0.8156312625250501, 0.4444444444444444, 0.8496993987975952, 0.5015015015015015, 0.8557114228456913, 0.506006006006006, 0.8476953907815631, 0.5525525525525525, 0.843687374749499, 0.5615615615615616, 0.843687374749499, 0.581081081081081, 0.8396793587174348, 0.5840840840840841, 0.8396793587174348, 0.5930930930930931, 0.8276553106212425, 0.6336336336336337, 0.8276553106212425, 0.6456456456456456, 0.8256513026052105, 0.6501501501501501, 0.8196392785571143, 0.6531531531531531]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/80.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.22645290581162325, 0.7882882882882883, 0.17635270541082165, 0.7867867867867868, 0.15030060120240482, 0.7792792792792793, 0.13627254509018036, 0.7657657657657657, 0.09619238476953908, 0.5885885885885885, 0.09819639278557114, 0.5735735735735735, 0.1062124248496994, 0.56006006006006, 0.11222444889779559, 0.5555555555555556, 0.11222444889779559, 0.536036036036036, 0.12625250501002003, 0.5285285285285285, 0.1523046092184369, 0.5195195195195195, 0.18837675350701402, 0.512012012012012, 0.22845691382765532, 0.512012012012012, 0.25250501002004005, 0.5165165165165165, 0.2625250501002004, 0.521021021021021, 0.2745490981963928, 0.527027027027027, 0.2785571142284569, 0.5330330330330331, 0.2785571142284569, 0.5405405405405406, 0.29458917835671344, 0.5540540540540541, 0.2985971943887776, 0.566066066066066, 0.3026052104208417, 0.6321321321321322, 0.3106212424849699, 0.6891891891891891, 0.312625250501002, 0.7417417417417418, 0.3066132264529058, 0.7552552552552553, 0.2865731462925852, 0.7702702702702703, 0.250501002004008, 0.7852852852852853, 0.22645290581162325, 0.7882882882882883]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.4088176352705411, 0.7927927927927928, 0.3907815631262525, 0.7882882882882883, 0.3787575150300601, 0.7747747747747747, 0.36472945891783565, 0.7822822822822822, 0.35070140280561124, 0.7822822822822822, 0.3346693386773547, 0.7672672672672672, 0.32665330661322645, 0.7552552552552553, 0.32665330661322645, 0.7492492492492493, 0.312625250501002, 0.7222222222222222, 0.312625250501002, 0.6906906906906907, 0.3046092184368738, 0.6321321321321322, 0.30060120240480964, 0.5675675675675675, 0.29458917835671344, 0.5525525525525525, 0.2965931863727455, 0.5165165165165165, 0.3106212424849699, 0.493993993993994, 0.3286573146292585, 0.47897897897897895, 0.33266533066132264, 0.46846846846846846, 0.3346693386773547, 0.43243243243243246, 0.3406813627254509, 0.4114114114114114, 0.3406813627254509, 0.40540540540540543, 0.3346693386773547, 0.4009009009009009, 0.3346693386773547, 0.3633633633633634, 0.33867735470941884, 0.3588588588588589, 0.374749498997996, 0.35135135135135137, 0.4248496993987976, 0.35285285285285284, 0.44488977955911824, 0.36186186186186187, 0.4468937875751503, 0.3993993993993994, 0.4408817635270541, 0.4024024024024024, 0.4408817635270541, 0.4084084084084084, 0.44488977955911824, 0.41291291291291293, 0.44488977955911824, 0.4264264264264264, 0.4529058116232465, 0.44744744744744747, 0.45490981963927857, 0.46546546546546547, 0.46292585170340683, 0.4804804804804805, 0.48296593186372744, 0.493993993993994, 0.49498997995991983, 0.512012012012012, 0.49899799599198397, 0.524024024024024, 0.49298597194388777, 0.7222222222222222, 0.48697394789579157, 0.7417417417417418, 0.48096192384769537, 0.7582582582582582, 0.4589178356713427, 0.7792792792792793, 0.4468937875751503, 0.7792792792792793, 0.4348697394789579, 0.7732732732732732, 0.4288577154308617, 0.7822822822822822, 0.4168336673346693, 0.7912912912912913, 0.4088176352705411, 0.7927927927927928]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.593186372745491, 0.7912912912912913, 0.5070140280561122, 0.7912912912912913, 0.503006012024048, 0.7807807807807807, 0.501002004008016, 0.7537537537537538, 0.49498997995991983, 0.7327327327327328, 0.49298597194388777, 0.7177177177177178, 0.4969939879759519, 0.7117117117117117, 0.5050100200400801, 0.481981981981982, 0.5130260521042084, 0.36186186186186187, 0.5230460921843687, 0.34534534534534533, 0.5250501002004008, 0.3108108108108108, 0.531062124248497, 0.3003003003003003, 0.5350701402805611, 0.2972972972972973, 0.5470941883767535, 0.29429429429429427, 0.7414829659318637, 0.2987987987987988, 0.7474949899799599, 0.3003003003003003, 0.7555110220440882, 0.3063063063063063, 0.7474949899799599, 0.3483483483483483, 0.7695390781563126, 0.4069069069069069, 0.7695390781563126, 0.4174174174174174, 0.749498997995992, 0.503003003003003, 0.7034068136272545, 0.7657657657657657, 0.7034068136272545, 0.7852852852852853, 0.6973947895791583, 0.7897897897897898, 0.593186372745491, 0.7912912912912913]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8236472945891784, 0.7942942942942943, 0.781563126252505, 0.7942942942942943, 0.749498997995992, 0.7852852852852853, 0.7274549098196392, 0.7747747747747747, 0.7114228456913828, 0.7612612612612613, 0.7074148296593187, 0.7537537537537538, 0.749498997995992, 0.5135135135135135, 0.7555110220440882, 0.4984984984984985, 0.7695390781563126, 0.4894894894894895, 0.7695390781563126, 0.46846846846846846, 0.7615230460921844, 0.46096096096096095, 0.7635270541082164, 0.44894894894894893, 0.7675350701402806, 0.4444444444444444, 0.7775551102204409, 0.43993993993993996, 0.781563126252505, 0.4159159159159159, 0.7935871743486974, 0.4069069069069069, 0.8136272545090181, 0.4024024024024024, 0.843687374749499, 0.4024024024024024, 0.8837675350701403, 0.4084084084084084, 0.905811623246493, 0.4189189189189189, 0.9098196392785571, 0.4219219219219219, 0.905811623246493, 0.45045045045045046, 0.9158316633266533, 0.45645645645645644, 0.9198396793587175, 0.46546546546546547, 0.9178356713426854, 0.47297297297297297, 0.8977955911823647, 0.4894894894894895, 0.8977955911823647, 0.5045045045045045, 0.9178356713426854, 0.5375375375375375, 0.9198396793587175, 0.5705705705705706, 0.9138276553106213, 0.5885885885885885, 0.905811623246493, 0.5975975975975976, 0.8957915831663327, 0.6186186186186187, 0.8917835671342685, 0.6381381381381381, 0.8937875751503006, 0.6831831831831832, 0.8897795591182365, 0.7042042042042042, 0.8837675350701403, 0.7162162162162162, 0.8837675350701403, 0.7297297297297297, 0.8717434869739479, 0.7672672672672672, 0.8597194388777555, 0.7807807807807807, 0.8476953907815631, 0.7882882882882883, 0.8236472945891784, 0.7942942942942943]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/81.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.16432865731462926, 0.7447447447447447, 0.12625250501002003, 0.7432432432432432, 0.11222444889779559, 0.7387387387387387, 0.09819639278557114, 0.7282282282282282, 0.05410821643286573, 0.5780780780780781, 0.056112224448897796, 0.5630630630630631, 0.06412825651302605, 0.5525525525525525, 0.06212424849699399, 0.5405405405405406, 0.06813627254509018, 0.53003003003003, 0.09018036072144289, 0.521021021021021, 0.13627254509018036, 0.5105105105105106, 0.1903807615230461, 0.515015015015015, 0.20641282565130262, 0.5285285285285285, 0.20440881763527055, 0.5330330330330331, 0.218436873747495, 0.5420420420420421, 0.218436873747495, 0.5540540540540541, 0.22845691382765532, 0.5945945945945946, 0.23246492985971945, 0.6411411411411412, 0.24248496993987975, 0.6801801801801802, 0.24248496993987975, 0.6921921921921922, 0.24649298597194388, 0.6981981981981982, 0.24649298597194388, 0.7087087087087087, 0.23046092184368738, 0.7237237237237237, 0.20841683366733466, 0.7357357357357357, 0.18837675350701402, 0.7432432432432432, 0.16432865731462926, 0.7447447447447447]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3286573146292585, 0.7477477477477478, 0.31462925851703405, 0.7477477477477478, 0.3046092184368738, 0.7432432432432432, 0.2965931863727455, 0.7357357357357357, 0.2785571142284569, 0.7402402402402403, 0.27054108216432865, 0.7342342342342343, 0.2565130260521042, 0.7192192192192193, 0.24448897795591182, 0.6921921921921922, 0.24448897795591182, 0.6801801801801802, 0.23446893787575152, 0.6411411411411412, 0.23046092184368738, 0.5945945945945946, 0.22044088176352705, 0.5540540540540541, 0.218436873747495, 0.5285285285285285, 0.22244488977955912, 0.509009009009009, 0.24448897795591182, 0.484984984984985, 0.24649298597194388, 0.4774774774774775, 0.24649298597194388, 0.43243243243243246, 0.250501002004008, 0.42342342342342343, 0.24248496993987975, 0.4159159159159159, 0.24048096192384769, 0.39039039039039036, 0.24649298597194388, 0.3843843843843844, 0.2785571142284569, 0.3783783783783784, 0.3106212424849699, 0.3783783783783784, 0.32064128256513025, 0.37987987987987987, 0.3346693386773547, 0.3858858858858859, 0.33867735470941884, 0.4099099099099099, 0.3346693386773547, 0.4219219219219219, 0.33867735470941884, 0.42492492492492495, 0.34468937875751504, 0.44144144144144143, 0.35070140280561124, 0.47147147147147145, 0.35470941883767537, 0.4774774774774775, 0.3807615230460922, 0.4954954954954955, 0.3907815631262525, 0.512012012012012, 0.39478957915831664, 0.5345345345345346, 0.4028056112224449, 0.6891891891891891, 0.3967935871743487, 0.7057057057057057, 0.3907815631262525, 0.7102102102102102, 0.38877755511022044, 0.7177177177177178, 0.3787575150300601, 0.7297297297297297, 0.37074148296593185, 0.7357357357357357, 0.36072144288577157, 0.7387387387387387, 0.34468937875751504, 0.7297297297297297, 0.3286573146292585, 0.7477477477477478]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6312625250501002, 0.7327327327327328, 0.6112224448897795, 0.7327327327327328, 0.5711422845691383, 0.7222222222222222, 0.5551102204408818, 0.7102102102102102, 0.5490981963927856, 0.7027027027027027, 0.5430861723446894, 0.6846846846846847, 0.5430861723446894, 0.6321321321321322, 0.5531062124248497, 0.5990990990990991, 0.5531062124248497, 0.5630630630630631, 0.5430861723446894, 0.5435435435435435, 0.5430861723446894, 0.5315315315315315, 0.5511022044088176, 0.509009009009009, 0.5731462925851704, 0.4864864864864865, 0.5731462925851704, 0.46846846846846846, 0.5651302605210421, 0.46096096096096095, 0.5651302605210421, 0.45345345345345345, 0.5751503006012024, 0.44144144144144143, 0.5771543086172345, 0.42042042042042044, 0.5951903807615231, 0.4114114114114114, 0.6152304609218436, 0.4084084084084084, 0.657314629258517, 0.4114114114114114, 0.6753507014028056, 0.4189189189189189, 0.6773547094188377, 0.44594594594594594, 0.685370741482966, 0.45045045045045046, 0.6893787575150301, 0.45495495495495497, 0.687374749498998, 0.46546546546546547, 0.6793587174348698, 0.46846846846846846, 0.6753507014028056, 0.47297297297297297, 0.6753507014028056, 0.484984984984985, 0.6793587174348698, 0.4924924924924925, 0.6933867735470942, 0.506006006006006, 0.6933867735470942, 0.512012012012012, 0.6993987975951904, 0.5195195195195195, 0.6933867735470942, 0.5645645645645646, 0.687374749498998, 0.581081081081081, 0.685370741482966, 0.7027027027027027, 0.6813627254509018, 0.7117117117117117, 0.6713426853707415, 0.7192192192192193, 0.6432865731462926, 0.7312312312312312, 0.6312625250501002, 0.7327327327327328]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.8777555110220441, 0.7567567567567568, 0.7094188376753507, 0.7552552552552553, 0.7034068136272545, 0.7447447447447447, 0.6893787575150301, 0.7012012012012012, 0.687374749498998, 0.6081081081081081, 0.7214428857715431, 0.3993993993993994, 0.7214428857715431, 0.3858858858858859, 0.7274549098196392, 0.3783783783783784, 0.7474949899799599, 0.36486486486486486, 0.751503006012024, 0.3408408408408408, 0.7655310621242485, 0.3303303303303303, 0.9318637274549099, 0.33183183183183185, 0.9438877755511023, 0.33483483483483484, 0.9498997995991983, 0.33783783783783783, 0.9418837675350702, 0.36186186186186187, 0.9418837675350702, 0.3738738738738739, 0.9519038076152304, 0.3888888888888889, 0.9539078156312625, 0.3993993993993994, 0.9659318637274549, 0.42342342342342343, 0.9679358717434869, 0.43543543543543545, 0.9478957915831663, 0.493993993993994, 0.8777555110220441, 0.7567567567567568]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/82.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.10821643286573146, 0.6951951951951952, 0.10020040080160321, 0.6936936936936937, 0.09218436873747494, 0.6726726726726727, 0.07014028056112225, 0.5870870870870871, 0.06613226452905811, 0.5585585585585585, 0.06212424849699399, 0.5525525525525525, 0.06613226452905811, 0.539039039039039, 0.07414829659318638, 0.5285285285285285, 0.07414829659318638, 0.5105105105105106, 0.09619238476953908, 0.4984984984984985, 0.1462925851703407, 0.4864864864864865, 0.1743486973947896, 0.4864864864864865, 0.20040080160320642, 0.4894894894894895, 0.22244488977955912, 0.5, 0.22444889779559118, 0.5105105105105106, 0.24048096192384769, 0.5225225225225225, 0.24649298597194388, 0.5330330330330331, 0.2625250501002004, 0.6606606606606606, 0.23046092184368738, 0.6621621621621622, 0.21442885771543085, 0.6666666666666666, 0.19238476953907815, 0.6756756756756757, 0.17034068136272545, 0.6891891891891891, 0.11823647294589178, 0.6921921921921922, 0.10821643286573146, 0.6951951951951952]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6052104208416834, 0.7297297297297297, 0.5991983967935872, 0.7282282282282282, 0.5991983967935872, 0.7237237237237237, 0.5891783567134269, 0.7147147147147147, 0.5971943887775552, 0.7087087087087087, 0.5971943887775552, 0.6831831831831832, 0.5851703406813628, 0.6756756756756757, 0.5651302605210421, 0.6666666666666666, 0.5511022044088176, 0.6666666666666666, 0.5410821643286573, 0.6636636636636637, 0.5110220440881763, 0.6636636636636637, 0.5050100200400801, 0.6606606606606606, 0.5050100200400801, 0.6111111111111112, 0.5150300601202404, 0.5900900900900901, 0.5150300601202404, 0.5525525525525525, 0.5070140280561122, 0.5345345345345346, 0.5050100200400801, 0.521021021021021, 0.5130260521042084, 0.496996996996997, 0.5230460921843687, 0.48348348348348347, 0.5350701402805611, 0.4744744744744745, 0.5390781563126252, 0.466966966966967, 0.5390781563126252, 0.45345345345345345, 0.5290581162324649, 0.44294294294294295, 0.5290581162324649, 0.43243243243243246, 0.5430861723446894, 0.4189189189189189, 0.5430861723446894, 0.4024024024024024, 0.5470941883767535, 0.3978978978978979, 0.5591182364729459, 0.3918918918918919, 0.5811623246492986, 0.38738738738738737, 0.6032064128256514, 0.38738738738738737, 0.6352705410821643, 0.3918918918918919, 0.6492985971943888, 0.3993993993993994, 0.6533066132264529, 0.40540540540540543, 0.6513026052104208, 0.42792792792792794, 0.6593186372745491, 0.43243243243243246, 0.6633266533066132, 0.43843843843843844, 0.6593186372745491, 0.45345345345345345, 0.6533066132264529, 0.45495495495495497, 0.6492985971943888, 0.46096096096096095, 0.6492985971943888, 0.4744744744744745, 0.6613226452905812, 0.4864864864864865, 0.6733466933867736, 0.509009009009009, 0.6733466933867736, 0.539039039039039, 0.6693386773547094, 0.5420420420420421, 0.657314629258517, 0.575075075075075, 0.6613226452905812, 0.6231231231231231, 0.657314629258517, 0.6696696696696697, 0.6513026052104208, 0.6966966966966966, 0.6452905811623246, 0.7087087087087087, 0.6352705410821643, 0.7162162162162162, 0.6052104208416834, 0.7297297297297297]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.8496993987975952, 0.7597597597597597, 0.6753507014028056, 0.7567567567567568, 0.6713426853707415, 0.7507507507507507, 0.655310621242485, 0.6861861861861862, 0.6613226452905812, 0.6426426426426426, 0.6613226452905812, 0.5945945945945946, 0.6693386773547094, 0.5495495495495496, 0.6733466933867736, 0.5420420420420421, 0.6733466933867736, 0.527027027027027, 0.7014028056112225, 0.37987987987987987, 0.7014028056112225, 0.36486486486486486, 0.7034068136272545, 0.36036036036036034, 0.7334669338677354, 0.33933933933933935, 0.7354709418837675, 0.3153153153153153, 0.7414829659318637, 0.30930930930930933, 0.751503006012024, 0.3048048048048048, 0.8296593186372746, 0.3063063063063063, 0.8657314629258517, 0.30930930930930933, 0.9338677354709419, 0.30930930930930933, 0.9478957915831663, 0.3138138138138138, 0.9519038076152304, 0.3183183183183183, 0.9418837675350702, 0.34684684684684686, 0.9418837675350702, 0.35735735735735735, 0.9619238476953907, 0.3993993993993994, 0.9679358717434869, 0.42342342342342343, 0.9599198396793587, 0.43993993993993996, 0.905811623246493, 0.6066066066066066, 0.87374749498998, 0.6936936936936937, 0.8577154308617234, 0.7447447447447447, 0.8577154308617234, 0.7552552552552553, 0.8496993987975952, 0.7597597597597597]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5290581162324649, 0.8123123123123123, 0.22244488977955912, 0.8108108108108109, 0.19238476953907815, 0.8003003003003003, 0.15831663326653306, 0.7792792792792793, 0.09018036072144289, 0.7732732732732732, 0.08016032064128256, 0.7687687687687688, 0.07414829659318638, 0.7687687687687688, 0.06613226452905811, 0.7732732732732732, 0.026052104208416832, 0.7717717717717718, 0.01603206412825651, 0.7657657657657657, 0.008016032064128256, 0.7537537537537538, 0.008016032064128256, 0.7342342342342343, 0.01603206412825651, 0.7102102102102102, 0.02404809619238477, 0.7012012012012012, 0.03206412825651302, 0.6966966966966966, 0.07214428857715431, 0.6951951951951952, 0.08216432865731463, 0.6996996996996997, 0.09018036072144289, 0.6996996996996997, 0.11823647294589178, 0.6936936936936937, 0.17034068136272545, 0.6906906906906907, 0.20240480961923848, 0.6726726726726727, 0.23046092184368738, 0.6636636636636637, 0.24248496993987975, 0.6621621621621622, 0.533066132264529, 0.6636636636636637, 0.5511022044088176, 0.6681681681681682, 0.5651302605210421, 0.6681681681681682, 0.5891783567134269, 0.6801801801801802, 0.5951903807615231, 0.6831831831831832, 0.5971943887775552, 0.6891891891891891, 0.5951903807615231, 0.7087087087087087, 0.5871743486973948, 0.7147147147147147, 0.5991983967935872, 0.7252252252252253, 0.6012024048096193, 0.7432432432432432, 0.5891783567134269, 0.7537537537537538, 0.5891783567134269, 0.7567567567567568, 0.5971943887775552, 0.7642642642642643, 0.6012024048096193, 0.7747747747747747, 0.5971943887775552, 0.7867867867867868, 0.5851703406813628, 0.7987987987987988, 0.5691382765531062, 0.8048048048048048, 0.5290581162324649, 0.8123123123123123]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/84.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.24649298597194388, 0.6711711711711712, 0.23446893787575152, 0.6696696696696697, 0.20841683366733466, 0.512012012012012, 0.1843687374749499, 0.3408408408408408, 0.20040080160320642, 0.32732732732732733, 0.21442885771543085, 0.3048048048048048, 0.218436873747495, 0.30180180180180183, 0.24048096192384769, 0.2897897897897898, 0.2865731462925852, 0.2702702702702703, 0.2865731462925852, 0.23573573573573572, 0.28857715430861725, 0.22972972972972974, 0.2925851703406814, 0.22822822822822822, 0.3066132264529058, 0.25675675675675674, 0.3106212424849699, 0.2627627627627628, 0.3306613226452906, 0.26576576576576577, 0.3366733466933868, 0.25675675675675674, 0.3527054108216433, 0.2552552552552553, 0.40480961923847697, 0.27627627627627627, 0.4188376753507014, 0.2852852852852853, 0.42084168336673344, 0.2897897897897898, 0.41082164328657317, 0.3048048048048048, 0.41082164328657317, 0.3228228228228228, 0.41282565130260523, 0.33783783783783783, 0.4188376753507014, 0.34534534534534533, 0.4188376753507014, 0.39039039039039036, 0.4288577154308617, 0.47297297297297297, 0.42685370741482964, 0.5105105105105106, 0.4348697394789579, 0.5930930930930931, 0.4348697394789579, 0.6321321321321322, 0.3807615230460922, 0.6366366366366366, 0.3486973947895792, 0.6486486486486487, 0.32665330661322645, 0.6621621621621622, 0.30861723446893785, 0.6666666666666666, 0.2925851703406814, 0.6651651651651652, 0.27655310621242485, 0.6576576576576577, 0.2665330661322645, 0.6576576576576577, 0.2545090180360721, 0.6681681681681682, 0.24649298597194388, 0.6711711711711712]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5050100200400801, 0.6396396396396397, 0.4729458917835671, 0.6396396396396397, 0.4709418837675351, 0.6381381381381381, 0.45691382765531063, 0.6381381381381381, 0.45490981963927857, 0.6366366366366366, 0.4408817635270541, 0.6366366366366366, 0.43887775551102204, 0.6351351351351351, 0.43687374749499, 0.6351351351351351, 0.43687374749499, 0.6336336336336337, 0.43687374749499, 0.5945945945945946, 0.4348697394789579, 0.5930930930930931, 0.4348697394789579, 0.5675675675675675, 0.43286573146292584, 0.566066066066066, 0.43286573146292584, 0.5405405405405406, 0.4308617234468938, 0.539039039039039, 0.4308617234468938, 0.5135135135135135, 0.4288577154308617, 0.512012012012012, 0.4288577154308617, 0.487987987987988, 0.42685370741482964, 0.4864864864864865, 0.42685370741482964, 0.47897897897897895, 0.4288577154308617, 0.4774774774774775, 0.4288577154308617, 0.47597597597597596, 0.4308617234468938, 0.4744744744744745, 0.4308617234468938, 0.47147147147147145, 0.43286573146292584, 0.46996996996997, 0.43286573146292584, 0.46846846846846846, 0.4408817635270541, 0.4624624624624625, 0.4408817635270541, 0.46096096096096095, 0.44288577154308617, 0.4594594594594595, 0.44288577154308617, 0.45345345345345345, 0.4408817635270541, 0.4519519519519519, 0.4408817635270541, 0.45045045045045046, 0.44288577154308617, 0.44894894894894893, 0.44288577154308617, 0.44594594594594594, 0.44889779559118237, 0.44144144144144143, 0.45090180360721444, 0.44144144144144143, 0.45691382765531063, 0.4369369369369369, 0.4589178356713427, 0.4369369369369369, 0.46092184368737477, 0.43543543543543545, 0.46292585170340683, 0.43543543543543545, 0.4649298597194389, 0.4339339339339339, 0.46893787575150303, 0.4339339339339339, 0.4709418837675351, 0.43243243243243246, 0.4729458917835671, 0.43243243243243246, 0.4749498997995992, 0.43093093093093093, 0.4789579158316633, 0.43093093093093093, 0.48096192384769537, 0.4294294294294294, 0.48296593186372744, 0.4294294294294294, 0.4849699398797595, 0.42792792792792794, 0.49298597194388777, 0.42792792792792794, 0.49498997995991983, 0.4264264264264264, 0.5170340681362725, 0.4264264264264264, 0.5190380761523046, 0.42792792792792794, 0.5430861723446894, 0.42792792792792794, 0.5450901803607214, 0.4294294294294294, 0.5551102204408818, 0.4294294294294294, 0.5591182364729459, 0.43243243243243246, 0.561122244488978, 0.43243243243243246, 0.56312625250501, 0.4339339339339339, 0.5651302605210421, 0.4339339339339339, 0.5671342685370742, 0.43543543543543545, 0.5691382765531062, 0.43543543543543545, 0.5731462925851704, 0.43843843843843844, 0.5751503006012024, 0.43843843843843844, 0.5851703406813628, 0.4444444444444444, 0.5851703406813628, 0.44594594594594594, 0.5871743486973948, 0.44744744744744747, 0.5871743486973948, 0.45045045045045046, 0.5851703406813628, 0.4519519519519519, 0.5851703406813628, 0.4594594594594595, 0.5971943887775552, 0.46846846846846846, 0.5971943887775552, 0.5675675675675675, 0.5951903807615231, 0.5690690690690691, 0.5951903807615231, 0.6246246246246246, 0.593186372745491, 0.6261261261261262, 0.5771543086172345, 0.6261261261261262, 0.5751503006012024, 0.6276276276276276, 0.56312625250501, 0.6276276276276276, 0.561122244488978, 0.6291291291291291, 0.5571142284569138, 0.6291291291291291, 0.5551102204408818, 0.6306306306306306, 0.5511022044088176, 0.6306306306306306, 0.5490981963927856, 0.6321321321321322, 0.5410821643286573, 0.6321321321321322, 0.5390781563126252, 0.6336336336336337, 0.5350701402805611, 0.6336336336336337, 0.533066132264529, 0.6351351351351351, 0.5290581162324649, 0.6351351351351351, 0.5270541082164328, 0.6366366366366366, 0.5170340681362725, 0.6366366366366366, 0.5150300601202404, 0.6381381381381381, 0.5070140280561122, 0.6381381381381381, 0.5050100200400801, 0.6396396396396397]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.751503006012024, 0.6621621621621622, 0.7394789579158316, 0.6366366366366366, 0.7234468937875751, 0.6231231231231231, 0.5951903807615231, 0.6231231231231231, 0.5991983967935872, 0.44144144144144143, 0.6052104208416834, 0.4339339339339339, 0.6072144288577155, 0.42342342342342343, 0.6392785571142284, 0.3933933933933934, 0.6513026052104208, 0.35135135135135137, 0.6513026052104208, 0.33783783783783783, 0.657314629258517, 0.3333333333333333, 0.657314629258517, 0.3258258258258258, 0.6533066132264529, 0.3228228228228228, 0.655310621242485, 0.29429429429429427, 0.6593186372745491, 0.28678678678678676, 0.6713426853707415, 0.2822822822822823, 0.7214428857715431, 0.2807807807807808, 0.7535070140280561, 0.28678678678678676, 0.7615230460921844, 0.2912912912912913, 0.7595190380761523, 0.3228228228228228, 0.751503006012024, 0.32882882882882886, 0.751503006012024, 0.33483483483483484, 0.7555110220440882, 0.33933933933933935, 0.7555110220440882, 0.3858858858858859, 0.7615230460921844, 0.4039039039039039, 0.779559118236473, 0.42042042042042044, 0.7855711422845691, 0.4294294294294294, 0.7895791583166333, 0.46996996996997, 0.7715430861723447, 0.5690690690690691, 0.7655310621242485, 0.6276276276276276, 0.7615230460921844, 0.6441441441441441, 0.751503006012024, 0.6621621621621622]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.4188376753507014, 0.7822822822822822, 0.38276553106212424, 0.7807807807807807, 0.37074148296593185, 0.7777777777777778, 0.3306613226452906, 0.7597597597597597, 0.3026052104208417, 0.7597597597597597, 0.280561122244489, 0.7702702702702703, 0.26452905811623245, 0.7702702702702703, 0.2565130260521042, 0.7612612612612613, 0.2124248496993988, 0.7612612612612613, 0.20440881763527055, 0.7477477477477478, 0.20040080160320642, 0.7312312312312312, 0.20040080160320642, 0.7072072072072072, 0.20641282565130262, 0.6801801801801802, 0.21442885771543085, 0.6726726726726727, 0.22044088176352705, 0.6711711711711712, 0.250501002004008, 0.6711711711711712, 0.2665330661322645, 0.6591591591591591, 0.27655310621242485, 0.6591591591591591, 0.2925851703406814, 0.6666666666666666, 0.3186372745490982, 0.6666666666666666, 0.3346693386773547, 0.6606606606606606, 0.3466933867735471, 0.6516516516516516, 0.3807615230460922, 0.6381381381381381, 0.4168336673346693, 0.6336336336336337, 0.45691382765531063, 0.6396396396396397, 0.5150300601202404, 0.6396396396396397, 0.56312625250501, 0.6291291291291291, 0.6092184368737475, 0.6246246246246246, 0.7194388777555111, 0.6231231231231231, 0.7294589178356713, 0.6276276276276276, 0.7474949899799599, 0.6516516516516516, 0.7575150300601202, 0.6846846846846847, 0.7595190380761523, 0.7027027027027027, 0.7575150300601202, 0.7417417417417418, 0.7555110220440882, 0.7477477477477478, 0.7414829659318637, 0.7612612612612613, 0.7294589178356713, 0.7657657657657657, 0.6633266533066132, 0.7672672672672672, 0.6152304609218436, 0.7717717717717718, 0.5771543086172345, 0.7717717717717718, 0.56312625250501, 0.7687687687687688, 0.5130260521042084, 0.7672672672672672, 0.501002004008016, 0.7702702702702703, 0.46893787575150303, 0.7717717717717718, 0.44889779559118237, 0.7777777777777778, 0.4188376753507014, 0.7822822822822822]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/85.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.22044088176352705, 0.7102102102102102, 0.08617234468937876, 0.6636636636636637, 0.06613226452905811, 0.6591591591591591, 0.06412825651302605, 0.6531531531531531, 0.24448897795591182, 0.3888888888888889, 0.25851703406813625, 0.36936936936936937, 0.2665330661322645, 0.3633633633633634, 0.27054108216432865, 0.35435435435435436, 0.2965931863727455, 0.32732732732732733, 0.3046092184368738, 0.3228228228228228, 0.3927855711422846, 0.32432432432432434, 0.40480961923847697, 0.3048048048048048, 0.41082164328657317, 0.33633633633633636, 0.4168336673346693, 0.34234234234234234, 0.43687374749499, 0.33933933933933935, 0.44889779559118237, 0.34684684684684686, 0.46693386773547096, 0.37237237237237236, 0.4709418837675351, 0.38738738738738737, 0.44488977955911824, 0.4009009009009009, 0.4408817635270541, 0.43243243243243246, 0.4088176352705411, 0.47597597597597596, 0.24649298597194388, 0.6771771771771772, 0.22645290581162325, 0.7072072072072072, 0.22044088176352705, 0.7102102102102102]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5150300601202404, 0.6981981981981982, 0.49298597194388777, 0.6951951951951952, 0.4849699398797595, 0.6876876876876877, 0.48296593186372744, 0.6846846846846847, 0.4709418837675351, 0.6876876876876877, 0.4589178356713427, 0.6846846846846847, 0.45090180360721444, 0.6771771771771772, 0.44288577154308617, 0.6591591591591591, 0.4348697394789579, 0.6291291291291291, 0.43286573146292584, 0.46546546546546547, 0.45090180360721444, 0.43993993993993996, 0.46693386773547096, 0.42492492492492495, 0.46893787575150303, 0.3948948948948949, 0.4789579158316633, 0.37537537537537535, 0.4789579158316633, 0.36936936936936937, 0.4729458917835671, 0.3663663663663664, 0.4729458917835671, 0.33633633633633636, 0.4849699398797595, 0.3303303303303303, 0.5250501002004008, 0.32732732732732733, 0.5490981963927856, 0.3303303303303303, 0.5571142284569138, 0.3333333333333333, 0.56312625250501, 0.33783783783783783, 0.56312625250501, 0.36186186186186187, 0.5591182364729459, 0.36786786786786785, 0.5591182364729459, 0.3813813813813814, 0.5651302605210421, 0.4294294294294294, 0.5671342685370742, 0.4339339339339339, 0.5811623246492986, 0.44294294294294295, 0.593186372745491, 0.45645645645645644, 0.5971943887775552, 0.46396396396396394, 0.5971943887775552, 0.487987987987988, 0.593186372745491, 0.5075075075075075, 0.5891783567134269, 0.6381381381381381, 0.5831663326653307, 0.6546546546546547, 0.5711422845691383, 0.6756756756756757, 0.5531062124248497, 0.6906906906906907, 0.5430861723446894, 0.6921921921921922, 0.5290581162324649, 0.6831831831831832, 0.5150300601202404, 0.6981981981981982]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6833667334669339, 0.7147147147147147, 0.6392785571142284, 0.7132132132132132, 0.6372745490981964, 0.7102102102102102, 0.625250501002004, 0.7087087087087087, 0.5951903807615231, 0.6906906906906907, 0.5871743486973948, 0.6741741741741741, 0.591182364729459, 0.6381381381381381, 0.591182364729459, 0.6006006006006006, 0.6032064128256514, 0.5645645645645646, 0.6032064128256514, 0.545045045045045, 0.5971943887775552, 0.524024024024024, 0.5971943887775552, 0.49099099099099097, 0.6092184368737475, 0.47297297297297297, 0.625250501002004, 0.4594594594594595, 0.6292585170340681, 0.4519519519519519, 0.6292585170340681, 0.43843843843843844, 0.6232464929859719, 0.43243243243243246, 0.6212424849699398, 0.4159159159159159, 0.6332665330661322, 0.4099099099099099, 0.6372745490981964, 0.38738738738738737, 0.6452905811623246, 0.3813813813813814, 0.6653306613226453, 0.3768768768768769, 0.7014028056112225, 0.3768768768768769, 0.7294589178356713, 0.38288288288288286, 0.7394789579158316, 0.3888888888888889, 0.7394789579158316, 0.4159159159159159, 0.7474949899799599, 0.4189189189189189, 0.749498997995992, 0.43243243243243246, 0.7374749498997996, 0.44144144144144143, 0.7354709418837675, 0.45795795795795796, 0.7535070140280561, 0.4864864864864865, 0.7575150300601202, 0.503003003003003, 0.7575150300601202, 0.5225225225225225, 0.7414829659318637, 0.5555555555555556, 0.7434869739478958, 0.6141141141141141, 0.7354709418837675, 0.6831831831831832, 0.7294589178356713, 0.6936936936936937, 0.717434869739479, 0.7042042042042042, 0.6833667334669339, 0.7147147147147147]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.8637274549098196, 0.7312312312312312, 0.7975951903807615, 0.7282282282282282, 0.7635270541082164, 0.7117117117117117, 0.749498997995992, 0.6981981981981982, 0.7454909819639278, 0.6906906906906907, 0.7675350701402806, 0.5255255255255256, 0.7855711422845691, 0.5105105105105106, 0.7895791583166333, 0.4954954954954955, 0.8056112224448898, 0.487987987987988, 0.8196392785571143, 0.484984984984985, 0.8677354709418837, 0.4864864864864865, 0.9098196392785571, 0.496996996996997, 0.9338677354709419, 0.509009009009009, 0.935871743486974, 0.5285285285285285, 0.9418837675350702, 0.5330330330330331, 0.9458917835671342, 0.545045045045045, 0.905811623246493, 0.7117117117117117, 0.8977955911823647, 0.7207207207207207, 0.8897795591182365, 0.7222222222222222, 0.8837675350701403, 0.7267267267267268, 0.8637274549098196, 0.7312312312312312]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/86.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.1402805611222445, 0.7087087087087087, 0.028056112224448898, 0.6231231231231231, 0.028056112224448898, 0.6171171171171171, 0.03206412825651302, 0.6126126126126126, 0.07214428857715431, 0.5840840840840841, 0.11422845691382766, 0.5480480480480481, 0.15430861723446893, 0.5315315315315315, 0.18837675350701402, 0.5105105105105106, 0.21042084168336672, 0.5015015015015015, 0.46092184368737477, 0.36786786786786785, 0.5250501002004008, 0.3888888888888889, 0.5511022044088176, 0.4009009009009009, 0.5591182364729459, 0.4009009009009009, 0.5691382765531062, 0.3963963963963964, 0.5811623246492986, 0.3843843843843844, 0.5851703406813628, 0.3813813813813814, 0.5891783567134269, 0.3813813813813814, 0.5811623246492986, 0.4174174174174174, 0.5811623246492986, 0.44144144144144143, 0.593186372745491, 0.4444444444444444, 0.5991983967935872, 0.44894894894894893, 0.6032064128256514, 0.46396396396396394, 0.6032064128256514, 0.49099099099099097, 0.5971943887775552, 0.506006006006006, 0.5871743486973948, 0.509009009009009, 0.5571142284569138, 0.509009009009009, 0.5531062124248497, 0.5180180180180181, 0.5531062124248497, 0.5375375375375375, 0.5430861723446894, 0.5525525525525525, 0.3106212424849699, 0.6516516516516516, 0.218436873747495, 0.6501501501501501, 0.21042084168336672, 0.6546546546546547, 0.1903807615230461, 0.6561561561561562, 0.1743486973947896, 0.6606606606606606, 0.16032064128256512, 0.6696696696696697, 0.16032064128256512, 0.6831831831831832, 0.14428857715430862, 0.6936936936936937, 0.1402805611222445, 0.7087087087087087]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7054108216432866, 0.6906906906906907, 0.685370741482966, 0.6861861861861862, 0.6693386773547094, 0.6861861861861862, 0.6072144288577155, 0.6771771771771772, 0.5731462925851704, 0.6576576576576577, 0.5470941883767535, 0.6501501501501501, 0.5470941883767535, 0.6006006006006006, 0.5551102204408818, 0.5180180180180181, 0.5591182364729459, 0.509009009009009, 0.593186372745491, 0.509009009009009, 0.5991983967935872, 0.5045045045045045, 0.6032064128256514, 0.4954954954954955, 0.6032064128256514, 0.47897897897897895, 0.6072144288577155, 0.4774774774774775, 0.6513026052104208, 0.47597597597597596, 0.6893787575150301, 0.481981981981982, 0.7114228456913828, 0.49099099099099097, 0.7234468937875751, 0.5015015015015015, 0.7214428857715431, 0.512012012012012, 0.7354709418837675, 0.5285285285285285, 0.7374749498997996, 0.5420420420420421, 0.7154308617234469, 0.6771771771771772, 0.7134268537074149, 0.6861861861861862, 0.7054108216432866, 0.6906906906906907]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.811623246492986, 0.7402402402402403, 0.7855711422845691, 0.7387387387387387, 0.7775551102204409, 0.7372372372372372, 0.7735470941883767, 0.7327327327327328, 0.7735470941883767, 0.7087087087087087, 0.7655310621242485, 0.6921921921921922, 0.7555110220440882, 0.6861861861861862, 0.7154308617234469, 0.6861861861861862, 0.7294589178356713, 0.5930930930930931, 0.7374749498997996, 0.5705705705705706, 0.7354709418837675, 0.503003003003003, 0.7374749498997996, 0.493993993993994, 0.751503006012024, 0.47297297297297297, 0.779559118236473, 0.45045045045045046, 0.781563126252505, 0.43243243243243246, 0.7735470941883767, 0.4219219219219219, 0.7735470941883767, 0.4099099099099099, 0.7895791583166333, 0.3993993993993994, 0.7955911823647295, 0.37537537537537535, 0.8036072144288577, 0.3708708708708709, 0.8216432865731463, 0.3663663663663664, 0.8637274549098196, 0.3663663663663664, 0.9018036072144289, 0.37537537537537535, 0.9158316633266533, 0.3843843843843844, 0.9118236472945892, 0.4144144144144144, 0.9218436873747495, 0.42042042042042044, 0.9218436873747495, 0.43093093093093093, 0.9198396793587175, 0.43543543543543545, 0.9038076152304609, 0.44744744744744747, 0.9018036072144289, 0.46546546546546547, 0.9178356713426854, 0.487987987987988, 0.9218436873747495, 0.5225225225225225, 0.9178356713426854, 0.539039039039039, 0.8957915831663327, 0.5690690690690691, 0.8917835671342685, 0.5900900900900901, 0.8917835671342685, 0.6396396396396397, 0.8697394789579158, 0.7147147147147147, 0.8617234468937875, 0.7237237237237237, 0.8476953907815631, 0.7312312312312312, 0.811623246492986, 0.7402402402402403]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.30861723446893785, 0.8108108108108109, 0.20440881763527055, 0.8108108108108109, 0.16432865731462926, 0.8018018018018018, 0.1523046092184369, 0.7927927927927928, 0.1462925851703407, 0.7852852852852853, 0.1462925851703407, 0.7762762762762763, 0.15030060120240482, 0.7702702702702703, 0.14428857715430862, 0.7687687687687688, 0.13827655310621242, 0.7597597597597597, 0.13827655310621242, 0.7447447447447447, 0.14829659318637275, 0.7327327327327328, 0.1623246492985972, 0.7282282282282282, 0.1623246492985972, 0.7237237237237237, 0.15030060120240482, 0.7207207207207207, 0.14428857715430862, 0.7132132132132132, 0.14428857715430862, 0.6981981981981982, 0.1462925851703407, 0.6936936936936937, 0.16032064128256512, 0.6831831831831832, 0.1623246492985972, 0.6696696696696697, 0.17234468937875752, 0.6636636636636637, 0.19438877755511022, 0.6561561561561562, 0.21042084168336672, 0.6561561561561562, 0.22645290581162325, 0.6501501501501501, 0.5390781563126252, 0.6516516516516516, 0.5731462925851704, 0.6591591591591591, 0.6072144288577155, 0.6786786786786787, 0.6292585170340681, 0.6801801801801802, 0.6693386773547094, 0.6876876876876877, 0.6913827655310621, 0.6876876876876877, 0.6993987975951904, 0.6906906906906907, 0.7294589178356713, 0.6861861861861862, 0.7535070140280561, 0.6861861861861862, 0.7635270541082164, 0.6921921921921922, 0.7715430861723447, 0.7072072072072072, 0.7735470941883767, 0.7492492492492493, 0.7715430861723447, 0.7567567567567568, 0.7595190380761523, 0.7657657657657657, 0.717434869739479, 0.7657657657657657, 0.7114228456913828, 0.7612612612612613, 0.7054108216432866, 0.7612612612612613, 0.6953907815631263, 0.7657657657657657, 0.6793587174348698, 0.7657657657657657, 0.6312625250501002, 0.7747747747747747, 0.6112224448897795, 0.7762762762762763, 0.5771543086172345, 0.7987987987987988, 0.5430861723446894, 0.8078078078078078, 0.30861723446893785, 0.8108108108108109]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/87.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.13026052104208416, 0.6936936936936937, 0.12625250501002003, 0.6936936936936937, 0.10020040080160321, 0.6726726726726727, 0.0781563126252505, 0.6606606606606606, 0.006012024048096192, 0.6096096096096096, 0.01002004008016032, 0.6006006006006006, 0.08216432865731463, 0.5435435435435435, 0.09619238476953908, 0.5375375375375375, 0.218436873747495, 0.4594594594594595, 0.2925851703406814, 0.4159159159159159, 0.3627254509018036, 0.3708708708708709, 0.37074148296593185, 0.3633633633633634, 0.40080160320641284, 0.36786786786786785, 0.4589178356713427, 0.3888888888888889, 0.4749498997995992, 0.3813813813813814, 0.48897795591182364, 0.36786786786786785, 0.49298597194388777, 0.3708708708708709, 0.48296593186372744, 0.38738738738738737, 0.48096192384769537, 0.42042042042042044, 0.4969939879759519, 0.42342342342342343, 0.5050100200400801, 0.43093093093093093, 0.5090180360721442, 0.44294294294294295, 0.5090180360721442, 0.4744744744744745, 0.5050100200400801, 0.47897897897897895, 0.47695390781563124, 0.481981981981982, 0.4789579158316633, 0.49099099099099097, 0.4709418837675351, 0.496996996996997, 0.4649298597194389, 0.515015015015015, 0.4589178356713427, 0.5195195195195195, 0.3727454909819639, 0.566066066066066, 0.250501002004008, 0.6276276276276276, 0.1523046092184369, 0.6816816816816816, 0.1402805611222445, 0.6861861861861862, 0.13026052104208416, 0.6936936936936937]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.4729458917835671, 0.6681681681681682, 0.4729458917835671, 0.6666666666666666, 0.4729458917835671, 0.6156156156156156, 0.4709418837675351, 0.6141141141141141, 0.4709418837675351, 0.5855855855855856, 0.46893787575150303, 0.5840840840840841, 0.46893787575150303, 0.5570570570570571, 0.46693386773547096, 0.5555555555555556, 0.46693386773547096, 0.5045045045045045, 0.4709418837675351, 0.5015015015015015, 0.4709418837675351, 0.5, 0.4729458917835671, 0.4984984984984985, 0.4729458917835671, 0.496996996996997, 0.4789579158316633, 0.4924924924924925, 0.4789579158316633, 0.4864864864864865, 0.48096192384769537, 0.484984984984985, 0.48096192384769537, 0.48348348348348347, 0.48296593186372744, 0.481981981981982, 0.501002004008016, 0.481981981981982, 0.5090180360721442, 0.47597597597597596, 0.5090180360721442, 0.46546546546546547, 0.5090180360721442, 0.46546546546546547, 0.5130260521042084, 0.46546546546546547, 0.5150300601202404, 0.46396396396396394, 0.5230460921843687, 0.46396396396396394, 0.5250501002004008, 0.4624624624624625, 0.5350701402805611, 0.4624624624624625, 0.5370741482965932, 0.46096096096096095, 0.561122244488978, 0.46096096096096095, 0.56312625250501, 0.4624624624624625, 0.5751503006012024, 0.4624624624624625, 0.5771543086172345, 0.46396396396396394, 0.5871743486973948, 0.46396396396396394, 0.5891783567134269, 0.46546546546546547, 0.591182364729459, 0.46546546546546547, 0.593186372745491, 0.466966966966967, 0.5951903807615231, 0.466966966966967, 0.5971943887775552, 0.46846846846846846, 0.6032064128256514, 0.46846846846846846, 0.6052104208416834, 0.46846846846846846, 0.6052104208416834, 0.46996996996997, 0.6052104208416834, 0.47147147147147145, 0.6092184368737475, 0.47147147147147145, 0.6112224448897795, 0.47147147147147145, 0.6112224448897795, 0.47297297297297297, 0.6152304609218436, 0.47597597597597596, 0.6152304609218436, 0.4774774774774775, 0.6192384769539078, 0.4804804804804805, 0.6192384769539078, 0.49099099099099097, 0.6232464929859719, 0.493993993993994, 0.6232464929859719, 0.4954954954954955, 0.627254509018036, 0.4984984984984985, 0.627254509018036, 0.5, 0.6312625250501002, 0.503003003003003, 0.6312625250501002, 0.5045045045045045, 0.6332665330661322, 0.506006006006006, 0.6332665330661322, 0.6276276276276276, 0.6312625250501002, 0.6291291291291291, 0.6232464929859719, 0.6291291291291291, 0.6212424849699398, 0.6306306306306306, 0.6112224448897795, 0.6306306306306306, 0.6092184368737475, 0.6321321321321322, 0.5871743486973948, 0.6321321321321322, 0.5851703406813628, 0.6336336336336337, 0.5731462925851704, 0.6336336336336337, 0.5711422845691383, 0.6351351351351351, 0.5591182364729459, 0.6351351351351351, 0.5571142284569138, 0.6366366366366366, 0.5350701402805611, 0.6366366366366366, 0.533066132264529, 0.6381381381381381, 0.5250501002004008, 0.6381381381381381, 0.5230460921843687, 0.6396396396396397, 0.5210420841683366, 0.6396396396396397, 0.5190380761523046, 0.6411411411411412, 0.5170340681362725, 0.6411411411411412, 0.5130260521042084, 0.6441441441441441, 0.5070140280561122, 0.6441441441441441, 0.501002004008016, 0.6486486486486487, 0.49899799599198397, 0.6486486486486487, 0.48897795591182364, 0.6561561561561562, 0.48697394789579157, 0.6561561561561562, 0.47695390781563124, 0.6636636636636637, 0.47695390781563124, 0.6651651651651652, 0.4729458917835671, 0.6681681681681682]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6412825651302605, 0.6291291291291291, 0.6332665330661322, 0.6276276276276276, 0.6332665330661322, 0.575075075075075, 0.6412825651302605, 0.5615615615615616, 0.6452905811623246, 0.539039039039039, 0.6432865731462926, 0.5135135135135135, 0.6372745490981964, 0.5015015015015015, 0.6372745490981964, 0.48348348348348347, 0.6452905811623246, 0.4594594594594595, 0.6633266533066132, 0.44144144144144143, 0.6713426853707415, 0.42792792792792794, 0.6693386773547094, 0.4174174174174174, 0.6613226452905812, 0.40540540540540543, 0.6633266533066132, 0.3948948948948949, 0.6753507014028056, 0.38738738738738737, 0.6753507014028056, 0.3708708708708709, 0.6793587174348698, 0.36186186186186187, 0.685370741482966, 0.35735735735735735, 0.7194388777555111, 0.35135135135135137, 0.7695390781563126, 0.35585585585585583, 0.7855711422845691, 0.36486486486486486, 0.7855711422845691, 0.3918918918918919, 0.7915831663326653, 0.3933933933933934, 0.7955911823647295, 0.4009009009009009, 0.7935871743486974, 0.4114114114114114, 0.781563126252505, 0.4264264264264264, 0.781563126252505, 0.43843843843843844, 0.7995991983967936, 0.4594594594594595, 0.8076152304609219, 0.4864864864864865, 0.8076152304609219, 0.496996996996997, 0.7895791583166333, 0.5375375375375375, 0.7935871743486974, 0.6156156156156156, 0.7895791583166333, 0.6186186186186187, 0.7014028056112225, 0.6216216216216216, 0.6412825651302605, 0.6291291291291291]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5731462925851704, 0.7867867867867868, 0.5350701402805611, 0.7867867867867868, 0.5070140280561122, 0.7777777777777778, 0.48897795591182364, 0.7672672672672672, 0.4729458917835671, 0.7642642642642643, 0.39879759519038077, 0.7642642642642643, 0.38276553106212424, 0.7612612612612613, 0.3807615230460922, 0.7657657657657657, 0.3727454909819639, 0.7687687687687688, 0.3346693386773547, 0.7702702702702703, 0.3286573146292585, 0.7612612612612613, 0.3246492985971944, 0.6966966966966966, 0.3486973947895792, 0.6906906906906907, 0.3687374749498998, 0.6906906906906907, 0.3727454909819639, 0.6936936936936937, 0.3787575150300601, 0.6936936936936937, 0.3927855711422846, 0.6876876876876877, 0.4649298597194389, 0.6741741741741741, 0.5070140280561122, 0.6456456456456456, 0.5130260521042084, 0.6456456456456456, 0.5250501002004008, 0.6396396396396397, 0.5470941883767535, 0.6366366366366366, 0.5711422845691383, 0.6366366366366366, 0.5991983967935872, 0.6321321321321322, 0.6593186372745491, 0.6291291291291291, 0.7014028056112225, 0.6231231231231231, 0.7474949899799599, 0.6216216216216216, 0.7615230460921844, 0.6186186186186187, 0.8196392785571143, 0.6186186186186187, 0.8557114228456913, 0.6216216216216216, 0.8777555110220441, 0.6291291291291291, 0.8877755511022044, 0.6351351351351351, 0.8917835671342685, 0.6471471471471472, 0.8857715430861723, 0.6576576576576577, 0.9018036072144289, 0.6636636636636637, 0.9118236472945892, 0.6726726726726727, 0.9118236472945892, 0.6816816816816816, 0.905811623246493, 0.6891891891891891, 0.8957915831663327, 0.6951951951951952, 0.9118236472945892, 0.7087087087087087, 0.9118236472945892, 0.7207207207207207, 0.9078156312625251, 0.7282282282282282, 0.8817635270541082, 0.7432432432432432, 0.8476953907815631, 0.7567567567567568, 0.6893787575150301, 0.7717717717717718, 0.625250501002004, 0.7807807807807807, 0.593186372745491, 0.7822822822822822, 0.5731462925851704, 0.7867867867867868]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/89.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.1623246492985972, 0.7627627627627628, 0.1462925851703407, 0.7612612612612613, 0.1462925851703407, 0.7492492492492493, 0.09018036072144289, 0.45645645645645644, 0.07014028056112225, 0.37237237237237236, 0.07014028056112225, 0.3633633633633634, 0.0781563126252505, 0.34534534534534533, 0.0781563126252505, 0.33633633633633636, 0.0841683366733467, 0.32732732732732733, 0.0841683366733467, 0.3138138138138138, 0.09218436873747494, 0.2912912912912913, 0.09018036072144289, 0.25825825825825827, 0.09218436873747494, 0.25375375375375375, 0.10020040080160321, 0.24924924924924924, 0.12424849699398798, 0.24774774774774774, 0.3226452905811623, 0.25225225225225223, 0.3306613226452906, 0.25375375375375375, 0.33867735470941884, 0.25975975975975973, 0.3366733466933868, 0.2972972972972973, 0.342685370741483, 0.31981981981981983, 0.3466933867735471, 0.32432432432432434, 0.3486973947895792, 0.4219219219219219, 0.35671342685370744, 0.5180180180180181, 0.35671342685370744, 0.6141141141141141, 0.36072144288577157, 0.6951951951951952, 0.36072144288577157, 0.7252252252252253, 0.35671342685370744, 0.7462462462462462, 0.35070140280561124, 0.7537537537537538, 0.342685370741483, 0.7567567567567568, 0.1623246492985972, 0.7627627627627628]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.45090180360721444, 0.7522522522522522, 0.42685370741482964, 0.7507507507507507, 0.40080160320641284, 0.7447447447447447, 0.3807615230460922, 0.7357357357357357, 0.37074148296593185, 0.7252252252252253, 0.3667334669338677, 0.7177177177177178, 0.3627254509018036, 0.6951951951951952, 0.35671342685370744, 0.5465465465465466, 0.3587174348697395, 0.524024024024024, 0.3727454909819639, 0.512012012012012, 0.37074148296593185, 0.503003003003003, 0.3787575150300601, 0.4954954954954955, 0.3807615230460922, 0.4894894894894895, 0.40480961923847697, 0.4804804804804805, 0.44288577154308617, 0.4744744744744745, 0.4749498997995992, 0.47597597597597596, 0.5170340681362725, 0.484984984984985, 0.533066132264529, 0.4984984984984985, 0.531062124248497, 0.512012012012012, 0.5470941883767535, 0.5255255255255256, 0.5430861723446894, 0.6981981981981982, 0.5390781563126252, 0.7162162162162162, 0.5250501002004008, 0.7312312312312312, 0.48897795591182364, 0.7477477477477478, 0.45090180360721444, 0.7522522522522522]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6172344689378757, 0.7102102102102102, 0.5951903807615231, 0.7102102102102102, 0.5891783567134269, 0.7057057057057057, 0.5791583166332666, 0.6921921921921922, 0.5651302605210421, 0.7012012012012012, 0.5571142284569138, 0.7012012012012012, 0.5430861723446894, 0.6921921921921922, 0.5490981963927856, 0.5255255255255256, 0.531062124248497, 0.509009009009009, 0.533066132264529, 0.4954954954954955, 0.5230460921843687, 0.4864864864864865, 0.5230460921843687, 0.46096096096096095, 0.5270541082164328, 0.45495495495495497, 0.5290581162324649, 0.44144144144144143, 0.5370741482965932, 0.43543543543543545, 0.5390781563126252, 0.4294294294294294, 0.5470941883767535, 0.4219219219219219, 0.5571142284569138, 0.4159159159159159, 0.5671342685370742, 0.3978978978978979, 0.5711422845691383, 0.36936936936936937, 0.5771543086172345, 0.35735735735735735, 0.5771543086172345, 0.3483483483483483, 0.5811623246492986, 0.34384384384384387, 0.5771543086172345, 0.3333333333333333, 0.5771543086172345, 0.3078078078078078, 0.5871743486973948, 0.3003003003003003, 0.6192384769539078, 0.2957957957957958, 0.6452905811623246, 0.2957957957957958, 0.6653306613226453, 0.2987987987987988, 0.6773547094188377, 0.3033033033033033, 0.6833667334669339, 0.3108108108108108, 0.6793587174348698, 0.3228228228228228, 0.6793587174348698, 0.33783783783783783, 0.6733466933867736, 0.34234234234234234, 0.6813627254509018, 0.4174174174174174, 0.687374749498998, 0.42042042042042044, 0.687374749498998, 0.42342342342342343, 0.7054108216432866, 0.43993993993993996, 0.7114228456913828, 0.45345345345345345, 0.7114228456913828, 0.4774774774774775, 0.6993987975951904, 0.5525525525525525, 0.6953907815631263, 0.6036036036036037, 0.685370741482966, 0.6591591591591591, 0.6693386773547094, 0.6891891891891891, 0.6513026052104208, 0.7012012012012012, 0.6392785571142284, 0.7012012012012012, 0.6292585170340681, 0.6981981981981982, 0.6172344689378757, 0.7102102102102102]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7715430861723447, 0.7312312312312312, 0.7394789579158316, 0.7252252252252253, 0.7254509018036072, 0.7177177177177178, 0.7154308617234469, 0.7162162162162162, 0.6913827655310621, 0.6936936936936937, 0.687374749498998, 0.6846846846846847, 0.687374749498998, 0.6621621621621622, 0.6933867735470942, 0.6366366366366366, 0.6953907815631263, 0.6036036036036037, 0.7134268537074149, 0.5540540540540541, 0.7134268537074149, 0.521021021021021, 0.7094188376753507, 0.496996996996997, 0.7194388777555111, 0.47147147147147145, 0.7555110220440882, 0.43543543543543545, 0.7555110220440882, 0.4189189189189189, 0.7474949899799599, 0.4084084084084084, 0.7474949899799599, 0.3948948948948949, 0.7615230460921844, 0.3888888888888889, 0.7655310621242485, 0.36936936936936937, 0.7715430861723447, 0.3588588588588589, 0.7875751503006012, 0.35285285285285284, 0.8376753507014028, 0.35285285285285284, 0.875751503006012, 0.36036036036036034, 0.8877755511022044, 0.3663663663663664, 0.8857715430861723, 0.3978978978978979, 0.8957915831663327, 0.40540540540540543, 0.8957915831663327, 0.4159159159159159, 0.8797595190380761, 0.4294294294294294, 0.8777555110220441, 0.4519519519519519, 0.8937875751503006, 0.47597597597597596, 0.8997995991983968, 0.509009009009009, 0.8937875751503006, 0.5180180180180181, 0.8897795591182365, 0.5345345345345346, 0.8817635270541082, 0.5435435435435435, 0.8717434869739479, 0.5675675675675675, 0.8717434869739479, 0.6231231231231231, 0.8657314629258517, 0.6366366366366366, 0.8617234468937875, 0.6651651651651652, 0.8557114228456913, 0.6756756756756757, 0.8537074148296593, 0.6966966966966966, 0.8476953907815631, 0.7087087087087087, 0.8376753507014028, 0.7177177177177178, 0.8216432865731463, 0.7252252252252253, 0.8016032064128257, 0.7297297297297297, 0.7715430861723447, 0.7312312312312312]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/9.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.23446893787575152, 0.7147147147147147, 0.22044088176352705, 0.7147147147147147, 0.218436873747495, 0.7117117117117117, 0.21643286573146292, 0.6876876876876877, 0.20240480961923848, 0.6186186186186187, 0.19438877755511022, 0.56006006006006, 0.18837675350701402, 0.4594594594594595, 0.17835671342685372, 0.4069069069069069, 0.1743486973947896, 0.3663663663663664, 0.1683366733466934, 0.34534534534534533, 0.1683366733466934, 0.27927927927927926, 0.16432865731462926, 0.24174174174174173, 0.1743486973947896, 0.23423423423423423, 0.24649298597194388, 0.23423423423423423, 0.28857715430861725, 0.23723723723723725, 0.36072144288577157, 0.23573573573573572, 0.374749498997996, 0.23873873873873874, 0.3807615230460922, 0.24174174174174173, 0.3787575150300601, 0.2852852852852853, 0.38276553106212424, 0.2897897897897898, 0.39478957915831664, 0.3303303303303303, 0.39879759519038077, 0.33483483483483484, 0.40080160320641284, 0.5345345345345346, 0.4088176352705411, 0.6906906906906907, 0.40480961923847697, 0.6951951951951952, 0.23446893787575152, 0.7147147147147147]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7054108216432866, 0.6936936936936937, 0.6773547094188377, 0.6936936936936937, 0.6432865731462926, 0.6876876876876877, 0.6212424849699398, 0.6771771771771772, 0.6032064128256514, 0.6561561561561562, 0.6052104208416834, 0.5720720720720721, 0.6172344689378757, 0.5405405405405406, 0.6172344689378757, 0.5015015015015015, 0.6112224448897795, 0.48348348348348347, 0.6112224448897795, 0.46396396396396394, 0.6232464929859719, 0.43843843843843844, 0.6352705410821643, 0.4294294294294294, 0.6472945891783567, 0.41291291291291293, 0.6472945891783567, 0.3978978978978979, 0.6392785571142284, 0.3843843843843844, 0.6392785571142284, 0.37537537537537535, 0.6513026052104208, 0.3663663663663664, 0.655310621242485, 0.3408408408408408, 0.6653306613226453, 0.33483483483483484, 0.6913827655310621, 0.3303303303303303, 0.749498997995992, 0.3333333333333333, 0.7615230460921844, 0.33783783783783783, 0.7675350701402806, 0.34234234234234234, 0.7675350701402806, 0.36936936936936937, 0.7755511022044088, 0.37537537537537535, 0.7775551102204409, 0.3843843843843844, 0.7635270541082164, 0.3978978978978979, 0.7615230460921844, 0.4144144144144144, 0.781563126252505, 0.44594594594594594, 0.7875751503006012, 0.466966966966967, 0.7855711422845691, 0.493993993993994, 0.7775551102204409, 0.503003003003003, 0.7755511022044088, 0.5135135135135135, 0.7695390781563126, 0.5225225225225225, 0.7695390781563126, 0.566066066066066, 0.7735470941883767, 0.5900900900900901, 0.7675350701402806, 0.6126126126126126, 0.7615230460921844, 0.6666666666666666, 0.749498997995992, 0.6801801801801802, 0.7214428857715431, 0.6921921921921922, 0.7054108216432866, 0.6936936936936937]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/90.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.23046092184368738, 0.7822822822822822, 0.22244488977955912, 0.7822822822822822, 0.20240480961923848, 0.7687687687687688, 0.1843687374749499, 0.7807807807807807, 0.17234468937875752, 0.7807807807807807, 0.16432865731462926, 0.7777777777777778, 0.1462925851703407, 0.7597597597597597, 0.12224448897795591, 0.7312312312312312, 0.11623246492985972, 0.7132132132132132, 0.11222444889779559, 0.6816816816816816, 0.09819639278557114, 0.6366366366366366, 0.0841683366733467, 0.5645645645645646, 0.07615230460921844, 0.5465465465465466, 0.07615230460921844, 0.527027027027027, 0.08016032064128256, 0.512012012012012, 0.09218436873747494, 0.4924924924924925, 0.1062124248496994, 0.47897897897897895, 0.10821643286573146, 0.46846846846846846, 0.11022044088176353, 0.4069069069069069, 0.10220440881763528, 0.4009009009009009, 0.09619238476953908, 0.36036036036036034, 0.12224448897795591, 0.34984984984984985, 0.14428857715430862, 0.34684684684684686, 0.18036072144288579, 0.34684684684684686, 0.19839679358717435, 0.34984984984984985, 0.21042084168336672, 0.35435435435435436, 0.218436873747495, 0.3888888888888889, 0.21442885771543085, 0.4009009009009009, 0.22645290581162325, 0.4219219219219219, 0.24048096192384769, 0.46846846846846846, 0.24649298597194388, 0.47147147147147145, 0.2725450901803607, 0.4894894894894895, 0.28256513026052105, 0.503003003003003, 0.28857715430861725, 0.5180180180180181, 0.30060120240480964, 0.6441441441441441, 0.3066132264529058, 0.6771771771771772, 0.3046092184368738, 0.7237237237237237, 0.29458917835671344, 0.7492492492492493, 0.28857715430861725, 0.7522522522522522, 0.28857715430861725, 0.7552552552552553, 0.28256513026052105, 0.7597597597597597, 0.2685370741482966, 0.7627627627627628, 0.2565130260521042, 0.7612612612612613, 0.2545090180360721, 0.7687687687687688, 0.24448897795591182, 0.7777777777777778, 0.23046092184368738, 0.7822822822822822]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.3466933867735471, 0.7582582582582582, 0.32064128256513025, 0.7582582582582582, 0.3166332665330661, 0.7522522522522522, 0.28857715430861725, 0.4369369369369369, 0.280561122244489, 0.3978978978978979, 0.2845691382765531, 0.3918918918918919, 0.28857715430861725, 0.2882882882882883, 0.29458917835671344, 0.2822822822822823, 0.30060120240480964, 0.2807807807807808, 0.501002004008016, 0.2822822822822823, 0.5110220440881763, 0.2852852852852853, 0.5150300601202404, 0.29429429429429427, 0.5110220440881763, 0.3003003003003003, 0.5090180360721442, 0.34384384384384387, 0.5150300601202404, 0.38288288288288286, 0.5210420841683366, 0.3918918918918919, 0.5170340681362725, 0.40540540540540543, 0.5170340681362725, 0.47897897897897895, 0.5130260521042084, 0.5345345345345346, 0.5110220440881763, 0.7432432432432432, 0.5050100200400801, 0.7492492492492493, 0.49498997995991983, 0.7522522522522522, 0.4248496993987976, 0.7522522522522522, 0.3466933867735471, 0.7582582582582582]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.6092184368737475, 0.7477477477477478, 0.5651302605210421, 0.7447447447447447, 0.5430861723446894, 0.7372372372372372, 0.531062124248497, 0.7297297297297297, 0.5130260521042084, 0.7102102102102102, 0.5150300601202404, 0.5330330330330331, 0.531062124248497, 0.5165165165165165, 0.531062124248497, 0.506006006006006, 0.5390781563126252, 0.4984984984984985, 0.5470941883767535, 0.493993993993994, 0.5771543086172345, 0.487987987987988, 0.6312625250501002, 0.487987987987988, 0.6412825651302605, 0.4894894894894895, 0.6733466933867736, 0.5015015015015015, 0.6833667334669339, 0.5105105105105106, 0.6833667334669339, 0.524024024024024, 0.6913827655310621, 0.5315315315315315, 0.6973947895791583, 0.5435435435435435, 0.6933867735470942, 0.6021021021021021, 0.6813627254509018, 0.6801801801801802, 0.6813627254509018, 0.7057057057057057, 0.6733466933867736, 0.7237237237237237, 0.6653306613226453, 0.7312312312312312, 0.6412825651302605, 0.7417417417417418, 0.6092184368737475, 0.7477477477477478]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.779559118236473, 0.7567567567567568, 0.7535070140280561, 0.7552552552552553, 0.7434869739478958, 0.7507507507507507, 0.7154308617234469, 0.7447447447447447, 0.6913827655310621, 0.7282282282282282, 0.6793587174348698, 0.7117117117117117, 0.6933867735470942, 0.6036036036036037, 0.6993987975951904, 0.5945945945945946, 0.7014028056112225, 0.5840840840840841, 0.7014028056112225, 0.5480480480480481, 0.6973947895791583, 0.524024024024024, 0.7094188376753507, 0.4984984984984985, 0.7434869739478958, 0.4624624624624625, 0.7434869739478958, 0.44894894894894893, 0.7354709418837675, 0.44144144144144143, 0.7334669338677354, 0.4339339339339339, 0.7394789579158316, 0.42342342342342343, 0.7434869739478958, 0.42042042042042044, 0.751503006012024, 0.4189189189189189, 0.7535070140280561, 0.3948948948948949, 0.7615230460921844, 0.38738738738738737, 0.781563126252505, 0.3813813813813814, 0.8196392785571143, 0.37987987987987987, 0.8617234468937875, 0.3888888888888889, 0.8777555110220441, 0.3978978978978979, 0.875751503006012, 0.42792792792792794, 0.8857715430861723, 0.43843843843843844, 0.8837675350701403, 0.44894894894894893, 0.8697394789579158, 0.46096096096096095, 0.8657314629258517, 0.46996996996997, 0.8657314629258517, 0.481981981981982, 0.8797595190380761, 0.496996996996997, 0.8877755511022044, 0.521021021021021, 0.8877755511022044, 0.5420420420420421, 0.8637274549098196, 0.5900900900900901, 0.8617234468937875, 0.6531531531531531, 0.8416833667334669, 0.7297297297297297, 0.8356713426853707, 0.7387387387387387, 0.8216432865731463, 0.7477477477477478, 0.8036072144288577, 0.7537537537537538, 0.779559118236473, 0.7567567567567568]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/91.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.8557114228456913, 0.8228228228228228, 0.6773547094188377, 0.8198198198198198, 0.23446893787575152, 0.8198198198198198, 0.19438877755511022, 0.7927927927927928, 0.156312625250501, 0.7582582582582582, 0.11222444889779559, 0.7567567567567568, 0.10220440881763528, 0.7507507507507507, 0.10020040080160321, 0.7447447447447447, 0.15430861723446893, 0.6546546546546547, 0.15831663326653306, 0.6516516516516516, 0.17635270541082165, 0.6471471471471472, 0.20641282565130262, 0.6471471471471472, 0.21643286573146292, 0.6231231231231231, 0.24448897795591182, 0.5900900900900901, 0.25250501002004005, 0.5855855855855856, 0.561122244488978, 0.5855855855855856, 0.8216432865731463, 0.5825825825825826, 0.8376753507014028, 0.5930930930930931, 0.8957915831663327, 0.6846846846846847, 0.8657314629258517, 0.7927927927927928, 0.8577154308617234, 0.8093093093093093, 0.8557114228456913, 0.8228228228228228]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.26452905811623245, 0.5855855855855856, 0.2565130260521042, 0.5855855855855856, 0.2545090180360721, 0.581081081081081, 0.23246492985971945, 0.45795795795795796, 0.23446893787575152, 0.4219219219219219, 0.2605210420841683, 0.3918918918918919, 0.26452905811623245, 0.37537537537537535, 0.26452905811623245, 0.32732732732732733, 0.2685370741482966, 0.3123123123123123, 0.2625250501002004, 0.30930930930930933, 0.2605210420841683, 0.3048048048048048, 0.2565130260521042, 0.2702702702702703, 0.2685370741482966, 0.26426426426426425, 0.28857715430861725, 0.25975975975975973, 0.342685370741483, 0.25825825825825827, 0.3627254509018036, 0.26426426426426425, 0.3687374749498998, 0.26876876876876876, 0.3727454909819639, 0.3033033033033033, 0.3667334669338677, 0.30930930930930933, 0.3667334669338677, 0.3138138138138138, 0.3727454909819639, 0.32432432432432434, 0.374749498997996, 0.3408408408408408, 0.3847695390781563, 0.36036036036036034, 0.3867735470941884, 0.37987987987987987, 0.3927855711422846, 0.38738738738738737, 0.4168336673346693, 0.40540540540540543, 0.4308617234468938, 0.42492492492492495, 0.4308617234468938, 0.4804804804804805, 0.43687374749499, 0.5825825825825826, 0.26452905811623245, 0.5855855855855856]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5731462925851704, 0.5840840840840841, 0.43687374749499, 0.5840840840840841, 0.43687374749499, 0.5825825825825826, 0.43687374749499, 0.536036036036036, 0.4348697394789579, 0.5345345345345346, 0.4348697394789579, 0.484984984984985, 0.43286573146292584, 0.48348348348348347, 0.43286573146292584, 0.47297297297297297, 0.4348697394789579, 0.47147147147147145, 0.4348697394789579, 0.46996996996997, 0.43887775551102204, 0.466966966966967, 0.43887775551102204, 0.46546546546546547, 0.4468937875751503, 0.4594594594594595, 0.4468937875751503, 0.45795795795795796, 0.4529058116232465, 0.45345345345345345, 0.4529058116232465, 0.45045045045045046, 0.45090180360721444, 0.44894894894894893, 0.45090180360721444, 0.4444444444444444, 0.4529058116232465, 0.44294294294294295, 0.4529058116232465, 0.44144144144144143, 0.45490981963927857, 0.43993993993993996, 0.45490981963927857, 0.4369369369369369, 0.45490981963927857, 0.4369369369369369, 0.45691382765531063, 0.4369369369369369, 0.46092184368737477, 0.4339339339339339, 0.46292585170340683, 0.4339339339339339, 0.46693386773547096, 0.43093093093093093, 0.4709418837675351, 0.43093093093093093, 0.4729458917835671, 0.4294294294294294, 0.4749498997995992, 0.4294294294294294, 0.47695390781563124, 0.42792792792792794, 0.4789579158316633, 0.42792792792792794, 0.48296593186372744, 0.42492492492492495, 0.4909819639278557, 0.42492492492492495, 0.49298597194388777, 0.42342342342342343, 0.503006012024048, 0.42342342342342343, 0.5050100200400801, 0.4219219219219219, 0.5130260521042084, 0.4219219219219219, 0.5150300601202404, 0.42042042042042044, 0.5390781563126252, 0.42042042042042044, 0.5410821643286573, 0.4219219219219219, 0.5531062124248497, 0.4219219219219219, 0.5551102204408818, 0.42342342342342343, 0.56312625250501, 0.42342342342342343, 0.5651302605210421, 0.42492492492492495, 0.5671342685370742, 0.42492492492492495, 0.5691382765531062, 0.4264264264264264, 0.5731462925851704, 0.4264264264264264, 0.5751503006012024, 0.42792792792792794, 0.5771543086172345, 0.42792792792792794, 0.5791583166332666, 0.4294294294294294, 0.5831663326653307, 0.4294294294294294, 0.5851703406813628, 0.43093093093093093, 0.5891783567134269, 0.43093093093093093, 0.591182364729459, 0.43093093093093093, 0.591182364729459, 0.43243243243243246, 0.591182364729459, 0.4339339339339339, 0.5951903807615231, 0.4339339339339339, 0.5971943887775552, 0.4339339339339339, 0.5971943887775552, 0.43543543543543545, 0.5971943887775552, 0.4369369369369369, 0.5991983967935872, 0.4369369369369369, 0.6012024048096193, 0.4369369369369369, 0.6012024048096193, 0.43843843843843844, 0.6052104208416834, 0.44144144144144143, 0.6052104208416834, 0.44294294294294295, 0.6072144288577155, 0.4444444444444444, 0.6072144288577155, 0.45045045045045046, 0.6052104208416834, 0.4519519519519519, 0.6052104208416834, 0.45495495495495497, 0.6092184368737475, 0.45795795795795796, 0.6092184368737475, 0.4594594594594595, 0.6112224448897795, 0.46096096096096095, 0.6112224448897795, 0.4624624624624625, 0.6152304609218436, 0.46546546546546547, 0.6152304609218436, 0.466966966966967, 0.6192384769539078, 0.46996996996997, 0.6192384769539078, 0.5015015015015015, 0.6172344689378757, 0.503003003003003, 0.6172344689378757, 0.5645645645645646, 0.6152304609218436, 0.566066066066066, 0.6152304609218436, 0.581081081081081, 0.6132264529058116, 0.5825825825825826, 0.5751503006012024, 0.5825825825825826, 0.5731462925851704, 0.5840840840840841]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7915831663326653, 0.5825825825825826, 0.6172344689378757, 0.581081081081081, 0.6172344689378757, 0.5690690690690691, 0.6292585170340681, 0.5285285285285285, 0.6292585170340681, 0.47897897897897895, 0.625250501002004, 0.46996996996997, 0.6292585170340681, 0.43993993993993996, 0.6452905811623246, 0.4174174174174174, 0.6633266533066132, 0.4024024024024024, 0.6673346693386774, 0.3948948948948949, 0.6673346693386774, 0.37987987987987987, 0.6593186372745491, 0.3708708708708709, 0.657314629258517, 0.36186186186186187, 0.6613226452905812, 0.35285285285285284, 0.6733466933867736, 0.34684684684684686, 0.6773547094188377, 0.3183183183183183, 0.6993987975951904, 0.30930930930930933, 0.7234468937875751, 0.3063063063063063, 0.7595190380761523, 0.3078078078078078, 0.7735470941883767, 0.3123123123123123, 0.7835671342685371, 0.3123123123123123, 0.8016032064128257, 0.3228228228228228, 0.7995991983967936, 0.35435435435435436, 0.8096192384769539, 0.36036036036036034, 0.8096192384769539, 0.3738738738738739, 0.7935871743486974, 0.39039039039039036, 0.7915831663326653, 0.4084084084084084, 0.811623246492986, 0.4369369369369369, 0.811623246492986, 0.44594594594594594, 0.8176352705410822, 0.45645645645645644, 0.8176352705410822, 0.466966966966967, 0.8136272545090181, 0.484984984984985, 0.7935871743486974, 0.5165165165165165, 0.7915831663326653, 0.5825825825825826]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/93.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3286573146292585, 0.7297297297297297, 0.32064128256513025, 0.7297297297297297, 0.3066132264529058, 0.7237237237237237, 0.29458917835671344, 0.7132132132132132, 0.2905811623246493, 0.7057057057057057, 0.2725450901803607, 0.6966966966966966, 0.2565130260521042, 0.6711711711711712, 0.23647294589178355, 0.5075075075075075, 0.22645290581162325, 0.46846846846846846, 0.22645290581162325, 0.45495495495495497, 0.23246492985971945, 0.43093093093093093, 0.24448897795591182, 0.41291291291291293, 0.2565130260521042, 0.4039039039039039, 0.26452905811623245, 0.3918918918918919, 0.2665330661322645, 0.3813813813813814, 0.2685370741482966, 0.33483483483483484, 0.2745490981963928, 0.3123123123123123, 0.26452905811623245, 0.30180180180180183, 0.2625250501002004, 0.26126126126126126, 0.2665330661322645, 0.25825825825825827, 0.2865731462925852, 0.25225225225225223, 0.30861723446893785, 0.24924924924924924, 0.3486973947895792, 0.24924924924924924, 0.37675350701402804, 0.25375375375375375, 0.3867735470941884, 0.25825825825825827, 0.3907815631262525, 0.26576576576576577, 0.3907815631262525, 0.2852852852852853, 0.39478957915831664, 0.2972972972972973, 0.38877755511022044, 0.3153153153153153, 0.3967935871743487, 0.33183183183183185, 0.40480961923847697, 0.37537537537537535, 0.4148296593186373, 0.3963963963963964, 0.4288577154308617, 0.40540540540540543, 0.4408817635270541, 0.4159159159159159, 0.45490981963927857, 0.4444444444444444, 0.45490981963927857, 0.6621621621621622, 0.44889779559118237, 0.6831831831831832, 0.43887775551102204, 0.6921921921921922, 0.43687374749499, 0.6981981981981982, 0.4288577154308617, 0.7042042042042042, 0.41282565130260523, 0.7057057057057057, 0.39478957915831664, 0.7252252252252253, 0.374749498997996, 0.7282282282282282, 0.3667334669338677, 0.7252252252252253, 0.3486973947895792, 0.7087087087087087, 0.3466933867735471, 0.7177177177177178, 0.3286573146292585, 0.7297297297297297]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5711422845691383, 0.7267267267267268, 0.5390781563126252, 0.7267267267267268, 0.503006012024048, 0.7192192192192193, 0.4709418837675351, 0.7042042042042042, 0.45691382765531063, 0.6831831831831832, 0.45490981963927857, 0.5015015015015015, 0.4649298597194389, 0.481981981981982, 0.47695390781563124, 0.47147147147147145, 0.4749498997995992, 0.4594594594594595, 0.4789579158316633, 0.45045045045045046, 0.503006012024048, 0.43843843843843844, 0.5110220440881763, 0.43843843843843844, 0.533066132264529, 0.43243243243243246, 0.5891783567134269, 0.4339339339339339, 0.6132264529058116, 0.43843843843843844, 0.6232464929859719, 0.44294294294294295, 0.6412825651302605, 0.4519519519519519, 0.6492985971943888, 0.45795795795795796, 0.6513026052104208, 0.47597597597597596, 0.6593186372745491, 0.48348348348348347, 0.6653306613226453, 0.496996996996997, 0.6432865731462926, 0.6576576576576577, 0.6432865731462926, 0.6906906906906907, 0.6372745490981964, 0.6996996996996997, 0.6192384769539078, 0.7132132132132132, 0.5711422845691383, 0.7267267267267268]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7535070140280561, 0.45345345345345345, 0.6452905811623246, 0.45345345345345345, 0.6172344689378757, 0.4369369369369369, 0.627254509018036, 0.40540540540540543, 0.627254509018036, 0.38738738738738737, 0.6232464929859719, 0.3783783783783784, 0.6232464929859719, 0.35585585585585583, 0.627254509018036, 0.3408408408408408, 0.6412825651302605, 0.3213213213213213, 0.6593186372745491, 0.3033033033033033, 0.6613226452905812, 0.2927927927927928, 0.6513026052104208, 0.2747747747747748, 0.6673346693386774, 0.2627627627627628, 0.6693386773547094, 0.23723723723723725, 0.6773547094188377, 0.23423423423423423, 0.687374749498998, 0.23423423423423423, 0.6953907815631263, 0.23123123123123124, 0.7434869739478958, 0.23273273273273273, 0.7675350701402806, 0.24024024024024024, 0.7655310621242485, 0.2702702702702703, 0.7735470941883767, 0.2732732732732733, 0.7735470941883767, 0.28378378378378377, 0.7615230460921844, 0.29429429429429427, 0.7595190380761523, 0.3153153153153153, 0.7715430861723447, 0.33483483483483484, 0.7775551102204409, 0.35285285285285284, 0.7775551102204409, 0.3708708708708709, 0.7595190380761523, 0.3993993993993994, 0.7555110220440882, 0.41291291291291293, 0.7535070140280561, 0.45345345345345345]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.45490981963927857, 0.496996996996997, 0.45490981963927857, 0.4954954954954955, 0.45490981963927857, 0.493993993993994, 0.45490981963927857, 0.4924924924924925, 0.45490981963927857, 0.49099099099099097, 0.45490981963927857, 0.4894894894894895, 0.45490981963927857, 0.487987987987988, 0.45490981963927857, 0.4864864864864865, 0.45490981963927857, 0.484984984984985, 0.45490981963927857, 0.48348348348348347, 0.45490981963927857, 0.481981981981982, 0.45490981963927857, 0.4804804804804805, 0.45490981963927857, 0.47897897897897895, 0.45490981963927857, 0.4774774774774775, 0.45490981963927857, 0.47597597597597596, 0.45490981963927857, 0.4744744744744745, 0.45490981963927857, 0.47297297297297297, 0.45490981963927857, 0.47147147147147145, 0.45490981963927857, 0.46996996996997, 0.45490981963927857, 0.46846846846846846, 0.45490981963927857, 0.466966966966967, 0.45490981963927857, 0.46546546546546547, 0.45490981963927857, 0.46396396396396394, 0.45490981963927857, 0.4624624624624625, 0.45490981963927857, 0.46096096096096095, 0.45490981963927857, 0.4594594594594595, 0.45490981963927857, 0.45795795795795796, 0.45490981963927857, 0.45645645645645644, 0.45490981963927857, 0.45495495495495497, 0.45490981963927857, 0.45345345345345345, 0.45490981963927857, 0.45345345345345345, 0.45691382765531063, 0.45345345345345345, 0.4589178356713427, 0.45345345345345345, 0.46092184368737477, 0.45345345345345345, 0.46292585170340683, 0.45345345345345345, 0.4649298597194389, 0.45345345345345345, 0.46693386773547096, 0.45345345345345345, 0.46893787575150303, 0.45345345345345345, 0.4709418837675351, 0.45345345345345345, 0.4729458917835671, 0.45345345345345345, 0.4749498997995992, 0.45345345345345345, 0.47695390781563124, 0.45345345345345345, 0.4749498997995992, 0.45495495495495497, 0.4749498997995992, 0.45495495495495497, 0.4749498997995992, 0.45645645645645644, 0.4749498997995992, 0.45795795795795796, 0.4749498997995992, 0.4594594594594595, 0.4749498997995992, 0.46096096096096095, 0.4749498997995992, 0.4624624624624625, 0.4749498997995992, 0.46396396396396394, 0.4749498997995992, 0.46546546546546547, 0.4749498997995992, 0.466966966966967, 0.4749498997995992, 0.46846846846846846, 0.4749498997995992, 0.46996996996997, 0.4749498997995992, 0.47147147147147145, 0.4749498997995992, 0.47297297297297297, 0.4729458917835671, 0.4744744744744745, 0.4709418837675351, 0.4744744744744745, 0.4709418837675351, 0.4744744744744745, 0.46893787575150303, 0.47597597597597596, 0.46893787575150303, 0.47597597597597596, 0.46893787575150303, 0.4774774774774775, 0.46693386773547096, 0.47897897897897895, 0.46693386773547096, 0.47897897897897895, 0.4649298597194389, 0.4804804804804805, 0.4649298597194389, 0.4804804804804805, 0.46292585170340683, 0.481981981981982, 0.46292585170340683, 0.481981981981982, 0.46292585170340683, 0.48348348348348347, 0.46092184368737477, 0.484984984984985, 0.46092184368737477, 0.484984984984985, 0.46092184368737477, 0.4864864864864865, 0.4589178356713427, 0.487987987987988, 0.4589178356713427, 0.487987987987988, 0.4589178356713427, 0.4894894894894895, 0.45691382765531063, 0.49099099099099097, 0.45691382765531063, 0.49099099099099097, 0.45691382765531063, 0.4924924924924925, 0.45691382765531063, 0.493993993993994, 0.45691382765531063, 0.4954954954954955, 0.45490981963927857, 0.496996996996997], [0.7895791583166333, 0.6351351351351351, 0.6513026052104208, 0.6351351351351351, 0.6492985971943888, 0.6321321321321322, 0.6492985971943888, 0.6276276276276276, 0.6513026052104208, 0.6261261261261262, 0.6513026052104208, 0.6126126126126126, 0.6533066132264529, 0.6111111111111112, 0.6533066132264529, 0.5960960960960962, 0.655310621242485, 0.5945945945945946, 0.655310621242485, 0.581081081081081, 0.657314629258517, 0.5795795795795796, 0.657314629258517, 0.566066066066066, 0.6593186372745491, 0.5645645645645646, 0.6593186372745491, 0.551051051051051, 0.6613226452905812, 0.5495495495495496, 0.6613226452905812, 0.536036036036036, 0.6633266533066132, 0.5345345345345346, 0.6633266533066132, 0.521021021021021, 0.6653306613226453, 0.5195195195195195, 0.6653306613226453, 0.49099099099099097, 0.6633266533066132, 0.4894894894894895, 0.6633266533066132, 0.487987987987988, 0.6613226452905812, 0.4864864864864865, 0.6613226452905812, 0.48348348348348347, 0.6593186372745491, 0.481981981981982, 0.6593186372745491, 0.4804804804804805, 0.655310621242485, 0.4774774774774775, 0.655310621242485, 0.47597597597597596, 0.6513026052104208, 0.47297297297297297, 0.6513026052104208, 0.47147147147147145, 0.6533066132264529, 0.46996996996997, 0.6533066132264529, 0.46546546546546547, 0.6513026052104208, 0.46396396396396394, 0.6513026052104208, 0.45795795795795796, 0.6452905811623246, 0.45345345345345345, 0.6452905811623246, 0.45345345345345345, 0.7655310621242485, 0.45345345345345345, 0.7675350701402806, 0.45495495495495497, 0.7695390781563126, 0.45495495495495497, 0.7755511022044088, 0.45795795795795796, 0.7755511022044088, 0.4594594594594595, 0.779559118236473, 0.4624624624624625, 0.779559118236473, 0.46396396396396394, 0.7835671342685371, 0.466966966966967, 0.7835671342685371, 0.46846846846846846, 0.7875751503006012, 0.47147147147147145, 0.7875751503006012, 0.47297297297297297, 0.7895791583166333, 0.4744744744744745, 0.7895791583166333, 0.47597597597597596, 0.7935871743486974, 0.47897897897897895, 0.7935871743486974, 0.4804804804804805, 0.7995991983967936, 0.484984984984985, 0.7995991983967936, 0.4924924924924925, 0.8056112224448898, 0.496996996996997, 0.8056112224448898, 0.5, 0.8076152304609219, 0.5015015015015015, 0.8076152304609219, 0.5045045045045045, 0.8096192384769539, 0.506006006006006, 0.8096192384769539, 0.5075075075075075, 0.8156312625250501, 0.512012012012012, 0.8156312625250501, 0.5135135135135135, 0.8196392785571143, 0.5165165165165165, 0.8196392785571143, 0.5225225225225225, 0.8176352705410822, 0.524024024024024, 0.8176352705410822, 0.5285285285285285, 0.8156312625250501, 0.53003003003003, 0.8156312625250501, 0.5345345345345346, 0.8136272545090181, 0.536036036036036, 0.8136272545090181, 0.5420420420420421, 0.811623246492986, 0.5435435435435435, 0.811623246492986, 0.5480480480480481, 0.8096192384769539, 0.5495495495495496, 0.8096192384769539, 0.5540540540540541, 0.8076152304609219, 0.5555555555555556, 0.8076152304609219, 0.56006006006006, 0.8056112224448898, 0.5615615615615616, 0.8056112224448898, 0.5675675675675675, 0.8036072144288577, 0.5690690690690691, 0.8036072144288577, 0.5735735735735735, 0.8016032064128257, 0.575075075075075, 0.8016032064128257, 0.581081081081081, 0.7995991983967936, 0.5825825825825826, 0.7995991983967936, 0.5915915915915916, 0.7975951903807615, 0.5930930930930931, 0.7975951903807615, 0.6006006006006006, 0.7955911823647295, 0.6021021021021021, 0.7955911823647295, 0.6111111111111112, 0.7935871743486974, 0.6126126126126126, 0.7935871743486974, 0.6201201201201201, 0.7915831663326653, 0.6216216216216216, 0.7915831663326653, 0.6336336336336337, 0.7895791583166333, 0.6351351351351351], [0.24248496993987975, 0.5915915915915916, 0.24248496993987975, 0.5900900900900901, 0.24248496993987975, 0.5885885885885885, 0.23847695390781562, 0.5855855855855856, 0.23847695390781562, 0.5840840840840841, 0.23446893787575152, 0.581081081081081, 0.23446893787575152, 0.5795795795795796, 0.23046092184368738, 0.5780780780780781, 0.20040080160320642, 0.5780780780780781, 0.19839679358717435, 0.5765765765765766, 0.1963927855711423, 0.5765765765765766, 0.1963927855711423, 0.575075075075075, 0.1963927855711423, 0.5735735735735735, 0.19238476953907815, 0.5705705705705706, 0.19238476953907815, 0.566066066066066, 0.19438877755511022, 0.5645645645645646, 0.19438877755511022, 0.5630630630630631, 0.1963927855711423, 0.5615615615615616, 0.1963927855711423, 0.5585585585585585, 0.19839679358717435, 0.5570570570570571, 0.19839679358717435, 0.5540540540540541, 0.20040080160320642, 0.5525525525525525, 0.20040080160320642, 0.551051051051051, 0.20240480961923848, 0.5495495495495496, 0.20240480961923848, 0.5465465465465466, 0.20440881763527055, 0.545045045045045, 0.20440881763527055, 0.5420420420420421, 0.20641282565130262, 0.5405405405405406, 0.20641282565130262, 0.539039039039039, 0.20841683366733466, 0.5375375375375375, 0.20841683366733466, 0.536036036036036, 0.21042084168336672, 0.5345345345345346, 0.21042084168336672, 0.5330330330330331, 0.2124248496993988, 0.5315315315315315, 0.2124248496993988, 0.53003003003003, 0.21442885771543085, 0.5285285285285285, 0.21442885771543085, 0.527027027027027, 0.21643286573146292, 0.5255255255255256, 0.21643286573146292, 0.5225225225225225, 0.218436873747495, 0.521021021021021, 0.218436873747495, 0.5195195195195195, 0.22044088176352705, 0.5180180180180181, 0.22044088176352705, 0.515015015015015, 0.22244488977955912, 0.5135135135135135, 0.22244488977955912, 0.512012012012012, 0.22244488977955912, 0.512012012012012, 0.22444889779559118, 0.512012012012012, 0.22845691382765532, 0.509009009009009, 0.23246492985971945, 0.509009009009009, 0.23446893787575152, 0.509009009009009, 0.23446893787575152, 0.5225225225225225, 0.23647294589178355, 0.524024024024024, 0.23647294589178355, 0.536036036036036, 0.23847695390781562, 0.5375375375375375, 0.23847695390781562, 0.5495495495495496, 0.24048096192384769, 0.551051051051051, 0.24048096192384769, 0.5630630630630631, 0.24248496993987975, 0.5645645645645646, 0.24248496993987975, 0.5765765765765766, 0.24448897795591182, 0.5780780780780781, 0.24448897795591182, 0.5900900900900901, 0.24248496993987975, 0.5915915915915916], [0.45490981963927857, 0.6336336336336337, 0.45490981963927857, 0.6321321321321322, 0.45490981963927857, 0.539039039039039, 0.45490981963927857, 0.539039039039039, 0.45691382765531063, 0.539039039039039, 0.45691382765531063, 0.6321321321321322, 0.45490981963927857, 0.6336336336336337]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/94.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.19839679358717435, 0.8003003003003003, 0.15831663326653306, 0.8003003003003003, 0.15430861723446893, 0.7942942942942943, 0.15430861723446893, 0.7852852852852853, 0.13827655310621242, 0.7432432432432432, 0.10220440881763528, 0.6186186186186187, 0.04809619238476954, 0.45045045045045046, 0.052104208416833664, 0.43543543543543545, 0.0841683366733467, 0.4114114114114114, 0.06212424849699399, 0.38738738738738737, 0.06613226452905811, 0.3813813813813814, 0.10020040080160321, 0.36186186186186187, 0.11823647294589178, 0.35435435435435436, 0.1282565130260521, 0.34684684684684686, 0.1342685370741483, 0.34684684684684686, 0.1462925851703407, 0.35435435435435436, 0.15430861723446893, 0.35435435435435436, 0.1743486973947896, 0.33783783783783783, 0.18036072144288579, 0.32432432432432434, 0.1903807615230461, 0.3108108108108108, 0.19839679358717435, 0.3153153153153153, 0.20240480961923848, 0.33633633633633636, 0.20841683366733466, 0.34534534534534533, 0.24048096192384769, 0.35285285285285284, 0.2665330661322645, 0.36486486486486486, 0.280561122244489, 0.36786786786786785, 0.3066132264529058, 0.37987987987987987, 0.312625250501002, 0.3858858858858859, 0.31462925851703405, 0.4099099099099099, 0.3286573146292585, 0.47897897897897895, 0.3286573146292585, 0.4924924924924925, 0.3346693386773547, 0.5075075075075075, 0.3366733466933868, 0.5570570570570571, 0.3466933867735471, 0.6126126126126126, 0.3587174348697395, 0.7087087087087087, 0.3587174348697395, 0.7282282282282282, 0.36472945891783565, 0.7387387387387387, 0.36472945891783565, 0.7462462462462462, 0.3527054108216433, 0.7807807807807807, 0.342685370741483, 0.7957957957957958, 0.19839679358717435, 0.8003003003003003]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.46893787575150303, 0.7822822822822822, 0.45490981963927857, 0.7747747747747747, 0.4468937875751503, 0.7627627627627628, 0.44288577154308617, 0.7627627627627628, 0.43887775551102204, 0.7747747747747747, 0.4248496993987976, 0.7822822822822822, 0.4168336673346693, 0.7822822822822822, 0.40480961923847697, 0.7777777777777778, 0.39879759519038077, 0.7702702702702703, 0.39879759519038077, 0.7657657657657657, 0.3847695390781563, 0.7612612612612613, 0.374749498997996, 0.7522522522522522, 0.3627254509018036, 0.7342342342342343, 0.3587174348697395, 0.7207207207207207, 0.3587174348697395, 0.6936936936936937, 0.3366733466933868, 0.5345345345345346, 0.3466933867735471, 0.5105105105105106, 0.3687374749498998, 0.49099099099099097, 0.37074148296593185, 0.484984984984985, 0.37074148296593185, 0.4594594594594595, 0.37675350701402804, 0.4219219219219219, 0.37074148296593185, 0.4189189189189189, 0.3687374749498998, 0.3858858858858859, 0.3727454909819639, 0.37987987987987987, 0.40080160320641284, 0.3708708708708709, 0.4468937875751503, 0.3708708708708709, 0.46292585170340683, 0.37537537537537535, 0.4729458917835671, 0.37987987987987987, 0.4729458917835671, 0.4069069069069069, 0.47695390781563124, 0.41291291291291293, 0.4709418837675351, 0.4189189189189189, 0.4709418837675351, 0.42492492492492495, 0.4749498997995992, 0.42792792792792794, 0.4849699398797595, 0.47297297297297297, 0.4909819639278557, 0.487987987987988, 0.503006012024048, 0.4954954954954955, 0.5210420841683366, 0.5105105105105106, 0.5290581162324649, 0.5315315315315315, 0.531062124248497, 0.6621621621621622, 0.5350701402805611, 0.7267267267267268, 0.5290581162324649, 0.7417417417417418, 0.5190380761523046, 0.7537537537537538, 0.5110220440881763, 0.7597597597597597, 0.4969939879759519, 0.7612612612612613, 0.4909819639278557, 0.7732732732732732, 0.48296593186372744, 0.7792792792792793, 0.46893787575150303, 0.7822822822822822]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.6372745490981964, 0.7687687687687688, 0.6172344689378757, 0.7687687687687688, 0.5871743486973948, 0.7642642642642643, 0.5671342685370742, 0.7582582582582582, 0.5511022044088176, 0.7462462462462462, 0.5390781563126252, 0.7327327327327328, 0.5370741482965932, 0.7252252252252253, 0.5370741482965932, 0.6261261261261262, 0.533066132264529, 0.5555555555555556, 0.5470941883767535, 0.5405405405405406, 0.5450901803607214, 0.5315315315315315, 0.5531062124248497, 0.5225225225225225, 0.5691382765531062, 0.515015015015015, 0.6032064128256514, 0.509009009009009, 0.6372745490981964, 0.509009009009009, 0.657314629258517, 0.512012012012012, 0.6833667334669339, 0.521021021021021, 0.6973947895791583, 0.53003003003003, 0.6993987975951904, 0.545045045045045, 0.7154308617234469, 0.566066066066066, 0.7154308617234469, 0.5825825825825826, 0.7114228456913828, 0.5930930930930931, 0.7094188376753507, 0.6696696696696697, 0.7034068136272545, 0.7372372372372372, 0.6913827655310621, 0.7507507507507507, 0.6833667334669339, 0.7552552552552553, 0.6633266533066132, 0.7627627627627628, 0.6372745490981964, 0.7687687687687688]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8176352705410822, 0.7672672672672672, 0.7875751503006012, 0.7672672672672672, 0.7555110220440882, 0.7612612612612613, 0.7254509018036072, 0.7492492492492493, 0.7054108216432866, 0.7282282282282282, 0.7114228456913828, 0.6246246246246246, 0.7194388777555111, 0.6111111111111112, 0.7234468937875751, 0.5900900900900901, 0.7214428857715431, 0.5690690690690691, 0.7154308617234469, 0.5525525525525525, 0.717434869739479, 0.53003003003003, 0.7214428857715431, 0.5195195195195195, 0.7314629258517034, 0.509009009009009, 0.7354709418837675, 0.5, 0.7454909819639278, 0.493993993993994, 0.7555110220440882, 0.48348348348348347, 0.7555110220440882, 0.46846846846846846, 0.7474949899799599, 0.4594594594594595, 0.7474949899799599, 0.44744744744744747, 0.7615230460921844, 0.43543543543543545, 0.7635270541082164, 0.4174174174174174, 0.7675350701402806, 0.4114114114114114, 0.779559118236473, 0.4039039039039039, 0.811623246492986, 0.3993993993993994, 0.843687374749499, 0.4009009009009009, 0.8557114228456913, 0.40540540540540543, 0.8697394789579158, 0.4069069069069069, 0.8857715430861723, 0.4159159159159159, 0.8837675350701403, 0.4444444444444444, 0.8937875751503006, 0.4519519519519519, 0.8957915831663327, 0.46546546546546547, 0.8797595190380761, 0.4774774774774775, 0.8777555110220441, 0.4984984984984985, 0.8917835671342685, 0.512012012012012, 0.9018036072144289, 0.536036036036036, 0.8997995991983968, 0.5705705705705706, 0.8837675350701403, 0.5915915915915916, 0.8777555110220441, 0.6141141141141141, 0.8817635270541082, 0.6591591591591591, 0.8777555110220441, 0.6651651651651652, 0.8657314629258517, 0.7342342342342343, 0.8597194388777555, 0.7462462462462462, 0.8416833667334669, 0.7597597597597597, 0.8176352705410822, 0.7672672672672672]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/95.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.4148296593186373, 0.6681681681681682, 0.3687374749498998, 0.6636636636636637, 0.3587174348697395, 0.6591591591591591, 0.3046092184368738, 0.6501501501501501, 0.27655310621242485, 0.6531531531531531, 0.2605210420841683, 0.6606606606606606, 0.2565130260521042, 0.6606606606606606, 0.250501002004008, 0.6531531531531531, 0.24649298597194388, 0.6456456456456456, 0.23446893787575152, 0.5870870870870871, 0.22244488977955912, 0.515015015015015, 0.23246492985971945, 0.5075075075075075, 0.2545090180360721, 0.506006006006006, 0.27655310621242485, 0.4984984984984985, 0.2725450901803607, 0.46846846846846846, 0.27655310621242485, 0.45645645645645644, 0.3066132264529058, 0.4519519519519519, 0.45691382765531063, 0.4144144144144144, 0.503006012024048, 0.40540540540540543, 0.625250501002004, 0.3738738738738739, 0.6633266533066132, 0.3663663663663664, 0.6713426853707415, 0.36186186186186187, 0.7835671342685371, 0.3888888888888889, 0.8036072144288577, 0.3948948948948949, 0.811623246492986, 0.3993993993993994, 0.8096192384769539, 0.42492492492492495, 0.7995991983967936, 0.46096096096096095, 0.7915831663326653, 0.515015015015015, 0.7875751503006012, 0.5195195195195195, 0.7234468937875751, 0.5420420420420421, 0.6673346693386774, 0.566066066066066, 0.5791583166332666, 0.5990990990990991, 0.5430861723446894, 0.6156156156156156, 0.42685370741482964, 0.6606606606606606, 0.4148296593186373, 0.6681681681681682]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/96.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.7014028056112225, 0.7327327327327328, 0.42685370741482964, 0.6276276276276276, 0.3226452905811623, 0.5915915915915916, 0.2625250501002004, 0.5675675675675675, 0.23647294589178355, 0.56006006006006, 0.23246492985971945, 0.5555555555555556, 0.23246492985971945, 0.5405405405405406, 0.22244488977955912, 0.506006006006006, 0.20040080160320642, 0.506006006006006, 0.1903807615230461, 0.4984984984984985, 0.1843687374749499, 0.4924924924924925, 0.18036072144288579, 0.47297297297297297, 0.18236472945891782, 0.45645645645645644, 0.18837675350701402, 0.44594594594594594, 0.19438877755511022, 0.44144144144144143, 0.20641282565130262, 0.43993993993993996, 0.20641282565130262, 0.42492492492492495, 0.20240480961923848, 0.4189189189189189, 0.22645290581162325, 0.3978978978978979, 0.22444889779559118, 0.3783783783783784, 0.22845691382765532, 0.3768768768768769, 0.24048096192384769, 0.38288288288288286, 0.2785571142284569, 0.3813813813813814, 0.35070140280561124, 0.3708708708708709, 0.39879759519038077, 0.3843843843843844, 0.46092184368737477, 0.3963963963963964, 0.5771543086172345, 0.42492492492492495, 0.6693386773547094, 0.44294294294294295, 0.7154308617234469, 0.45495495495495497, 0.7735470941883767, 0.46546546546546547, 0.8156312625250501, 0.4774774774774775, 0.843687374749499, 0.481981981981982, 0.8476953907815631, 0.48348348348348347, 0.8476953907815631, 0.4894894894894895, 0.8416833667334669, 0.5075075075075075, 0.8396793587174348, 0.5315315315315315, 0.8356713426853707, 0.539039039039039, 0.8356713426853707, 0.56006006006006, 0.8216432865731463, 0.6096096096096096, 0.8216432865731463, 0.6246246246246246, 0.811623246492986, 0.6366366366366366, 0.781563126252505, 0.6591591591591591, 0.7334669338677354, 0.7012012012012012, 0.7094188376753507, 0.7282282282282282, 0.7014028056112225, 0.7327327327327328]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/98.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.36072144288577157, 0.7072072072072072, 0.33867735470941884, 0.7057057057057057, 0.28857715430861725, 0.6711711711711712, 0.25851703406813625, 0.6906906906906907, 0.25250501002004005, 0.6906906906906907, 0.22044088176352705, 0.6711711711711712, 0.1843687374749499, 0.6426426426426426, 0.18036072144288579, 0.6351351351351351, 0.1062124248496994, 0.5870870870870871, 0.11422845691382766, 0.5795795795795796, 0.12625250501002003, 0.5735735735735735, 0.14228456913827656, 0.5720720720720721, 0.15831663326653306, 0.5630630630630631, 0.17034068136272545, 0.5330330330330331, 0.1963927855711423, 0.4864864864864865, 0.1963927855711423, 0.4804804804804805, 0.20841683366733466, 0.46996996996997, 0.23046092184368738, 0.466966966966967, 0.3186372745490982, 0.4444444444444444, 0.3727454909819639, 0.4339339339339339, 0.5130260521042084, 0.3978978978978979, 0.6172344689378757, 0.37537537537537535, 0.655310621242485, 0.3633633633633634, 0.7735470941883767, 0.3888888888888889, 0.8076152304609219, 0.3993993993993994, 0.8176352705410822, 0.4039039039039039, 0.8136272545090181, 0.4114114114114114, 0.8076152304609219, 0.45345345345345345, 0.7935871743486974, 0.5075075075075075, 0.7935871743486974, 0.5195195195195195, 0.7895791583166333, 0.5315315315315315, 0.7835671342685371, 0.5375375375375375, 0.7775551102204409, 0.5375375375375375, 0.7635270541082164, 0.545045045045045, 0.6072144288577155, 0.6036036036036037, 0.46292585170340683, 0.6621621621621622, 0.36072144288577157, 0.7072072072072072]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/99.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.42685370741482964, 0.6396396396396397, 0.40681362725450904, 0.6396396396396397, 0.38276553106212424, 0.6291291291291291, 0.36072144288577157, 0.6141141141141141, 0.3346693386773547, 0.5870870870870871, 0.32064128256513025, 0.5630630630630631, 0.312625250501002, 0.539039039039039, 0.312625250501002, 0.515015015015015, 0.3226452905811623, 0.5, 0.33266533066132264, 0.493993993993994, 0.35070140280561124, 0.487987987987988, 0.3587174348697395, 0.47297297297297297, 0.37074148296593185, 0.4624624624624625, 0.627254509018036, 0.37987987987987987, 0.6653306613226453, 0.3813813813813814, 0.7034068136272545, 0.3993993993993994, 0.7254509018036072, 0.4159159159159159, 0.7394789579158316, 0.4369369369369369, 0.7454909819639278, 0.4519519519519519, 0.7474949899799599, 0.4804804804804805, 0.7334669338677354, 0.509009009009009, 0.7194388777555111, 0.5180180180180181, 0.5050100200400801, 0.6201201201201201, 0.4909819639278557, 0.6291291291291291, 0.47695390781563124, 0.6321321321321322, 0.4408817635270541, 0.6321321321321322, 0.43887775551102204, 0.6351351351351351, 0.42685370741482964, 0.6396396396396397]]}]} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/valid/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/valid/MLTable new file mode 100644 index 000000000000..02ef2bd40b09 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/valid/MLTable @@ -0,0 +1,10 @@ +paths: + - file: ./validation_annotations.jsonl +transformations: + - read_json_lines: + encoding: utf8 + invalid_lines: error + include_path_column: false + - convert_column_types: + - columns: image_url + column_type: stream_info \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/valid/validation_annotations.jsonl b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/valid/validation_annotations.jsonl new file mode 100644 index 000000000000..b6ba0afab32a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_instance_segmentation/valid/validation_annotations.jsonl @@ -0,0 +1,26 @@ +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/1.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.27655310621242485, 0.7792792792792793, 0.2725450901803607, 0.7762762762762763, 0.23246492985971945, 0.7012012012012012, 0.23046092184368738, 0.6276276276276276, 0.22244488977955912, 0.5585585585585585, 0.22044088176352705, 0.47897897897897895, 0.21442885771543085, 0.44294294294294295, 0.21042084168336672, 0.37537537537537535, 0.20440881763527055, 0.34234234234234234, 0.21042084168336672, 0.33633633633633636, 0.22044088176352705, 0.3138138138138138, 0.22044088176352705, 0.2732732732732733, 0.22645290581162325, 0.26426426426426425, 0.3246492985971944, 0.26426426426426425, 0.4188376753507014, 0.2672672672672673, 0.4248496993987976, 0.26876876876876876, 0.4308617234468938, 0.2732732732732733, 0.43286573146292584, 0.3108108108108108, 0.46092184368737477, 0.34534534534534533, 0.46893787575150303, 0.36036036036036034, 0.46292585170340683, 0.509009009009009, 0.46292585170340683, 0.7432432432432432, 0.4529058116232465, 0.7477477477477478, 0.4188376753507014, 0.7522522522522522, 0.3727454909819639, 0.7627627627627628, 0.3527054108216433, 0.7642642642642643, 0.3406813627254509, 0.7687687687687688, 0.3306613226452906, 0.7687687687687688, 0.27655310621242485, 0.7792792792792793]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/103.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.4168336673346693, 0.6396396396396397, 0.38276553106212424, 0.6381381381381381, 0.342685370741483, 0.6216216216216216, 0.32665330661322645, 0.6081081081081081, 0.30861723446893785, 0.5900900900900901, 0.2965931863727455, 0.5645645645645646, 0.2965931863727455, 0.545045045045045, 0.30060120240480964, 0.5330330330330331, 0.312625250501002, 0.524024024024024, 0.3166332665330661, 0.5105105105105106, 0.342685370741483, 0.484984984984985, 0.36072144288577157, 0.4774774774774775, 0.48697394789579157, 0.4039039039039039, 0.5090180360721442, 0.3963963963963964, 0.5210420841683366, 0.3948948948948949, 0.5551102204408818, 0.3963963963963964, 0.591182364729459, 0.4114114114114114, 0.6052104208416834, 0.42042042042042044, 0.6232464929859719, 0.43993993993993996, 0.6292585170340681, 0.44894894894894893, 0.6312625250501002, 0.4594594594594595, 0.6312625250501002, 0.46996996996997, 0.625250501002004, 0.487987987987988, 0.6132264529058116, 0.5015015015015015, 0.48897795591182364, 0.6126126126126126, 0.4709418837675351, 0.6216216216216216, 0.4529058116232465, 0.6276276276276276, 0.44288577154308617, 0.6276276276276276, 0.4348697394789579, 0.6336336336336337, 0.4168336673346693, 0.6396396396396397]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/108.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3166332665330661, 0.6216216216216216, 0.28857715430861725, 0.6216216216216216, 0.2685370741482966, 0.6186186186186187, 0.25851703406813625, 0.6141141141141141, 0.25250501002004005, 0.6141141141141141, 0.22044088176352705, 0.5990990990990991, 0.20641282565130262, 0.5960960960960962, 0.1843687374749499, 0.5960960960960962, 0.16633266533066132, 0.6036036036036037, 0.16432865731462926, 0.6066066066066066, 0.1523046092184369, 0.6066066066066066, 0.13627254509018036, 0.5960960960960962, 0.11222444889779559, 0.5975975975975976, 0.09819639278557114, 0.5945945945945946, 0.0841683366733467, 0.5780780780780781, 0.08016032064128256, 0.5555555555555556, 0.08216432865731463, 0.5345345345345346, 0.09218436873747494, 0.515015015015015, 0.10020040080160321, 0.5075075075075075, 0.1402805611222445, 0.5075075075075075, 0.1462925851703407, 0.5, 0.15430861723446893, 0.4954954954954955, 0.16633266533066132, 0.4954954954954955, 0.1743486973947896, 0.5015015015015015, 0.18837675350701402, 0.5045045045045045, 0.20841683366733466, 0.5045045045045045, 0.22645290581162325, 0.5015015015015015, 0.24248496993987975, 0.49099099099099097, 0.25851703406813625, 0.484984984984985, 0.2905811623246493, 0.47897897897897895, 0.3226452905811623, 0.47897897897897895, 0.3466933867735471, 0.484984984984985, 0.3687374749498998, 0.4864864864864865, 0.41282565130260523, 0.4864864864864865, 0.43887775551102204, 0.484984984984985, 0.4729458917835671, 0.47897897897897895, 0.6172344689378757, 0.4774774774774775, 0.6352705410821643, 0.487987987987988, 0.6432865731462926, 0.512012012012012, 0.6452905811623246, 0.5765765765765766, 0.6392785571142284, 0.6021021021021021, 0.627254509018036, 0.6156156156156156, 0.6152304609218436, 0.6186186186186187, 0.4969939879759519, 0.6201201201201201, 0.45090180360721444, 0.6171171171171171, 0.4308617234468938, 0.6111111111111112, 0.3807615230460922, 0.6111111111111112, 0.3466933867735471, 0.6141141141141141, 0.3166332665330661, 0.6216216216216216]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7935871743486974, 0.6756756756756757, 0.7575150300601202, 0.6726726726726727, 0.7334669338677354, 0.6636636636636637, 0.7114228456913828, 0.6456456456456456, 0.6953907815631263, 0.6351351351351351, 0.6813627254509018, 0.6186186186186187, 0.6432865731462926, 0.521021021021021, 0.6432865731462926, 0.5045045045045045, 0.6332665330661322, 0.4804804804804805, 0.6352705410821643, 0.47297297297297297, 0.6492985971943888, 0.45495495495495497, 0.6693386773547094, 0.44144144144144143, 0.6913827655310621, 0.43243243243243246, 0.7434869739478958, 0.4294294294294294, 0.7695390781563126, 0.43543543543543545, 0.7775551102204409, 0.44144144144144143, 0.781563126252505, 0.44144144144144143, 0.8817635270541082, 0.5585585585585585, 0.8897795591182365, 0.5720720720720721, 0.8917835671342685, 0.6126126126126126, 0.8857715430861723, 0.6291291291291291, 0.8777555110220441, 0.6396396396396397, 0.8617234468937875, 0.6531531531531531, 0.8396793587174348, 0.6651651651651652, 0.7935871743486974, 0.6756756756756757]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/112.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6452905811623246, 0.7972972972972973, 0.4468937875751503, 0.7912912912912913, 0.30060120240480964, 0.7897897897897898, 0.2685370741482966, 0.7807807807807807, 0.23446893787575152, 0.7582582582582582, 0.218436873747495, 0.7537537537537538, 0.18637274549098196, 0.7492492492492493, 0.1623246492985972, 0.7492492492492493, 0.14829659318637275, 0.7462462462462462, 0.14228456913827656, 0.7417417417417418, 0.13627254509018036, 0.7417417417417418, 0.13026052104208416, 0.7462462462462462, 0.08216432865731463, 0.7447447447447447, 0.07414829659318638, 0.7357357357357357, 0.06813627254509018, 0.7207207207207207, 0.07014028056112225, 0.6951951951951952, 0.08216432865731463, 0.6726726726726727, 0.09218436873747494, 0.6651651651651652, 0.1402805611222445, 0.6651651651651652, 0.1462925851703407, 0.6696696696696697, 0.1523046092184369, 0.6696696696696697, 0.156312625250501, 0.6666666666666666, 0.18637274549098196, 0.6666666666666666, 0.23446893787575152, 0.6606606606606606, 0.24649298597194388, 0.6576576576576577, 0.2745490981963928, 0.6411411411411412, 0.312625250501002, 0.6306306306306306, 0.6472945891783567, 0.6351351351351351, 0.6753507014028056, 0.6456456456456456, 0.685370741482966, 0.6471471471471472, 0.7014028056112225, 0.6606606606606606, 0.6993987975951904, 0.6726726726726727, 0.7074148296593187, 0.6816816816816816, 0.7094188376753507, 0.7027027027027027, 0.7034068136272545, 0.7102102102102102, 0.6933867735470942, 0.7117117117117117, 0.6913827655310621, 0.7222222222222222, 0.6973947895791583, 0.7222222222222222, 0.7074148296593187, 0.7282282282282282, 0.7094188376753507, 0.7507507507507507, 0.7014028056112225, 0.7582582582582582, 0.7034068136272545, 0.7747747747747747, 0.6913827655310621, 0.7852852852852853, 0.6813627254509018, 0.7897897897897898, 0.6452905811623246, 0.7972972972972973]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.7114228456913828, 0.7327327327327328, 0.7014028056112225, 0.7222222222222222, 0.6933867735470942, 0.7237237237237237, 0.6913827655310621, 0.7207207207207207, 0.6933867735470942, 0.7132132132132132, 0.7054108216432866, 0.7102102102102102, 0.7094188376753507, 0.7057057057057057, 0.7094188376753507, 0.6846846846846847, 0.7014028056112225, 0.6726726726726727, 0.6993987975951904, 0.6561561561561562, 0.685370741482966, 0.6456456456456456, 0.6533066132264529, 0.6351351351351351, 0.5511022044088176, 0.6321321321321322, 0.56312625250501, 0.5, 0.56312625250501, 0.45795795795795796, 0.5711422845691383, 0.4039039039039039, 0.5771543086172345, 0.31981981981981983, 0.5791583166332666, 0.3153153153153153, 0.6052104208416834, 0.30180180180180183, 0.6392785571142284, 0.2912912912912913, 0.6412825651302605, 0.2882882882882883, 0.6713426853707415, 0.2807807807807808, 0.6793587174348698, 0.2702702702702703, 0.6793587174348698, 0.25225225225225223, 0.6833667334669339, 0.24924924924924924, 0.6833667334669339, 0.24174174174174173, 0.685370741482966, 0.23723723723723725, 0.6913827655310621, 0.23423423423423423, 0.7374749498997996, 0.22972972972972974, 0.7535070140280561, 0.22522522522522523, 0.7715430861723447, 0.22522522522522523, 0.7775551102204409, 0.22972972972972974, 0.7775551102204409, 0.25225225225225223, 0.7915831663326653, 0.2552552552552553, 0.8276553106212425, 0.2732732732732733, 0.8396793587174348, 0.2807807807807808, 0.845691382765531, 0.2897897897897898, 0.845691382765531, 0.2972972972972973, 0.8617234468937875, 0.3078078078078078, 0.8657314629258517, 0.3183183183183183, 0.845691382765531, 0.4099099099099099, 0.8276553106212425, 0.4744744744744745, 0.8016032064128257, 0.6156156156156156, 0.7915831663326653, 0.6456456456456456, 0.7895791583166333, 0.6696696696696697, 0.7114228456913828, 0.7327327327327328]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/117.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.44288577154308617, 0.8228228228228228, 0.4088176352705411, 0.8213213213213213, 0.3967935871743487, 0.8123123123123123, 0.38877755511022044, 0.8033033033033034, 0.3667334669338677, 0.8048048048048048, 0.35070140280561124, 0.7927927927927928, 0.33266533066132264, 0.7672672672672672, 0.32064128256513025, 0.7192192192192193, 0.312625250501002, 0.6426426426426426, 0.3046092184368738, 0.6066066066066066, 0.30060120240480964, 0.5540540540540541, 0.2925851703406814, 0.5225225225225225, 0.29458917835671344, 0.4744744744744745, 0.30861723446893785, 0.45045045045045046, 0.3166332665330661, 0.4444444444444444, 0.3366733466933868, 0.4174174174174174, 0.3366733466933868, 0.3633633633633634, 0.34468937875751504, 0.32432432432432434, 0.3366733466933868, 0.3213213213213213, 0.33266533066132264, 0.3138138138138138, 0.33266533066132264, 0.2702702702702703, 0.3366733466933868, 0.26576576576576577, 0.34468937875751504, 0.2627627627627628, 0.37074148296593185, 0.25825825825825827, 0.44889779559118237, 0.25825825825825827, 0.46693386773547096, 0.26126126126126126, 0.4749498997995992, 0.26426426426426425, 0.4789579158316633, 0.2702702702702703, 0.48096192384769537, 0.31681681681681684, 0.4729458917835671, 0.3213213213213213, 0.4729458917835671, 0.32732732732732733, 0.47695390781563124, 0.33633633633633636, 0.48096192384769537, 0.33783783783783783, 0.48096192384769537, 0.34984984984984985, 0.49298597194388777, 0.39039039039039036, 0.4969939879759519, 0.4174174174174174, 0.5350701402805611, 0.4519519519519519, 0.5410821643286573, 0.466966966966967, 0.5450901803607214, 0.46996996996997, 0.5511022044088176, 0.49099099099099097, 0.5511022044088176, 0.7357357357357357, 0.5470941883767535, 0.7432432432432432, 0.5470941883767535, 0.7522522522522522, 0.5410821643286573, 0.7642642642642643, 0.531062124248497, 0.7717717717717718, 0.5230460921843687, 0.7927927927927928, 0.5110220440881763, 0.8033033033033034, 0.4909819639278557, 0.8123123123123123, 0.4849699398797595, 0.8123123123123123, 0.4789579158316633, 0.8108108108108109, 0.46292585170340683, 0.7957957957957958, 0.4589178356713427, 0.8108108108108109, 0.44288577154308617, 0.8228228228228228]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.591182364729459, 0.7222222222222222, 0.5591182364729459, 0.7222222222222222, 0.5511022044088176, 0.7177177177177178, 0.5511022044088176, 0.49099099099099097, 0.5430861723446894, 0.4624624624624625, 0.5370741482965932, 0.4519519519519519, 0.49899799599198397, 0.4174174174174174, 0.49899799599198397, 0.41291291291291293, 0.5110220440881763, 0.3948948948948949, 0.5110220440881763, 0.3738738738738739, 0.49899799599198397, 0.36036036036036034, 0.4969939879759519, 0.3483483483483483, 0.5110220440881763, 0.33783783783783783, 0.5110220440881763, 0.31681681681681684, 0.5150300601202404, 0.3033033033033033, 0.5210420841683366, 0.2972972972972973, 0.531062124248497, 0.29429429429429427, 0.5571142284569138, 0.2912912912912913, 0.6172344689378757, 0.2927927927927928, 0.6452905811623246, 0.3033033033033033, 0.6452905811623246, 0.33933933933933935, 0.655310621242485, 0.34384384384384387, 0.6593186372745491, 0.35435435435435436, 0.6432865731462926, 0.3783783783783784, 0.6432865731462926, 0.3918918918918919, 0.6533066132264529, 0.4099099099099099, 0.6673346693386774, 0.42492492492492495, 0.6713426853707415, 0.4444444444444444, 0.6773547094188377, 0.45645645645645644, 0.6773547094188377, 0.4774774774774775, 0.6613226452905812, 0.5135135135135135, 0.6613226452905812, 0.5570570570570571, 0.6673346693386774, 0.575075075075075, 0.6633266533066132, 0.6756756756756757, 0.657314629258517, 0.6906906906906907, 0.6432865731462926, 0.7042042042042042, 0.625250501002004, 0.7132132132132132, 0.591182364729459, 0.7222222222222222]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/121.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.19238476953907815, 0.6036036036036037, 0.13827655310621242, 0.6006006006006006, 0.11222444889779559, 0.5915915915915916, 0.10220440881763528, 0.5825825825825826, 0.10020040080160321, 0.5645645645645646, 0.10821643286573146, 0.5540540540540541, 0.10020040080160321, 0.5540540540540541, 0.09218436873747494, 0.5435435435435435, 0.09218436873747494, 0.5285285285285285, 0.09619238476953908, 0.5225225225225225, 0.10420841683366733, 0.5180180180180181, 0.10420841683366733, 0.5135135135135135, 0.09619238476953908, 0.509009009009009, 0.09218436873747494, 0.4954954954954955, 0.10220440881763528, 0.48348348348348347, 0.1282565130260521, 0.46996996996997, 0.15030060120240482, 0.466966966966967, 0.1683366733466934, 0.46096096096096095, 0.2985971943887776, 0.45795795795795796, 0.3486973947895792, 0.45345345345345345, 0.46292585170340683, 0.44894894894894893, 0.4849699398797595, 0.45345345345345345, 0.5170340681362725, 0.46996996996997, 0.5470941883767535, 0.47297297297297297, 0.5851703406813628, 0.47297297297297297, 0.5971943887775552, 0.47597597597597596, 0.6072144288577155, 0.47597597597597596, 0.6112224448897795, 0.47147147147147145, 0.6472945891783567, 0.47147147147147145, 0.6613226452905812, 0.4804804804804805, 0.6673346693386774, 0.4984984984984985, 0.6673346693386774, 0.524024024024024, 0.657314629258517, 0.5375375375375375, 0.6192384769539078, 0.5405405405405406, 0.6112224448897795, 0.536036036036036, 0.593186372745491, 0.5420420420420421, 0.5350701402805611, 0.551051051051051, 0.49298597194388777, 0.5765765765765766, 0.36472945891783565, 0.5825825825825826, 0.3527054108216433, 0.5900900900900901, 0.34468937875751504, 0.5915915915915916, 0.3246492985971944, 0.5915915915915916, 0.2665330661322645, 0.5975975975975976, 0.2124248496993988, 0.5990990990990991, 0.19238476953907815, 0.6036036036036037]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3927855711422846, 0.7522522522522522, 0.37074148296593185, 0.7522522522522522, 0.3627254509018036, 0.7462462462462462, 0.3587174348697395, 0.7387387387387387, 0.35470941883767537, 0.7117117117117117, 0.3486973947895792, 0.5960960960960962, 0.35470941883767537, 0.5885885885885885, 0.3687374749498998, 0.5825825825825826, 0.46092184368737477, 0.5795795795795796, 0.5070140280561122, 0.575075075075075, 0.5450901803607214, 0.575075075075075, 0.561122244488978, 0.5780780780780781, 0.6192384769539078, 0.5780780780780781, 0.7034068136272545, 0.5630630630630631, 0.7234468937875751, 0.5630630630630631, 0.7454909819639278, 0.5645645645645646, 0.7615230460921844, 0.5705705705705706, 0.7735470941883767, 0.5720720720720721, 0.8016032064128257, 0.5855855855855856, 0.8316633266533067, 0.5840840840840841, 0.8496993987975952, 0.5735735735735735, 0.8657314629258517, 0.5735735735735735, 0.8777555110220441, 0.5780780780780781, 0.8817635270541082, 0.5825825825825826, 0.9158316633266533, 0.581081081081081, 0.9378757515030061, 0.5930930930930931, 0.9539078156312625, 0.6201201201201201, 0.9559118236472945, 0.6441441441441441, 0.9438877755511023, 0.6681681681681682, 0.935871743486974, 0.6696696696696697, 0.9338677354709419, 0.6726726726726727, 0.905811623246493, 0.6756756756756757, 0.8957915831663327, 0.6846846846846847, 0.8837675350701403, 0.6891891891891891, 0.8697394789579158, 0.6891891891891891, 0.8537074148296593, 0.6831831831831832, 0.8316633266533067, 0.6831831831831832, 0.8196392785571143, 0.6861861861861862, 0.7955911823647295, 0.7057057057057057, 0.7555110220440882, 0.7207207207207207, 0.7294589178356713, 0.7237237237237237, 0.6793587174348698, 0.7192192192192193, 0.6292585170340681, 0.7207207207207207, 0.6192384769539078, 0.7237237237237237, 0.6052104208416834, 0.7237237237237237, 0.6012024048096193, 0.7267267267267268, 0.5791583166332666, 0.7297297297297297, 0.5470941883767535, 0.7387387387387387, 0.533066132264529, 0.7387387387387387, 0.5130260521042084, 0.7432432432432432, 0.40681362725450904, 0.7492492492492493, 0.3927855711422846, 0.7522522522522522]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/126.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.2625250501002004, 0.5675675675675675, 0.25851703406813625, 0.5645645645645646, 0.2565130260521042, 0.5555555555555556, 0.23246492985971945, 0.37537537537537535, 0.24248496993987975, 0.3588588588588589, 0.24248496993987975, 0.35435435435435436, 0.24849699398797595, 0.3483483483483483, 0.24448897795591182, 0.33633633633633636, 0.2565130260521042, 0.32732732732732733, 0.30861723446893785, 0.3183183183183183, 0.35470941883767537, 0.3183183183183183, 0.39879759519038077, 0.3258258258258258, 0.41082164328657317, 0.33183183183183185, 0.4088176352705411, 0.34384384384384387, 0.42685370741482964, 0.3663663663663664, 0.4288577154308617, 0.37537537537537535, 0.4308617234468938, 0.5180180180180181, 0.2625250501002004, 0.5675675675675675]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.3907815631262525, 0.8528528528528528, 0.3807615230460922, 0.8498498498498499, 0.23647294589178355, 0.7372372372372372, 0.22845691382765532, 0.6801801801801802, 0.22044088176352705, 0.6576576576576577, 0.21442885771543085, 0.5975975975975976, 0.21042084168336672, 0.5930930930930931, 0.2124248496993988, 0.5855855855855856, 0.23046092184368738, 0.5765765765765766, 0.250501002004008, 0.5735735735735735, 0.26452905811623245, 0.5675675675675675, 0.3026052104208417, 0.5585585585585585, 0.33266533066132264, 0.5480480480480481, 0.34468937875751504, 0.5465465465465466, 0.38276553106212424, 0.5330330330330331, 0.42084168336673344, 0.524024024024024, 0.49498997995991983, 0.5, 0.531062124248497, 0.49099099099099097, 0.5490981963927856, 0.48348348348348347, 0.5811623246492986, 0.47597597597597596, 0.6893787575150301, 0.44294294294294295, 0.7054108216432866, 0.44294294294294295, 0.7154308617234469, 0.44594594594594594, 0.7895791583166333, 0.45495495495495497, 0.811623246492986, 0.45495495495495497, 0.8216432865731463, 0.44894894894894893, 0.8336673346693386, 0.44894894894894893, 0.8316633266533067, 0.46546546546546547, 0.8657314629258517, 0.4894894894894895, 0.8597194388777555, 0.4984984984984985, 0.8597194388777555, 0.5075075075075075, 0.8697394789579158, 0.515015015015015, 0.875751503006012, 0.524024024024024, 0.8797595190380761, 0.5465465465465466, 0.8777555110220441, 0.5540540540540541, 0.8657314629258517, 0.5690690690690691, 0.8416833667334669, 0.5720720720720721, 0.8376753507014028, 0.5780780780780781, 0.8276553106212425, 0.6246246246246246, 0.7595190380761523, 0.6621621621621622, 0.5811623246492986, 0.7522522522522522, 0.5250501002004008, 0.7837837837837838, 0.40681362725450904, 0.8423423423423423, 0.3907815631262525, 0.8528528528528528]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/15.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3466933867735471, 0.6996996996996997, 0.3066132264529058, 0.6996996996996997, 0.28857715430861725, 0.6966966966966966, 0.2545090180360721, 0.6831831831831832, 0.23847695390781562, 0.6651651651651652, 0.22444889779559118, 0.575075075075075, 0.22044088176352705, 0.566066066066066, 0.22244488977955912, 0.4804804804804805, 0.19839679358717435, 0.4339339339339339, 0.19438877755511022, 0.3978978978978979, 0.20240480961923848, 0.37237237237237236, 0.22645290581162325, 0.3333333333333333, 0.22645290581162325, 0.31681681681681684, 0.22044088176352705, 0.30930930930930933, 0.22044088176352705, 0.3048048048048048, 0.20841683366733466, 0.2957957957957958, 0.20240480961923848, 0.28378378378378377, 0.20440881763527055, 0.2777777777777778, 0.218436873747495, 0.26576576576576577, 0.21442885771543085, 0.22972972972972974, 0.22244488977955912, 0.22072072072072071, 0.24248496993987975, 0.21621621621621623, 0.2845691382765531, 0.2132132132132132, 0.342685370741483, 0.2132132132132132, 0.35070140280561124, 0.2147147147147147, 0.3667334669338677, 0.2222222222222222, 0.3727454909819639, 0.26426426426426425, 0.3847695390781563, 0.2702702702702703, 0.3927855711422846, 0.2777777777777778, 0.3907815631262525, 0.28678678678678676, 0.3787575150300601, 0.3048048048048048, 0.3807615230460922, 0.32732732732732733, 0.41282565130260523, 0.36486486486486486, 0.4288577154308617, 0.4009009009009009, 0.4288577154308617, 0.4264264264264264, 0.42084168336673344, 0.44144144144144143, 0.4188376753507014, 0.45795795795795796, 0.4188376753507014, 0.4894894894894895, 0.43687374749499, 0.5495495495495496, 0.43887775551102204, 0.6411411411411412, 0.4348697394789579, 0.6561561561561562, 0.4088176352705411, 0.6801801801801802, 0.37074148296593185, 0.6951951951951952, 0.36072144288577157, 0.6951951951951952, 0.35671342685370744, 0.6981981981981982, 0.3466933867735471, 0.6996996996996997]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7134268537074149, 0.7267267267267268, 0.6693386773547094, 0.7237237237237237, 0.625250501002004, 0.7072072072072072, 0.5991983967935872, 0.6891891891891891, 0.5891783567134269, 0.6771771771771772, 0.5851703406813628, 0.6666666666666666, 0.5951903807615231, 0.43993993993993996, 0.6012024048096193, 0.4294294294294294, 0.6212424849699398, 0.4099099099099099, 0.6212424849699398, 0.3948948948948949, 0.627254509018036, 0.3888888888888889, 0.6412825651302605, 0.38288288288288286, 0.7014028056112225, 0.3738738738738739, 0.7695390781563126, 0.3783783783783784, 0.8196392785571143, 0.39039039039039036, 0.8356713426853707, 0.4009009009009009, 0.8356713426853707, 0.41291291291291293, 0.8316633266533067, 0.4219219219219219, 0.843687374749499, 0.43543543543543545, 0.8496993987975952, 0.44894894894894893, 0.8496993987975952, 0.47297297297297297, 0.8076152304609219, 0.6651651651651652, 0.8056112224448898, 0.6861861861861862, 0.7935871743486974, 0.7012012012012012, 0.7695390781563126, 0.7162162162162162, 0.7394789579158316, 0.7237237237237237, 0.7134268537074149, 0.7267267267267268]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/2.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6132264529058116, 0.7342342342342343, 0.5831663326653307, 0.7342342342342343, 0.5671342685370742, 0.7297297297297297, 0.5490981963927856, 0.7282282282282282, 0.5150300601202404, 0.7087087087087087, 0.501002004008016, 0.6876876876876877, 0.49899799599198397, 0.5975975975975976, 0.503006012024048, 0.5705705705705706, 0.5090180360721442, 0.5585585585585585, 0.5090180360721442, 0.5075075075075075, 0.5050100200400801, 0.493993993993994, 0.49899799599198397, 0.4864864864864865, 0.4969939879759519, 0.46096096096096095, 0.501002004008016, 0.4444444444444444, 0.5090180360721442, 0.4294294294294294, 0.5370741482965932, 0.3993993993993994, 0.5390781563126252, 0.37537537537537535, 0.5290581162324649, 0.36486486486486486, 0.5230460921843687, 0.3483483483483483, 0.5390781563126252, 0.33933933933933935, 0.5410821643286573, 0.3048048048048048, 0.5551102204408818, 0.29429429429429427, 0.5871743486973948, 0.2897897897897898, 0.6432865731462926, 0.2912912912912913, 0.6633266533066132, 0.29429429429429427, 0.6793587174348698, 0.30180180180180183, 0.6793587174348698, 0.33783783783783783, 0.6933867735470942, 0.34684684684684686, 0.6933867735470942, 0.35735735735735735, 0.6813627254509018, 0.36786786786786785, 0.6773547094188377, 0.3768768768768769, 0.6773547094188377, 0.3993993993993994, 0.7034068136272545, 0.4369369369369369, 0.7094188376753507, 0.4594594594594595, 0.7094188376753507, 0.48348348348348347, 0.6993987975951904, 0.5, 0.6893787575150301, 0.5330330330330331, 0.6913827655310621, 0.5795795795795796, 0.6973947895791583, 0.5900900900900901, 0.6973947895791583, 0.6186186186186187, 0.6893787575150301, 0.6741741741741741, 0.6893787575150301, 0.6936936936936937, 0.6813627254509018, 0.7087087087087087, 0.6653306613226453, 0.7207207207207207, 0.6372745490981964, 0.7312312312312312, 0.6132264529058116, 0.7342342342342343]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/24.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.4288577154308617, 0.7627627627627628, 0.40080160320641284, 0.7627627627627628, 0.3927855711422846, 0.7567567567567568, 0.38276553106212424, 0.7462462462462462, 0.36072144288577157, 0.7507507507507507, 0.33867735470941884, 0.7327327327327328, 0.32665330661322645, 0.7162162162162162, 0.3226452905811623, 0.7057057057057057, 0.3106212424849699, 0.6336336336336337, 0.3066132264529058, 0.5720720720720721, 0.2985971943887776, 0.5075075075075075, 0.2925851703406814, 0.484984984984985, 0.2925851703406814, 0.45495495495495497, 0.2965931863727455, 0.4369369369369369, 0.312625250501002, 0.4144144144144144, 0.3286573146292585, 0.4009009009009009, 0.3366733466933868, 0.3843843843843844, 0.3366733466933868, 0.3258258258258258, 0.342685370741483, 0.30180180180180183, 0.3346693386773547, 0.2957957957957958, 0.33266533066132264, 0.24924924924924924, 0.3587174348697395, 0.24324324324324326, 0.4188376753507014, 0.24174174174174173, 0.45090180360721444, 0.24474474474474475, 0.46292585170340683, 0.24774774774774774, 0.46693386773547096, 0.29429429429429427, 0.45691382765531063, 0.3003003003003003, 0.46092184368737477, 0.3048048048048048, 0.4709418837675351, 0.34234234234234234, 0.47695390781563124, 0.37987987987987987, 0.48296593186372744, 0.3933933933933934, 0.5110220440881763, 0.4219219219219219, 0.5250501002004008, 0.44294294294294295, 0.5270541082164328, 0.4519519519519519, 0.5250501002004008, 0.6891891891891891, 0.5070140280561122, 0.7192192192192193, 0.5070140280561122, 0.7237237237237237, 0.49498997995991983, 0.7402402402402403, 0.47695390781563124, 0.7522522522522522, 0.46292585170340683, 0.7522522522522522, 0.45490981963927857, 0.7462462462462462, 0.44889779559118237, 0.7402402402402403, 0.44488977955911824, 0.7402402402402403, 0.44288577154308617, 0.7492492492492493, 0.4288577154308617, 0.7627627627627628]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5871743486973948, 0.7012012012012012, 0.5511022044088176, 0.6996996996996997, 0.5270541082164328, 0.6891891891891891, 0.5270541082164328, 0.44294294294294295, 0.5110220440881763, 0.4189189189189189, 0.501002004008016, 0.4099099099099099, 0.501002004008016, 0.4069069069069069, 0.5130260521042084, 0.3963963963963964, 0.5210420841683366, 0.3813813813813814, 0.5210420841683366, 0.36786786786786785, 0.5170340681362725, 0.3588588588588589, 0.5070140280561122, 0.35135135135135137, 0.5070140280561122, 0.34384384384384387, 0.5090180360721442, 0.33783783783783783, 0.5210420841683366, 0.33183183183183185, 0.5230460921843687, 0.2957957957957958, 0.5370741482965932, 0.2897897897897898, 0.5691382765531062, 0.28678678678678676, 0.6212424849699398, 0.2882882882882883, 0.6452905811623246, 0.29429429429429427, 0.6513026052104208, 0.2987987987987988, 0.6513026052104208, 0.33483483483483484, 0.6633266533066132, 0.33783783783783783, 0.6633266533066132, 0.34684684684684686, 0.6613226452905812, 0.35285285285285284, 0.6492985971943888, 0.36486486486486486, 0.6472945891783567, 0.3843843843843844, 0.6513026052104208, 0.3933933933933934, 0.6653306613226453, 0.4099099099099099, 0.6793587174348698, 0.44144144144144143, 0.6793587174348698, 0.46096096096096095, 0.6693386773547094, 0.4864864864864865, 0.6633266533066132, 0.5135135135135135, 0.6633266533066132, 0.5420420420420421, 0.6653306613226453, 0.5570570570570571, 0.6693386773547094, 0.5630630630630631, 0.6653306613226453, 0.6591591591591591, 0.655310621242485, 0.6771771771771772, 0.6392785571142284, 0.6876876876876877, 0.6232464929859719, 0.6951951951951952, 0.5871743486973948, 0.7012012012012012]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/29.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.30861723446893785, 0.6636636636636637, 0.29458917835671344, 0.6501501501501501, 0.2865731462925852, 0.6321321321321322, 0.2725450901803607, 0.5630630630630631, 0.2745490981963928, 0.5, 0.2685370741482966, 0.4804804804804805, 0.250501002004008, 0.45045045045045046, 0.250501002004008, 0.4264264264264264, 0.2545090180360721, 0.4099099099099099, 0.2745490981963928, 0.3783783783783784, 0.2745490981963928, 0.3588588588588589, 0.2565130260521042, 0.33933933933933935, 0.2565130260521042, 0.3303303303303303, 0.25851703406813625, 0.3258258258258258, 0.2685370741482966, 0.31981981981981983, 0.2665330661322645, 0.2882882882882883, 0.27054108216432865, 0.28378378378378377, 0.28857715430861725, 0.2777777777777778, 0.30861723446893785, 0.2747747747747748, 0.3687374749498998, 0.2747747747747748, 0.3907815631262525, 0.2822822822822823, 0.3967935871743487, 0.3138138138138138, 0.40080160320641284, 0.3183183183183183, 0.4088176352705411, 0.31981981981981983, 0.41282565130260523, 0.3228228228228228, 0.4148296593186373, 0.3333333333333333, 0.40480961923847697, 0.34534534534534533, 0.4028056112224449, 0.3663663663663664, 0.4088176352705411, 0.37537537537537535, 0.4288577154308617, 0.3933933933933934, 0.44288577154308617, 0.4159159159159159, 0.44488977955911824, 0.44894894894894893, 0.43887775551102204, 0.4624624624624625, 0.43887775551102204, 0.5015015015015015, 0.4408817635270541, 0.512012012012012, 0.45090180360721444, 0.5285285285285285, 0.45490981963927857, 0.5420420420420421, 0.4589178356713427, 0.6246246246246246, 0.45490981963927857, 0.6276276276276276, 0.37074148296593185, 0.6306306306306306, 0.3587174348697395, 0.6351351351351351, 0.3406813627254509, 0.6471471471471472, 0.3186372745490982, 0.6456456456456456, 0.312625250501002, 0.6531531531531531, 0.30861723446893785, 0.6636636636636637]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.749498997995992, 0.6636636636636637, 0.7394789579158316, 0.6441441441441441, 0.7294589178356713, 0.6426426426426426, 0.7194388777555111, 0.6306306306306306, 0.7054108216432866, 0.6231231231231231, 0.5811623246492986, 0.6246246246246246, 0.5791583166332666, 0.6126126126126126, 0.5811623246492986, 0.4189189189189189, 0.5851703406813628, 0.4009009009009009, 0.5951903807615231, 0.3843843843843844, 0.6292585170340681, 0.34984984984984985, 0.6432865731462926, 0.3003003003003003, 0.6432865731462926, 0.28378378378378377, 0.6472945891783567, 0.27927927927927926, 0.6472945891783567, 0.2702702702702703, 0.6412825651302605, 0.2627627627627628, 0.6452905811623246, 0.23273273273273273, 0.6513026052104208, 0.22522522522522523, 0.6773547094188377, 0.21921921921921922, 0.7194388777555111, 0.21921921921921922, 0.7575150300601202, 0.22522522522522523, 0.7675350701402806, 0.22822822822822822, 0.7635270541082164, 0.26876876876876876, 0.7555110220440882, 0.2747747747747748, 0.7555110220440882, 0.2807807807807808, 0.7615230460921844, 0.2897897897897898, 0.7655310621242485, 0.35585585585585583, 0.7675350701402806, 0.36186186186186187, 0.7915831663326653, 0.3858858858858859, 0.7995991983967936, 0.4069069069069069, 0.7995991983967936, 0.43093093093093093, 0.7895791583166333, 0.481981981981982, 0.7855711422845691, 0.5285285285285285, 0.7735470941883767, 0.5855855855855856, 0.7735470941883767, 0.6111111111111112, 0.7635270541082164, 0.6441441441441441, 0.7575150300601202, 0.6561561561561562, 0.749498997995992, 0.6636636636636637]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.4468937875751503, 0.8063063063063063, 0.37074148296593185, 0.8063063063063063, 0.33867735470941884, 0.7912912912912913, 0.3166332665330661, 0.7897897897897898, 0.312625250501002, 0.7837837837837838, 0.3026052104208417, 0.7507507507507507, 0.3026052104208417, 0.7012012012012012, 0.30861723446893785, 0.6681681681681682, 0.31462925851703405, 0.6531531531531531, 0.32064128256513025, 0.6456456456456456, 0.3406813627254509, 0.6486486486486487, 0.3627254509018036, 0.6351351351351351, 0.3847695390781563, 0.6291291291291291, 0.5290581162324649, 0.6276276276276276, 0.6713426853707415, 0.6231231231231231, 0.7054108216432866, 0.6246246246246246, 0.7274549098196392, 0.6426426426426426, 0.7374749498997996, 0.6441441441441441, 0.749498997995992, 0.6651651651651652, 0.7595190380761523, 0.7012012012012012, 0.7615230460921844, 0.7492492492492493, 0.7595190380761523, 0.7612612612612613, 0.751503006012024, 0.7777777777777778, 0.7394789579158316, 0.7837837837837838, 0.7354709418837675, 0.7912912912912913, 0.7234468937875751, 0.8018018018018018, 0.4468937875751503, 0.8063063063063063]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/33.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.24649298597194388, 0.5960960960960962, 0.23246492985971945, 0.5960960960960962, 0.22645290581162325, 0.5945945945945946, 0.218436873747495, 0.5870870870870871, 0.20440881763527055, 0.5855855855855856, 0.19438877755511022, 0.575075075075075, 0.1903807615230461, 0.5645645645645646, 0.1843687374749499, 0.5585585585585585, 0.17234468937875752, 0.5135135135135135, 0.17234468937875752, 0.484984984984985, 0.16432865731462926, 0.466966966966967, 0.14829659318637275, 0.38288288288288286, 0.15030060120240482, 0.36186186186186187, 0.17034068136272545, 0.3408408408408408, 0.17234468937875752, 0.33183183183183185, 0.1743486973947896, 0.26876876876876876, 0.16633266533066132, 0.26576576576576577, 0.1623246492985972, 0.23573573573573572, 0.1683366733466934, 0.23273273273273273, 0.20440881763527055, 0.22822822822822822, 0.23847695390781562, 0.22972972972972974, 0.2545090180360721, 0.23573573573573572, 0.2565130260521042, 0.2627627627627628, 0.25250501002004005, 0.26576576576576577, 0.25250501002004005, 0.2702702702702703, 0.2565130260521042, 0.2777777777777778, 0.2605210420841683, 0.27927927927927926, 0.2725450901803607, 0.3258258258258258, 0.3026052104208417, 0.3483483483483483, 0.312625250501002, 0.3663663663663664, 0.3186372745490982, 0.3918918918918919, 0.3246492985971944, 0.466966966966967, 0.3366733466933868, 0.5330330330330331, 0.3366733466933868, 0.5525525525525525, 0.33266533066132264, 0.5645645645645646, 0.3186372745490982, 0.5780780780780781, 0.3066132264529058, 0.5795795795795796, 0.3046092184368738, 0.5840840840840841, 0.2925851703406814, 0.5915915915915916, 0.27655310621242485, 0.5930930930930931, 0.2725450901803607, 0.5900900900900901, 0.2605210420841683, 0.5765765765765766, 0.25851703406813625, 0.5780780780780781, 0.25851703406813625, 0.5885885885885885, 0.25250501002004005, 0.5945945945945946, 0.24649298597194388, 0.5960960960960962]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.5270541082164328, 0.7987987987987988, 0.4789579158316633, 0.7972972972972973, 0.4468937875751503, 0.7882882882882883, 0.4288577154308617, 0.7762762762762763, 0.4188376753507014, 0.7612612612612613, 0.41282565130260523, 0.7462462462462462, 0.41282565130260523, 0.7297297297297297, 0.4088176352705411, 0.7147147147147147, 0.40480961923847697, 0.6426426426426426, 0.41082164328657317, 0.6291291291291291, 0.41082164328657317, 0.5870870870870871, 0.40480961923847697, 0.5675675675675675, 0.39879759519038077, 0.5615615615615616, 0.39478957915831664, 0.5495495495495496, 0.3927855711422846, 0.524024024024024, 0.40080160320641284, 0.4984984984984985, 0.41282565130260523, 0.4774774774774775, 0.4288577154308617, 0.4624624624624625, 0.4288577154308617, 0.44144144144144143, 0.41282565130260523, 0.42342342342342343, 0.41082164328657317, 0.41291291291291293, 0.42685370741482964, 0.4009009009009009, 0.42685370741482964, 0.36786786786786785, 0.4308617234468938, 0.3633633633633634, 0.44488977955911824, 0.35585585585585583, 0.4849699398797595, 0.34984984984984985, 0.531062124248497, 0.35135135135135137, 0.5450901803607214, 0.35585585585585583, 0.5531062124248497, 0.35585585585585583, 0.5671342685370742, 0.3633633633633634, 0.5711422845691383, 0.37237237237237236, 0.5711422845691383, 0.3978978978978979, 0.5851703406813628, 0.4099099099099099, 0.5891783567134269, 0.4174174174174174, 0.5871743486973948, 0.42342342342342343, 0.5751503006012024, 0.43543543543543545, 0.5731462925851704, 0.4594594594594595, 0.6012024048096193, 0.4924924924924925, 0.6112224448897795, 0.521021021021021, 0.6072144288577155, 0.56006006006006, 0.5991983967935872, 0.575075075075075, 0.5971943887775552, 0.5870870870870871, 0.5971943887775552, 0.6201201201201201, 0.6052104208416834, 0.6336336336336337, 0.6092184368737475, 0.6621621621621622, 0.6052104208416834, 0.7447447447447447, 0.593186372745491, 0.7702702702702703, 0.5871743486973948, 0.7747747747747747, 0.5531062124248497, 0.7927927927927928, 0.5270541082164328, 0.7987987987987988]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.749498997995992, 0.6096096096096096, 0.7254509018036072, 0.6096096096096096, 0.7034068136272545, 0.6066066066066066, 0.6833667334669339, 0.5990990990990991, 0.6653306613226453, 0.5855855855855856, 0.6533066132264529, 0.5720720720720721, 0.6613226452905812, 0.4159159159159159, 0.6693386773547094, 0.4039039039039039, 0.6793587174348698, 0.3963963963963964, 0.6793587174348698, 0.3858858858858859, 0.6813627254509018, 0.38288288288288286, 0.6933867735470942, 0.3783783783783784, 0.7354709418837675, 0.37237237237237236, 0.7875751503006012, 0.3768768768768769, 0.811623246492986, 0.3858858858858859, 0.8196392785571143, 0.3918918918918919, 0.8156312625250501, 0.40540540540540543, 0.8276553106212425, 0.4174174174174174, 0.8196392785571143, 0.4894894894894895, 0.8036072144288577, 0.5840840840840841, 0.7995991983967936, 0.5900900900900901, 0.7835671342685371, 0.5990990990990991, 0.749498997995992, 0.6096096096096096]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/38.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.342685370741483, 0.8303303303303303, 0.2925851703406814, 0.8273273273273273, 0.17234468937875752, 0.8138138138138138, 0.14228456913827656, 0.8138138138138138, 0.13827655310621242, 0.8063063063063063, 0.05811623246492986, 0.4219219219219219, 0.07014028056112225, 0.4009009009009009, 0.07414829659318638, 0.3858858858858859, 0.1062124248496994, 0.3333333333333333, 0.1062124248496994, 0.2987987987987988, 0.11222444889779559, 0.2912912912912913, 0.1282565130260521, 0.2897897897897898, 0.2785571142284569, 0.2987987987987988, 0.32064128256513025, 0.3033033033033033, 0.3466933867735471, 0.3033033033033033, 0.3587174348697395, 0.3063063063063063, 0.3667334669338677, 0.3153153153153153, 0.3627254509018036, 0.32732732732732733, 0.3627254509018036, 0.3483483483483483, 0.36472945891783565, 0.35285285285285284, 0.3807615230460922, 0.3633633633633634, 0.3907815631262525, 0.3768768768768769, 0.38877755511022044, 0.7207207207207207, 0.35671342685370744, 0.8138138138138138, 0.342685370741483, 0.8303303303303303]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7555110220440882, 0.7537537537537538, 0.7454909819639278, 0.7537537537537538, 0.7394789579158316, 0.7507507507507507, 0.7094188376753507, 0.7327327327327328, 0.7074148296593187, 0.7267267267267268, 0.7014028056112225, 0.7267267267267268, 0.6813627254509018, 0.7192192192192193, 0.6452905811623246, 0.7027027027027027, 0.6132264529058116, 0.7057057057057057, 0.593186372745491, 0.7027027027027027, 0.5731462925851704, 0.6951951951951952, 0.5470941883767535, 0.6771771771771772, 0.4288577154308617, 0.6081081081081081, 0.4088176352705411, 0.5915915915915916, 0.3907815631262525, 0.5690690690690691, 0.3907815631262525, 0.5645645645645646, 0.3967935871743487, 0.5555555555555556, 0.40080160320641284, 0.5540540540540541, 0.40080160320641284, 0.551051051051051, 0.39478957915831664, 0.5465465465465466, 0.39879759519038077, 0.5315315315315315, 0.40681362725450904, 0.5255255255255256, 0.42084168336673344, 0.524024024024024, 0.4248496993987976, 0.512012012012012, 0.4308617234468938, 0.5075075075075075, 0.44288577154308617, 0.5045045045045045, 0.4909819639278557, 0.5075075075075075, 0.5150300601202404, 0.5165165165165165, 0.6673346693386774, 0.5870870870870871, 0.6833667334669339, 0.5990990990990991, 0.6933867735470942, 0.6141141141141141, 0.6973947895791583, 0.6156156156156156, 0.7014028056112225, 0.6321321321321322, 0.7555110220440882, 0.6726726726726727, 0.7595190380761523, 0.6711711711711712, 0.7855711422845691, 0.6831831831831832, 0.7975951903807615, 0.6891891891891891, 0.8036072144288577, 0.6951951951951952, 0.8056112224448898, 0.7042042042042042, 0.7995991983967936, 0.7207207207207207, 0.7875751503006012, 0.7357357357357357, 0.7675350701402806, 0.7507507507507507, 0.7555110220440882, 0.7537537537537538]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7414829659318637, 0.6111111111111112, 0.7054108216432866, 0.6096096096096096, 0.6913827655310621, 0.6051051051051051, 0.6673346693386774, 0.5855855855855856, 0.657314629258517, 0.5795795795795796, 0.6593186372745491, 0.521021021021021, 0.6733466933867736, 0.487987987987988, 0.6773547094188377, 0.46846846846846846, 0.6733466933867736, 0.42342342342342343, 0.6833667334669339, 0.4039039039039039, 0.7074148296593187, 0.37987987987987987, 0.7074148296593187, 0.36186186186186187, 0.7034068136272545, 0.3588588588588589, 0.7054108216432866, 0.34684684684684686, 0.7074148296593187, 0.34384384384384387, 0.7154308617234469, 0.3408408408408408, 0.717434869739479, 0.32732732732732733, 0.7234468937875751, 0.3183183183183183, 0.7434869739478958, 0.3138138138138138, 0.7755511022044088, 0.3138138138138138, 0.7975951903807615, 0.3183183183183183, 0.811623246492986, 0.3258258258258258, 0.811623246492986, 0.34984984984984985, 0.8176352705410822, 0.35435435435435436, 0.8176352705410822, 0.3633633633633634, 0.8036072144288577, 0.37537537537537535, 0.8036072144288577, 0.39039039039039036, 0.8196392785571143, 0.4174174174174174, 0.8196392785571143, 0.44144144144144143, 0.8136272545090181, 0.44744744744744747, 0.7995991983967936, 0.47897897897897895, 0.7995991983967936, 0.5345345345345346, 0.7935871743486974, 0.5480480480480481, 0.7875751503006012, 0.5870870870870871, 0.7675350701402806, 0.6051051051051051, 0.7414829659318637, 0.6111111111111112]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/42.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.2725450901803607, 0.8123123123123123, 0.250501002004008, 0.8123123123123123, 0.21643286573146292, 0.8063063063063063, 0.19238476953907815, 0.7927927927927928, 0.17635270541082165, 0.7732732732732732, 0.1743486973947896, 0.7507507507507507, 0.16032064128256512, 0.6981981981981982, 0.1623246492985972, 0.6366366366366366, 0.15430861723446893, 0.6111111111111112, 0.14228456913827656, 0.5960960960960962, 0.13827655310621242, 0.5855855855855856, 0.13627254509018036, 0.5630630630630631, 0.14428857715430862, 0.5345345345345346, 0.16633266533066132, 0.506006006006006, 0.16432865731462926, 0.4924924924924925, 0.1523046092184369, 0.481981981981982, 0.14428857715430862, 0.46996996996997, 0.1462925851703407, 0.45795795795795796, 0.156312625250501, 0.4519519519519519, 0.15831663326653306, 0.4444444444444444, 0.156312625250501, 0.42042042042042044, 0.1743486973947896, 0.4069069069069069, 0.1963927855711423, 0.4024024024024024, 0.25250501002004005, 0.4009009009009009, 0.2745490981963928, 0.40540540540540543, 0.2905811623246493, 0.41291291291291293, 0.2965931863727455, 0.44294294294294295, 0.31462925851703405, 0.4519519519519519, 0.31462925851703405, 0.46396396396396394, 0.3026052104208417, 0.481981981981982, 0.3046092184368738, 0.4984984984984985, 0.3306613226452906, 0.5180180180180181, 0.34468937875751504, 0.5435435435435435, 0.34468937875751504, 0.5795795795795796, 0.33867735470941884, 0.6006006006006006, 0.33867735470941884, 0.6321321321321322, 0.3527054108216433, 0.6681681681681682, 0.35470941883767537, 0.7177177177177178, 0.3587174348697395, 0.7387387387387387, 0.35671342685370744, 0.7627627627627628, 0.3486973947895792, 0.7717717717717718, 0.3486973947895792, 0.7762762762762763, 0.32665330661322645, 0.7957957957957958, 0.3106212424849699, 0.8003003003003003, 0.30060120240480964, 0.8063063063063063, 0.2725450901803607, 0.8123123123123123]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.6172344689378757, 0.7552552552552553, 0.6112224448897795, 0.7552552552552553, 0.5190380761523046, 0.7087087087087087, 0.33867735470941884, 0.6126126126126126, 0.3406813627254509, 0.5930930930930931, 0.34468937875751504, 0.5840840840840841, 0.34468937875751504, 0.539039039039039, 0.33266533066132264, 0.5180180180180181, 0.3066132264529058, 0.4984984984984985, 0.41282565130260523, 0.466966966966967, 0.46893787575150303, 0.487987987987988, 0.5430861723446894, 0.5105105105105106, 0.6813627254509018, 0.5585585585585585, 0.7434869739478958, 0.5765765765765766, 0.7675350701402806, 0.6246246246246246, 0.7735470941883767, 0.6441441441441441, 0.7775551102204409, 0.6486486486486487, 0.7975951903807615, 0.6546546546546547, 0.8096192384769539, 0.6546546546546547, 0.8136272545090181, 0.6576576576576577, 0.7094188376753507, 0.7387387387387387, 0.7014028056112225, 0.7387387387387387, 0.6933867735470942, 0.7447447447447447, 0.687374749498998, 0.7447447447447447, 0.6753507014028056, 0.7327327327327328, 0.6753507014028056, 0.7297297297297297, 0.6673346693386774, 0.7267267267267268, 0.6332665330661322, 0.7507507507507507, 0.627254509018036, 0.7507507507507507, 0.6172344689378757, 0.7552552552552553]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7675350701402806, 0.6006006006006006, 0.7535070140280561, 0.5960960960960962, 0.7414829659318637, 0.575075075075075, 0.6833667334669339, 0.5570570570570571, 0.6793587174348698, 0.551051051051051, 0.6793587174348698, 0.536036036036036, 0.6833667334669339, 0.5255255255255256, 0.6833667334669339, 0.5105105105105106, 0.6973947895791583, 0.43093093093093093, 0.6973947895791583, 0.4144144144144144, 0.7014028056112225, 0.4069069069069069, 0.7034068136272545, 0.3888888888888889, 0.7154308617234469, 0.3738738738738739, 0.7334669338677354, 0.36036036036036034, 0.7434869739478958, 0.34684684684684686, 0.7454909819639278, 0.33183183183183185, 0.751503006012024, 0.3228228228228228, 0.751503006012024, 0.3138138138138138, 0.7595190380761523, 0.3033033033033033, 0.7575150300601202, 0.28678678678678676, 0.7615230460921844, 0.2702702702702703, 0.7755511022044088, 0.26576576576576577, 0.8096192384769539, 0.26576576576576577, 0.8276553106212425, 0.26876876876876876, 0.843687374749499, 0.2747747747747748, 0.8396793587174348, 0.2987987987987988, 0.8336673346693386, 0.3048048048048048, 0.8356713426853707, 0.3663663663663664, 0.8537074148296593, 0.38738738738738737, 0.8557114228456913, 0.3993993993993994, 0.8517034068136272, 0.4144144144144144, 0.8517034068136272, 0.43093093093093093, 0.845691382765531, 0.44144144144144143, 0.8196392785571143, 0.5645645645645646, 0.811623246492986, 0.5780780780780781, 0.7975951903807615, 0.5900900900900901, 0.7895791583166333, 0.5900900900900901, 0.7775551102204409, 0.5990990990990991, 0.7675350701402806, 0.6006006006006006]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/47.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.2725450901803607, 0.7282282282282282, 0.24649298597194388, 0.7267267267267268, 0.23647294589178355, 0.7162162162162162, 0.22044088176352705, 0.7177177177177178, 0.20641282565130262, 0.7072072072072072, 0.18837675350701402, 0.6831831831831832, 0.16032064128256512, 0.4924924924924925, 0.16032064128256512, 0.45795795795795796, 0.17034068136272545, 0.43993993993993996, 0.18837675350701402, 0.42342342342342343, 0.19438877755511022, 0.4144144144144144, 0.1963927855711423, 0.37237237237237236, 0.20240480961923848, 0.33933933933933935, 0.19438877755511022, 0.33183183183183185, 0.19238476953907815, 0.3003003003003003, 0.1963927855711423, 0.2957957957957958, 0.20440881763527055, 0.2927927927927928, 0.23246492985971945, 0.2897897897897898, 0.27655310621242485, 0.2912912912912913, 0.29458917835671344, 0.29429429429429427, 0.3026052104208417, 0.2972972972972973, 0.3066132264529058, 0.33633633633633636, 0.30060120240480964, 0.3408408408408408, 0.30060120240480964, 0.34534534534534533, 0.3066132264529058, 0.35135135135135137, 0.32064128256513025, 0.4069069069069069, 0.3246492985971944, 0.4144144144144144, 0.35470941883767537, 0.43993993993993996, 0.36072144288577157, 0.45045045045045046, 0.3667334669338677, 0.47297297297297297, 0.3667334669338677, 0.539039039039039, 0.3727454909819639, 0.6531531531531531, 0.3667334669338677, 0.6786786786786787, 0.35671342685370744, 0.6921921921921922, 0.3466933867735471, 0.6966966966966966, 0.342685370741483, 0.7057057057057057, 0.3286573146292585, 0.7177177177177178, 0.3106212424849699, 0.7222222222222222, 0.2985971943887776, 0.7147147147147147, 0.2985971943887776, 0.7087087087087087, 0.2925851703406814, 0.7042042042042042, 0.28857715430861725, 0.7177177177177178, 0.2785571142284569, 0.7267267267267268, 0.2725450901803607, 0.7282282282282282]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5090180360721442, 0.7297297297297297, 0.48897795591182364, 0.7297297297297297, 0.4649298597194389, 0.7252252252252253, 0.4308617234468938, 0.7117117117117117, 0.4148296593186373, 0.6936936936936937, 0.41282565130260523, 0.5075075075075075, 0.4308617234468938, 0.4864864864864865, 0.4288577154308617, 0.47897897897897895, 0.4308617234468938, 0.4744744744744745, 0.4468937875751503, 0.46546546546546547, 0.46092184368737477, 0.46096096096096095, 0.4909819639278557, 0.45795795795795796, 0.5350701402805611, 0.4594594594594595, 0.5731462925851704, 0.46996996996997, 0.5811623246492986, 0.47297297297297297, 0.5851703406813628, 0.4804804804804805, 0.5851703406813628, 0.493993993993994, 0.6012024048096193, 0.5105105105105106, 0.5851703406813628, 0.6921921921921922, 0.5771543086172345, 0.7042042042042042, 0.5591182364729459, 0.7162162162162162, 0.5210420841683366, 0.7282282282282282, 0.5090180360721442, 0.7297297297297297]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.6913827655310621, 0.7507507507507507, 0.685370741482966, 0.7507507507507507, 0.6673346693386774, 0.7357357357357357, 0.5891783567134269, 0.6666666666666666, 0.5971943887775552, 0.5825825825825826, 0.6232464929859719, 0.3888888888888889, 0.6332665330661322, 0.33783783783783783, 0.6332665330661322, 0.31981981981981983, 0.6452905811623246, 0.30930930930930933, 0.6773547094188377, 0.29429429429429427, 0.6953907815631263, 0.2897897897897898, 0.7074148296593187, 0.2807807807807808, 0.7114228456913828, 0.25075075075075076, 0.7234468937875751, 0.24174174174174173, 0.8677354709418837, 0.24174174174174173, 0.8797595190380761, 0.24474474474474475, 0.8837675350701403, 0.24774774774774774, 0.8797595190380761, 0.28378378378378377, 0.9258517034068137, 0.31681681681681684, 0.9398797595190381, 0.3303303303303303, 0.9438877755511023, 0.3408408408408408, 0.9438877755511023, 0.35285285285285284, 0.8857715430861723, 0.5375375375375375, 0.8697394789579158, 0.6021021021021021, 0.845691382765531, 0.6801801801801802, 0.8396793587174348, 0.7117117117117117, 0.6913827655310621, 0.7507507507507507]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/51.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.18036072144288579, 0.7507507507507507, 0.1743486973947896, 0.7507507507507507, 0.16633266533066132, 0.7432432432432432, 0.1062124248496994, 0.6891891891891891, 0.10020040080160321, 0.6456456456456456, 0.04809619238476954, 0.3813813813813814, 0.07414829659318638, 0.35435435435435436, 0.07214428857715431, 0.32732732732732733, 0.0781563126252505, 0.31981981981981983, 0.10420841683366733, 0.31681681681681684, 0.18637274549098196, 0.3138138138138138, 0.23847695390781562, 0.3078078078078078, 0.24849699398797595, 0.3138138138138138, 0.250501002004008, 0.33933933933933935, 0.2745490981963928, 0.3633633633633634, 0.28857715430861725, 0.37237237237237236, 0.30060120240480964, 0.39039039039039036, 0.3166332665330661, 0.6306306306306306, 0.3246492985971944, 0.6996996996996997, 0.18036072144288579, 0.7507507507507507]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5090180360721442, 0.7687687687687688, 0.4789579158316633, 0.7687687687687688, 0.44288577154308617, 0.7582582582582582, 0.4228456913827655, 0.7447447447447447, 0.4148296593186373, 0.7267267267267268, 0.40480961923847697, 0.566066066066066, 0.41082164328657317, 0.5555555555555556, 0.42084168336673344, 0.5465465465465466, 0.42084168336673344, 0.5345345345345346, 0.4248496993987976, 0.5285285285285285, 0.43887775551102204, 0.521021021021021, 0.4729458917835671, 0.515015015015015, 0.5150300601202404, 0.515015015015015, 0.5430861723446894, 0.521021021021021, 0.5571142284569138, 0.527027027027027, 0.561122244488978, 0.5345345345345346, 0.561122244488978, 0.545045045045045, 0.5771543086172345, 0.5645645645645646, 0.5771543086172345, 0.7267267267267268, 0.5731462925851704, 0.7357357357357357, 0.5571142284569138, 0.7507507507507507, 0.5531062124248497, 0.7507507507507507, 0.5470941883767535, 0.7567567567567568, 0.5090180360721442, 0.7687687687687688]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8316633266533067, 0.7447447447447447, 0.811623246492986, 0.7432432432432432, 0.8036072144288577, 0.7357357357357357, 0.7975951903807615, 0.7207207207207207, 0.7955911823647295, 0.7207207207207207, 0.7955911823647295, 0.7252252252252253, 0.7875751503006012, 0.7327327327327328, 0.781563126252505, 0.7357357357357357, 0.7735470941883767, 0.7357357357357357, 0.7575150300601202, 0.7237237237237237, 0.7575150300601202, 0.7207207207207207, 0.751503006012024, 0.7162162162162162, 0.751503006012024, 0.7117117117117117, 0.7394789579158316, 0.7042042042042042, 0.7334669338677354, 0.6921921921921922, 0.7314629258517034, 0.6636636636636637, 0.7414829659318637, 0.551051051051051, 0.7454909819639278, 0.5330330330330331, 0.7454909819639278, 0.5075075075075075, 0.7535070140280561, 0.4894894894894895, 0.7895791583166333, 0.45645645645645644, 0.7955911823647295, 0.42792792792792794, 0.8016032064128257, 0.41291291291291293, 0.8096192384769539, 0.4024024024024024, 0.8056112224448898, 0.3843843843843844, 0.811623246492986, 0.3633633633633634, 0.8256513026052105, 0.35735735735735735, 0.8797595190380761, 0.35735735735735735, 0.9038076152304609, 0.36486486486486486, 0.9078156312625251, 0.36786786786786785, 0.905811623246493, 0.3948948948948949, 0.8977955911823647, 0.3993993993993994, 0.9018036072144289, 0.46396396396396394, 0.9038076152304609, 0.47147147147147145, 0.9158316633266533, 0.4804804804804805, 0.9278557114228457, 0.5, 0.9318637274549099, 0.5195195195195195, 0.9118236472945892, 0.6261261261261262, 0.8997995991983968, 0.6741741741741741, 0.8997995991983968, 0.6906906906906907, 0.8937875751503006, 0.7087087087087087, 0.8717434869739479, 0.7327327327327328, 0.8597194388777555, 0.7372372372372372, 0.8476953907815631, 0.7342342342342343, 0.8396793587174348, 0.7417417417417418, 0.8316633266533067, 0.7447447447447447]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/56.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.16633266533066132, 0.7582582582582582, 0.14228456913827656, 0.7567567567567568, 0.11623246492985972, 0.7507507507507507, 0.11022044088176353, 0.7462462462462462, 0.09819639278557114, 0.7312312312312312, 0.09218436873747494, 0.7042042042042042, 0.08617234468937876, 0.6921921921921922, 0.08216432865731463, 0.6651651651651652, 0.07615230460921844, 0.6531531531531531, 0.07615230460921844, 0.5930930930930931, 0.06813627254509018, 0.5735735735735735, 0.056112224448897796, 0.5585585585585585, 0.050100200400801605, 0.5375375375375375, 0.052104208416833664, 0.512012012012012, 0.06613226452905811, 0.4864864864864865, 0.07414829659318638, 0.4804804804804805, 0.07414829659318638, 0.4624624624624625, 0.06012024048096192, 0.45045045045045046, 0.05410821643286573, 0.44144144144144143, 0.06412825651302605, 0.4264264264264264, 0.06212424849699399, 0.3993993993993994, 0.07615230460921844, 0.3888888888888889, 0.09819639278557114, 0.38288288288288286, 0.12424849699398798, 0.37987987987987987, 0.1523046092184369, 0.37987987987987987, 0.1743486973947896, 0.3858858858858859, 0.1843687374749499, 0.3933933933933934, 0.18837675350701402, 0.4174174174174174, 0.1963927855711423, 0.4219219219219219, 0.20440881763527055, 0.42792792792792794, 0.20240480961923848, 0.43843843843843844, 0.1963927855711423, 0.4444444444444444, 0.1963927855711423, 0.46396396396396394, 0.23246492985971945, 0.5, 0.23847695390781562, 0.5135135135135135, 0.24048096192384769, 0.545045045045045, 0.23647294589178355, 0.5615615615615616, 0.23647294589178355, 0.5870870870870871, 0.25250501002004005, 0.6216216216216216, 0.25851703406813625, 0.6531531531531531, 0.2625250501002004, 0.7072072072072072, 0.2545090180360721, 0.7222222222222222, 0.23446893787575152, 0.7387387387387387, 0.21643286573146292, 0.7477477477477478, 0.19238476953907815, 0.7552552552552553, 0.16633266533066132, 0.7582582582582582]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.4649298597194389, 0.7792792792792793, 0.34468937875751504, 0.7117117117117117, 0.34468937875751504, 0.545045045045045, 0.3346693386773547, 0.3588588588588589, 0.3627254509018036, 0.34234234234234234, 0.4028056112224449, 0.32432432432432434, 0.4028056112224449, 0.2957957957957958, 0.41082164328657317, 0.28378378378378377, 0.5470941883767535, 0.2747747747747748, 0.5551102204408818, 0.2807807807807808, 0.5531062124248497, 0.30930930930930933, 0.6152304609218436, 0.34984984984984985, 0.625250501002004, 0.36486486486486486, 0.5991983967935872, 0.6216216216216216, 0.593186372745491, 0.7162162162162162, 0.4649298597194389, 0.7792792792792793]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7975951903807615, 0.7702702702702703, 0.7595190380761523, 0.7642642642642643, 0.7354709418837675, 0.7537537537537538, 0.7094188376753507, 0.7327327327327328, 0.7014028056112225, 0.7222222222222222, 0.7014028056112225, 0.7162162162162162, 0.7194388777555111, 0.5405405405405406, 0.7374749498997996, 0.5225225225225225, 0.7374749498997996, 0.5135135135135135, 0.7474949899799599, 0.506006006006006, 0.7715430861723447, 0.4984984984984985, 0.8136272545090181, 0.496996996996997, 0.8496993987975952, 0.5015015015015015, 0.8697394789579158, 0.5075075075075075, 0.8837675350701403, 0.515015015015015, 0.8957915831663327, 0.5225225225225225, 0.8997995991983968, 0.5315315315315315, 0.8977955911823647, 0.539039039039039, 0.9098196392785571, 0.551051051051051, 0.9118236472945892, 0.566066066066066, 0.9078156312625251, 0.575075075075075, 0.87374749498998, 0.7417417417417418, 0.8557114228456913, 0.7567567567567568, 0.8356713426853707, 0.7657657657657657, 0.7975951903807615, 0.7702702702702703]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/60.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.20841683366733466, 0.6876876876876877, 0.20040080160320642, 0.6876876876876877, 0.18637274549098196, 0.6801801801801802, 0.1743486973947896, 0.6771771771771772, 0.1402805611222445, 0.6546546546546547, 0.10020040080160321, 0.6561561561561562, 0.09218436873747494, 0.6471471471471472, 0.09018036072144289, 0.6396396396396397, 0.08016032064128256, 0.5825825825825826, 0.07014028056112225, 0.5540540540540541, 0.06813627254509018, 0.5375375375375375, 0.07214428857715431, 0.5330330330330331, 0.11222444889779559, 0.5330330330330331, 0.16032064128256512, 0.493993993993994, 0.20440881763527055, 0.487987987987988, 0.2605210420841683, 0.484984984984985, 0.31462925851703405, 0.4774774774774775, 0.4729458917835671, 0.46396396396396394, 0.6072144288577155, 0.44744744744744747, 0.6773547094188377, 0.5015015015015015, 0.6793587174348698, 0.509009009009009, 0.6753507014028056, 0.5435435435435435, 0.6693386773547094, 0.5465465465465466, 0.5951903807615231, 0.5555555555555556, 0.5551102204408818, 0.5630630630630631, 0.4709418837675351, 0.5720720720720721, 0.45691382765531063, 0.5765765765765766, 0.43687374749499, 0.5915915915915916, 0.4288577154308617, 0.5945945945945946, 0.4188376753507014, 0.5945945945945946, 0.4148296593186373, 0.6006006006006006, 0.4148296593186373, 0.6381381381381381, 0.4168336673346693, 0.6516516516516516, 0.30060120240480964, 0.6696696696696697, 0.20841683366733466, 0.6876876876876877]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.501002004008016, 0.7162162162162162, 0.4909819639278557, 0.7162162162162162, 0.4709418837675351, 0.7087087087087087, 0.45691382765531063, 0.7087087087087087, 0.44889779559118237, 0.7117117117117117, 0.43887775551102204, 0.7012012012012012, 0.4228456913827655, 0.6651651651651652, 0.4148296593186373, 0.6306306306306306, 0.4148296593186373, 0.6051051051051051, 0.4188376753507014, 0.5960960960960962, 0.43687374749499, 0.5930930930930931, 0.4589178356713427, 0.5765765765765766, 0.4709418837675351, 0.5735735735735735, 0.5551102204408818, 0.5645645645645646, 0.6953907815631263, 0.5435435435435435, 0.7294589178356713, 0.545045045045045, 0.7555110220440882, 0.5615615615615616, 0.7775551102204409, 0.5885885885885885, 0.7855711422845691, 0.6096096096096096, 0.7855711422845691, 0.6321321321321322, 0.781563126252505, 0.6456456456456456, 0.7755511022044088, 0.6501501501501501, 0.7695390781563126, 0.6651651651651652, 0.7615230460921844, 0.6711711711711712, 0.749498997995992, 0.6756756756756757, 0.7254509018036072, 0.6771771771771772, 0.5651302605210421, 0.7072072072072072, 0.5210420841683366, 0.7117117117117117, 0.501002004008016, 0.7162162162162162]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7595190380761523, 0.5630630630630631, 0.7294589178356713, 0.5435435435435435, 0.7234468937875751, 0.5420420420420421, 0.6753507014028056, 0.5435435435435435, 0.6793587174348698, 0.524024024024024, 0.6773547094188377, 0.5, 0.6332665330661322, 0.46396396396396394, 0.6392785571142284, 0.4519519519519519, 0.6392785571142284, 0.42042042042042044, 0.6332665330661322, 0.3933933933933934, 0.6392785571142284, 0.37987987987987987, 0.6392785571142284, 0.37237237237237236, 0.6693386773547094, 0.33783783783783783, 0.6713426853707415, 0.3183183183183183, 0.6633266533066132, 0.3048048048048048, 0.6673346693386774, 0.2987987987987988, 0.6773547094188377, 0.2927927927927928, 0.6813627254509018, 0.26876876876876876, 0.7074148296593187, 0.26126126126126126, 0.7434869739478958, 0.26126126126126126, 0.7675350701402806, 0.26576576576576577, 0.7775551102204409, 0.2702702702702703, 0.7835671342685371, 0.27627627627627627, 0.781563126252505, 0.2987987987987988, 0.7895791583166333, 0.3078078078078078, 0.7855711422845691, 0.31681681681681684, 0.7755511022044088, 0.3258258258258258, 0.7755511022044088, 0.34684684684684686, 0.7895791583166333, 0.36486486486486486, 0.7935871743486974, 0.3783783783783784, 0.7935871743486974, 0.3978978978978979, 0.7895791583166333, 0.41291291291291293, 0.7835671342685371, 0.4189189189189189, 0.781563126252505, 0.42792792792792794, 0.7755511022044088, 0.43543543543543545, 0.7755511022044088, 0.493993993993994, 0.7675350701402806, 0.524024024024024, 0.7655310621242485, 0.5540540540540541, 0.7595190380761523, 0.5630630630630631]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/65.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.3166332665330661, 0.7282282282282282, 0.30861723446893785, 0.7282282282282282, 0.1743486973947896, 0.6921921921921922, 0.1683366733466934, 0.6546546546546547, 0.1282565130260521, 0.487987987987988, 0.11422845691382766, 0.4114114114114114, 0.10220440881763528, 0.3738738738738739, 0.1062124248496994, 0.36486486486486486, 0.12424849699398798, 0.34384384384384387, 0.15831663326653306, 0.3108108108108108, 0.16032064128256512, 0.2897897897897898, 0.156312625250501, 0.28378378378378377, 0.1623246492985972, 0.27927927927927926, 0.19438877755511022, 0.27927927927927926, 0.22645290581162325, 0.28378378378378377, 0.24448897795591182, 0.28378378378378377, 0.25250501002004005, 0.28678678678678676, 0.3246492985971944, 0.2912912912912913, 0.3346693386773547, 0.29429429429429427, 0.33266533066132264, 0.32732732732732733, 0.3727454909819639, 0.34384384384384387, 0.3847695390781563, 0.34984984984984985, 0.3847695390781563, 0.3933933933933934, 0.38877755511022044, 0.4114114114114114, 0.38877755511022044, 0.45645645645645644, 0.3927855711422846, 0.47897897897897895, 0.3907815631262525, 0.5405405405405406, 0.39879759519038077, 0.6546546546546547, 0.37074148296593185, 0.6831831831831832, 0.35470941883767537, 0.6936936936936937, 0.33867735470941884, 0.7117117117117117, 0.3166332665330661, 0.7282282282282282]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.48096192384769537, 0.6966966966966966, 0.46292585170340683, 0.6966966966966966, 0.4308617234468938, 0.6876876876876877, 0.4148296593186373, 0.6786786786786787, 0.40080160320641284, 0.6591591591591591, 0.3907815631262525, 0.5105105105105106, 0.40480961923847697, 0.4924924924924925, 0.40480961923847697, 0.4774774774774775, 0.4248496993987976, 0.466966966966967, 0.4529058116232465, 0.46096096096096095, 0.4849699398797595, 0.46096096096096095, 0.5250501002004008, 0.466966966966967, 0.5390781563126252, 0.4774774774774775, 0.5370741482965932, 0.4894894894894895, 0.5511022044088176, 0.5015015015015015, 0.5490981963927856, 0.6666666666666666, 0.5390781563126252, 0.6756756756756757, 0.5150300601202404, 0.6876876876876877, 0.48096192384769537, 0.6966966966966966]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6633266533066132, 0.6951951951951952, 0.6533066132264529, 0.6951951951951952, 0.6472945891783567, 0.6891891891891891, 0.6452905811623246, 0.6786786786786787, 0.6412825651302605, 0.6771771771771772, 0.6392785571142284, 0.6771771771771772, 0.6352705410821643, 0.6876876876876877, 0.627254509018036, 0.6951951951951952, 0.6052104208416834, 0.6921921921921922, 0.6012024048096193, 0.6891891891891891, 0.5891783567134269, 0.6771771771771772, 0.5791583166332666, 0.6771771771771772, 0.56312625250501, 0.6561561561561562, 0.561122244488978, 0.6351351351351351, 0.5571142284569138, 0.6276276276276276, 0.561122244488978, 0.5555555555555556, 0.561122244488978, 0.46996996996997, 0.5671342685370742, 0.45345345345345345, 0.5971943887775552, 0.42342342342342343, 0.6012024048096193, 0.41291291291291293, 0.6072144288577155, 0.3783783783783784, 0.6132264529058116, 0.36936936936936937, 0.6092184368737475, 0.36186186186186187, 0.6092184368737475, 0.3333333333333333, 0.6172344689378757, 0.32732732732732733, 0.6352705410821643, 0.3228228228228228, 0.6813627254509018, 0.32432432432432434, 0.6933867735470942, 0.32732732732732733, 0.7034068136272545, 0.33483483483483484, 0.7034068136272545, 0.35435435435435436, 0.6973947895791583, 0.3633633633633634, 0.6973947895791583, 0.3768768768768769, 0.7014028056112225, 0.3813813813813814, 0.7034068136272545, 0.4009009009009009, 0.7034068136272545, 0.4294294294294294, 0.7274549098196392, 0.4519519519519519, 0.7334669338677354, 0.47147147147147145, 0.7334669338677354, 0.4924924924924925, 0.7274549098196392, 0.5180180180180181, 0.7274549098196392, 0.5435435435435435, 0.7194388777555111, 0.5960960960960962, 0.717434869739479, 0.6456456456456456, 0.7134268537074149, 0.6576576576576577, 0.7054108216432866, 0.6651651651651652, 0.7034068136272545, 0.6711711711711712, 0.6933867735470942, 0.6786786786786787, 0.6893787575150301, 0.6786786786786787, 0.6773547094188377, 0.6906906906906907, 0.6633266533066132, 0.6951951951951952]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8677354709418837, 0.7222222222222222, 0.8376753507014028, 0.7222222222222222, 0.8296593186372746, 0.7192192192192193, 0.811623246492986, 0.7177177177177178, 0.7935871743486974, 0.7117117117117117, 0.7675350701402806, 0.6921921921921922, 0.7595190380761523, 0.6816816816816816, 0.7595190380761523, 0.6681681681681682, 0.7655310621242485, 0.6291291291291291, 0.7655310621242485, 0.6081081081081081, 0.7735470941883767, 0.5825825825825826, 0.779559118236473, 0.5765765765765766, 0.7835671342685371, 0.5645645645645646, 0.7835671342685371, 0.5330330330330331, 0.779559118236473, 0.5255255255255256, 0.781563126252505, 0.4924924924924925, 0.7975951903807615, 0.47147147147147145, 0.8196392785571143, 0.45495495495495497, 0.8196392785571143, 0.43543543543543545, 0.8136272545090181, 0.42792792792792794, 0.8136272545090181, 0.42042042042042044, 0.8156312625250501, 0.4159159159159159, 0.8276553106212425, 0.4084084084084084, 0.8336673346693386, 0.3858858858858859, 0.8517034068136272, 0.3768768768768769, 0.8857715430861723, 0.37537537537537535, 0.9258517034068137, 0.3813813813813814, 0.9378757515030061, 0.3858858858858859, 0.9458917835671342, 0.3918918918918919, 0.9438877755511023, 0.4174174174174174, 0.9498997995991983, 0.4219219219219219, 0.9539078156312625, 0.43243243243243246, 0.935871743486974, 0.4519519519519519, 0.9338677354709419, 0.466966966966967, 0.9498997995991983, 0.481981981981982, 0.9559118236472945, 0.4954954954954955, 0.9559118236472945, 0.5255255255255256, 0.9458917835671342, 0.5465465465465466, 0.9398797595190381, 0.5525525525525525, 0.9318637274549099, 0.575075075075075, 0.9338677354709419, 0.6261261261261262, 0.9218436873747495, 0.6591591591591591, 0.9198396793587175, 0.6816816816816816, 0.9138276553106213, 0.6981981981981982, 0.8997995991983968, 0.7132132132132132, 0.8897795591182365, 0.7177177177177178, 0.8677354709418837, 0.7222222222222222]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/7.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6032064128256514, 0.6156156156156156, 0.5711422845691383, 0.6156156156156156, 0.5551102204408818, 0.6111111111111112, 0.5090180360721442, 0.6051051051051051, 0.4408817635270541, 0.6066066066066066, 0.43286573146292584, 0.6096096096096096, 0.4188376753507014, 0.6096096096096096, 0.3867735470941884, 0.6156156156156156, 0.2124248496993988, 0.6141141141141141, 0.20440881763527055, 0.6111111111111112, 0.19438877755511022, 0.6006006006006006, 0.18236472945891782, 0.575075075075075, 0.17835671342685372, 0.551051051051051, 0.17835671342685372, 0.5225225225225225, 0.1843687374749499, 0.4864864864864865, 0.1903807615230461, 0.47297297297297297, 0.20440881763527055, 0.45795795795795796, 0.22044088176352705, 0.4519519519519519, 0.3847695390781563, 0.45045045045045046, 0.4529058116232465, 0.46096096096096095, 0.5130260521042084, 0.46096096096096095, 0.56312625250501, 0.4519519519519519, 0.5871743486973948, 0.45045045045045046, 0.6132264529058116, 0.4519519519519519, 0.6432865731462926, 0.46096096096096095, 0.6893787575150301, 0.4804804804804805, 0.7214428857715431, 0.4804804804804805, 0.7374749498997996, 0.4744744744744745, 0.7414829659318637, 0.46996996996997, 0.7535070140280561, 0.46996996996997, 0.7715430861723447, 0.4804804804804805, 0.781563126252505, 0.4804804804804805, 0.7875751503006012, 0.48348348348348347, 0.8136272545090181, 0.48348348348348347, 0.8256513026052105, 0.487987987987988, 0.8356713426853707, 0.5045045045045045, 0.8356713426853707, 0.5135135135135135, 0.8396793587174348, 0.521021021021021, 0.8396793587174348, 0.551051051051051, 0.8376753507014028, 0.56006006006006, 0.8216432865731463, 0.5825825825825826, 0.779559118236473, 0.5825825825825826, 0.7635270541082164, 0.5945945945945946, 0.749498997995992, 0.5945945945945946, 0.7294589178356713, 0.5855855855855856, 0.7194388777555111, 0.5840840840840841, 0.6913827655310621, 0.5840840840840841, 0.6452905811623246, 0.6066066066066066, 0.6032064128256514, 0.6156156156156156]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/74.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.3306613226452906, 0.7897897897897898, 0.30060120240480964, 0.7897897897897898, 0.2725450901803607, 0.7837837837837838, 0.24649298597194388, 0.7702702702702703, 0.23847695390781562, 0.7687687687687688, 0.21042084168336672, 0.7687687687687688, 0.1903807615230461, 0.7792792792792793, 0.1743486973947896, 0.7792792792792793, 0.1623246492985972, 0.7717717717717718, 0.1282565130260521, 0.7732732732732732, 0.11823647294589178, 0.7612612612612613, 0.11222444889779559, 0.7417417417417418, 0.11222444889779559, 0.7147147147147147, 0.12224448897795591, 0.6906906906906907, 0.13026052104208416, 0.6846846846846847, 0.16432865731462926, 0.6831831831831832, 0.17635270541082165, 0.6726726726726727, 0.1903807615230461, 0.6726726726726727, 0.20440881763527055, 0.6786786786786787, 0.23246492985971945, 0.6786786786786787, 0.2745490981963928, 0.6561561561561562, 0.2845691382765531, 0.6561561561561562, 0.3106212424849699, 0.6471471471471472, 0.33867735470941884, 0.6471471471471472, 0.36072144288577157, 0.6516516516516516, 0.4188376753507014, 0.6516516516516516, 0.46693386773547096, 0.6411411411411412, 0.49298597194388777, 0.6396396396396397, 0.5110220440881763, 0.6351351351351351, 0.6092184368737475, 0.6321321321321322, 0.6212424849699398, 0.6351351351351351, 0.6352705410821643, 0.6546546546546547, 0.6472945891783567, 0.6936936936936937, 0.6492985971943888, 0.7477477477477478, 0.6452905811623246, 0.7597597597597597, 0.6392785571142284, 0.7657657657657657, 0.625250501002004, 0.7717717717717718, 0.5971943887775552, 0.7717717717717718, 0.5110220440881763, 0.7792792792792793, 0.41082164328657317, 0.7747747747747747, 0.374749498997996, 0.7792792792792793, 0.35671342685370744, 0.7852852852852853, 0.3306613226452906, 0.7897897897897898]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.2625250501002004, 0.6606606606606606, 0.22645290581162325, 0.47147147147147145, 0.20040080160320642, 0.3663663663663664, 0.20641282565130262, 0.36036036036036034, 0.20841683366733466, 0.34234234234234234, 0.22044088176352705, 0.30930930930930933, 0.218436873747495, 0.2882882882882883, 0.2124248496993988, 0.2747747747747748, 0.21442885771543085, 0.27177177177177175, 0.23647294589178355, 0.26876876876876876, 0.2785571142284569, 0.26876876876876876, 0.30861723446893785, 0.2672672672672673, 0.3166332665330661, 0.26426426426426425, 0.40480961923847697, 0.26126126126126126, 0.4168336673346693, 0.26876876876876876, 0.42084168336673344, 0.29429429429429427, 0.43687374749499, 0.3258258258258258, 0.44288577154308617, 0.4339339339339339, 0.4529058116232465, 0.5135135135135135, 0.46292585170340683, 0.6396396396396397, 0.4088176352705411, 0.6516516516516516, 0.3667334669338677, 0.6516516516516516, 0.3486973947895792, 0.6471471471471472, 0.3066132264529058, 0.6471471471471472, 0.2845691382765531, 0.6546546546546547, 0.2745490981963928, 0.6546546546546547, 0.2625250501002004, 0.6606606606606606]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6232464929859719, 0.6366366366366366, 0.6152304609218436, 0.6321321321321322, 0.5210420841683366, 0.6336336336336337, 0.4969939879759519, 0.6366366366366366, 0.48296593186372744, 0.6066066066066066, 0.4749498997995992, 0.4369369369369369, 0.48296593186372744, 0.4219219219219219, 0.5090180360721442, 0.3978978978978979, 0.5130260521042084, 0.34984984984984985, 0.5190380761523046, 0.34234234234234234, 0.5190380761523046, 0.33783783783783783, 0.5130260521042084, 0.3333333333333333, 0.5130260521042084, 0.3048048048048048, 0.5150300601202404, 0.30180180180180183, 0.5290581162324649, 0.2972972972972973, 0.5871743486973948, 0.2972972972972973, 0.6012024048096193, 0.3033033033033033, 0.6032064128256514, 0.33183183183183185, 0.5951903807615231, 0.33933933933933935, 0.6032064128256514, 0.34684684684684686, 0.6032064128256514, 0.3708708708708709, 0.6072144288577155, 0.39039039039039036, 0.6092184368737475, 0.3963963963963964, 0.6352705410821643, 0.42342342342342343, 0.6412825651302605, 0.44144144144144143, 0.6372745490981964, 0.6036036036036037, 0.6292585170340681, 0.6216216216216216, 0.6292585170340681, 0.6306306306306306, 0.625250501002004, 0.6321321321321322, 0.6232464929859719, 0.6366366366366366]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.7995991983967936, 0.7312312312312312, 0.7595190380761523, 0.7282282282282282, 0.7394789579158316, 0.7192192192192193, 0.7094188376753507, 0.6981981981981982, 0.6993987975951904, 0.6831831831831832, 0.7114228456913828, 0.5690690690690691, 0.7114228456913828, 0.5180180180180181, 0.7334669338677354, 0.4954954954954955, 0.7334669338677354, 0.484984984984985, 0.7414829659318637, 0.4774774774774775, 0.7615230460921844, 0.47147147147147145, 0.7935871743486974, 0.46846846846846846, 0.8356713426853707, 0.47147147147147145, 0.845691382765531, 0.47597597597597596, 0.8537074148296593, 0.47597597597597596, 0.8817635270541082, 0.487987987987988, 0.8897795591182365, 0.4954954954954955, 0.8877755511022044, 0.509009009009009, 0.9018036072144289, 0.524024024024024, 0.9018036072144289, 0.5375375375375375, 0.8717434869739479, 0.7027027027027027, 0.8557114228456913, 0.7177177177177178, 0.8476953907815631, 0.7192192192192193, 0.8376753507014028, 0.7252252252252253, 0.7995991983967936, 0.7312312312312312]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/79.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.19839679358717435, 0.8288288288288288, 0.1843687374749499, 0.8273273273273273, 0.17635270541082165, 0.8228228228228228, 0.15030060120240482, 0.7972972972972973, 0.12224448897795591, 0.7492492492492493, 0.11623246492985972, 0.7297297297297297, 0.11623246492985972, 0.7132132132132132, 0.12424849699398798, 0.7072072072072072, 0.13827655310621242, 0.7042042042042042, 0.16032064128256512, 0.6801801801801802, 0.16633266533066132, 0.6771771771771772, 0.39478957915831664, 0.5930930930930931, 0.42084168336673344, 0.5885885885885885, 0.4408817635270541, 0.5945945945945946, 0.46092184368737477, 0.6051051051051051, 0.48296593186372744, 0.6216216216216216, 0.49899799599198397, 0.6486486486486487, 0.49899799599198397, 0.6921921921921922, 0.49298597194388777, 0.7057057057057057, 0.3406813627254509, 0.7792792792792793, 0.250501002004008, 0.8198198198198198, 0.20641282565130262, 0.8213213213213213, 0.20240480961923848, 0.8228228228228228, 0.19839679358717435, 0.8288288288288288]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.15030060120240482, 0.6906906906906907, 0.14428857715430862, 0.6906906906906907, 0.13827655310621242, 0.6846846846846847, 0.1282565130260521, 0.6741741741741741, 0.11823647294589178, 0.6561561561561562, 0.11422845691382766, 0.6471471471471472, 0.11422845691382766, 0.6306306306306306, 0.11623246492985972, 0.6261261261261262, 0.16032064128256512, 0.6141141141141141, 0.1683366733466934, 0.6156156156156156, 0.1843687374749499, 0.6066066066066066, 0.22244488977955912, 0.5915915915915916, 0.24448897795591182, 0.5795795795795796, 0.24448897795591182, 0.575075075075075, 0.2625250501002004, 0.5555555555555556, 0.2845691382765531, 0.545045045045045, 0.32064128256513025, 0.5375375375375375, 0.4589178356713427, 0.4984984984984985, 0.4729458917835671, 0.4954954954954955, 0.48697394789579157, 0.4954954954954955, 0.48096192384769537, 0.6201201201201201, 0.4589178356713427, 0.6021021021021021, 0.44488977955911824, 0.5945945945945946, 0.42685370741482964, 0.5885885885885885, 0.40480961923847697, 0.5885885885885885, 0.18036072144288579, 0.6696696696696697, 0.1623246492985972, 0.6771771771771772, 0.15030060120240482, 0.6906906906906907]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.5130260521042084, 0.7207207207207207, 0.49899799599198397, 0.7207207207207207, 0.49498997995991983, 0.7162162162162162, 0.501002004008016, 0.6801801801801802, 0.501002004008016, 0.6486486486486487, 0.48296593186372744, 0.6201201201201201, 0.49298597194388777, 0.3993993993993994, 0.49298597194388777, 0.33483483483483484, 0.49498997995991983, 0.30930930930930933, 0.503006012024048, 0.3003003003003003, 0.5050100200400801, 0.25675675675675674, 0.5130260521042084, 0.24774774774774774, 0.5230460921843687, 0.24474474474474475, 0.7134268537074149, 0.24774774774774774, 0.7234468937875751, 0.25375375375375375, 0.717434869739479, 0.2972972972972973, 0.7254509018036072, 0.3138138138138138, 0.7374749498997996, 0.35585585585585583, 0.7334669338677354, 0.36186186186186187, 0.7314629258517034, 0.3888888888888889, 0.7014028056112225, 0.566066066066066, 0.685370741482966, 0.6741741741741741, 0.6833667334669339, 0.7147147147147147, 0.6773547094188377, 0.7177177177177178, 0.561122244488978, 0.7177177177177178, 0.5130260521042084, 0.7207207207207207]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.7855711422845691, 0.7222222222222222, 0.7454909819639278, 0.7192192192192193, 0.7194388777555111, 0.7117117117117117, 0.6893787575150301, 0.6906906906906907, 0.687374749498998, 0.6741741741741741, 0.7214428857715431, 0.45345345345345345, 0.7234468937875751, 0.44594594594594594, 0.7414829659318637, 0.4294294294294294, 0.7414829659318637, 0.41291291291291293, 0.7314629258517034, 0.4039039039039039, 0.7314629258517034, 0.3948948948948949, 0.749498997995992, 0.3813813813813814, 0.749498997995992, 0.36936936936936937, 0.7555110220440882, 0.35585585585585583, 0.7895791583166333, 0.34684684684684686, 0.8056112224448898, 0.34684684684684686, 0.8356713426853707, 0.34984984984984985, 0.8597194388777555, 0.35585585585585583, 0.8717434869739479, 0.3633633633633634, 0.87374749498998, 0.3738738738738739, 0.8697394789579158, 0.3933933933933934, 0.8797595190380761, 0.3993993993993994, 0.8817635270541082, 0.4084084084084084, 0.8637274549098196, 0.4294294294294294, 0.8617234468937875, 0.44294294294294295, 0.8797595190380761, 0.47297297297297297, 0.8837675350701403, 0.5075075075075075, 0.8777555110220441, 0.5255255255255256, 0.8677354709418837, 0.539039039039039, 0.8597194388777555, 0.56006006006006, 0.8597194388777555, 0.6186186186186187, 0.843687374749499, 0.6906906906906907, 0.8276553106212425, 0.7087087087087087, 0.8016032064128257, 0.7192192192192193, 0.7895791583166333, 0.7192192192192193, 0.7855711422845691, 0.7222222222222222]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/83.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.18236472945891782, 0.7897897897897898, 0.16633266533066132, 0.7897897897897898, 0.1623246492985972, 0.7837837837837838, 0.156312625250501, 0.7177177177177178, 0.1282565130260521, 0.5585585585585585, 0.11222444889779559, 0.4264264264264264, 0.11623246492985972, 0.4219219219219219, 0.13026052104208416, 0.4159159159159159, 0.17234468937875752, 0.3813813813813814, 0.20841683366733466, 0.36936936936936937, 0.21042084168336672, 0.33933933933933935, 0.22244488977955912, 0.32732732732732733, 0.23446893787575152, 0.3213213213213213, 0.24248496993987975, 0.32882882882882886, 0.24448897795591182, 0.34534534534534533, 0.25250501002004005, 0.35585585585585583, 0.2625250501002004, 0.35585585585585583, 0.2725450901803607, 0.3483483483483483, 0.2905811623246493, 0.34984984984984985, 0.31462925851703405, 0.3588588588588589, 0.3406813627254509, 0.3738738738738739, 0.34468937875751504, 0.3783783783783784, 0.34468937875751504, 0.42492492492492495, 0.3486973947895792, 0.44144144144144143, 0.35671342685370744, 0.545045045045045, 0.35671342685370744, 0.5885885885885885, 0.36472945891783565, 0.6726726726726727, 0.36472945891783565, 0.7192192192192193, 0.35470941883767537, 0.7747747747747747, 0.3466933867735471, 0.7852852852852853, 0.2565130260521042, 0.7852852852852853, 0.18236472945891782, 0.7897897897897898]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.4729458917835671, 0.7447447447447447, 0.4188376753507014, 0.7447447447447447, 0.39478957915831664, 0.7387387387387387, 0.3807615230460922, 0.7297297297297297, 0.3667334669338677, 0.7132132132132132, 0.36472945891783565, 0.6411411411411412, 0.35671342685370744, 0.5645645645645646, 0.3587174348697395, 0.5525525525525525, 0.3727454909819639, 0.539039039039039, 0.3687374749498998, 0.5330330330330331, 0.3727454909819639, 0.524024024024024, 0.3787575150300601, 0.5195195195195195, 0.41282565130260523, 0.509009009009009, 0.4589178356713427, 0.5075075075075075, 0.4849699398797595, 0.512012012012012, 0.5070140280561122, 0.5225225225225225, 0.5090180360721442, 0.5375375375375375, 0.5190380761523046, 0.545045045045045, 0.5190380761523046, 0.7117117117117117, 0.5150300601202404, 0.7222222222222222, 0.5050100200400801, 0.7312312312312312, 0.4729458917835671, 0.7447447447447447]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6132264529058116, 0.7687687687687688, 0.593186372745491, 0.7672672672672672, 0.5811623246492986, 0.7582582582582582, 0.5771543086172345, 0.7522522522522522, 0.5731462925851704, 0.7567567567567568, 0.56312625250501, 0.7597597597597597, 0.5450901803607214, 0.7537537537537538, 0.5230460921843687, 0.7162162162162162, 0.5190380761523046, 0.7042042042042042, 0.5190380761523046, 0.5225225225225225, 0.5290581162324649, 0.506006006006006, 0.5591182364729459, 0.47597597597597596, 0.5671342685370742, 0.4264264264264264, 0.5671342685370742, 0.3888888888888889, 0.5731462925851704, 0.38288288288288286, 0.5871743486973948, 0.3783783783783784, 0.6332665330661322, 0.3768768768768769, 0.655310621242485, 0.3813813813813814, 0.6633266533066132, 0.3843843843843844, 0.6593186372745491, 0.44894894894894893, 0.6653306613226453, 0.484984984984985, 0.687374749498998, 0.5045045045045045, 0.6913827655310621, 0.5165165165165165, 0.6973947895791583, 0.5225225225225225, 0.6973947895791583, 0.5585585585585585, 0.6913827655310621, 0.5870870870870871, 0.6913827655310621, 0.6276276276276276, 0.6833667334669339, 0.7042042042042042, 0.6773547094188377, 0.7177177177177178, 0.6753507014028056, 0.7327327327327328, 0.6653306613226453, 0.7477477477477478, 0.6533066132264529, 0.7567567567567568, 0.6472945891783567, 0.7597597597597597, 0.6392785571142284, 0.7597597597597597, 0.6292585170340681, 0.7552552552552553, 0.627254509018036, 0.7597597597597597, 0.6132264529058116, 0.7687687687687688]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.779559118236473, 0.7882882882882883, 0.7595190380761523, 0.7867867867867868, 0.7194388777555111, 0.7777777777777778, 0.6953907815631263, 0.7627627627627628, 0.6833667334669339, 0.7477477477477478, 0.6813627254509018, 0.7132132132132132, 0.687374749498998, 0.6846846846846847, 0.6893787575150301, 0.6516516516516516, 0.7014028056112225, 0.6291291291291291, 0.7034068136272545, 0.6141141141141141, 0.7034068136272545, 0.5915915915915916, 0.6973947895791583, 0.5765765765765766, 0.6973947895791583, 0.5540540540540541, 0.7114228456913828, 0.527027027027027, 0.7194388777555111, 0.5180180180180181, 0.7314629258517034, 0.512012012012012, 0.7354709418837675, 0.5015015015015015, 0.7354709418837675, 0.4894894894894895, 0.7274549098196392, 0.481981981981982, 0.7254509018036072, 0.47597597597597596, 0.7274549098196392, 0.466966966966967, 0.7394789579158316, 0.45795795795795796, 0.7454909819639278, 0.4369369369369369, 0.7535070140280561, 0.43093093093093093, 0.7675350701402806, 0.4264264264264264, 0.8156312625250501, 0.4264264264264264, 0.843687374749499, 0.4339339339339339, 0.8577154308617234, 0.44294294294294295, 0.8557114228456913, 0.46846846846846846, 0.8677354709418837, 0.47897897897897895, 0.8677354709418837, 0.4864864864864865, 0.8537074148296593, 0.4984984984984985, 0.8517034068136272, 0.5225225225225225, 0.8677354709418837, 0.5405405405405406, 0.8717434869739479, 0.5495495495495496, 0.87374749498998, 0.5780780780780781, 0.8597194388777555, 0.6051051051051051, 0.8517034068136272, 0.6291291291291291, 0.8537074148296593, 0.6936936936936937, 0.8476953907815631, 0.7102102102102102, 0.8416833667334669, 0.7552552552552553, 0.8356713426853707, 0.7657657657657657, 0.8236472945891784, 0.7762762762762763, 0.8196392785571143, 0.7762762762762763, 0.8076152304609219, 0.7837837837837838, 0.779559118236473, 0.7882882882882883]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/88.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.1843687374749499, 0.7657657657657657, 0.15430861723446893, 0.7657657657657657, 0.13026052104208416, 0.7597597597597597, 0.11022044088176353, 0.7462462462462462, 0.10220440881763528, 0.7342342342342343, 0.09218436873747494, 0.6846846846846847, 0.08617234468937876, 0.6696696696696697, 0.08817635270541083, 0.6156156156156156, 0.0841683366733467, 0.5960960960960962, 0.06212424849699399, 0.5630630630630631, 0.06012024048096192, 0.5420420420420421, 0.06412825651302605, 0.5225225225225225, 0.07414829659318638, 0.5045045045045045, 0.0841683366733467, 0.493993993993994, 0.0841683366733467, 0.481981981981982, 0.06613226452905811, 0.4594594594594595, 0.06813627254509018, 0.44594594594594594, 0.07414829659318638, 0.44144144144144143, 0.07214428857715431, 0.4144144144144144, 0.09018036072144289, 0.4024024024024024, 0.13026052104208416, 0.3948948948948949, 0.15831663326653306, 0.3948948948948949, 0.17835671342685372, 0.3978978978978979, 0.1903807615230461, 0.40540540540540543, 0.1963927855711423, 0.42792792792792794, 0.20040080160320642, 0.4339339339339339, 0.20841683366733466, 0.43543543543543545, 0.21442885771543085, 0.44594594594594594, 0.21442885771543085, 0.45045045045045046, 0.20440881763527055, 0.4624624624624625, 0.20440881763527055, 0.47597597597597596, 0.2124248496993988, 0.487987987987988, 0.23246492985971945, 0.5015015015015015, 0.23847695390781562, 0.509009009009009, 0.24248496993987975, 0.524024024024024, 0.24849699398797595, 0.5330330330330331, 0.24849699398797595, 0.5525525525525525, 0.24048096192384769, 0.5690690690690691, 0.24048096192384769, 0.5825825825825826, 0.24849699398797595, 0.6111111111111112, 0.25851703406813625, 0.6276276276276276, 0.25851703406813625, 0.6471471471471472, 0.2685370741482966, 0.6936936936936937, 0.2665330661322645, 0.7252252252252253, 0.23046092184368738, 0.7522522522522522, 0.20440881763527055, 0.7627627627627628, 0.1843687374749499, 0.7657657657657657]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.2685370741482966, 0.6756756756756757, 0.2665330661322645, 0.6741741741741741, 0.26452905811623245, 0.6681681681681682, 0.2605210420841683, 0.6276276276276276, 0.250501002004008, 0.6111111111111112, 0.24248496993987975, 0.5825825825825826, 0.24248496993987975, 0.5690690690690691, 0.250501002004008, 0.5525525525525525, 0.250501002004008, 0.539039039039039, 0.24048096192384769, 0.5105105105105106, 0.4969939879759519, 0.3663663663663664, 0.5150300601202404, 0.3663663663663664, 0.5490981963927856, 0.37537537537537535, 0.5851703406813628, 0.3888888888888889, 0.5891783567134269, 0.3888888888888889, 0.6152304609218436, 0.36936936936936937, 0.625250501002004, 0.3978978978978979, 0.6352705410821643, 0.4159159159159159, 0.6332665330661322, 0.44744744744744747, 0.6372745490981964, 0.4744744744744745, 0.6092184368737475, 0.4774774774774775, 0.6112224448897795, 0.487987987987988, 0.6052104208416834, 0.4894894894894895, 0.6052104208416834, 0.512012012012012, 0.33867735470941884, 0.6396396396396397, 0.2685370741482966, 0.6756756756756757]]}, {"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.6833667334669339, 0.6906906906906907, 0.6312625250501002, 0.6891891891891891, 0.6072144288577155, 0.6801801801801802, 0.5891783567134269, 0.6651651651651652, 0.5811623246492986, 0.6516516516516516, 0.5951903807615231, 0.5180180180180181, 0.6052104208416834, 0.5135135135135135, 0.6052104208416834, 0.4954954954954955, 0.6072144288577155, 0.4894894894894895, 0.6112224448897795, 0.487987987987988, 0.6112224448897795, 0.4774774774774775, 0.6352705410821643, 0.47597597597597596, 0.6372745490981964, 0.46396396396396394, 0.655310621242485, 0.4594594594594595, 0.6893787575150301, 0.46096096096096095, 0.7314629258517034, 0.47147147147147145, 0.7454909819639278, 0.481981981981982, 0.7414829659318637, 0.4954954954954955, 0.751503006012024, 0.503003003003003, 0.7535070140280561, 0.509009009009009, 0.7334669338677354, 0.6606606606606606, 0.7294589178356713, 0.6696696696696697, 0.717434869739479, 0.6801801801801802, 0.6833667334669339, 0.6906906906906907]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.8316633266533067, 0.6816816816816816, 0.8236472945891784, 0.6816816816816816, 0.8136272545090181, 0.6771771771771772, 0.8076152304609219, 0.6666666666666666, 0.7895791583166333, 0.6801801801801802, 0.7755511022044088, 0.6771771771771772, 0.7635270541082164, 0.6681681681681682, 0.7595190380761523, 0.6621621621621622, 0.751503006012024, 0.6636636636636637, 0.7414829659318637, 0.6606606606606606, 0.7374749498997996, 0.6531531531531531, 0.7414829659318637, 0.6006006006006006, 0.7535070140280561, 0.536036036036036, 0.7535070140280561, 0.506006006006006, 0.7454909819639278, 0.496996996996997, 0.7454909819639278, 0.484984984984985, 0.749498997995992, 0.4774774774774775, 0.749498997995992, 0.46546546546546547, 0.7555110220440882, 0.44594594594594594, 0.7695390781563126, 0.43093093093093093, 0.7915831663326653, 0.4159159159159159, 0.8016032064128257, 0.3978978978978979, 0.8036072144288577, 0.3783783783783784, 0.8136272545090181, 0.3633633633633634, 0.811623246492986, 0.3408408408408408, 0.8156312625250501, 0.33633633633633636, 0.8156312625250501, 0.3258258258258258, 0.8276553106212425, 0.31981981981981983, 0.8697394789579158, 0.3183183183183183, 0.8857715430861723, 0.31981981981981983, 0.9078156312625251, 0.3258258258258258, 0.905811623246493, 0.35435435435435436, 0.8977955911823647, 0.36186186186186187, 0.8997995991983968, 0.4294294294294294, 0.9118236472945892, 0.43843843843843844, 0.9198396793587175, 0.4519519519519519, 0.9218436873747495, 0.4804804804804805, 0.8877755511022044, 0.6096096096096096, 0.8817635270541082, 0.6456456456456456, 0.8777555110220441, 0.6486486486486487, 0.8777555110220441, 0.6531531531531531, 0.8677354709418837, 0.6591591591591591, 0.8637274549098196, 0.6651651651651652, 0.8557114228456913, 0.6666666666666666, 0.8416833667334669, 0.6786786786786787, 0.8316633266533067, 0.6816816816816816]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/92.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "can", "bbox": "null", "isCrowd": 0, "polygon": [[0.5210420841683366, 0.7567567567567568, 0.4709418837675351, 0.7507507507507507, 0.44488977955911824, 0.7402402402402403, 0.42685370741482964, 0.7222222222222222, 0.4188376753507014, 0.7072072072072072, 0.4188376753507014, 0.6591591591591591, 0.4168336673346693, 0.6276276276276276, 0.41082164328657317, 0.5975975975975976, 0.40681362725450904, 0.5075075075075075, 0.4248496993987976, 0.487987987987988, 0.4248496993987976, 0.4744744744744745, 0.43286573146292584, 0.46396396396396394, 0.46092184368737477, 0.4519519519519519, 0.49298597194388777, 0.44594594594594594, 0.531062124248497, 0.44594594594594594, 0.5551102204408818, 0.44894894894894893, 0.593186372745491, 0.4594594594594595, 0.6092184368737475, 0.47297297297297297, 0.6072144288577155, 0.4894894894894895, 0.6212424849699398, 0.4984984984984985, 0.627254509018036, 0.509009009009009, 0.6152304609218436, 0.7177177177177178, 0.6092184368737475, 0.7267267267267268, 0.5851703406813628, 0.7417417417417418, 0.5410821643286573, 0.7552552552552553, 0.5210420841683366, 0.7567567567567568]]}, {"label": "water_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.37675350701402804, 0.46846846846846846, 0.2745490981963928, 0.46846846846846846, 0.2725450901803607, 0.4624624624624625, 0.2605210420841683, 0.3888888888888889, 0.25250501002004005, 0.36786786786786785, 0.25250501002004005, 0.33183183183183185, 0.2605210420841683, 0.31681681681681684, 0.2685370741482966, 0.3108108108108108, 0.2785571142284569, 0.2972972972972973, 0.28256513026052105, 0.22972972972972974, 0.27655310621242485, 0.22672672672672672, 0.2745490981963928, 0.19519519519519518, 0.2965931863727455, 0.1891891891891892, 0.3527054108216433, 0.1891891891891892, 0.36072144288577157, 0.1906906906906907, 0.3687374749498998, 0.19519519519519518, 0.3687374749498998, 0.21171171171171171, 0.3727454909819639, 0.22522522522522523, 0.3667334669338677, 0.22822822822822822, 0.3667334669338677, 0.23423423423423423, 0.37675350701402804, 0.2552552552552553, 0.3847695390781563, 0.2912912912912913, 0.3927855711422846, 0.30180180180180183, 0.41282565130260523, 0.31681681681681684, 0.4248496993987976, 0.34684684684684686, 0.42685370741482964, 0.46546546546546547, 0.37675350701402804, 0.46846846846846846]]}, {"label": "milk_bottle", "bbox": "null", "isCrowd": 0, "polygon": [[0.6693386773547094, 0.46546546546546547, 0.6032064128256514, 0.46546546546546547, 0.593186372745491, 0.45795795795795796, 0.6012024048096193, 0.43243243243243246, 0.6012024048096193, 0.39039039039039036, 0.5971943887775552, 0.3783783783783784, 0.5971943887775552, 0.35735735735735735, 0.6112224448897795, 0.3303303303303303, 0.6192384769539078, 0.3258258258258258, 0.6332665330661322, 0.3078078078078078, 0.6332665330661322, 0.29429429429429427, 0.6232464929859719, 0.2852852852852853, 0.6212424849699398, 0.2777777777777778, 0.6372745490981964, 0.26876876876876876, 0.6372745490981964, 0.24924924924924924, 0.6432865731462926, 0.23723723723723725, 0.6492985971943888, 0.23423423423423423, 0.6753507014028056, 0.23123123123123124, 0.7254509018036072, 0.23423423423423423, 0.7414829659318637, 0.24174174174174173, 0.7414829659318637, 0.2702702702702703, 0.749498997995992, 0.2732732732732733, 0.751503006012024, 0.27927927927927926, 0.7474949899799599, 0.2897897897897898, 0.7374749498997996, 0.2972972972972973, 0.7374749498997996, 0.3138138138138138, 0.7414829659318637, 0.3258258258258258, 0.749498997995992, 0.33483483483483484, 0.7575150300601202, 0.35735735735735735, 0.7575150300601202, 0.3783783783783784, 0.7454909819639278, 0.3963963963963964, 0.7394789579158316, 0.4159159159159159, 0.7394789579158316, 0.4624624624624625, 0.6693386773547094, 0.46546546546546547]]}, {"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.7735470941883767, 0.6546546546546547, 0.6212424849699398, 0.6546546546546547, 0.6212424849699398, 0.6531531531531531, 0.6212424849699398, 0.6201201201201201, 0.6232464929859719, 0.6186186186186187, 0.6232464929859719, 0.5960960960960962, 0.625250501002004, 0.5945945945945946, 0.625250501002004, 0.5525525525525525, 0.627254509018036, 0.551051051051051, 0.627254509018036, 0.506006006006006, 0.625250501002004, 0.5045045045045045, 0.625250501002004, 0.503003003003003, 0.6232464929859719, 0.5015015015015015, 0.6232464929859719, 0.4984984984984985, 0.6172344689378757, 0.4954954954954955, 0.6152304609218436, 0.4954954954954955, 0.6072144288577155, 0.487987987987988, 0.6072144288577155, 0.4864864864864865, 0.6092184368737475, 0.484984984984985, 0.6092184368737475, 0.46996996996997, 0.6052104208416834, 0.466966966966967, 0.6052104208416834, 0.46546546546546547, 0.6052104208416834, 0.46546546546546547, 0.687374749498998, 0.46546546546546547, 0.6893787575150301, 0.46396396396396394, 0.751503006012024, 0.46396396396396394, 0.7595190380761523, 0.46846846846846846, 0.7595190380761523, 0.47147147147147145, 0.7655310621242485, 0.47597597597597596, 0.7655310621242485, 0.4774774774774775, 0.7675350701402806, 0.47897897897897895, 0.7675350701402806, 0.4804804804804805, 0.7695390781563126, 0.481981981981982, 0.7695390781563126, 0.48348348348348347, 0.7715430861723447, 0.484984984984985, 0.7715430861723447, 0.4864864864864865, 0.7735470941883767, 0.487987987987988, 0.7735470941883767, 0.4894894894894895, 0.7755511022044088, 0.49099099099099097, 0.7755511022044088, 0.4924924924924925, 0.7775551102204409, 0.493993993993994, 0.7775551102204409, 0.4954954954954955, 0.779559118236473, 0.496996996996997, 0.779559118236473, 0.4984984984984985, 0.781563126252505, 0.5, 0.781563126252505, 0.503003003003003, 0.7835671342685371, 0.5045045045045045, 0.7835671342685371, 0.506006006006006, 0.7855711422845691, 0.5075075075075075, 0.7855711422845691, 0.509009009009009, 0.7875751503006012, 0.5105105105105106, 0.7875751503006012, 0.512012012012012, 0.7895791583166333, 0.5135135135135135, 0.7895791583166333, 0.5165165165165165, 0.7915831663326653, 0.5180180180180181, 0.7915831663326653, 0.5195195195195195, 0.7935871743486974, 0.521021021021021, 0.7935871743486974, 0.524024024024024, 0.7955911823647295, 0.5255255255255256, 0.7955911823647295, 0.527027027027027, 0.8016032064128257, 0.5315315315315315, 0.7995991983967936, 0.5330330330330331, 0.7995991983967936, 0.5345345345345346, 0.7975951903807615, 0.536036036036036, 0.7975951903807615, 0.5405405405405406, 0.7955911823647295, 0.5420420420420421, 0.7955911823647295, 0.5525525525525525, 0.7935871743486974, 0.5540540540540541, 0.7935871743486974, 0.5630630630630631, 0.7915831663326653, 0.5645645645645646, 0.7915831663326653, 0.5705705705705706, 0.7895791583166333, 0.5720720720720721, 0.7895791583166333, 0.5795795795795796, 0.7875751503006012, 0.581081081081081, 0.7875751503006012, 0.5870870870870871, 0.7855711422845691, 0.5885885885885885, 0.7855711422845691, 0.5945945945945946, 0.7835671342685371, 0.5960960960960962, 0.7835671342685371, 0.6066066066066066, 0.781563126252505, 0.6081081081081081, 0.781563126252505, 0.6171171171171171, 0.779559118236473, 0.6186186186186187, 0.779559118236473, 0.6291291291291291, 0.7775551102204409, 0.6306306306306306, 0.7775551102204409, 0.6516516516516516, 0.7735470941883767, 0.6546546546546547], [0.2725450901803607, 0.6591591591591591, 0.25851703406813625, 0.6591591591591591, 0.23446893787575152, 0.6471471471471472, 0.19839679358717435, 0.6111111111111112, 0.1903807615230461, 0.6021021021021021, 0.15430861723446893, 0.6006006006006006, 0.14428857715430862, 0.5945945945945946, 0.14428857715430862, 0.5885885885885885, 0.16032064128256512, 0.5675675675675675, 0.18036072144288579, 0.5315315315315315, 0.19438877755511022, 0.5255255255255256, 0.22845691382765532, 0.524024024024024, 0.23446893787575152, 0.5165165165165165, 0.23647294589178355, 0.506006006006006, 0.25250501002004005, 0.484984984984985, 0.2605210420841683, 0.47597597597597596, 0.2745490981963928, 0.46846846846846846, 0.4248496993987976, 0.466966966966967, 0.4228456913827655, 0.4744744744744745, 0.4248496993987976, 0.4864864864864865, 0.40681362725450904, 0.503003003003003, 0.40681362725450904, 0.5630630630630631, 0.41082164328657317, 0.5825825825825826, 0.4148296593186373, 0.6531531531531531, 0.2725450901803607, 0.6591591591591591]]}]} +{"image_url": "azureml://subscriptions/102a16c3-37d3-48a8-9237-4c9b1e8e80e0/resourcegroups/risha-rg/workspaces/risha-ws-centraluseuap/datastores/workspaceblobstore/paths/LocalUpload/57e0ce1a06d180c7be40a8dc137a09c5/odFridgeObjectsMask/images/97.jpg", "image_details": {"format": "jpg", "width": 499, "height": 666}, "label": [{"label": "carton", "bbox": "null", "isCrowd": 0, "polygon": [[0.6933867735470942, 0.7402402402402403, 0.35070140280561124, 0.5825825825825826, 0.25250501002004005, 0.5420420420420421, 0.2124248496993988, 0.46546546546546547, 0.1963927855711423, 0.45645645645645644, 0.18837675350701402, 0.45495495495495497, 0.18236472945891782, 0.44744744744744747, 0.18637274549098196, 0.4444444444444444, 0.218436873747495, 0.43543543543543545, 0.22845691382765532, 0.4114114114114114, 0.23446893787575152, 0.40540540540540543, 0.2865731462925852, 0.3978978978978979, 0.3066132264529058, 0.39039039039039036, 0.3286573146292585, 0.3888888888888889, 0.3587174348697395, 0.37987987987987987, 0.3807615230460922, 0.3768768768768769, 0.3907815631262525, 0.37237237237237236, 0.6292585170340681, 0.43843843843843844, 0.6673346693386774, 0.44594594594594594, 0.6933867735470942, 0.45495495495495497, 0.7134268537074149, 0.45795795795795796, 0.7915831663326653, 0.4804804804804805, 0.8617234468937875, 0.496996996996997, 0.8677354709418837, 0.5015015015015015, 0.8617234468937875, 0.512012012012012, 0.8476953907815631, 0.566066066066066, 0.8336673346693386, 0.6036036036036037, 0.8256513026052105, 0.6486486486486487, 0.7775551102204409, 0.6846846846846847, 0.6933867735470942, 0.7402402402402403]]}]} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_object_detection/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_object_detection/train/MLTable new file mode 100644 index 000000000000..a00ef86f0f42 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_object_detection/train/MLTable @@ -0,0 +1,10 @@ +paths: + - file: ./train_annotations.jsonl +transformations: + - read_json_lines: + encoding: utf8 + invalid_lines: error + include_path_column: false + - convert_column_types: + - columns: image_url + column_type: stream_info \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_object_detection/valid/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_object_detection/valid/MLTable new file mode 100644 index 000000000000..02ef2bd40b09 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/image_object_detection/valid/MLTable @@ -0,0 +1,10 @@ +paths: + - file: ./validation_annotations.jsonl +transformations: + - read_json_lines: + encoding: utf8 + invalid_lines: error + include_path_column: false + - convert_column_types: + - columns: image_url + column_type: stream_info \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/machine_data/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/machine_data/train/MLTable new file mode 100644 index 000000000000..722d0435fb1b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/machine_data/train/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-notebook-data/machineData.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/newsgroup/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/newsgroup/train/MLTable new file mode 100644 index 000000000000..a3704f8c5ac7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/newsgroup/train/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-nlp-data/text-classification_train.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'utf8' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/newsgroup/valid/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/newsgroup/valid/MLTable new file mode 100644 index 000000000000..bbc496a09183 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/newsgroup/valid/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-nlp-data/text-classification_valid.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'utf8' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/paper_categorization/train/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/paper_categorization/train/MLTable new file mode 100644 index 000000000000..0c6327849563 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/paper_categorization/train/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-nlp-data/arxiv_abstract_train.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'utf8' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/paper_categorization/valid/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/paper_categorization/valid/MLTable new file mode 100644 index 000000000000..0e8607f03d1a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/paper_categorization/valid/MLTable @@ -0,0 +1,7 @@ +paths: + - file: https://automlsamplenotebookdata.blob.core.windows.net/automl-sample-nlp-data/arxiv_abstract_valid.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'utf8' + empty_as_string: false \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/training_mltable_folder/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/training_mltable_folder/MLTable new file mode 100644 index 000000000000..d0d6ca75b62f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/training_mltable_folder/MLTable @@ -0,0 +1,6 @@ +paths: + - file: ./bank_marketing_train_data.csv +transformations: + - read_delimited: + delimiter: ',' + encoding: 'ascii' diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/training_mltable_folder/bank_marketing_train_data.csv b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/training_mltable_folder/bank_marketing_train_data.csv new file mode 100644 index 000000000000..9663df2e5117 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/automl_job/test_datasets/training_mltable_folder/bank_marketing_train_data.csv @@ -0,0 +1,30000 @@ +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 +57,technician,married,high.school,no,no,yes,cellular,may,mon,371,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,52,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,451,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,348,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,entrepreneur,married,basic.9y,no,no,no,telephone,nov,tue,2,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +34,technician,married,professional.course,no,yes,no,cellular,may,mon,934,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,technician,single,professional.course,no,no,no,cellular,sep,wed,425,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8859999999999999,4963.6,no +42,management,married,university.degree,no,no,no,cellular,nov,thu,110,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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,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 +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 +51,entrepreneur,married,professional.course,unknown,no,no,cellular,may,mon,295,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +53,management,married,high.school,no,no,no,cellular,nov,thu,227,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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,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 +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 +40,admin.,divorced,basic.9y,no,no,no,cellular,nov,tue,179,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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.0760000000000005,5195.8,no +28,services,married,basic.9y,no,yes,no,telephone,oct,fri,186,1,999,1,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,technician,married,professional.course,no,yes,no,telephone,may,mon,124,42,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +35,admin.,married,university.degree,no,yes,yes,telephone,may,mon,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,married,high.school,no,no,no,cellular,nov,thu,361,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,services,married,high.school,no,no,no,cellular,nov,thu,186,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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,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 +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 +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 +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,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 +30,technician,single,professional.course,no,unknown,unknown,telephone,jun,thu,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +51,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,792,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +33,management,single,university.degree,no,no,no,cellular,nov,thu,2420,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +39,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,31,5,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +43,technician,married,professional.course,no,no,no,cellular,nov,thu,75,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +47,services,married,high.school,no,yes,no,cellular,nov,tue,103,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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,basic.9y,no,yes,no,cellular,aug,wed,237,1,6,4,success,-1.7,94.027,-38.3,0.903,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,university.degree,no,yes,no,cellular,nov,fri,482,1,12,1,success,-1.1,94.767,-50.8,1.0490000000000002,4963.6,yes +35,services,divorced,basic.9y,no,yes,yes,cellular,nov,tue,62,6,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,self-employed,married,basic.4y,no,unknown,unknown,cellular,nov,tue,121,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +54,technician,married,university.degree,no,yes,no,cellular,aug,fri,325,1,4,1,success,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,management,married,basic.4y,no,no,no,cellular,oct,mon,143,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,management,married,university.degree,no,no,no,cellular,nov,tue,53,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +39,admin.,married,university.degree,no,no,no,cellular,nov,tue,108,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,unknown,single,university.degree,no,no,no,telephone,oct,wed,85,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,no +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 +39,services,single,university.degree,unknown,yes,no,cellular,nov,thu,689,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +43,technician,single,professional.course,unknown,unknown,unknown,cellular,nov,thu,157,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,80,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,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 +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 +40,self-employed,married,high.school,unknown,no,no,telephone,may,mon,131,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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,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 +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 +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 +46,housemaid,married,basic.4y,no,no,no,telephone,may,wed,506,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +32,admin.,single,university.degree,no,yes,no,cellular,nov,tue,145,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,79,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,management,divorced,basic.6y,no,no,no,cellular,nov,thu,268,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +28,admin.,married,high.school,no,no,no,telephone,may,mon,165,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +35,blue-collar,single,basic.4y,unknown,yes,yes,cellular,may,mon,46,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +33,admin.,single,university.degree,no,yes,no,cellular,jul,mon,289,1,999,1,failure,-1.7,94.215,-40.3,0.8270000000000001,4991.6,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 +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 +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 +47,admin.,single,high.school,no,yes,no,cellular,may,mon,911,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +28,technician,married,university.degree,no,no,no,cellular,may,mon,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,186,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,technician,single,basic.9y,no,no,no,cellular,nov,tue,61,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,self-employed,married,university.degree,no,no,no,cellular,may,fri,395,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,single,university.degree,no,no,no,cellular,nov,thu,85,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,technician,single,professional.course,no,no,no,cellular,dec,mon,371,1,999,0,nonexistent,-3.0,92.713,-33.0,0.7170000000000001,5023.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,technician,divorced,professional.course,no,no,yes,telephone,may,mon,65,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,technician,married,basic.9y,no,yes,no,cellular,may,mon,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,513,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +44,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,62,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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,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 +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 +37,admin.,single,university.degree,no,yes,yes,cellular,jun,tue,209,3,999,0,nonexistent,-1.7,94.055,-39.8,0.7020000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,technician,single,professional.course,no,no,no,cellular,nov,thu,214,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +34,technician,married,professional.course,no,no,no,cellular,may,fri,83,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +31,entrepreneur,divorced,basic.4y,no,no,no,cellular,nov,tue,152,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +32,admin.,married,university.degree,no,yes,no,cellular,sep,fri,205,2,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,no +58,retired,divorced,university.degree,no,yes,no,telephone,may,mon,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +63,retired,married,unknown,no,no,no,telephone,nov,fri,137,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +50,technician,married,professional.course,no,yes,no,cellular,nov,thu,161,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +48,services,divorced,high.school,unknown,yes,yes,telephone,may,mon,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +32,management,single,university.degree,no,yes,no,cellular,mar,tue,164,1,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.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 +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 +43,entrepreneur,married,basic.9y,no,yes,yes,cellular,nov,tue,74,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +24,student,single,high.school,no,yes,yes,cellular,aug,fri,44,1,999,1,failure,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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 +41,services,single,high.school,unknown,yes,no,cellular,nov,thu,530,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,technician,married,university.degree,no,no,no,cellular,aug,fri,224,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +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 +25,self-employed,single,university.degree,no,no,no,telephone,may,mon,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +34,management,married,university.degree,no,yes,no,cellular,nov,thu,140,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +51,services,married,basic.9y,no,no,no,cellular,nov,tue,93,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +29,unemployed,married,basic.4y,unknown,no,no,cellular,nov,thu,143,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +30,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +31,technician,single,professional.course,no,yes,yes,cellular,may,mon,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +36,management,married,high.school,no,no,no,telephone,may,wed,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,18,28,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +36,management,divorced,professional.course,no,no,no,telephone,jun,thu,115,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,blue-collar,divorced,basic.4y,no,yes,no,cellular,aug,tue,395,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +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 +32,admin.,single,university.degree,no,no,no,telephone,may,mon,470,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +37,services,divorced,basic.6y,no,no,no,cellular,nov,thu,667,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,management,married,university.degree,no,yes,no,cellular,nov,tue,47,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,unemployed,married,professional.course,no,yes,yes,cellular,nov,thu,366,2,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +55,blue-collar,married,basic.4y,no,no,no,cellular,nov,fri,227,2,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +27,admin.,single,high.school,no,yes,no,telephone,jun,wed,193,1,999,1,failure,-1.7,94.055,-39.8,0.7390000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,high.school,no,no,no,cellular,aug,tue,147,1,999,1,failure,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +32,services,married,basic.6y,unknown,yes,no,telephone,nov,tue,162,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +26,student,single,basic.4y,no,no,yes,cellular,may,mon,802,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +44,admin.,divorced,high.school,no,yes,yes,cellular,may,fri,211,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +34,technician,married,basic.9y,no,no,no,cellular,nov,tue,110,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +34,unemployed,married,high.school,no,unknown,unknown,cellular,nov,thu,72,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +39,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +36,admin.,married,university.degree,no,no,no,cellular,may,tue,641,4,999,0,nonexistent,-1.8,93.876,-40.0,0.6970000000000001,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,self-employed,married,professional.course,no,yes,no,cellular,nov,thu,329,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +50,admin.,married,university.degree,no,no,no,telephone,nov,tue,40,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +40,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,72,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +36,technician,married,university.degree,no,no,no,telephone,may,wed,648,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +25,admin.,single,university.degree,no,no,no,cellular,nov,fri,350,5,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,171,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +30,entrepreneur,married,professional.course,no,yes,yes,cellular,nov,thu,267,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +31,management,married,basic.9y,no,no,yes,telephone,may,wed,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,single,basic.4y,no,yes,no,cellular,may,fri,87,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +43,self-employed,married,high.school,unknown,no,no,cellular,apr,wed,743,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.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 +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 +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 +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 +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 +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 +28,services,married,high.school,unknown,yes,no,telephone,may,wed,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +40,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,67,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +36,student,single,university.degree,unknown,yes,no,telephone,may,wed,544,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +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 +26,admin.,single,university.degree,no,yes,no,cellular,sep,tue,201,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8809999999999999,4963.6,yes +32,admin.,married,professional.course,no,unknown,unknown,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +27,admin.,single,university.degree,no,yes,no,cellular,may,mon,490,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +34,admin.,single,university.degree,no,yes,no,cellular,nov,thu,89,1,3,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +33,admin.,married,high.school,no,no,no,cellular,nov,thu,133,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,504,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,management,divorced,university.degree,no,yes,no,cellular,sep,tue,337,1,6,1,success,-1.1,94.199,-37.5,0.8809999999999999,4963.6,yes +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 +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 +32,entrepreneur,married,high.school,no,yes,no,cellular,may,mon,101,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +45,admin.,single,high.school,unknown,yes,yes,telephone,may,wed,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +42,services,married,basic.6y,no,no,no,cellular,nov,thu,290,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +51,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,214,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +34,admin.,married,university.degree,no,no,no,telephone,jun,thu,283,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +33,technician,single,university.degree,no,yes,no,cellular,may,mon,340,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,management,married,basic.6y,no,yes,yes,telephone,may,mon,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +37,services,married,high.school,no,yes,no,telephone,jun,thu,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +60,retired,married,basic.4y,no,no,no,cellular,oct,mon,98,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +59,management,married,university.degree,no,yes,no,cellular,aug,tue,210,2,999,1,failure,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,management,married,university.degree,no,yes,no,cellular,nov,thu,466,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,self-employed,married,university.degree,no,no,no,cellular,nov,thu,66,2,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +30,technician,single,basic.9y,no,yes,no,cellular,may,mon,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +36,technician,married,high.school,no,no,no,cellular,nov,tue,255,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +45,technician,married,basic.9y,no,no,yes,cellular,may,fri,1077,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +40,technician,married,professional.course,no,yes,no,cellular,may,mon,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +35,technician,single,professional.course,no,yes,no,cellular,nov,thu,192,2,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +37,blue-collar,married,high.school,no,no,no,telephone,jun,thu,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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,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 +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 +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 +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 +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 +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 +30,admin.,single,high.school,no,no,no,cellular,may,mon,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,nov,tue,266,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +35,technician,married,basic.9y,no,no,no,telephone,may,wed,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,blue-collar,married,basic.4y,no,no,yes,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +38,entrepreneur,married,basic.6y,no,yes,no,cellular,jun,tue,189,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7609999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +34,admin.,married,high.school,no,yes,yes,cellular,may,mon,528,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +35,admin.,married,university.degree,no,no,no,cellular,dec,tue,554,1,999,0,nonexistent,-3.0,92.713,-33.0,0.7070000000000001,5023.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,technician,married,university.degree,no,no,no,cellular,may,fri,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +31,technician,married,high.school,no,no,yes,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +40,management,single,university.degree,no,no,no,cellular,nov,thu,549,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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,self-employed,divorced,basic.4y,no,no,no,cellular,may,mon,82,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +32,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,211,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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,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 +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 +30,technician,single,professional.course,no,yes,no,cellular,nov,thu,78,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,111,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +51,unemployed,divorced,high.school,unknown,yes,no,cellular,nov,thu,1166,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +39,management,married,university.degree,no,yes,no,cellular,may,fri,53,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,mon,242,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +36,unemployed,married,basic.6y,no,yes,no,cellular,nov,tue,144,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +38,management,divorced,high.school,no,yes,no,cellular,nov,thu,149,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +28,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,52,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +18,student,single,high.school,no,yes,yes,cellular,mar,tue,103,1,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.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 +28,student,single,university.degree,no,yes,no,cellular,may,fri,126,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +37,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,214,8,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +40,admin.,married,high.school,no,no,no,telephone,jun,thu,314,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +39,management,married,unknown,no,yes,yes,cellular,nov,thu,758,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +35,management,single,high.school,no,yes,no,cellular,may,fri,345,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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,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 +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 +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 +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.,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 +57,services,divorced,high.school,no,yes,yes,telephone,may,wed,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +39,blue-collar,married,professional.course,no,no,no,cellular,may,mon,149,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +26,admin.,married,high.school,no,yes,no,cellular,nov,fri,338,1,7,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +40,services,married,basic.4y,unknown,yes,no,cellular,may,fri,237,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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.,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 +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,basic.9y,no,yes,no,cellular,may,mon,258,4,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +55,housemaid,divorced,university.degree,no,yes,no,telephone,jun,thu,221,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +29,technician,single,university.degree,no,no,no,telephone,may,wed,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +33,unemployed,single,university.degree,no,no,no,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +34,technician,married,professional.course,no,no,no,cellular,nov,thu,144,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,married,high.school,no,no,no,telephone,may,wed,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +41,management,married,university.degree,no,yes,no,cellular,nov,tue,176,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +71,retired,married,university.degree,no,no,no,cellular,aug,thu,148,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8290000000000001,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 +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 +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 +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 +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 +37,admin.,married,university.degree,no,yes,no,cellular,may,fri,286,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +27,admin.,single,university.degree,no,yes,yes,cellular,sep,wed,345,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,5017.5,yes +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 +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 +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 +39,technician,married,university.degree,no,yes,no,cellular,aug,fri,156,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +34,admin.,married,university.degree,no,no,no,cellular,aug,fri,78,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +35,admin.,married,high.school,no,yes,yes,cellular,may,fri,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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,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 +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 +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 +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 +54,admin.,single,university.degree,no,no,no,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +40,admin.,single,high.school,no,yes,no,telephone,may,wed,738,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +30,services,single,high.school,no,yes,no,cellular,apr,wed,247,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +28,services,married,high.school,no,no,yes,cellular,may,fri,343,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,retired,divorced,basic.9y,no,yes,no,telephone,nov,mon,248,1,999,0,nonexistent,-0.1,93.2,-42.0,4.4060000000000015,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +52,technician,married,basic.9y,no,yes,no,telephone,jun,thu,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,135,2,999,2,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +37,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,222,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +34,management,single,university.degree,no,no,no,cellular,may,fri,261,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,technician,married,professional.course,no,no,no,cellular,may,fri,124,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +32,admin.,single,professional.course,no,no,no,telephone,may,mon,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +35,admin.,married,high.school,no,yes,no,cellular,nov,tue,114,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +43,services,divorced,professional.course,no,no,no,telephone,may,mon,75,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +41,technician,married,university.degree,no,unknown,unknown,telephone,jun,thu,131,10,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,university.degree,no,yes,no,cellular,may,mon,86,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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.2990000000000002,5099.1,no +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 +41,admin.,married,university.degree,no,yes,no,cellular,dec,thu,422,2,999,0,nonexistent,-3.0,92.713,-33.0,0.7070000000000001,5023.5,yes +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 +33,admin.,married,university.degree,no,no,no,cellular,may,fri,89,6,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +54,management,married,high.school,unknown,yes,no,cellular,may,mon,254,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +33,admin.,married,university.degree,no,no,no,telephone,jun,tue,286,2,999,0,nonexistent,-1.7,94.055,-39.8,0.7609999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,385,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +30,technician,married,professional.course,no,no,no,cellular,nov,tue,679,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,services,single,high.school,unknown,unknown,unknown,cellular,may,mon,772,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +33,admin.,married,high.school,no,no,yes,cellular,aug,tue,113,1,6,2,success,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +34,technician,married,basic.9y,no,yes,no,cellular,may,mon,35,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,technician,married,basic.9y,no,no,no,cellular,nov,tue,530,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,single,high.school,no,yes,no,cellular,aug,fri,140,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,technician,married,basic.6y,unknown,yes,no,telephone,may,wed,85,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +30,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,243,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +37,admin.,married,high.school,no,yes,no,telephone,may,mon,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,management,married,university.degree,no,no,no,cellular,mar,tue,499,1,999,0,nonexistent,-1.8,92.843,-50.0,1.7990000000000002,5099.1,yes +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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,no,yes,cellular,may,mon,116,6,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +43,self-employed,married,university.degree,no,yes,no,cellular,mar,wed,239,1,999,0,nonexistent,-1.8,93.369,-34.8,0.6509999999999999,5008.7,yes +56,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,50,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,103,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +25,admin.,single,unknown,no,yes,no,cellular,nov,mon,381,1,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,admin.,married,high.school,no,yes,no,telephone,may,wed,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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.,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 +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 +51,blue-collar,married,basic.4y,no,yes,yes,telephone,may,mon,387,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,admin.,married,professional.course,no,yes,no,cellular,dec,thu,798,1,9,2,success,-3.0,92.713,-33.0,0.7140000000000001,5023.5,yes +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 +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 +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 +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,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 +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 +40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +65,retired,married,unknown,no,unknown,unknown,telephone,oct,mon,208,3,999,1,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +54,self-employed,married,basic.9y,no,no,yes,cellular,nov,tue,72,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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,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 +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 +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 +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 +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 +46,admin.,married,high.school,no,yes,no,cellular,nov,thu,308,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +49,services,married,high.school,no,yes,no,cellular,may,mon,165,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,mon,1232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +32,blue-collar,married,basic.9y,no,no,yes,cellular,may,mon,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +35,self-employed,single,university.degree,no,unknown,unknown,cellular,oct,mon,123,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +33,blue-collar,single,basic.9y,no,no,no,cellular,aug,fri,257,1,999,1,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,services,married,basic.9y,no,yes,no,cellular,may,mon,50,5,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +38,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,159,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +40,management,single,university.degree,no,yes,no,cellular,may,fri,52,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +27,unknown,single,high.school,unknown,yes,yes,cellular,may,mon,154,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +32,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,322,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +30,technician,married,professional.course,no,no,no,telephone,may,wed,700,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +51,blue-collar,married,university.degree,no,yes,no,cellular,may,fri,99,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +29,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,340,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +31,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,60,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +49,technician,married,university.degree,no,yes,no,cellular,nov,thu,91,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +23,student,single,basic.9y,no,yes,no,cellular,jun,tue,189,1,6,3,success,-1.7,94.055,-39.8,0.7609999999999999,4991.6,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 +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 +50,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,286,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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,university.degree,no,yes,no,cellular,jul,mon,768,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 +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 +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 +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 +43,admin.,married,high.school,no,yes,no,telephone,nov,tue,82,6,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +36,services,married,high.school,unknown,yes,no,telephone,may,mon,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +52,technician,married,professional.course,no,yes,yes,cellular,sep,tue,77,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8190000000000001,5017.5,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 +34,technician,single,basic.9y,no,yes,no,cellular,aug,mon,140,3,999,0,nonexistent,-1.7,94.027,-38.3,0.8959999999999999,4991.6,no +28,technician,single,professional.course,unknown,no,no,telephone,jun,thu,492,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +56,services,single,basic.4y,unknown,yes,no,cellular,may,mon,480,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +44,admin.,married,basic.9y,no,yes,no,cellular,may,mon,55,1,999,2,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +40,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,tue,137,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,admin.,married,high.school,no,yes,no,telephone,may,wed,339,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +35,management,married,university.degree,no,yes,yes,cellular,nov,mon,244,2,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +46,blue-collar,married,professional.course,no,no,no,telephone,jun,thu,1446,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,management,single,university.degree,no,yes,yes,cellular,nov,thu,292,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +28,technician,divorced,professional.course,no,no,no,telephone,may,mon,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +32,housemaid,single,high.school,no,unknown,unknown,telephone,may,mon,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,management,married,basic.4y,no,yes,no,cellular,nov,wed,70,5,999,0,nonexistent,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +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 +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 +34,admin.,single,university.degree,no,no,yes,cellular,apr,wed,203,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,unemployed,married,basic.4y,no,no,no,cellular,nov,thu,192,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +36,admin.,married,unknown,unknown,yes,no,cellular,nov,thu,235,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,tue,171,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +26,technician,single,professional.course,no,no,yes,cellular,nov,wed,358,1,9,2,failure,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +50,unemployed,married,high.school,no,no,no,cellular,nov,tue,79,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +34,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,1622,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,admin.,married,university.degree,no,yes,no,cellular,nov,thu,195,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +53,technician,married,professional.course,no,yes,no,telephone,mar,mon,247,5,999,2,failure,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,124,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +41,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,140,1,14,2,success,-1.7,94.215,-40.3,0.7929999999999999,4991.6,yes +37,blue-collar,married,basic.4y,no,yes,yes,cellular,may,fri,456,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +58,retired,married,university.degree,no,yes,no,cellular,mar,mon,144,2,999,1,failure,-1.8,93.369,-34.8,0.6459999999999999,5008.7,no +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 +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 +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 +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 +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 +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 +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 +39,services,married,high.school,unknown,no,no,telephone,may,mon,5,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +36,unemployed,married,basic.6y,no,yes,no,cellular,nov,thu,46,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,unknown,no,no,cellular,may,tue,168,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +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 +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 +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 +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 +29,blue-collar,married,high.school,no,yes,yes,telephone,may,wed,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,services,married,professional.course,no,no,yes,cellular,nov,thu,217,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +45,blue-collar,married,basic.6y,no,yes,no,cellular,nov,thu,265,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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.,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,services,married,high.school,no,yes,no,cellular,may,fri,104,4,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +46,housemaid,married,high.school,no,yes,no,cellular,aug,fri,258,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +39,management,married,university.degree,no,no,no,cellular,nov,tue,88,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +45,technician,divorced,university.degree,no,yes,no,cellular,nov,thu,104,4,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +43,entrepreneur,married,professional.course,no,no,no,cellular,nov,tue,63,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +52,self-employed,married,university.degree,unknown,yes,no,telephone,may,mon,353,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +28,admin.,married,high.school,no,no,yes,cellular,may,wed,530,2,999,0,nonexistent,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +38,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,468,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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,unknown,yes,no,telephone,may,wed,335,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191.0,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 +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 +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 +54,admin.,married,university.degree,no,yes,yes,telephone,jun,thu,80,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +57,technician,married,professional.course,no,yes,no,telephone,may,mon,483,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +35,admin.,single,university.degree,no,yes,no,cellular,nov,thu,20,8,6,1,success,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +55,admin.,married,professional.course,unknown,yes,yes,telephone,nov,tue,514,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +39,services,married,high.school,unknown,yes,yes,telephone,may,fri,186,4,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,management,single,university.degree,no,yes,yes,cellular,apr,wed,427,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +52,services,married,high.school,no,yes,no,telephone,nov,tue,251,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +53,technician,married,professional.course,no,yes,yes,cellular,mar,mon,109,1,999,1,failure,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +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 +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,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,no,no,no,telephone,may,fri,131,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191.0,no +56,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,thu,392,2,3,1,success,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +34,admin.,married,university.degree,no,yes,no,cellular,may,fri,456,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +59,retired,divorced,basic.4y,no,no,no,cellular,jul,mon,410,2,999,0,nonexistent,-1.7,94.215,-40.3,0.8270000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,144,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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,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 +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 +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 +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 +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 +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 +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 +72,retired,married,high.school,no,no,no,cellular,nov,mon,257,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,self-employed,single,university.degree,no,no,no,cellular,may,fri,302,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,self-employed,married,basic.9y,unknown,no,no,telephone,jun,thu,99,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +53,management,divorced,university.degree,no,yes,no,cellular,nov,thu,350,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +71,retired,married,basic.4y,no,yes,no,cellular,sep,tue,206,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7879999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +71,retired,married,basic.4y,no,no,no,cellular,sep,tue,76,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7879999999999999,5017.5,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 +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 +27,admin.,married,high.school,no,no,yes,cellular,nov,mon,62,7,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,no +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 +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 +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 +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 +29,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,25,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +42,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,tue,288,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,management,married,university.degree,no,yes,yes,cellular,nov,tue,41,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,services,divorced,high.school,no,yes,no,cellular,sep,fri,56,2,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,no +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 +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 +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 +31,admin.,married,high.school,no,yes,no,cellular,may,fri,364,5,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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,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 +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 +83,retired,married,basic.9y,no,no,no,cellular,oct,fri,138,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,no +33,admin.,single,university.degree,no,no,no,cellular,nov,thu,206,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +53,housemaid,married,unknown,no,yes,no,cellular,nov,thu,104,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +55,entrepreneur,married,professional.course,no,yes,yes,cellular,oct,mon,233,1,999,2,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,no +47,admin.,married,basic.9y,no,no,no,cellular,nov,thu,164,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +42,management,married,university.degree,no,no,no,cellular,nov,thu,316,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +29,admin.,married,university.degree,no,yes,no,cellular,jun,tue,201,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7020000000000001,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +57,retired,single,university.degree,no,no,no,cellular,may,fri,208,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +36,admin.,single,high.school,no,yes,no,cellular,aug,fri,159,1,3,2,success,-2.9,92.201,-31.4,0.8490000000000001,5076.2,yes +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 +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,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 +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 +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 +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 +29,services,married,basic.9y,no,no,yes,cellular,may,fri,274,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,294,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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,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 +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 +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 +55,admin.,married,basic.9y,no,yes,yes,cellular,nov,thu,430,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,thu,96,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,admin.,married,professional.course,no,no,no,cellular,may,mon,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +51,admin.,single,university.degree,no,no,no,telephone,may,mon,120,7,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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,blue-collar,divorced,university.degree,no,yes,no,telephone,nov,thu,59,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,307,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +20,student,single,unknown,no,no,no,cellular,may,tue,202,2,12,1,success,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,612,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +48,management,married,university.degree,no,unknown,unknown,telephone,may,wed,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,management,divorced,university.degree,no,no,no,cellular,aug,fri,117,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +70,retired,married,basic.4y,no,yes,no,cellular,may,thu,331,1,3,2,success,-1.8,93.876,-40.0,0.6829999999999999,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +44,management,married,unknown,no,no,no,telephone,apr,tue,473,2,999,1,failure,-1.8,93.749,-34.6,0.6459999999999999,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +43,services,married,basic.9y,no,no,no,telephone,jun,thu,110,17,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,298,2,999,0,nonexistent,-1.7,94.027,-38.3,0.8859999999999999,4991.6,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,self-employed,single,university.degree,no,yes,no,cellular,nov,thu,88,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +60,retired,married,basic.4y,no,no,no,cellular,oct,mon,599,1,999,1,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +39,management,married,unknown,no,no,no,cellular,nov,thu,352,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +39,admin.,single,high.school,no,yes,yes,cellular,nov,thu,44,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +31,admin.,married,university.degree,no,yes,no,telephone,nov,tue,174,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +33,entrepreneur,single,university.degree,no,yes,no,cellular,nov,tue,435,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +32,admin.,single,university.degree,no,no,no,telephone,may,wed,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +40,blue-collar,single,basic.9y,no,no,no,cellular,apr,wed,274,1,999,1,failure,-1.8,93.075,-47.1,1.4980000000000002,5099.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 +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 +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 +36,services,divorced,university.degree,no,no,no,telephone,may,mon,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +27,management,single,university.degree,no,yes,no,cellular,sep,tue,137,2,4,2,success,-3.4,92.379,-29.8,0.8190000000000001,5017.5,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 +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 +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 +38,blue-collar,married,high.school,unknown,no,no,cellular,may,mon,627,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +34,self-employed,married,university.degree,no,unknown,unknown,cellular,jul,fri,156,3,999,2,failure,-1.7,94.215,-40.3,0.8959999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,thu,586,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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.1530000000000005,5195.8,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 +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 +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 +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 +42,management,married,high.school,no,yes,yes,cellular,nov,thu,164,3,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +20,student,single,high.school,no,yes,no,cellular,aug,tue,532,1,999,1,failure,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +35,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,thu,76,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,admin.,married,university.degree,no,no,no,cellular,dec,mon,85,2,999,0,nonexistent,-3.0,92.713,-33.0,0.7170000000000001,5023.5,no +31,services,single,high.school,unknown,no,no,cellular,may,fri,182,2,999,2,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +28,unemployed,single,high.school,no,yes,no,cellular,dec,mon,94,3,6,3,success,-3.0,92.713,-33.0,0.7090000000000001,5023.5,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 +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 +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 +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 +35,unemployed,single,university.degree,no,yes,yes,cellular,nov,tue,98,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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,no,yes,yes,cellular,jun,tue,444,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +54,unemployed,divorced,high.school,no,no,yes,cellular,oct,mon,54,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,no +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 +31,management,single,university.degree,no,yes,no,cellular,nov,tue,129,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +18,student,single,basic.4y,no,yes,no,telephone,nov,tue,394,1,13,2,success,-1.1,94.767,-50.8,1.0490000000000002,4963.6,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,thu,220,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,blue-collar,married,basic.9y,no,yes,no,cellular,jun,wed,133,3,3,2,success,-1.7,94.055,-39.8,0.7390000000000001,4991.6,no +42,management,married,university.degree,no,yes,no,cellular,may,mon,306,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +35,services,married,basic.9y,no,no,no,cellular,nov,tue,281,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +45,management,married,basic.9y,unknown,yes,no,cellular,may,mon,305,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +42,entrepreneur,married,basic.9y,no,unknown,unknown,cellular,mar,tue,133,1,999,0,nonexistent,-1.8,92.843,-50.0,1.7990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +33,admin.,single,high.school,no,yes,no,cellular,nov,thu,172,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,admin.,married,high.school,no,yes,no,cellular,may,fri,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +49,management,divorced,basic.6y,no,no,no,telephone,nov,thu,88,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,no,no,cellular,nov,thu,533,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +44,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +45,admin.,single,professional.course,no,yes,no,telephone,may,wed,565,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +56,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,thu,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +34,admin.,married,basic.9y,no,yes,no,cellular,may,fri,152,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,services,married,high.school,unknown,no,no,cellular,may,fri,89,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +31,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,blue-collar,married,basic.4y,no,no,no,telephone,nov,tue,194,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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,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 +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 +48,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,607,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +28,admin.,single,basic.9y,no,yes,yes,telephone,may,mon,335,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +41,blue-collar,single,basic.9y,no,no,no,cellular,nov,thu,120,4,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +34,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,management,married,university.degree,no,yes,no,telephone,jun,thu,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,entrepreneur,married,basic.4y,unknown,yes,no,cellular,nov,tue,185,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +33,technician,married,professional.course,no,yes,yes,cellular,may,fri,500,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,admin.,married,university.degree,no,unknown,unknown,cellular,jun,fri,602,1,10,1,success,-1.7,94.055,-39.8,0.7190000000000001,4991.6,yes +24,student,single,high.school,no,yes,no,cellular,may,tue,153,2,6,2,success,-1.8,93.876,-40.0,0.6679999999999999,5008.7,yes +36,services,married,university.degree,no,no,no,cellular,may,mon,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +39,technician,married,university.degree,no,no,yes,cellular,nov,tue,1437,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,unemployed,married,basic.4y,unknown,no,no,telephone,jun,thu,54,26,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +57,technician,married,high.school,no,no,no,telephone,may,wed,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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.1530000000000005,5195.8,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 +37,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +38,management,married,high.school,unknown,no,yes,telephone,jun,thu,70,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +70,retired,married,basic.4y,no,yes,no,cellular,oct,mon,131,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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,professional.course,unknown,yes,no,cellular,apr,mon,698,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +31,services,single,high.school,no,yes,no,cellular,nov,thu,475,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +26,unemployed,married,high.school,no,yes,no,telephone,may,mon,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +40,admin.,single,unknown,unknown,no,no,telephone,jun,thu,563,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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,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 +39,housemaid,married,basic.9y,no,yes,no,telephone,may,wed,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +41,admin.,married,unknown,no,no,no,cellular,sep,wed,845,1,7,3,success,-1.1,94.199,-37.5,0.8859999999999999,4963.6,yes +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 +41,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,491,1,999,2,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +52,retired,divorced,basic.6y,no,no,no,cellular,may,fri,154,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,technician,divorced,university.degree,unknown,yes,no,cellular,may,fri,84,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,admin.,married,university.degree,no,no,yes,cellular,sep,fri,172,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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,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 +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 +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 +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 +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 +53,self-employed,married,university.degree,no,yes,no,telephone,may,wed,162,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +42,blue-collar,divorced,basic.4y,unknown,no,no,cellular,nov,thu,14,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,728,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +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 +40,admin.,divorced,high.school,no,no,no,telephone,jun,thu,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +45,services,single,high.school,no,yes,no,cellular,may,fri,127,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,107,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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,technician,married,professional.course,no,no,no,cellular,nov,tue,45,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,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.0760000000000005,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 +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 +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 +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 +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 +55,entrepreneur,divorced,university.degree,no,yes,yes,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +25,admin.,single,high.school,no,yes,no,cellular,may,fri,238,6,999,2,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +49,admin.,divorced,high.school,no,yes,no,telephone,may,wed,202,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +45,unknown,married,unknown,unknown,no,yes,telephone,jun,thu,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +31,admin.,married,university.degree,unknown,yes,no,cellular,nov,thu,55,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +60,management,married,basic.4y,unknown,no,no,cellular,may,fri,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,111,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +32,admin.,single,high.school,no,yes,no,cellular,nov,thu,120,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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.9y,no,yes,no,cellular,aug,fri,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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,no,yes,no,cellular,aug,mon,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,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 +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 +45,technician,divorced,university.degree,unknown,no,no,cellular,may,fri,776,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,single,university.degree,no,yes,no,cellular,may,mon,120,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,services,single,high.school,no,yes,yes,cellular,may,mon,405,1,999,2,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +23,unemployed,single,high.school,no,no,no,telephone,jul,tue,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.8759999999999999,4991.6,no +37,technician,married,professional.course,no,yes,yes,cellular,may,fri,132,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,admin.,married,university.degree,no,no,no,telephone,may,mon,201,14,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,no,yes,telephone,nov,tue,79,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +28,unemployed,married,basic.9y,no,yes,no,cellular,may,fri,349,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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,no,yes,telephone,may,fri,28,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191.0,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 +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 +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,management,married,university.degree,no,yes,no,cellular,nov,thu,120,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,mon,239,3,999,0,nonexistent,-1.7,94.027,-38.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +43,housemaid,single,basic.9y,no,no,no,cellular,nov,tue,173,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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,professional.course,no,no,no,cellular,jul,tue,735,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.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 +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 +36,technician,single,basic.9y,no,no,no,cellular,nov,thu,174,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +36,technician,married,professional.course,no,no,no,telephone,may,wed,142,10,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +63,retired,married,professional.course,no,no,no,telephone,apr,wed,74,3,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,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 +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 +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 +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 +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 +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 +31,student,single,high.school,no,yes,yes,cellular,nov,tue,107,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +33,technician,single,professional.course,no,yes,no,telephone,mar,tue,244,2,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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,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 +39,technician,married,professional.course,no,unknown,unknown,telephone,may,wed,575,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,258,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,no +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 +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 +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 +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 +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 +50,management,single,university.degree,no,yes,no,cellular,nov,tue,600,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +53,self-employed,divorced,professional.course,no,yes,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +40,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,103,6,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +63,housemaid,married,basic.4y,no,yes,no,cellular,sep,wed,299,1,3,1,success,-3.4,92.379,-29.8,0.7490000000000001,5017.5,yes +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 +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 +36,services,single,high.school,no,no,no,telephone,may,wed,45,9,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +53,unemployed,married,basic.4y,unknown,yes,no,telephone,may,wed,339,10,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +19,student,single,basic.9y,no,no,yes,telephone,jul,mon,567,1,6,2,success,-1.7,94.215,-40.3,0.8270000000000001,4991.6,yes +31,services,single,high.school,no,yes,no,cellular,nov,thu,1059,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,management,divorced,high.school,no,no,no,cellular,may,fri,13,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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,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 +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 +54,technician,married,university.degree,unknown,no,no,cellular,may,fri,56,5,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +44,management,married,university.degree,no,yes,no,cellular,nov,thu,176,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +45,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +35,blue-collar,married,basic.9y,no,yes,no,cellular,dec,thu,105,1,4,3,success,-3.0,92.713,-33.0,0.7070000000000001,5023.5,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 +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 +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 +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,technician,married,professional.course,no,no,no,cellular,nov,thu,70,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +44,admin.,single,professional.course,no,yes,no,cellular,nov,thu,931,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +30,admin.,single,high.school,no,no,yes,cellular,may,fri,154,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,self-employed,married,basic.9y,no,yes,yes,cellular,nov,thu,244,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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,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,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 +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 +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 +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 +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 +31,technician,single,university.degree,no,yes,no,cellular,nov,thu,88,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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,yes,yes,cellular,may,mon,217,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +33,admin.,single,university.degree,no,no,no,telephone,nov,thu,36,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,management,married,university.degree,no,yes,no,cellular,may,mon,90,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,services,single,high.school,no,yes,no,cellular,may,mon,274,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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.8660000000000005,5228.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +33,technician,married,university.degree,no,no,no,cellular,sep,wed,216,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8759999999999999,4963.6,yes +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 +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 +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 +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 +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 +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 +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 +35,admin.,single,university.degree,no,yes,yes,cellular,may,mon,439,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +71,retired,married,unknown,no,yes,yes,cellular,dec,thu,182,1,999,1,failure,-3.0,92.713,-33.0,0.7140000000000001,5023.5,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 +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 +44,blue-collar,single,basic.6y,unknown,yes,no,cellular,nov,thu,39,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +38,admin.,married,high.school,no,no,no,cellular,may,fri,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +38,admin.,married,high.school,no,yes,no,cellular,may,fri,1281,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +30,services,married,basic.6y,no,no,no,cellular,nov,tue,154,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,technician,single,basic.9y,no,yes,no,cellular,may,mon,214,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +53,management,married,university.degree,no,yes,no,cellular,nov,tue,313,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +31,admin.,married,high.school,unknown,no,no,telephone,jun,thu,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +28,services,married,high.school,no,yes,no,cellular,may,mon,643,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +34,admin.,single,high.school,no,no,yes,telephone,may,mon,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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.8580000000000005,5191.0,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 +32,blue-collar,married,basic.6y,no,yes,no,cellular,nov,tue,203,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,management,single,university.degree,no,no,yes,telephone,nov,mon,107,1,999,0,nonexistent,-0.1,93.2,-42.0,4.4060000000000015,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,self-employed,married,high.school,no,yes,no,cellular,nov,thu,305,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.1530000000000005,5195.8,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 +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 +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 +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 +52,services,married,high.school,no,yes,no,cellular,may,fri,207,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +39,admin.,single,university.degree,no,yes,no,cellular,may,fri,273,4,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +31,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,693,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +26,blue-collar,single,basic.4y,no,yes,yes,telephone,may,wed,371,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +35,management,married,high.school,no,yes,yes,cellular,aug,fri,313,4,999,2,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,16,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +38,blue-collar,divorced,unknown,no,no,no,cellular,nov,tue,596,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +32,technician,single,university.degree,no,no,no,cellular,may,fri,216,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +32,management,married,university.degree,no,no,no,cellular,nov,thu,203,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,admin.,married,unknown,no,no,no,cellular,apr,wed,251,4,999,1,failure,-1.8,93.075,-47.1,1.4980000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +57,housemaid,married,basic.6y,no,no,yes,telephone,may,mon,168,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +53,self-employed,married,basic.4y,no,yes,no,cellular,nov,tue,76,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,technician,single,university.degree,no,yes,no,cellular,nov,tue,82,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,entrepreneur,married,university.degree,no,unknown,unknown,telephone,jun,thu,59,7,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,blue-collar,single,unknown,unknown,no,no,cellular,may,fri,936,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +38,management,single,university.degree,no,no,no,cellular,nov,thu,69,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +37,services,divorced,high.school,no,yes,no,telephone,may,mon,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,self-employed,married,basic.4y,no,no,no,cellular,nov,tue,505,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +29,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,332,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,851,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +30,management,single,high.school,no,no,no,cellular,nov,thu,952,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +37,management,married,university.degree,unknown,no,no,telephone,may,wed,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +53,technician,married,unknown,no,no,no,cellular,sep,wed,121,2,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,5017.5,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +36,blue-collar,married,high.school,no,yes,no,cellular,may,fri,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +39,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,400,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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,blue-collar,single,basic.4y,no,yes,no,cellular,may,mon,251,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +61,blue-collar,married,high.school,no,no,no,cellular,oct,wed,190,1,2,1,success,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,admin.,married,university.degree,no,yes,no,cellular,nov,tue,275,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +33,admin.,single,university.degree,no,yes,no,cellular,jul,mon,182,1,999,0,nonexistent,-1.7,94.215,-40.3,0.7929999999999999,4991.6,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 +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 +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 +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 +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 +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 +63,retired,married,university.degree,no,no,no,telephone,aug,tue,280,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +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 +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 +35,admin.,married,university.degree,no,no,yes,cellular,apr,fri,262,3,999,1,failure,-1.8,93.749,-34.6,0.6629999999999999,5008.7,yes +33,management,single,university.degree,no,yes,no,telephone,nov,thu,88,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +41,admin.,married,university.degree,no,no,no,cellular,dec,thu,213,1,999,0,nonexistent,-3.0,92.713,-33.0,0.7070000000000001,5023.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,tue,67,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +40,admin.,married,university.degree,no,yes,no,cellular,nov,thu,20,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +27,admin.,single,high.school,no,yes,no,cellular,may,mon,156,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +39,admin.,married,university.degree,no,yes,no,telephone,jun,thu,65,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +52,admin.,married,university.degree,no,no,no,cellular,may,tue,131,1,3,2,success,-1.8,93.876,-40.0,0.6679999999999999,5008.7,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 +33,admin.,single,university.degree,no,unknown,unknown,cellular,may,fri,498,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +51,technician,married,professional.course,no,no,no,cellular,nov,wed,272,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +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 +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 +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 +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 +33,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,15,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,services,married,high.school,no,no,no,telephone,may,mon,298,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,78,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,entrepreneur,divorced,university.degree,no,yes,yes,telephone,may,mon,86,7,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +37,technician,married,professional.course,no,no,no,telephone,jun,thu,221,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +35,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,813,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +40,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,77,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +31,unemployed,single,university.degree,no,yes,no,cellular,mar,tue,180,1,10,1,success,-1.8,93.369,-34.8,0.6459999999999999,5008.7,yes +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 +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 +30,services,married,high.school,no,yes,no,cellular,nov,thu,75,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +52,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,tue,77,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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,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 +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 +41,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +47,housemaid,married,basic.9y,no,yes,no,cellular,dec,thu,155,1,999,1,failure,-3.0,92.713,-33.0,0.7120000000000001,5023.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +25,student,single,high.school,unknown,yes,no,cellular,may,mon,160,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +39,admin.,married,high.school,no,yes,no,cellular,may,tue,552,1,3,2,success,-1.8,93.876,-40.0,0.6679999999999999,5008.7,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 +58,management,single,university.degree,no,no,no,cellular,may,fri,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +80,retired,married,basic.4y,no,no,no,cellular,aug,wed,207,4,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +74,retired,married,professional.course,no,no,no,cellular,may,fri,309,4,999,3,failure,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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.1530000000000005,5195.8,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 +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 +46,management,married,university.degree,no,yes,no,telephone,jun,thu,234,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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.0760000000000005,5195.8,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 +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 +34,technician,single,professional.course,no,no,no,telephone,jun,thu,432,8,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +40,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,thu,397,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +35,technician,single,high.school,no,yes,no,telephone,jun,thu,159,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +34,admin.,married,high.school,unknown,no,no,cellular,may,fri,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +30,services,divorced,high.school,no,unknown,unknown,cellular,may,fri,186,4,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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.,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 +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 +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 +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 +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 +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 +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 +30,admin.,married,university.degree,no,no,no,cellular,may,fri,418,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +34,unemployed,single,university.degree,no,no,no,cellular,aug,wed,484,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,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 +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 +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 +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,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 +46,entrepreneur,married,university.degree,no,yes,no,telephone,may,mon,105,11,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +58,unemployed,divorced,basic.9y,no,yes,no,telephone,oct,wed,509,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,yes +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 +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 +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 +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 +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 +48,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,141,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,management,married,university.degree,no,no,no,cellular,nov,tue,72,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +38,blue-collar,single,high.school,no,yes,yes,telephone,jun,thu,21,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7290000000000001,4991.6,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 +41,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,140,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +45,services,divorced,unknown,no,no,no,telephone,jun,thu,474,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,494,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,admin.,married,high.school,no,yes,no,cellular,oct,wed,1092,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,admin.,married,university.degree,no,yes,no,cellular,may,mon,301,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +35,technician,married,university.degree,no,no,no,telephone,may,wed,86,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,154,3,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +58,management,single,university.degree,no,no,yes,cellular,may,fri,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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,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 +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 +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 +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 +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 +48,technician,married,university.degree,no,no,no,cellular,nov,tue,373,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +51,housemaid,married,unknown,no,no,no,cellular,aug,fri,273,1,999,1,failure,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +51,self-employed,married,university.degree,no,yes,yes,cellular,nov,thu,310,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +47,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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.,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 +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,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 +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 +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 +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 +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 +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 +29,technician,divorced,professional.course,no,yes,yes,telephone,jun,thu,247,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7290000000000001,4991.6,no +44,blue-collar,divorced,basic.6y,no,no,no,telephone,may,mon,380,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +60,entrepreneur,married,basic.4y,no,no,yes,telephone,may,wed,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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.8580000000000005,5191.0,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 +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 +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 +37,technician,married,professional.course,no,no,no,telephone,jun,thu,214,5,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,blue-collar,single,basic.6y,no,no,no,telephone,may,wed,244,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +76,retired,married,university.degree,no,yes,yes,cellular,dec,thu,330,2,4,2,success,-3.0,92.713,-33.0,0.7120000000000001,5023.5,yes +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 +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 +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 +56,retired,divorced,high.school,no,yes,no,telephone,jul,fri,9,1,999,0,nonexistent,-1.7,94.215,-40.3,0.8959999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,single,high.school,no,yes,no,cellular,nov,thu,205,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +71,retired,married,professional.course,no,no,no,cellular,sep,fri,313,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +41,admin.,single,university.degree,no,no,no,cellular,nov,tue,93,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,admin.,married,high.school,no,yes,yes,cellular,sep,fri,128,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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 +24,student,single,unknown,no,yes,yes,cellular,aug,fri,744,1,3,2,success,-2.9,92.201,-31.4,0.8490000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +58,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,64,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,services,married,university.degree,no,no,no,cellular,nov,tue,190,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +28,admin.,single,university.degree,no,no,no,cellular,may,wed,135,2,3,2,success,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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 +39,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,124,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +32,admin.,single,high.school,no,yes,no,cellular,may,mon,148,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +43,management,married,basic.9y,no,yes,no,cellular,aug,fri,180,1,6,2,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,management,married,basic.4y,no,yes,no,cellular,oct,mon,109,3,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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,high.school,no,unknown,unknown,telephone,may,wed,137,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191.0,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 +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 +42,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,230,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +25,student,single,high.school,no,no,no,telephone,sep,mon,185,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8759999999999999,4963.6,yes +41,blue-collar,married,basic.6y,no,yes,no,telephone,nov,thu,713,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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,technician,married,professional.course,no,no,no,cellular,nov,thu,96,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,single,university.degree,no,no,no,cellular,nov,fri,122,1,3,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +30,admin.,married,university.degree,unknown,yes,no,cellular,nov,thu,157,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +46,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,410,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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 +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 +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 +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 +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 +30,services,single,high.school,no,no,no,cellular,nov,thu,180,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,25,6,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,housemaid,married,basic.9y,no,no,no,cellular,nov,thu,86,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +45,blue-collar,married,unknown,no,yes,yes,telephone,may,mon,943,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +38,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,98,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,self-employed,single,university.degree,no,yes,yes,cellular,sep,tue,179,1,999,1,failure,-1.1,94.199,-37.5,0.8809999999999999,4963.6,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 +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 +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 +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 +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 +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 +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 +29,student,single,professional.course,no,yes,no,telephone,nov,thu,124,2,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +43,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,254,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,retired,married,high.school,unknown,yes,no,cellular,nov,tue,121,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +30,admin.,single,basic.9y,no,no,no,cellular,nov,thu,106,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,management,single,university.degree,no,yes,no,cellular,jun,wed,442,2,999,3,failure,-1.7,94.055,-39.8,0.7390000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,technician,married,university.degree,no,yes,no,cellular,may,mon,502,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +45,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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,admin.,divorced,high.school,no,yes,yes,cellular,nov,tue,334,2,6,4,failure,-1.1,94.767,-50.8,1.0490000000000002,4963.6,yes +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 +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 +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 +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 +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 +34,admin.,single,university.degree,no,no,no,cellular,aug,wed,195,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +33,services,married,high.school,no,no,no,cellular,nov,tue,102,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,services,single,high.school,no,yes,no,telephone,may,thu,93,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,student,single,university.degree,no,yes,yes,cellular,may,fri,108,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +46,admin.,married,high.school,no,yes,no,cellular,nov,tue,107,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +29,admin.,single,high.school,no,yes,no,telephone,may,mon,41,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +37,technician,married,professional.course,no,yes,no,cellular,nov,thu,63,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +41,technician,married,professional.course,no,no,no,telephone,jun,thu,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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,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 +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 +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 +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 +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 +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 +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 +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 +28,student,single,high.school,no,yes,no,cellular,jul,mon,250,2,6,1,success,-1.7,94.215,-40.3,0.8270000000000001,4991.6,yes +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,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 +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 +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 +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 +49,technician,married,professional.course,no,yes,no,cellular,may,fri,364,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,technician,single,university.degree,no,yes,no,cellular,dec,mon,264,2,999,0,nonexistent,-3.0,92.713,-33.0,0.7090000000000001,5023.5,yes +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 +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 +36,services,single,basic.9y,no,yes,no,cellular,may,fri,293,3,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +39,self-employed,married,basic.4y,unknown,yes,no,telephone,may,wed,315,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +35,admin.,married,university.degree,no,yes,no,telephone,jul,fri,304,1,999,2,failure,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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,professional.course,no,yes,yes,telephone,may,thu,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +51,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,39,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +33,admin.,single,high.school,unknown,yes,no,telephone,may,mon,68,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +44,admin.,single,professional.course,no,yes,no,cellular,may,mon,105,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +53,technician,divorced,high.school,no,no,no,cellular,nov,thu,405,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +34,blue-collar,married,university.degree,no,no,yes,cellular,may,fri,208,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +35,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +40,technician,single,university.degree,no,no,no,cellular,nov,mon,105,2,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +31,services,single,high.school,no,yes,no,cellular,nov,thu,45,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +33,blue-collar,single,professional.course,no,no,yes,telephone,jul,fri,15,1,999,0,nonexistent,-1.7,94.215,-40.3,0.8220000000000001,4991.6,no +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 +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 +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 +46,entrepreneur,married,university.degree,unknown,no,no,telephone,may,wed,433,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +40,services,married,high.school,no,yes,no,cellular,may,fri,151,4,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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,admin.,single,university.degree,no,yes,no,cellular,may,fri,105,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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,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 +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 +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 +53,admin.,married,high.school,no,yes,no,cellular,may,fri,291,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +56,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +32,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,131,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,services,married,high.school,no,no,no,telephone,may,mon,108,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,admin.,single,high.school,no,no,no,telephone,may,mon,197,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,single,university.degree,no,no,no,cellular,apr,wed,295,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,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 +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 +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 +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 +32,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,247,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +41,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,133,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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.2990000000000002,5099.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 +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 +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 +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 +46,management,married,unknown,no,yes,no,cellular,nov,thu,1503,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +37,technician,married,high.school,unknown,yes,no,telephone,jun,thu,218,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +34,technician,married,high.school,no,no,no,cellular,may,mon,347,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +34,admin.,married,high.school,no,no,yes,cellular,sep,wed,214,2,999,0,nonexistent,-1.1,94.199,-37.5,0.8759999999999999,4963.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +39,management,single,university.degree,no,yes,no,cellular,nov,fri,239,2,3,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.6y,unknown,yes,no,telephone,may,fri,160,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +34,self-employed,married,illiterate,no,yes,no,cellular,nov,thu,51,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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.8580000000000005,5191.0,no +61,retired,married,basic.9y,no,yes,no,telephone,aug,fri,176,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,no +32,student,single,university.degree,no,no,no,cellular,nov,thu,151,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +27,admin.,single,high.school,no,yes,no,cellular,may,fri,1448,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +51,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,wed,384,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +43,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,157,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +49,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,34,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +45,admin.,divorced,professional.course,no,no,yes,cellular,may,fri,132,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,married,university.degree,no,yes,no,cellular,nov,thu,597,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +30,unemployed,married,high.school,no,no,no,cellular,nov,tue,145,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +43,technician,single,professional.course,no,no,no,cellular,may,tue,164,2,3,2,success,-1.8,93.876,-40.0,0.6679999999999999,5008.7,yes +31,management,married,university.degree,no,yes,no,cellular,nov,tue,715,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +33,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,99,1,999,2,failure,-2.9,92.201,-31.4,0.8809999999999999,5076.2,no +32,services,married,basic.6y,unknown,yes,no,telephone,nov,tue,368,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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,technician,single,university.degree,no,yes,no,cellular,may,mon,1514,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +41,management,married,unknown,unknown,no,yes,telephone,jun,thu,636,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +63,retired,divorced,basic.4y,no,yes,no,cellular,aug,fri,153,2,3,1,success,-2.9,92.201,-31.4,0.8690000000000001,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 +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.,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,housemaid,divorced,high.school,no,no,no,telephone,jun,thu,57,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +43,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,247,6,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,327,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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,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 +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 +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 +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 +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 +32,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,self-employed,married,university.degree,no,yes,no,cellular,nov,thu,247,1,6,3,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +28,unemployed,married,professional.course,no,yes,no,cellular,aug,fri,190,3,999,1,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,admin.,single,high.school,no,yes,no,telephone,may,mon,243,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,997,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +72,retired,married,university.degree,no,no,no,cellular,nov,mon,111,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +35,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,386,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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.2990000000000002,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +37,technician,married,professional.course,no,yes,no,cellular,nov,tue,252,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,admin.,married,high.school,no,no,no,cellular,may,fri,129,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +29,blue-collar,married,high.school,no,no,no,telephone,jun,thu,718,13,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +38,technician,single,professional.course,unknown,no,no,telephone,may,wed,474,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +27,admin.,single,high.school,no,yes,no,cellular,may,mon,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +50,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,103,6,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +42,retired,divorced,illiterate,no,no,no,telephone,aug,wed,128,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8340000000000001,5076.2,yes +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +46,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,346,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +34,technician,single,basic.9y,no,no,no,cellular,aug,mon,200,2,999,0,nonexistent,-1.7,94.027,-38.3,0.8959999999999999,4991.6,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.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,services,single,basic.9y,no,yes,no,cellular,may,fri,501,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +56,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +45,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,mon,316,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,173,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +23,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,285,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +65,unknown,married,unknown,no,yes,no,cellular,jun,thu,301,2,4,2,success,-1.7,94.055,-39.8,0.7290000000000001,4991.6,yes +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 +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 +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,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 +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 +39,admin.,married,high.school,no,no,no,cellular,sep,mon,85,2,999,0,nonexistent,-3.4,92.379,-29.8,0.7709999999999999,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,blue-collar,single,basic.9y,no,yes,no,telephone,jun,thu,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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.,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 +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 +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 +57,retired,married,basic.4y,no,yes,no,telephone,may,mon,546,12,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +31,technician,married,high.school,no,no,no,cellular,nov,tue,90,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +30,blue-collar,married,basic.6y,no,yes,yes,cellular,may,mon,429,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +39,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,260,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +58,blue-collar,divorced,basic.4y,no,yes,no,cellular,nov,thu,63,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,married,university.degree,no,no,no,cellular,nov,thu,157,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +41,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,261,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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,admin.,divorced,unknown,no,yes,no,telephone,jul,fri,353,2,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,yes +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 +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 +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 +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 +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 +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 +45,self-employed,divorced,professional.course,no,yes,no,telephone,aug,mon,5,1,999,1,failure,-1.7,94.027,-38.3,0.8909999999999999,4991.6,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 +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 +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 +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 +76,retired,married,university.degree,no,no,yes,cellular,dec,thu,324,3,4,2,success,-3.0,92.713,-33.0,0.7120000000000001,5023.5,yes +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,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 +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,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 +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 +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 +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 +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 +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 +32,admin.,married,high.school,no,yes,no,cellular,may,mon,689,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,services,married,basic.9y,no,yes,no,cellular,nov,tue,51,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,unemployed,married,basic.9y,no,yes,yes,cellular,may,mon,21,6,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +35,services,married,basic.9y,unknown,no,no,cellular,may,mon,69,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +40,technician,married,professional.course,no,yes,no,cellular,nov,tue,130,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +45,technician,single,professional.course,no,yes,no,cellular,nov,thu,102,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +37,management,married,university.degree,no,no,no,cellular,nov,thu,89,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,technician,married,professional.course,no,yes,yes,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +63,retired,married,unknown,no,yes,yes,cellular,sep,tue,167,1,999,1,failure,-3.4,92.379,-29.8,0.7879999999999999,5017.5,no +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 +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 +36,management,married,university.degree,no,yes,no,cellular,nov,tue,267,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +35,student,married,basic.9y,no,yes,no,cellular,nov,thu,371,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +48,technician,married,unknown,no,yes,no,telephone,may,mon,429,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +30,self-employed,single,high.school,no,no,no,cellular,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +21,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,279,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +29,technician,single,university.degree,no,no,yes,cellular,nov,thu,57,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +39,services,married,high.school,no,yes,no,cellular,nov,thu,116,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +42,management,married,university.degree,no,yes,no,cellular,nov,mon,104,3,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +33,admin.,married,high.school,no,yes,no,cellular,sep,tue,212,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8190000000000001,5017.5,yes +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 +52,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,176,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +31,technician,married,university.degree,no,yes,no,cellular,nov,tue,39,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +75,housemaid,divorced,basic.4y,no,no,no,telephone,nov,mon,135,8,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +37,management,married,unknown,no,yes,no,cellular,nov,thu,884,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,technician,married,professional.course,no,yes,no,cellular,nov,thu,180,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,77,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,high.school,no,no,no,cellular,nov,thu,363,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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.9y,no,yes,no,cellular,may,fri,207,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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.3130000000000002,5099.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 +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 +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 +55,technician,single,university.degree,unknown,yes,yes,cellular,nov,thu,92,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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,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 +53,services,divorced,high.school,no,yes,no,cellular,nov,tue,233,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +58,retired,married,high.school,no,no,no,cellular,nov,thu,477,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +29,services,single,university.degree,unknown,yes,no,telephone,may,mon,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +33,unemployed,single,university.degree,no,no,no,cellular,nov,thu,153,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,admin.,married,university.degree,no,yes,no,cellular,nov,thu,554,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +50,management,married,university.degree,unknown,unknown,unknown,telephone,may,mon,93,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +30,management,married,university.degree,no,yes,no,cellular,may,mon,61,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +45,self-employed,married,university.degree,no,yes,no,telephone,jun,thu,870,11,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +40,services,single,basic.6y,no,no,no,cellular,nov,thu,373,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,admin.,married,basic.6y,no,yes,no,cellular,apr,wed,805,2,999,1,failure,-1.8,93.075,-47.1,1.4980000000000002,5099.1,yes +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 +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 +27,unknown,single,high.school,unknown,yes,yes,cellular,may,mon,628,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jun,thu,80,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +47,services,divorced,high.school,no,no,no,telephone,may,mon,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,management,married,university.degree,no,yes,yes,cellular,nov,thu,884,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +40,blue-collar,single,high.school,no,yes,no,cellular,nov,tue,139,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +57,admin.,divorced,university.degree,unknown,no,no,cellular,nov,thu,399,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +79,retired,married,basic.9y,no,no,no,cellular,sep,tue,181,1,999,1,failure,-3.4,92.379,-29.8,0.8190000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,69,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +36,technician,married,professional.course,no,yes,no,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +31,management,single,university.degree,no,yes,no,cellular,nov,tue,466,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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,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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,single,university.degree,no,no,no,telephone,may,wed,819,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +32,entrepreneur,married,high.school,no,yes,no,cellular,nov,thu,356,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,single,high.school,no,no,no,cellular,may,mon,552,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +38,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,135,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +79,retired,married,basic.9y,no,no,no,cellular,may,tue,126,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6679999999999999,5008.7,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 +29,technician,single,university.degree,no,yes,no,cellular,jul,fri,473,1,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,retired,married,basic.4y,no,no,no,telephone,sep,wed,180,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,5017.5,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 +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 +25,services,single,high.school,no,no,no,telephone,may,mon,328,10,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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,no,no,no,cellular,jul,thu,421,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,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 +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 +27,admin.,single,university.degree,no,yes,no,cellular,nov,fri,264,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +36,admin.,married,high.school,no,yes,no,cellular,nov,thu,231,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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,no,cellular,may,wed,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.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 +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 +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,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 +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 +52,admin.,married,university.degree,no,yes,no,cellular,nov,thu,134,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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,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 +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 +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 +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 +37,entrepreneur,single,university.degree,no,no,no,cellular,nov,tue,199,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +35,blue-collar,married,unknown,no,yes,no,cellular,may,mon,40,8,10,1,success,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +53,technician,married,professional.course,no,no,no,cellular,mar,mon,261,4,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +40,services,single,basic.6y,no,no,no,cellular,nov,thu,308,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +31,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,1855,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +32,blue-collar,single,high.school,no,no,no,cellular,may,mon,80,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +51,services,married,professional.course,unknown,no,no,telephone,may,mon,158,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,107,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +64,housemaid,married,unknown,no,yes,no,telephone,may,wed,671,3,999,0,nonexistent,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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 +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 +41,unemployed,married,basic.9y,no,yes,no,cellular,may,thu,306,1,6,4,success,-1.8,93.876,-40.0,0.6829999999999999,5008.7,yes +45,management,married,university.degree,no,no,no,cellular,sep,wed,293,2,3,2,success,-1.1,94.199,-37.5,0.8859999999999999,4963.6,yes +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 +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 +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 +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 +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 +30,blue-collar,married,high.school,no,yes,no,cellular,aug,fri,252,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8490000000000001,5076.2,yes +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 +36,technician,married,university.degree,no,yes,no,telephone,may,wed,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.4y,no,yes,no,cellular,nov,tue,87,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +34,management,married,university.degree,no,yes,no,telephone,jun,thu,773,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +70,retired,married,professional.course,no,yes,no,cellular,aug,fri,94,4,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +60,retired,married,high.school,no,no,no,cellular,sep,wed,200,1,6,1,success,-1.1,94.199,-37.5,0.8759999999999999,4963.6,yes +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 +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 +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 +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 +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 +33,admin.,married,university.degree,no,no,no,cellular,nov,thu,489,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +34,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,135,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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,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 +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 +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 +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 +82,retired,married,university.degree,no,no,no,cellular,aug,fri,79,2,999,2,failure,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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,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 +38,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,498,3,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,services,married,basic.9y,no,yes,no,cellular,oct,fri,847,1,2,1,success,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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,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 +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 +49,blue-collar,single,unknown,unknown,yes,no,cellular,may,fri,49,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +27,student,single,university.degree,no,yes,yes,cellular,apr,tue,147,2,999,1,failure,-1.8,93.749,-34.6,0.6459999999999999,5008.7,no +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 +48,self-employed,married,university.degree,no,no,no,cellular,nov,tue,137,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +56,admin.,divorced,unknown,no,no,no,telephone,jun,thu,57,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +29,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,304,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +45,blue-collar,married,unknown,unknown,no,no,telephone,jun,thu,264,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +50,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,100,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +44,admin.,married,high.school,no,no,no,cellular,may,fri,127,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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,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 +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 +28,admin.,single,high.school,no,yes,no,cellular,mar,tue,143,2,999,0,nonexistent,-1.8,92.843,-50.0,1.7990000000000002,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 +35,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,77,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,blue-collar,single,high.school,no,no,no,cellular,may,fri,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +48,admin.,single,university.degree,no,no,no,cellular,nov,tue,148,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +36,admin.,single,university.degree,no,yes,no,cellular,nov,thu,287,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +60,retired,married,high.school,no,yes,no,cellular,aug,tue,443,2,999,2,failure,-1.7,94.027,-38.3,0.8859999999999999,4991.6,yes +48,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,103,1,4,1,success,-2.9,92.201,-31.4,0.8809999999999999,5076.2,no +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 +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 +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 +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 +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 +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 +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 +48,admin.,divorced,basic.4y,no,yes,no,cellular,may,mon,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +29,admin.,single,high.school,no,no,no,cellular,aug,fri,384,1,4,3,success,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +20,student,single,unknown,no,yes,no,cellular,apr,wed,184,4,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,services,married,basic.9y,unknown,yes,no,cellular,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +46,admin.,married,basic.9y,unknown,no,no,cellular,may,fri,175,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,technician,single,professional.course,no,unknown,unknown,cellular,may,mon,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +64,retired,married,high.school,no,no,no,cellular,nov,mon,146,1,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +70,retired,married,basic.4y,no,yes,no,cellular,aug,fri,530,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +42,admin.,married,high.school,no,no,no,cellular,nov,tue,203,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,basic.6y,no,no,yes,telephone,may,wed,376,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191.0,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 +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 +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 +41,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,168,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +39,blue-collar,married,basic.6y,no,yes,yes,cellular,may,fri,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +25,admin.,single,high.school,no,yes,yes,cellular,may,fri,795,6,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +23,services,single,professional.course,unknown,no,no,telephone,jun,thu,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +35,technician,married,university.degree,no,yes,no,cellular,nov,thu,92,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,admin.,single,high.school,no,no,no,cellular,may,mon,1114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +46,admin.,married,university.degree,no,yes,no,cellular,jul,fri,341,3,999,0,nonexistent,-1.7,94.215,-40.3,0.8220000000000001,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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,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,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,married,unknown,no,no,no,cellular,nov,fri,498,1,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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,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 +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 +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 +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 +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 +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 +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 +48,admin.,single,university.degree,no,yes,no,telephone,jun,thu,333,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +51,admin.,married,basic.6y,no,yes,no,cellular,nov,tue,122,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,blue-collar,married,professional.course,no,yes,no,cellular,jul,fri,175,1,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +47,blue-collar,married,high.school,no,no,yes,cellular,may,fri,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +50,management,married,unknown,no,yes,no,telephone,jun,thu,1005,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +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 +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 +33,technician,single,university.degree,no,no,no,cellular,may,mon,284,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +35,unknown,single,basic.4y,unknown,yes,yes,telephone,may,mon,374,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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.2990000000000002,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 +32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,93,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,admin.,divorced,high.school,no,no,no,telephone,jun,thu,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +36,technician,single,professional.course,no,yes,no,cellular,nov,thu,61,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +30,technician,single,university.degree,no,unknown,unknown,cellular,mar,tue,272,3,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +35,unemployed,married,professional.course,no,yes,yes,cellular,dec,thu,62,3,999,1,failure,-3.0,92.713,-33.0,0.7070000000000001,5023.5,no +34,admin.,married,high.school,no,no,no,cellular,jul,fri,59,7,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,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 +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 +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 +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 +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 +39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +23,blue-collar,married,high.school,no,no,yes,telephone,jun,thu,173,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,128,3,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +31,management,married,university.degree,no,yes,no,cellular,may,fri,144,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +32,technician,single,university.degree,no,unknown,unknown,cellular,nov,thu,26,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,admin.,married,university.degree,unknown,yes,yes,telephone,may,wed,232,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +35,admin.,single,high.school,no,yes,no,cellular,jul,fri,147,2,14,2,failure,-2.9,92.469,-33.6,1.0590000000000002,5076.2,no +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 +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 +48,admin.,divorced,high.school,unknown,no,no,cellular,may,mon,263,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +35,technician,married,university.degree,no,yes,no,cellular,jul,fri,236,2,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,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 +32,admin.,single,university.degree,no,yes,no,cellular,dec,tue,449,2,999,0,nonexistent,-3.0,92.713,-33.0,0.7070000000000001,5023.5,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 +46,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,549,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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,high.school,no,yes,no,cellular,aug,fri,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +23,technician,single,professional.course,no,yes,no,cellular,nov,thu,116,5,9,2,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,no +31,technician,single,university.degree,no,no,no,cellular,nov,tue,171,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +37,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,72,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +26,unemployed,married,basic.4y,no,no,no,telephone,may,fri,29,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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 +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 +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 +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 +34,technician,married,professional.course,no,no,no,cellular,aug,tue,193,1,13,1,success,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +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 +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 +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 +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 +58,management,married,university.degree,unknown,yes,no,cellular,nov,tue,233,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +46,entrepreneur,married,unknown,unknown,yes,no,cellular,nov,thu,23,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +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 +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 +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 +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 +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 +42,admin.,married,high.school,no,yes,no,cellular,may,fri,106,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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.2990000000000002,5099.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 +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 +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 +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 +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 +23,admin.,single,university.degree,no,no,yes,cellular,jul,fri,76,2,999,1,failure,-1.7,94.215,-40.3,0.8959999999999999,4991.6,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 +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 +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 +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 +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 +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,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 +47,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +37,technician,married,professional.course,no,yes,no,cellular,nov,tue,238,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +39,services,married,high.school,no,no,no,telephone,jun,thu,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +32,technician,single,university.degree,no,no,no,cellular,nov,thu,485,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,487,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +28,admin.,single,university.degree,no,yes,no,cellular,jul,fri,67,2,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,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 +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 +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 +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 +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 +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 +27,admin.,single,high.school,no,yes,no,cellular,may,mon,313,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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.3130000000000002,5099.1,no +37,blue-collar,single,unknown,unknown,no,no,telephone,may,wed,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +36,technician,married,basic.9y,no,no,no,telephone,may,wed,443,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +39,unemployed,married,basic.9y,unknown,no,no,cellular,nov,tue,149,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +32,blue-collar,divorced,basic.9y,no,yes,no,telephone,nov,thu,1025,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,blue-collar,married,basic.9y,no,yes,no,telephone,nov,thu,733,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +32,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,490,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +54,admin.,married,high.school,no,yes,no,telephone,jun,thu,243,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +39,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +58,management,married,university.degree,no,yes,no,cellular,may,thu,342,2,999,0,nonexistent,-1.8,93.876,-40.0,0.6920000000000001,5008.7,yes +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 +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 +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 +51,self-employed,single,basic.9y,no,yes,no,cellular,nov,thu,104,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +54,management,divorced,basic.6y,unknown,yes,no,telephone,may,wed,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +53,admin.,married,high.school,no,yes,yes,cellular,may,mon,186,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +28,admin.,single,high.school,no,yes,no,cellular,may,thu,263,1,6,1,success,-1.8,93.876,-40.0,0.6829999999999999,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,admin.,single,high.school,no,no,yes,telephone,nov,thu,329,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +38,admin.,divorced,university.degree,no,no,no,cellular,may,mon,79,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.6y,no,no,no,telephone,jul,tue,196,4,999,0,nonexistent,1.4,93.918,-42.7,4.955,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 +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,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 +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 +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 +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 +45,technician,married,professional.course,no,no,no,telephone,nov,thu,35,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +36,blue-collar,single,high.school,no,yes,yes,telephone,may,mon,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +35,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,220,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +44,management,married,university.degree,no,yes,no,cellular,may,fri,69,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,115,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,single,university.degree,no,no,no,cellular,may,tue,85,1,999,2,failure,-1.8,93.876,-40.0,0.6679999999999999,5008.7,no +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 +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 +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 +33,technician,single,university.degree,no,no,no,cellular,nov,tue,113,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,298,2,5,1,success,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +34,technician,married,high.school,no,no,no,cellular,nov,thu,732,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +35,entrepreneur,married,university.degree,no,yes,yes,cellular,may,fri,152,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +36,blue-collar,married,unknown,no,no,no,telephone,jun,thu,179,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +40,admin.,married,high.school,no,yes,no,telephone,aug,thu,173,6,999,1,failure,-1.7,94.027,-38.3,0.8909999999999999,4991.6,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 +29,technician,single,professional.course,unknown,no,no,cellular,nov,thu,308,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,admin.,married,high.school,no,no,no,telephone,may,mon,42,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +43,management,married,university.degree,no,unknown,unknown,telephone,may,mon,193,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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,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 +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 +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 +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 +33,technician,single,high.school,no,yes,no,telephone,nov,tue,1476,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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,university.degree,no,no,yes,cellular,nov,thu,106,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,may,fri,348,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +32,services,single,university.degree,no,no,yes,cellular,may,fri,473,3,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,yes +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 +41,blue-collar,single,basic.4y,no,no,no,telephone,jun,thu,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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,admin.,single,university.degree,no,no,no,cellular,nov,thu,291,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +43,admin.,married,university.degree,no,no,no,telephone,jun,thu,175,4,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +46,admin.,married,high.school,unknown,yes,yes,telephone,may,mon,358,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +36,technician,married,professional.course,no,yes,no,telephone,may,mon,594,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,admin.,married,university.degree,no,no,no,cellular,may,mon,91,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,180,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +67,retired,married,basic.4y,no,no,no,telephone,nov,mon,167,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +40,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,thu,561,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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,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 +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 +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 +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 +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 +38,services,married,high.school,unknown,no,no,telephone,jun,thu,419,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +28,services,single,high.school,no,yes,no,telephone,may,mon,318,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +30,management,single,university.degree,no,no,no,telephone,jun,thu,27,7,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +28,unemployed,married,professional.course,no,no,no,telephone,aug,fri,140,11,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +30,admin.,single,university.degree,no,yes,no,cellular,may,mon,232,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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,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 +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 +39,entrepreneur,single,basic.6y,no,no,no,telephone,jun,thu,1053,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,yes +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 +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 +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 +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 +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 +41,blue-collar,divorced,professional.course,no,unknown,unknown,telephone,jun,thu,127,6,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +36,unemployed,married,unknown,unknown,no,no,cellular,sep,wed,344,1,999,1,failure,-3.4,92.379,-29.8,0.7809999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,services,married,high.school,no,no,no,cellular,may,mon,410,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,married,high.school,no,yes,no,cellular,nov,wed,85,1,999,1,failure,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +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 +35,technician,married,professional.course,no,no,no,cellular,aug,tue,441,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +36,admin.,married,high.school,no,yes,no,cellular,nov,tue,722,3,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +32,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,199,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +52,self-employed,single,university.degree,unknown,no,no,telephone,may,wed,353,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,unknown,single,basic.6y,unknown,yes,no,telephone,may,wed,660,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,retired,married,basic.4y,unknown,no,no,telephone,may,mon,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,blue-collar,married,unknown,unknown,no,no,cellular,may,fri,265,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,technician,married,high.school,no,no,no,cellular,nov,tue,39,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +38,admin.,single,high.school,unknown,yes,no,telephone,jun,thu,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +22,services,single,basic.4y,no,no,no,telephone,may,wed,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +36,admin.,married,university.degree,no,yes,no,cellular,may,fri,334,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,professional.course,no,no,no,telephone,mar,mon,80,4,999,0,nonexistent,-1.8,92.843,-50.0,1.629,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,admin.,divorced,professional.course,no,yes,no,telephone,nov,tue,55,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +40,services,married,basic.4y,unknown,no,no,cellular,may,fri,139,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,management,married,high.school,no,yes,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +33,services,divorced,high.school,no,yes,yes,telephone,may,wed,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,technician,single,professional.course,no,no,no,cellular,may,fri,440,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +39,entrepreneur,married,basic.6y,no,no,no,cellular,sep,tue,106,4,16,2,failure,-3.4,92.379,-29.8,0.8190000000000001,5017.5,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 +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 +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 +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 +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 +46,admin.,married,basic.9y,unknown,yes,no,telephone,jun,thu,70,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +17,student,single,basic.9y,no,unknown,unknown,cellular,aug,fri,498,2,999,1,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +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 +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 +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 +35,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +26,admin.,single,university.degree,no,yes,yes,cellular,may,mon,9,7,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,blue-collar,married,high.school,no,yes,no,cellular,may,fri,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +43,technician,married,professional.course,no,yes,no,telephone,nov,tue,89,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +39,self-employed,divorced,high.school,no,no,no,cellular,sep,tue,108,2,3,1,success,-3.4,92.379,-29.8,0.7879999999999999,5017.5,yes +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 +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 +73,retired,married,basic.4y,no,no,no,cellular,aug,fri,453,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +31,management,divorced,university.degree,no,yes,no,cellular,may,fri,156,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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.9y,no,yes,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191.0,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 +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 +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 +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 +30,technician,married,professional.course,no,yes,no,cellular,may,fri,156,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +32,technician,divorced,professional.course,no,no,no,cellular,nov,tue,288,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +37,admin.,married,university.degree,no,yes,no,cellular,jun,fri,135,1,999,2,failure,-1.7,94.055,-39.8,0.7190000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,yes,no,cellular,jun,tue,385,1,5,1,success,-1.7,94.055,-39.8,0.7609999999999999,4991.6,no +34,admin.,single,university.degree,no,no,no,cellular,oct,mon,131,1,999,1,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,management,married,university.degree,no,no,no,cellular,nov,thu,196,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +38,technician,married,basic.9y,no,no,no,cellular,nov,tue,142,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,492,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +36,blue-collar,married,unknown,no,yes,no,cellular,apr,fri,572,2,999,0,nonexistent,-1.8,93.749,-34.6,0.6629999999999999,5008.7,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 +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 +76,management,married,unknown,no,no,no,cellular,sep,fri,113,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,single,professional.course,no,no,no,telephone,may,wed,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +37,entrepreneur,married,university.degree,no,no,no,cellular,nov,tue,543,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +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 +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 +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 +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 +43,blue-collar,single,basic.4y,unknown,no,no,telephone,may,wed,339,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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.8580000000000005,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 +58,management,married,university.degree,no,yes,no,cellular,nov,thu,67,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +39,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,414,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +28,management,single,university.degree,no,yes,no,cellular,jun,thu,383,1,22,1,success,-1.7,94.055,-39.8,0.7290000000000001,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +25,blue-collar,single,basic.9y,no,yes,yes,cellular,may,fri,238,6,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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,management,married,university.degree,no,yes,no,telephone,may,wed,43,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +46,technician,married,professional.course,no,no,no,telephone,nov,mon,98,1,999,0,nonexistent,-0.1,93.2,-42.0,4.4060000000000015,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +23,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,58,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +29,services,married,high.school,no,yes,no,cellular,nov,thu,278,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,162,10,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,management,divorced,unknown,no,yes,no,cellular,nov,thu,893,7,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,technician,married,professional.course,no,yes,no,telephone,nov,tue,103,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +52,technician,married,basic.9y,no,yes,no,cellular,nov,tue,54,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,technician,single,university.degree,no,no,no,cellular,nov,thu,78,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +26,admin.,single,university.degree,no,yes,no,cellular,may,mon,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +49,admin.,single,unknown,unknown,no,no,cellular,nov,tue,74,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,244,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +44,admin.,married,high.school,no,yes,no,cellular,may,mon,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +32,self-employed,single,university.degree,no,yes,no,cellular,may,mon,66,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,single,university.degree,no,no,no,cellular,aug,tue,343,1,999,0,nonexistent,-1.7,94.027,-38.3,0.8859999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +56,management,married,university.degree,no,yes,no,telephone,may,wed,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,mon,36,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +39,entrepreneur,married,high.school,no,no,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +38,entrepreneur,married,basic.6y,no,no,no,cellular,jun,tue,271,1,2,3,success,-1.7,94.055,-39.8,0.7609999999999999,4991.6,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 +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 +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 +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 +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 +24,student,single,high.school,no,yes,yes,cellular,sep,wed,251,2,6,2,success,-1.1,94.199,-37.5,0.8759999999999999,4963.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,professional.course,no,yes,no,cellular,nov,tue,111,2,999,0,nonexistent,-1.1,94.767,-50.8,1.0490000000000002,4963.6,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 +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 +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 +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 +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 +56,entrepreneur,divorced,university.degree,no,no,no,cellular,apr,wed,202,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,housemaid,divorced,professional.course,no,no,yes,cellular,nov,tue,253,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +32,admin.,married,basic.6y,no,yes,no,cellular,may,mon,262,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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,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 +34,technician,married,professional.course,no,yes,no,cellular,may,fri,81,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +54,management,married,university.degree,no,no,no,cellular,nov,tue,339,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,admin.,single,basic.9y,no,yes,no,cellular,nov,tue,296,1,6,1,success,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +25,admin.,married,university.degree,no,yes,no,telephone,nov,mon,446,8,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +89,retired,divorced,basic.4y,no,yes,no,cellular,sep,tue,314,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8809999999999999,4963.6,yes +36,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,96,1,999,1,failure,-2.9,92.201,-31.4,0.8490000000000001,5076.2,no +50,admin.,married,high.school,no,no,no,cellular,nov,tue,87,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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.0760000000000005,5195.8,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 +31,self-employed,married,university.degree,no,no,no,telephone,may,wed,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +24,services,single,high.school,no,yes,no,cellular,may,mon,201,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +58,management,single,university.degree,no,yes,no,cellular,may,fri,685,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +32,technician,single,professional.course,no,yes,no,telephone,aug,fri,107,2,999,1,failure,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +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 +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 +62,technician,married,unknown,no,unknown,unknown,cellular,jul,mon,220,3,999,1,failure,-1.7,94.215,-40.3,0.8270000000000001,4991.6,yes +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 +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 +30,technician,married,professional.course,no,yes,no,cellular,nov,tue,613,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +35,management,married,university.degree,no,no,no,telephone,nov,mon,986,1,7,3,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +50,admin.,single,university.degree,no,yes,no,cellular,nov,tue,123,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +36,admin.,single,professional.course,no,yes,no,cellular,may,mon,74,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +40,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,951,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +31,unemployed,single,professional.course,no,no,no,cellular,nov,thu,250,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +54,housemaid,divorced,university.degree,no,yes,yes,cellular,nov,thu,653,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,admin.,married,university.degree,no,no,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +33,technician,married,university.degree,no,yes,no,cellular,sep,wed,110,1,999,1,failure,-1.1,94.199,-37.5,0.8759999999999999,4963.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,technician,married,university.degree,unknown,yes,no,telephone,may,wed,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +50,self-employed,married,university.degree,no,no,no,telephone,nov,tue,103,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +25,technician,single,university.degree,no,no,yes,cellular,may,mon,304,3,12,2,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +39,blue-collar,married,basic.9y,no,yes,no,cellular,sep,fri,293,1,3,1,success,-3.4,92.379,-29.8,0.8029999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,management,married,university.degree,no,unknown,unknown,cellular,sep,wed,331,1,6,4,failure,-1.1,94.199,-37.5,0.8759999999999999,4963.6,yes +44,services,single,high.school,no,no,no,cellular,may,fri,318,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +34,admin.,unknown,university.degree,no,yes,yes,cellular,may,mon,56,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +28,services,single,high.school,no,yes,no,cellular,jul,tue,192,1,999,0,nonexistent,-1.7,94.215,-40.3,0.8759999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,admin.,single,basic.9y,no,yes,no,cellular,may,thu,234,1,3,3,success,-1.8,93.876,-40.0,0.6829999999999999,5008.7,yes +50,self-employed,divorced,university.degree,no,no,no,cellular,nov,thu,59,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +49,self-employed,single,basic.9y,no,no,no,telephone,may,mon,58,10,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +46,housemaid,married,basic.4y,no,no,no,telephone,may,wed,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +67,retired,divorced,university.degree,no,yes,no,cellular,aug,wed,89,5,999,1,failure,-2.9,92.201,-31.4,0.8340000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +32,admin.,married,university.degree,no,no,no,cellular,nov,tue,138,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +44,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,383,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,services,married,high.school,no,yes,no,telephone,may,fri,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +46,admin.,married,professional.course,no,no,no,telephone,may,mon,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +29,admin.,single,university.degree,no,no,no,cellular,nov,thu,103,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +76,retired,divorced,basic.4y,no,no,no,cellular,aug,tue,185,1,999,1,failure,-1.7,94.027,-38.3,0.8859999999999999,4991.6,yes +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +32,admin.,married,high.school,no,yes,no,cellular,may,fri,438,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +47,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,129,3,999,2,failure,-1.7,94.215,-40.3,0.8959999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +59,retired,married,basic.4y,unknown,yes,no,telephone,may,mon,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +41,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,12,8,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +45,admin.,married,unknown,no,yes,yes,cellular,nov,thu,254,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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,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 +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 +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 +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 +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 +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 +64,housemaid,married,basic.4y,no,yes,yes,cellular,dec,thu,336,5,999,0,nonexistent,-3.0,92.713,-33.0,0.7140000000000001,5023.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,technician,married,basic.6y,no,no,no,telephone,jun,thu,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +37,technician,married,professional.course,no,no,no,cellular,nov,tue,372,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +39,housemaid,married,university.degree,no,no,no,telephone,may,wed,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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.2990000000000002,5099.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 +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 +38,admin.,married,high.school,no,yes,no,cellular,may,fri,6,5,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,divorced,high.school,no,no,no,cellular,may,mon,479,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +40,admin.,married,high.school,unknown,no,yes,cellular,may,fri,326,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +35,admin.,single,university.degree,no,no,no,telephone,may,mon,234,13,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +29,technician,single,high.school,no,no,no,cellular,nov,tue,155,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,divorced,basic.4y,no,no,no,telephone,may,wed,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,150,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +47,services,married,high.school,no,yes,no,cellular,nov,tue,99,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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,technician,single,university.degree,no,no,no,cellular,nov,mon,130,1,7,2,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,182,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +50,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,wed,832,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +60,unemployed,married,basic.4y,no,no,no,cellular,nov,thu,627,2,6,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +36,housemaid,divorced,basic.4y,no,no,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,management,married,university.degree,no,unknown,unknown,cellular,nov,tue,486,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +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 +32,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,fri,230,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +36,blue-collar,single,basic.6y,no,no,no,cellular,nov,thu,219,7,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +32,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,318,2,11,1,success,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +66,retired,married,basic.4y,no,yes,no,cellular,nov,mon,175,1,7,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +43,technician,single,professional.course,no,yes,no,telephone,may,mon,138,8,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +28,student,single,basic.9y,no,yes,no,cellular,mar,tue,320,1,999,0,nonexistent,-1.8,92.843,-50.0,1.7990000000000002,5099.1,yes +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 +49,entrepreneur,single,university.degree,no,yes,no,cellular,aug,wed,78,6,5,1,success,-2.9,92.201,-31.4,0.8340000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +50,unemployed,married,high.school,no,no,yes,telephone,may,wed,38,12,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,admin.,married,high.school,no,no,no,cellular,sep,thu,543,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7659999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +30,admin.,divorced,high.school,no,no,no,cellular,nov,thu,418,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,management,single,high.school,no,no,yes,cellular,nov,tue,117,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,married,university.degree,no,no,no,telephone,jun,thu,741,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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,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 +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 +29,admin.,single,high.school,no,yes,no,cellular,nov,thu,23,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +30,admin.,single,university.degree,no,yes,no,cellular,may,mon,188,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +44,admin.,single,high.school,no,yes,no,telephone,aug,tue,27,1,999,0,nonexistent,-1.7,94.027,-38.3,0.8859999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,university.degree,no,yes,no,cellular,may,fri,44,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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.,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 +41,blue-collar,married,professional.course,unknown,yes,no,cellular,nov,tue,190,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +62,housemaid,married,basic.4y,no,yes,no,cellular,nov,thu,443,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +34,admin.,married,university.degree,no,yes,no,cellular,dec,tue,195,2,999,0,nonexistent,-3.0,92.713,-33.0,0.7070000000000001,5023.5,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 +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 +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 +32,admin.,married,university.degree,unknown,unknown,unknown,telephone,may,mon,261,56,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +35,services,single,high.school,no,yes,yes,cellular,may,fri,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,student,single,basic.9y,no,yes,no,cellular,apr,tue,252,1,999,1,failure,-1.8,93.749,-34.6,0.6459999999999999,5008.7,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 +38,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,154,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,technician,married,professional.course,no,no,no,cellular,nov,thu,179,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +39,unemployed,divorced,high.school,no,no,no,cellular,nov,thu,19,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +27,student,single,university.degree,unknown,no,no,cellular,may,mon,489,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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,services,married,basic.4y,no,no,yes,telephone,jun,thu,90,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +29,blue-collar,divorced,basic.6y,no,yes,no,telephone,nov,tue,272,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +40,self-employed,married,basic.9y,unknown,no,no,cellular,nov,tue,53,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +38,blue-collar,married,high.school,unknown,yes,no,telephone,may,wed,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +40,admin.,single,high.school,unknown,yes,no,cellular,may,mon,222,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +33,blue-collar,married,professional.course,no,yes,no,cellular,aug,tue,253,4,999,0,nonexistent,-1.7,94.027,-38.3,0.8859999999999999,4991.6,yes +35,admin.,single,basic.4y,unknown,no,no,telephone,jun,thu,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +60,retired,married,high.school,no,no,no,cellular,may,thu,181,3,6,1,success,-1.8,93.876,-40.0,0.6990000000000001,5008.7,yes +44,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +32,blue-collar,married,basic.4y,no,yes,no,telephone,jun,tue,13,1,999,1,failure,-1.7,94.055,-39.8,0.7609999999999999,4991.6,no +51,admin.,married,basic.9y,no,no,yes,cellular,nov,tue,110,5,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +27,blue-collar,single,high.school,no,no,no,cellular,may,fri,80,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +30,entrepreneur,single,university.degree,no,yes,no,cellular,nov,thu,531,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +55,retired,married,high.school,no,no,yes,cellular,nov,thu,26,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,432,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +51,technician,married,university.degree,no,yes,no,cellular,jun,tue,303,1,10,1,success,-1.7,94.055,-39.8,0.7020000000000001,4991.6,yes +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 +61,management,married,university.degree,no,yes,no,cellular,aug,fri,209,2,4,2,success,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +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 +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 +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 +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 +37,unemployed,single,university.degree,no,yes,no,telephone,nov,thu,76,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +32,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,184,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +73,retired,married,basic.4y,no,yes,no,telephone,oct,wed,185,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,management,single,university.degree,no,no,no,telephone,nov,thu,96,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,may,mon,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +31,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,64,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +24,technician,single,professional.course,unknown,no,no,telephone,may,mon,149,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,high.school,unknown,no,no,cellular,aug,tue,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,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 +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 +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 +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,retired,divorced,basic.9y,unknown,yes,no,cellular,nov,tue,201,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +34,management,single,professional.course,no,yes,no,cellular,nov,tue,400,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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,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 +53,management,married,university.degree,no,no,no,cellular,nov,thu,136,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +39,admin.,single,university.degree,no,yes,no,cellular,may,fri,150,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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,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 +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 +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 +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 +38,blue-collar,married,basic.9y,no,yes,no,cellular,oct,mon,167,3,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +43,blue-collar,single,basic.4y,no,yes,no,cellular,nov,tue,175,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +32,technician,married,professional.course,no,no,no,telephone,jun,thu,805,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +19,student,single,basic.9y,no,yes,no,cellular,jul,mon,236,2,999,0,nonexistent,-1.7,94.215,-40.3,0.8270000000000001,4991.6,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 +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 +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 +53,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,115,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,services,single,university.degree,no,yes,no,cellular,aug,fri,142,1,4,2,success,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +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 +53,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,872,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +31,services,married,high.school,no,no,no,cellular,nov,thu,283,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,unemployed,single,high.school,no,no,yes,cellular,may,mon,375,2,999,0,nonexistent,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +46,housemaid,married,basic.4y,no,unknown,unknown,cellular,aug,thu,154,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8290000000000001,5076.2,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 +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 +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 +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 +31,admin.,married,university.degree,no,no,no,cellular,aug,fri,880,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +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 +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 +52,management,married,high.school,unknown,no,no,telephone,may,mon,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +34,self-employed,single,high.school,no,yes,no,cellular,nov,tue,581,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +48,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,240,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,347,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +54,admin.,divorced,university.degree,no,yes,yes,cellular,nov,tue,355,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +32,technician,married,high.school,no,yes,no,cellular,may,mon,329,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +42,management,married,university.degree,no,yes,no,cellular,may,mon,568,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +31,technician,single,university.degree,no,no,no,cellular,nov,tue,110,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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,entrepreneur,married,university.degree,no,yes,no,telephone,jun,thu,130,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +49,management,married,university.degree,no,no,no,cellular,nov,tue,188,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +33,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,thu,53,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +42,services,married,basic.6y,no,no,no,cellular,nov,thu,324,7,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +39,admin.,married,university.degree,no,no,no,cellular,nov,tue,123,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +30,services,single,high.school,no,no,no,cellular,oct,mon,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +47,unemployed,married,high.school,no,yes,no,cellular,nov,tue,65,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +29,blue-collar,married,basic.4y,no,yes,no,cellular,aug,fri,98,1,999,1,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,666,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +32,admin.,single,university.degree,no,no,no,cellular,nov,tue,36,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +27,admin.,single,university.degree,no,yes,no,cellular,apr,tue,605,1,999,0,nonexistent,-1.8,93.749,-34.6,0.6459999999999999,5008.7,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 +50,retired,divorced,high.school,no,yes,no,cellular,nov,thu,691,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +50,unemployed,unknown,basic.9y,no,yes,yes,cellular,nov,thu,139,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,88,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +29,management,married,university.degree,no,yes,no,cellular,nov,wed,199,1,9,1,success,-3.4,92.649,-30.1,0.7190000000000001,5017.5,no +30,services,single,high.school,unknown,yes,no,cellular,may,fri,55,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +32,management,single,university.degree,no,yes,no,cellular,mar,tue,106,1,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.1,yes +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 +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 +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 +38,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +36,unemployed,single,basic.9y,no,yes,no,cellular,nov,thu,118,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +52,management,divorced,university.degree,no,no,no,telephone,may,wed,634,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +76,retired,married,basic.4y,no,yes,no,cellular,aug,fri,345,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,1038,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +54,unemployed,married,basic.9y,no,yes,no,cellular,nov,tue,127,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,university.degree,no,unknown,unknown,telephone,jun,thu,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +28,blue-collar,single,high.school,no,no,no,cellular,jul,mon,194,3,999,0,nonexistent,-1.7,94.215,-40.3,0.8270000000000001,4991.6,no +55,management,divorced,university.degree,no,yes,no,cellular,nov,thu,159,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,services,married,high.school,unknown,yes,no,telephone,may,wed,397,9,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,services,married,high.school,no,yes,no,cellular,may,fri,88,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,yes,yes,cellular,sep,fri,73,2,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,no +85,retired,married,basic.4y,no,no,no,cellular,sep,tue,728,1,3,2,success,-1.1,94.199,-37.5,0.8809999999999999,4963.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +52,services,married,high.school,no,yes,no,cellular,may,fri,121,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +33,blue-collar,single,basic.4y,no,no,yes,cellular,may,fri,328,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +54,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,204,1,999,1,failure,-2.9,92.201,-31.4,0.8490000000000001,5076.2,yes +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 +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 +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 +34,technician,married,high.school,no,yes,yes,cellular,nov,thu,1329,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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.8580000000000005,5191.0,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 +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 +42,management,married,high.school,no,no,no,cellular,nov,thu,59,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,21,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +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 +39,entrepreneur,married,basic.6y,no,yes,no,cellular,sep,tue,531,2,999,0,nonexistent,-3.4,92.379,-29.8,0.8190000000000001,5017.5,yes +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 +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 +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 +47,services,single,basic.6y,unknown,no,yes,cellular,may,fri,307,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +43,technician,married,professional.course,no,no,no,telephone,jun,thu,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,blue-collar,married,high.school,no,yes,yes,cellular,may,fri,273,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +41,services,single,high.school,unknown,yes,no,cellular,may,mon,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,entrepreneur,single,university.degree,no,yes,no,cellular,nov,thu,228,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +30,services,married,high.school,unknown,yes,no,cellular,nov,thu,73,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +35,admin.,married,university.degree,no,no,yes,cellular,aug,wed,65,5,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,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 +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 +59,admin.,married,university.degree,no,yes,no,cellular,may,fri,324,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +53,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,69,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +28,admin.,single,high.school,no,yes,no,telephone,may,wed,292,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,married,university.degree,no,unknown,unknown,cellular,nov,tue,104,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +36,admin.,married,university.degree,no,yes,yes,telephone,may,wed,362,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +51,technician,married,unknown,no,no,no,cellular,nov,tue,144,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +44,admin.,single,university.degree,no,yes,no,cellular,nov,thu,22,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +35,services,divorced,high.school,no,no,no,cellular,nov,thu,410,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +25,student,single,high.school,no,no,no,cellular,aug,fri,253,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +20,student,single,unknown,no,no,no,cellular,may,tue,530,2,3,5,success,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +34,technician,married,basic.9y,no,no,no,cellular,may,mon,798,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +30,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +36,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,246,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +32,admin.,single,university.degree,no,no,no,cellular,nov,thu,151,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +48,admin.,married,high.school,no,no,no,telephone,nov,wed,24,1,999,0,nonexistent,-0.1,93.2,-42.0,4.2860000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +38,admin.,single,high.school,no,yes,no,cellular,nov,tue,90,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,single,basic.9y,unknown,yes,no,telephone,may,wed,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +55,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,thu,97,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +36,admin.,single,university.degree,no,no,no,cellular,jun,wed,706,1,7,1,success,-1.7,94.055,-39.8,0.7390000000000001,4991.6,yes +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 +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 +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 +43,self-employed,married,high.school,unknown,yes,no,cellular,apr,wed,253,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,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 +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 +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 +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 +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 +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 +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 +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,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 +41,admin.,married,university.degree,unknown,yes,no,cellular,nov,tue,331,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +30,services,married,high.school,no,yes,yes,cellular,nov,thu,282,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +33,admin.,married,high.school,no,yes,no,cellular,aug,wed,206,4,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +55,retired,married,professional.course,no,yes,no,telephone,jun,thu,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +48,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,173,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,technician,married,university.degree,unknown,no,no,telephone,may,wed,899,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +30,unemployed,married,high.school,no,yes,yes,cellular,nov,tue,924,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +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 +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 +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 +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 +30,self-employed,married,university.degree,no,yes,no,telephone,mar,mon,577,7,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,yes +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 +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 +23,student,single,basic.9y,no,no,no,cellular,may,fri,145,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +29,services,single,high.school,no,yes,no,cellular,may,mon,14,8,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +33,admin.,single,university.degree,no,no,no,cellular,jul,fri,704,1,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,yes +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 +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 +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 +50,housemaid,married,basic.4y,no,no,no,cellular,nov,tue,878,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +50,unemployed,unknown,basic.9y,no,no,no,telephone,nov,thu,278,6,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +49,admin.,married,high.school,no,no,no,cellular,sep,tue,495,1,3,1,success,-3.4,92.379,-29.8,0.7879999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +36,technician,married,university.degree,no,yes,no,cellular,may,fri,285,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +56,technician,married,professional.course,unknown,unknown,unknown,cellular,nov,tue,44,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +31,student,single,university.degree,no,yes,yes,cellular,apr,fri,183,1,6,2,success,-1.8,93.749,-34.6,0.6629999999999999,5008.7,yes +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 +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 +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 +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 +31,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,mon,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,divorced,basic.9y,no,no,no,cellular,may,mon,81,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +27,technician,married,professional.course,no,no,yes,cellular,may,fri,224,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,services,single,basic.6y,unknown,yes,yes,telephone,may,wed,501,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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,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 +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 +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 +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 +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 +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 +37,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +45,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +38,admin.,married,university.degree,no,no,no,telephone,nov,thu,411,4,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,274,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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,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 +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 +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 +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 +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 +47,management,married,university.degree,no,no,no,cellular,nov,tue,139,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +45,entrepreneur,married,basic.9y,no,no,no,telephone,may,mon,34,9,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +36,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,127,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +29,student,single,high.school,no,no,no,cellular,may,tue,104,1,7,1,success,-1.8,93.876,-40.0,0.6679999999999999,5008.7,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 +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 +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 +49,housemaid,married,basic.4y,no,no,no,telephone,may,mon,13,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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,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 +38,admin.,divorced,high.school,no,yes,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,unemployed,married,university.degree,no,no,no,cellular,nov,thu,125,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +53,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,939,6,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +39,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,279,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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,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 +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 +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 +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 +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 +45,self-employed,married,university.degree,unknown,no,no,telephone,jun,thu,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,student,single,professional.course,no,yes,yes,cellular,nov,thu,123,1,7,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +31,management,single,university.degree,no,yes,no,cellular,nov,thu,140,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +31,services,married,high.school,unknown,yes,no,telephone,jun,thu,67,12,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +35,technician,divorced,professional.course,no,no,no,cellular,jun,wed,66,1,13,2,failure,-1.7,94.055,-39.8,0.7390000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,341,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +55,admin.,married,high.school,no,yes,no,telephone,may,wed,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,management,married,university.degree,no,no,no,cellular,nov,tue,141,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +45,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,834,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,housemaid,single,high.school,unknown,yes,no,telephone,may,wed,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +42,self-employed,divorced,professional.course,no,yes,no,cellular,nov,tue,491,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,20,5,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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.2990000000000002,5099.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 +35,technician,married,university.degree,no,yes,no,cellular,may,mon,42,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,101,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +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 +43,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,111,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +41,entrepreneur,married,basic.9y,no,no,yes,cellular,may,mon,285,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +47,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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,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 +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 +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 +33,services,married,high.school,unknown,no,no,cellular,nov,thu,117,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +33,entrepreneur,married,high.school,no,no,no,cellular,nov,tue,143,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +42,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,114,7,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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,services,married,high.school,no,no,no,telephone,may,mon,394,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +35,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,86,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +47,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,86,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,management,married,university.degree,no,unknown,unknown,telephone,jun,thu,315,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,no,no,cellular,jul,tue,658,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +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 +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 +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 +38,entrepreneur,married,basic.6y,no,unknown,unknown,telephone,may,wed,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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,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,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 +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 +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 +31,technician,married,high.school,no,yes,no,telephone,may,wed,69,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +24,student,single,professional.course,no,no,no,cellular,jul,wed,429,2,6,3,success,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +55,admin.,single,university.degree,no,yes,no,telephone,may,wed,53,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,management,married,high.school,unknown,no,no,cellular,may,mon,194,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +31,admin.,single,university.degree,no,no,no,cellular,sep,fri,123,3,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +64,retired,married,high.school,unknown,no,no,cellular,aug,tue,301,1,999,1,failure,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,41,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +42,technician,married,high.school,no,no,yes,telephone,nov,thu,66,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,yes,no,telephone,may,mon,193,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +35,admin.,married,high.school,no,yes,no,cellular,mar,tue,350,3,999,0,nonexistent,-1.8,92.843,-50.0,1.7990000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +29,management,single,university.degree,no,no,no,cellular,nov,tue,708,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +35,technician,married,professional.course,no,yes,no,telephone,jun,thu,18,31,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +52,entrepreneur,married,basic.4y,no,no,no,cellular,nov,tue,173,7,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,admin.,married,university.degree,no,no,no,cellular,nov,tue,163,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +50,blue-collar,married,basic.4y,no,yes,yes,cellular,may,mon,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +34,management,single,university.degree,no,yes,yes,cellular,nov,tue,79,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +40,admin.,single,basic.9y,no,yes,no,cellular,may,thu,356,1,2,3,success,-1.8,93.876,-40.0,0.6829999999999999,5008.7,yes +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 +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 +37,management,married,university.degree,no,yes,no,cellular,nov,thu,252,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +35,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +39,admin.,married,university.degree,no,no,no,cellular,may,mon,195,5,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +31,technician,married,university.degree,no,no,no,cellular,mar,wed,625,4,999,0,nonexistent,-1.8,93.369,-34.8,0.6509999999999999,5008.7,no +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 +61,admin.,married,unknown,no,no,no,cellular,may,thu,173,3,9,2,success,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,unknown,single,unknown,unknown,yes,no,telephone,jun,thu,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +31,management,single,university.degree,no,no,no,cellular,nov,thu,46,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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,student,single,unknown,no,no,no,telephone,may,mon,1143,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +50,technician,married,professional.course,no,unknown,unknown,cellular,oct,fri,447,1,8,2,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,self-employed,married,university.degree,no,yes,no,cellular,may,fri,279,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +60,retired,married,basic.4y,no,no,no,cellular,oct,mon,82,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,services,divorced,basic.9y,no,no,no,telephone,may,mon,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +36,blue-collar,single,basic.6y,no,yes,no,cellular,nov,thu,82,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +32,management,single,university.degree,no,yes,no,cellular,mar,tue,427,3,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.1,yes +38,management,married,university.degree,no,yes,no,telephone,may,wed,290,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +47,technician,married,professional.course,no,no,no,telephone,jun,thu,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +31,management,married,university.degree,no,no,no,cellular,may,fri,238,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +49,technician,married,university.degree,no,yes,yes,telephone,jun,thu,460,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +48,unemployed,married,university.degree,no,yes,no,cellular,mar,tue,279,1,999,2,failure,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,self-employed,single,university.degree,unknown,yes,no,telephone,may,mon,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,student,single,high.school,no,yes,yes,cellular,jul,mon,154,1,999,2,failure,-1.7,94.215,-40.3,0.8270000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,technician,single,university.degree,no,yes,no,cellular,may,mon,271,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +37,retired,divorced,basic.9y,unknown,no,no,cellular,nov,tue,198,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +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 +51,admin.,divorced,university.degree,no,yes,yes,cellular,nov,thu,249,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,290,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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,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 +40,services,married,high.school,no,yes,no,cellular,nov,thu,90,3,3,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +31,admin.,single,university.degree,unknown,yes,no,cellular,may,fri,266,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,technician,married,basic.9y,no,no,no,cellular,sep,fri,171,2,999,1,failure,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,professional.course,no,yes,no,cellular,mar,thu,562,3,999,1,failure,-1.8,93.369,-34.8,0.654,5008.7,yes +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 +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 +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 +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 +31,admin.,unknown,high.school,no,no,no,telephone,may,mon,182,8,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +56,management,married,university.degree,no,yes,yes,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +36,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,101,5,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +65,retired,single,university.degree,no,no,no,cellular,nov,thu,88,2,3,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +26,admin.,single,university.degree,no,yes,no,telephone,aug,tue,215,1,999,1,failure,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,admin.,married,university.degree,no,no,no,cellular,sep,fri,639,3,999,1,failure,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +43,blue-collar,single,high.school,no,no,yes,telephone,may,thu,137,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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 +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 +53,self-employed,divorced,university.degree,no,no,no,cellular,nov,thu,380,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +37,services,single,professional.course,no,yes,no,cellular,may,fri,241,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +29,technician,single,professional.course,no,unknown,unknown,cellular,nov,wed,257,2,999,1,failure,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +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 +38,admin.,married,high.school,no,yes,yes,cellular,may,fri,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +56,services,divorced,basic.6y,no,yes,no,cellular,nov,tue,199,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,fri,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +27,entrepreneur,married,university.degree,no,yes,no,cellular,may,mon,207,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +57,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,172,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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,management,married,basic.4y,unknown,yes,no,cellular,may,mon,264,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +35,housemaid,married,high.school,no,no,no,telephone,may,wed,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +35,management,single,university.degree,no,unknown,unknown,cellular,may,mon,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +35,blue-collar,married,professional.course,no,yes,no,telephone,jun,thu,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +75,retired,married,unknown,no,no,no,cellular,sep,tue,191,1,999,1,failure,-3.4,92.379,-29.8,0.7879999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,admin.,single,high.school,no,yes,no,cellular,oct,fri,136,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,technician,married,high.school,no,no,no,cellular,may,fri,428,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +64,retired,married,basic.4y,no,yes,no,cellular,aug,wed,145,1,3,2,success,-2.9,92.201,-31.4,0.8540000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,blue-collar,married,basic.6y,no,no,yes,cellular,nov,tue,97,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,360,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +51,entrepreneur,married,professional.course,unknown,no,no,cellular,may,mon,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,no,telephone,may,mon,1218,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,464,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +34,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,41,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +33,technician,single,basic.9y,no,no,no,telephone,nov,tue,117,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,entrepreneur,married,basic.9y,no,yes,no,cellular,may,mon,346,1,999,2,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +43,entrepreneur,married,basic.9y,no,yes,no,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +28,technician,single,professional.course,no,no,no,telephone,jun,thu,508,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,yes +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 +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,434,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +36,admin.,single,university.degree,no,no,no,cellular,nov,thu,228,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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,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 +32,technician,married,university.degree,no,no,yes,cellular,nov,thu,382,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +39,housemaid,married,university.degree,no,no,no,telephone,may,mon,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,798,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,admin.,married,basic.9y,no,yes,yes,cellular,may,fri,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,single,basic.6y,no,no,no,telephone,may,wed,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,housemaid,divorced,basic.4y,no,yes,yes,cellular,sep,wed,511,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,5017.5,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 +55,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,services,married,basic.9y,no,no,no,cellular,nov,thu,517,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +30,services,single,high.school,no,yes,no,cellular,may,mon,213,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +23,student,single,unknown,no,no,no,cellular,jul,tue,165,2,16,1,success,-1.7,94.215,-40.3,0.8759999999999999,4991.6,yes +36,admin.,divorced,university.degree,no,no,yes,cellular,nov,thu,56,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,technician,single,university.degree,no,unknown,unknown,telephone,may,mon,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +32,technician,married,university.degree,no,yes,no,cellular,nov,thu,245,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,48,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +77,retired,divorced,basic.4y,no,yes,no,cellular,nov,mon,445,2,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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,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 +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 +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 +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 +34,management,married,university.degree,no,no,yes,cellular,nov,thu,116,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,blue-collar,married,basic.6y,no,yes,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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,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 +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 +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.6y,no,no,no,telephone,may,thu,352,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,blue-collar,divorced,unknown,no,yes,yes,telephone,may,wed,799,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +30,student,single,high.school,no,yes,no,cellular,sep,wed,201,2,999,0,nonexistent,-1.1,94.199,-37.5,0.8859999999999999,4963.6,no +36,services,married,high.school,no,yes,no,cellular,oct,fri,104,1,6,1,success,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +44,admin.,married,high.school,no,yes,no,cellular,may,fri,263,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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,services,married,high.school,no,yes,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +28,entrepreneur,single,professional.course,no,yes,no,cellular,may,mon,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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,married,basic.6y,no,yes,yes,cellular,nov,thu,194,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +31,blue-collar,single,high.school,no,yes,no,cellular,nov,thu,359,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,services,married,professional.course,no,no,no,cellular,may,mon,66,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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.1530000000000005,5195.8,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 +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 +37,admin.,married,university.degree,no,no,no,telephone,sep,wed,150,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +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 +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 +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 +33,technician,married,professional.course,no,yes,no,cellular,sep,wed,269,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8859999999999999,4963.6,yes +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,services,single,high.school,no,yes,no,cellular,oct,mon,385,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +52,blue-collar,married,unknown,unknown,yes,no,telephone,jun,thu,60,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +23,unemployed,married,high.school,no,no,no,telephone,may,fri,35,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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 +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 +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 +35,self-employed,divorced,university.degree,no,no,no,cellular,nov,tue,271,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +66,retired,married,basic.4y,no,yes,yes,telephone,nov,thu,1127,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +28,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,326,1,11,1,success,-1.8,92.893,-46.2,1.3130000000000002,5099.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.8660000000000005,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 +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 +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 +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 +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 +44,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,58,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +37,admin.,married,university.degree,no,yes,no,telephone,nov,wed,119,1,6,1,success,-0.1,93.2,-42.0,4.2860000000000005,5195.8,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 +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 +45,technician,divorced,professional.course,no,yes,yes,cellular,nov,tue,178,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +25,admin.,single,university.degree,no,yes,yes,cellular,oct,fri,115,1,999,1,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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.,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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,no,yes,no,telephone,jun,mon,132,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.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 +58,blue-collar,divorced,basic.4y,no,no,no,cellular,aug,fri,186,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +51,services,married,high.school,no,no,no,cellular,may,tue,1267,1,999,1,failure,-1.8,93.876,-40.0,0.6679999999999999,5008.7,yes +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 +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 +56,housemaid,divorced,basic.4y,no,no,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +30,admin.,single,university.degree,no,no,no,cellular,may,tue,113,1,6,1,success,-1.8,93.876,-40.0,0.6679999999999999,5008.7,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 +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 +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,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,unemployed,married,high.school,no,yes,no,cellular,nov,thu,640,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,technician,married,professional.course,unknown,yes,no,telephone,may,mon,197,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +37,admin.,married,university.degree,no,yes,no,cellular,jul,fri,1005,5,4,2,success,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,technician,married,basic.9y,no,yes,no,cellular,nov,tue,66,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,technician,divorced,professional.course,no,unknown,unknown,cellular,nov,tue,83,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +34,admin.,married,university.degree,no,no,no,telephone,may,mon,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +46,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +50,management,single,university.degree,no,no,no,cellular,nov,tue,175,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +37,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,277,1,9,1,success,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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,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 +45,blue-collar,married,professional.course,no,yes,no,telephone,may,thu,414,1,6,2,success,-1.8,93.876,-40.0,0.6829999999999999,5008.7,yes +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 +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 +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 +49,technician,divorced,university.degree,no,yes,no,telephone,nov,thu,30,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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,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,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 +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,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 +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 +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 +25,blue-collar,single,basic.4y,no,yes,no,telephone,may,wed,1681,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,74,5,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +21,student,single,high.school,no,no,yes,cellular,oct,mon,238,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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,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 +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 +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 +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 +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 +58,admin.,married,high.school,no,yes,no,cellular,jul,fri,318,4,999,1,failure,-2.9,92.469,-33.6,1.0590000000000002,5076.2,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 +49,admin.,married,basic.9y,no,yes,no,cellular,nov,tue,204,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +39,self-employed,married,university.degree,no,no,no,cellular,nov,tue,115,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +30,admin.,single,basic.9y,no,no,no,telephone,nov,thu,26,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +30,technician,single,professional.course,no,yes,no,cellular,may,fri,68,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +45,admin.,married,basic.9y,unknown,yes,no,telephone,jun,thu,60,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +31,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,233,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +33,technician,married,professional.course,no,yes,no,telephone,may,wed,316,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +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 +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 +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 +64,retired,married,professional.course,no,yes,no,cellular,sep,wed,222,2,999,0,nonexistent,-1.1,94.199,-37.5,0.8859999999999999,4963.6,yes +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,married,university.degree,no,no,no,cellular,may,mon,733,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +66,housemaid,married,basic.4y,no,no,yes,cellular,jul,tue,296,1,999,1,failure,-1.7,94.215,-40.3,0.8759999999999999,4991.6,no +33,management,single,university.degree,no,yes,no,cellular,apr,wed,212,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,no +35,admin.,married,high.school,no,no,yes,cellular,nov,tue,140,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,management,single,university.degree,no,yes,no,cellular,nov,tue,242,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,340,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,self-employed,single,basic.9y,no,no,no,cellular,nov,tue,94,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +71,retired,married,high.school,no,no,no,cellular,sep,wed,222,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +47,management,married,university.degree,no,no,no,cellular,nov,tue,126,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +38,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,180,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +40,technician,married,basic.9y,unknown,yes,no,telephone,jun,thu,245,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,technician,single,professional.course,no,yes,no,cellular,nov,thu,127,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +41,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,wed,44,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,entrepreneur,divorced,basic.6y,no,yes,no,cellular,may,fri,53,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +28,technician,single,university.degree,no,no,yes,cellular,apr,fri,97,1,999,1,failure,-1.8,93.749,-34.6,0.6629999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,entrepreneur,married,high.school,unknown,yes,no,telephone,jun,thu,107,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +38,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,mon,120,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,management,married,university.degree,no,yes,no,cellular,nov,tue,54,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +45,services,married,high.school,unknown,no,no,cellular,nov,tue,75,5,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +30,services,married,high.school,unknown,yes,no,cellular,nov,thu,175,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +47,services,divorced,high.school,no,no,no,telephone,may,mon,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +30,entrepreneur,married,professional.course,no,no,no,telephone,may,wed,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +58,blue-collar,married,high.school,no,yes,no,telephone,may,wed,836,12,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,technician,married,university.degree,no,yes,no,telephone,may,mon,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +32,admin.,single,university.degree,no,yes,yes,cellular,sep,tue,69,2,999,0,nonexistent,-3.4,92.379,-29.8,0.8190000000000001,5017.5,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 +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,yes,telephone,may,fri,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,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 +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 +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 +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 +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 +39,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,313,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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,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 +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 +44,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,361,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +32,technician,married,professional.course,no,yes,yes,cellular,may,fri,134,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,high.school,no,no,no,cellular,nov,tue,118,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +52,management,married,university.degree,no,yes,no,cellular,nov,thu,104,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,tue,586,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,mon,18,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +41,management,married,basic.9y,no,no,no,cellular,nov,thu,329,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +63,retired,married,basic.4y,no,yes,no,cellular,nov,fri,413,1,3,2,success,-1.1,94.767,-50.8,1.0490000000000002,4963.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,admin.,single,university.degree,no,yes,yes,cellular,sep,tue,115,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8190000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,services,married,high.school,no,yes,no,cellular,may,fri,424,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +33,technician,divorced,high.school,no,no,no,cellular,nov,tue,70,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,management,married,university.degree,no,yes,no,cellular,jul,fri,292,1,6,1,success,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +30,services,single,high.school,no,no,no,cellular,may,mon,75,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,technician,married,professional.course,no,yes,no,cellular,nov,thu,51,7,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,346,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +33,technician,married,professional.course,no,yes,no,cellular,oct,fri,154,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,admin.,single,university.degree,no,yes,no,telephone,nov,thu,42,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +66,management,divorced,university.degree,no,no,no,cellular,sep,tue,679,1,1,1,success,-3.4,92.379,-29.8,0.7879999999999999,5017.5,yes +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 +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 +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 +31,blue-collar,single,basic.6y,unknown,no,no,cellular,may,mon,133,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +32,services,married,high.school,no,yes,no,cellular,nov,thu,282,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +39,admin.,married,university.degree,no,yes,no,cellular,nov,tue,305,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +44,technician,married,professional.course,no,yes,no,cellular,nov,tue,75,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,727,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,married,university.degree,no,no,no,cellular,dec,mon,77,3,999,1,failure,-3.0,92.713,-33.0,0.7090000000000001,5023.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,management,married,university.degree,no,yes,no,cellular,nov,thu,182,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +39,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +38,admin.,married,high.school,no,yes,no,cellular,nov,tue,192,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,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 +35,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,214,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +32,services,married,basic.4y,unknown,no,no,cellular,nov,thu,813,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +25,self-employed,single,university.degree,no,yes,no,telephone,may,wed,373,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +41,admin.,married,university.degree,no,yes,no,cellular,jul,fri,269,7,6,3,success,-1.7,94.215,-40.3,0.8959999999999999,4991.6,no +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,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 +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 +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 +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 +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 +30,admin.,single,university.degree,no,yes,no,cellular,apr,tue,321,1,999,0,nonexistent,-1.8,93.749,-34.6,0.6459999999999999,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,self-employed,married,illiterate,no,yes,no,cellular,nov,thu,488,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +31,technician,single,university.degree,no,yes,no,cellular,may,mon,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,single,basic.9y,no,no,no,telephone,jun,tue,1563,1,6,2,success,-1.7,94.055,-39.8,0.7020000000000001,4991.6,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,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 +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 +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 +34,blue-collar,married,professional.course,no,yes,yes,cellular,nov,tue,64,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +24,services,single,high.school,no,no,no,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +36,admin.,married,university.degree,no,no,yes,telephone,may,fri,267,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +35,management,married,high.school,no,yes,no,telephone,nov,tue,159,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +42,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,mon,503,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +36,admin.,single,university.degree,no,yes,no,cellular,may,mon,85,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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,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 +31,technician,divorced,university.degree,no,no,no,cellular,may,wed,175,3,7,3,success,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +39,self-employed,married,basic.4y,unknown,no,no,telephone,may,mon,179,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +62,retired,married,high.school,no,no,no,cellular,oct,wed,207,1,6,1,success,-3.4,92.431,-26.9,0.7240000000000001,5017.5,yes +44,admin.,married,university.degree,no,yes,no,cellular,nov,thu,147,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,management,married,university.degree,no,yes,no,cellular,nov,thu,68,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +47,services,married,high.school,no,yes,no,cellular,nov,tue,97,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +53,technician,divorced,high.school,no,no,no,cellular,nov,thu,531,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,self-employed,married,university.degree,no,yes,yes,telephone,may,wed,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +71,retired,married,high.school,no,yes,no,telephone,sep,wed,232,1,999,2,failure,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +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 +30,blue-collar,single,unknown,no,yes,no,telephone,jun,thu,400,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,admin.,divorced,high.school,no,no,no,telephone,jun,thu,80,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +41,admin.,divorced,university.degree,unknown,yes,no,telephone,may,mon,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,172,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,divorced,basic.6y,no,yes,yes,telephone,may,wed,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,technician,married,university.degree,no,yes,yes,telephone,jul,mon,17,1,999,0,nonexistent,-1.7,94.215,-40.3,0.7929999999999999,4991.6,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 +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 +62,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,123,1,999,1,failure,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +50,technician,divorced,professional.course,no,no,no,cellular,nov,tue,46,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,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 +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 +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 +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 +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 +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,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 +76,retired,married,university.degree,no,no,no,cellular,dec,thu,103,1,999,1,failure,-3.0,92.713,-33.0,0.7120000000000001,5023.5,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 +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 +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 +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 +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 +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 +33,admin.,married,high.school,no,yes,yes,cellular,may,mon,109,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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,unknown,unknown,no,no,telephone,may,fri,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191.0,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 +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 +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 +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 +18,student,single,basic.9y,no,no,no,cellular,dec,thu,412,2,999,0,nonexistent,-3.0,92.713,-33.0,0.7120000000000001,5023.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,technician,single,high.school,no,yes,no,cellular,nov,tue,127,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,management,married,professional.course,no,no,no,cellular,nov,thu,993,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,services,married,high.school,unknown,no,no,telephone,jun,thu,106,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +47,services,married,high.school,no,no,no,cellular,nov,tue,107,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,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 +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 +38,services,married,high.school,unknown,no,no,telephone,jun,thu,305,5,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +41,technician,single,professional.course,unknown,yes,no,cellular,nov,tue,68,2,4,1,success,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,admin.,married,professional.course,no,yes,no,cellular,nov,tue,271,5,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +24,student,single,high.school,no,yes,no,cellular,aug,fri,53,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +31,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,496,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,101,3,999,0,nonexistent,-1.7,94.215,-40.3,0.7929999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +49,management,married,basic.9y,no,unknown,unknown,cellular,nov,tue,336,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,admin.,married,basic.9y,unknown,yes,no,cellular,may,mon,18,6,6,2,success,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +43,unemployed,single,university.degree,no,yes,yes,cellular,nov,thu,69,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +34,blue-collar,single,university.degree,unknown,yes,no,cellular,may,mon,498,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +31,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +34,unemployed,single,professional.course,no,no,no,cellular,aug,fri,531,2,2,1,success,-2.9,92.201,-31.4,0.8490000000000001,5076.2,yes +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 +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,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 +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 +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 +52,services,married,high.school,unknown,yes,no,telephone,may,mon,967,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +36,blue-collar,married,unknown,no,no,no,cellular,apr,fri,315,1,6,1,success,-1.8,93.749,-34.6,0.6629999999999999,5008.7,yes +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 +47,admin.,married,university.degree,no,no,no,cellular,nov,tue,1014,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +38,services,single,high.school,unknown,yes,no,telephone,may,mon,85,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +46,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,162,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,thu,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +51,admin.,married,high.school,no,no,yes,telephone,jun,thu,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +58,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,178,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +44,unemployed,divorced,high.school,unknown,yes,no,telephone,may,wed,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +49,services,married,basic.4y,no,no,no,cellular,nov,thu,106,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,no +30,services,single,high.school,no,yes,no,telephone,may,wed,190,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +43,admin.,married,high.school,no,no,yes,cellular,dec,mon,415,2,8,2,failure,-3.0,92.713,-33.0,0.7170000000000001,5023.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +54,retired,married,high.school,no,yes,no,cellular,nov,tue,145,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,admin.,married,university.degree,no,yes,yes,telephone,may,mon,97,9,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +52,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,182,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +42,management,married,university.degree,no,yes,no,cellular,aug,fri,436,1,13,1,success,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +34,blue-collar,single,basic.9y,no,no,no,cellular,apr,wed,394,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,services,married,high.school,no,yes,no,telephone,may,mon,552,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +26,admin.,married,high.school,no,no,yes,telephone,may,mon,346,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +26,student,single,university.degree,no,no,no,telephone,dec,mon,796,1,999,0,nonexistent,-3.0,92.713,-33.0,0.7090000000000001,5023.5,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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,yes,yes,telephone,may,mon,66,9,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +30,technician,single,university.degree,no,no,yes,cellular,nov,thu,399,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +56,services,married,high.school,no,no,no,telephone,nov,thu,871,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +47,unemployed,married,high.school,no,no,no,cellular,nov,tue,94,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,entrepreneur,married,professional.course,no,yes,no,cellular,oct,mon,534,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,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.7809999999999999,5017.5,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 +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 +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 +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,blue-collar,married,unknown,no,no,yes,telephone,jun,thu,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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,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 +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 +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 +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 +20,student,single,unknown,no,no,no,cellular,apr,fri,342,2,999,0,nonexistent,-1.8,93.749,-34.6,0.6629999999999999,5008.7,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 +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 +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 +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 +32,services,married,high.school,unknown,yes,no,cellular,nov,tue,121,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +54,admin.,divorced,professional.course,no,yes,no,telephone,may,fri,75,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +33,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +40,technician,married,university.degree,no,no,no,cellular,may,mon,192,4,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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,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 +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 +38,blue-collar,married,basic.6y,no,no,no,cellular,jun,fri,346,2,5,3,success,-1.7,94.055,-39.8,0.7070000000000001,4991.6,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +38,admin.,single,high.school,no,yes,no,cellular,nov,tue,133,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +37,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,thu,94,4,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +28,services,married,high.school,no,no,no,cellular,may,fri,1049,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +57,retired,married,high.school,no,no,no,cellular,nov,tue,486,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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,university.degree,unknown,yes,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +47,management,married,university.degree,no,yes,yes,cellular,nov,thu,109,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +53,self-employed,married,university.degree,no,no,no,telephone,may,mon,396,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +33,technician,divorced,professional.course,no,yes,no,telephone,may,wed,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,management,married,basic.4y,no,no,no,cellular,may,fri,95,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,services,married,high.school,no,yes,no,cellular,may,mon,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +35,technician,married,university.degree,no,yes,no,cellular,nov,tue,63,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +59,retired,married,high.school,unknown,no,yes,telephone,jun,thu,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +41,management,married,basic.6y,no,no,no,cellular,sep,fri,181,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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 +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 +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 +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 +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 +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 +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 +48,admin.,divorced,high.school,no,yes,yes,telephone,jun,thu,1011,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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.3130000000000002,5099.1,no +41,technician,married,university.degree,no,no,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +36,technician,single,professional.course,no,yes,no,cellular,nov,tue,1132,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +32,blue-collar,single,basic.6y,no,yes,no,telephone,may,mon,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +59,technician,married,professional.course,no,yes,no,telephone,aug,wed,240,3,999,1,failure,-2.9,92.201,-31.4,0.8340000000000001,5076.2,no +34,technician,married,university.degree,no,yes,no,cellular,may,fri,47,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +52,management,married,university.degree,no,no,no,telephone,jun,thu,423,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,blue-collar,married,basic.6y,no,yes,no,telephone,nov,thu,107,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +35,management,married,basic.4y,no,no,no,cellular,nov,tue,276,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +29,admin.,single,high.school,no,yes,no,cellular,nov,fri,176,2,7,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +52,self-employed,divorced,basic.9y,no,yes,no,cellular,nov,thu,26,5,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +46,admin.,married,high.school,no,yes,no,cellular,oct,wed,143,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,no +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 +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 +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 +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 +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 +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 +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 +37,admin.,married,high.school,no,unknown,unknown,cellular,nov,thu,518,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +49,housemaid,single,university.degree,no,no,yes,cellular,dec,mon,334,3,999,0,nonexistent,-3.0,92.713,-33.0,0.7170000000000001,5023.5,no +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 +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 +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 +31,admin.,married,university.degree,no,no,no,telephone,jun,thu,256,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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,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 +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 +58,admin.,married,university.degree,no,no,no,telephone,aug,fri,121,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,single,professional.course,no,yes,no,cellular,nov,thu,16,9,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +32,admin.,married,university.degree,no,no,no,telephone,may,fri,546,3,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +41,admin.,married,high.school,no,yes,no,cellular,nov,tue,62,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,7,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7020000000000001,4991.6,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 +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 +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 +63,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,fri,107,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +44,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,191,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +29,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,43,4,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +22,student,single,high.school,no,no,no,cellular,oct,fri,154,2,999,1,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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,telephone,may,tue,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191.0,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 +37,admin.,married,university.degree,no,no,no,cellular,may,tue,106,1,999,2,failure,-1.8,93.876,-40.0,0.6679999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,339,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +35,admin.,single,university.degree,no,no,no,cellular,nov,thu,295,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,single,university.degree,no,no,no,cellular,may,mon,234,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,886,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +69,retired,divorced,professional.course,no,no,no,cellular,oct,tue,144,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7440000000000001,5017.5,yes +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 +50,technician,married,professional.course,no,unknown,unknown,cellular,nov,tue,336,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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,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 +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 +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 +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 +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 +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 +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 +30,entrepreneur,single,university.degree,no,yes,yes,cellular,nov,tue,309,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +46,unemployed,married,basic.6y,no,yes,no,cellular,nov,thu,113,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +62,retired,married,university.degree,unknown,no,no,cellular,oct,fri,717,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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 +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 +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 +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 +36,technician,married,high.school,no,no,no,cellular,nov,tue,91,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +55,admin.,married,university.degree,no,no,no,cellular,nov,tue,71,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +34,management,single,university.degree,no,yes,no,cellular,may,fri,175,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +34,technician,married,professional.course,no,yes,no,telephone,may,thu,24,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,thu,36,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +34,admin.,married,university.degree,no,yes,no,cellular,may,fri,198,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +34,admin.,single,university.degree,no,no,no,cellular,may,fri,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +51,admin.,married,university.degree,no,no,no,cellular,nov,tue,104,2,1,1,success,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.7020000000000001,4991.6,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 +53,self-employed,married,basic.4y,unknown,yes,no,cellular,may,mon,62,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +35,technician,divorced,professional.course,unknown,no,no,cellular,nov,tue,143,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +36,unemployed,single,university.degree,no,no,no,cellular,aug,fri,260,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,housemaid,married,professional.course,unknown,no,no,telephone,jun,thu,210,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +33,services,single,high.school,no,unknown,unknown,cellular,may,mon,216,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +57,unknown,married,basic.6y,no,no,no,cellular,jul,fri,64,1,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,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 +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 +39,blue-collar,single,basic.9y,no,yes,yes,cellular,may,mon,75,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,university.degree,no,no,no,cellular,jul,wed,781,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +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 +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 +34,admin.,married,high.school,no,yes,no,cellular,jun,wed,161,1,5,1,success,-1.7,94.055,-39.8,0.7040000000000001,4991.6,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 +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 +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 +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 +38,admin.,married,high.school,no,unknown,unknown,cellular,may,fri,295,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,admin.,married,university.degree,no,yes,no,cellular,sep,wed,161,1,18,2,failure,-1.1,94.199,-37.5,0.8859999999999999,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 +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 +41,services,married,unknown,no,yes,yes,cellular,nov,thu,597,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +42,blue-collar,married,unknown,unknown,yes,no,telephone,jun,thu,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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,married,basic.9y,no,yes,no,cellular,may,mon,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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,admin.,single,university.degree,no,yes,no,cellular,sep,wed,307,2,999,1,failure,-3.4,92.379,-29.8,0.7809999999999999,5017.5,no +48,admin.,married,basic.9y,no,no,no,cellular,may,fri,253,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,474,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +56,retired,divorced,university.degree,no,yes,no,cellular,nov,tue,972,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,423,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +45,management,married,basic.9y,unknown,yes,no,cellular,may,mon,288,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +46,self-employed,married,basic.4y,no,no,no,cellular,nov,tue,354,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +49,admin.,divorced,university.degree,no,yes,no,telephone,jun,thu,234,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +48,services,married,high.school,no,yes,no,cellular,nov,tue,835,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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.1530000000000005,5195.8,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 +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 +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 +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 +31,services,married,high.school,no,no,no,cellular,may,fri,130,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +31,technician,single,university.degree,no,no,no,cellular,may,mon,629,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +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 +47,technician,married,professional.course,no,no,no,telephone,may,mon,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +62,technician,married,unknown,no,no,no,cellular,mar,mon,104,2,3,2,success,-1.8,93.369,-34.8,0.6459999999999999,5008.7,yes +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 +33,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,214,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,202,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +32,admin.,married,university.degree,no,yes,no,telephone,aug,wed,328,1,999,1,failure,-2.9,92.201,-31.4,0.8540000000000001,5076.2,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 +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 +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 +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 +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 +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 +31,services,married,professional.course,no,no,no,cellular,nov,thu,627,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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.8580000000000005,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 +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 +57,blue-collar,married,professional.course,no,no,no,cellular,nov,tue,244,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +39,management,married,high.school,no,no,no,cellular,nov,tue,361,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +49,self-employed,married,university.degree,no,no,no,cellular,nov,thu,40,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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,technician,married,high.school,no,yes,no,telephone,nov,thu,37,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +60,retired,married,basic.4y,no,no,no,cellular,aug,mon,143,2,15,2,failure,-1.7,94.027,-38.3,0.8959999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +30,self-employed,married,university.degree,no,yes,yes,cellular,aug,fri,390,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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.8580000000000005,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 +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 +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 +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 +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 +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 +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 +31,admin.,married,high.school,no,yes,no,cellular,nov,tue,97,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +35,services,single,professional.course,unknown,no,no,telephone,may,wed,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,services,single,high.school,no,no,no,cellular,nov,thu,151,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,264,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,admin.,married,university.degree,no,yes,no,cellular,nov,mon,110,3,6,1,success,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,services,married,high.school,unknown,unknown,unknown,telephone,may,wed,54,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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,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 +33,self-employed,divorced,unknown,no,no,no,telephone,may,wed,1161,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +67,retired,married,basic.4y,no,yes,no,cellular,nov,thu,99,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,high.school,no,yes,no,cellular,nov,tue,125,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +51,blue-collar,married,professional.course,no,yes,no,cellular,sep,tue,86,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8190000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,admin.,single,university.degree,no,no,no,telephone,may,wed,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +29,admin.,married,university.degree,no,no,yes,cellular,jun,tue,347,3,5,1,success,-1.7,94.055,-39.8,0.7020000000000001,4991.6,yes +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 +73,retired,married,basic.4y,no,yes,no,cellular,mar,mon,209,2,999,1,failure,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +36,admin.,married,university.degree,no,no,no,cellular,may,mon,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +27,self-employed,married,university.degree,no,yes,no,cellular,may,mon,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +35,entrepreneur,married,high.school,no,yes,no,cellular,may,mon,508,3,999,2,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +76,retired,married,university.degree,no,no,no,cellular,aug,fri,233,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,married,high.school,no,no,no,cellular,may,fri,123,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +46,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,281,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,admin.,divorced,university.degree,no,no,yes,cellular,jun,wed,79,1,3,2,success,-1.7,94.055,-39.8,0.7390000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +30,admin.,married,university.degree,no,yes,no,cellular,oct,wed,133,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +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 +34,admin.,married,high.school,no,no,no,cellular,nov,tue,105,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +38,technician,married,university.degree,no,yes,no,cellular,nov,thu,82,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +51,technician,married,professional.course,no,no,yes,cellular,dec,mon,267,2,999,0,nonexistent,-3.0,92.713,-33.0,0.7090000000000001,5023.5,yes +36,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,214,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,jun,mon,44,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,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 +52,management,married,university.degree,no,yes,no,telephone,may,wed,27,10,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +64,retired,married,unknown,no,yes,no,cellular,aug,fri,171,3,999,1,failure,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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 +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 +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 +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 +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 +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 +31,services,married,high.school,unknown,no,no,telephone,jun,thu,447,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +44,entrepreneur,married,professional.course,no,no,no,telephone,may,mon,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,services,single,high.school,unknown,no,no,telephone,may,wed,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,self-employed,married,university.degree,no,no,yes,telephone,may,mon,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +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 +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 +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 +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 +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 +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 +48,housemaid,married,professional.course,no,yes,no,cellular,jul,wed,496,2,6,2,success,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +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 +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 +35,admin.,married,high.school,no,no,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +39,unemployed,single,high.school,no,yes,no,cellular,jul,fri,90,2,999,0,nonexistent,-1.7,94.215,-40.3,0.8959999999999999,4991.6,no +43,technician,married,high.school,no,yes,no,cellular,sep,tue,260,1,3,1,success,-3.4,92.379,-29.8,0.7879999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,high.school,no,no,no,cellular,nov,mon,250,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,services,married,high.school,no,no,no,telephone,may,mon,86,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +38,blue-collar,married,high.school,unknown,yes,no,cellular,may,mon,306,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,married,basic.9y,unknown,yes,no,telephone,may,mon,179,9,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,married,university.degree,no,no,no,cellular,nov,thu,248,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +33,technician,married,unknown,no,yes,no,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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,admin.,single,university.degree,no,yes,yes,cellular,may,mon,80,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +29,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,736,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,retired,married,professional.course,no,yes,no,cellular,nov,tue,191,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,admin.,single,basic.9y,no,no,no,cellular,may,mon,79,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +67,retired,married,basic.6y,no,no,no,cellular,aug,tue,460,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +53,admin.,married,university.degree,no,no,no,cellular,aug,fri,139,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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 +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 +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 +47,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,1001,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,tue,62,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +38,housemaid,married,basic.9y,unknown,unknown,unknown,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,169,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +55,services,divorced,high.school,no,yes,no,cellular,jul,fri,160,3,999,0,nonexistent,-1.7,94.215,-40.3,0.8959999999999999,4991.6,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 +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 +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 +39,blue-collar,married,high.school,no,yes,no,telephone,may,fri,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +35,admin.,single,high.school,no,yes,no,telephone,may,wed,59,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +34,technician,married,professional.course,no,yes,no,cellular,nov,mon,93,1,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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,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 +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 +26,services,divorced,basic.6y,no,no,no,telephone,may,wed,281,15,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,211,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +36,admin.,single,university.degree,no,yes,no,telephone,nov,thu,107,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +51,admin.,married,high.school,no,yes,no,cellular,nov,tue,109,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +37,admin.,married,university.degree,no,no,no,cellular,sep,wed,265,2,6,2,success,-1.1,94.199,-37.5,0.8859999999999999,4963.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,unknown,no,no,cellular,may,mon,146,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +54,housemaid,married,professional.course,no,no,no,telephone,oct,mon,1745,3,999,1,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +37,management,married,university.degree,no,no,no,cellular,nov,tue,658,3,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,technician,single,high.school,no,no,no,cellular,may,mon,236,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,retired,married,professional.course,no,no,no,cellular,nov,thu,234,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,divorced,high.school,no,yes,no,cellular,may,mon,472,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +78,retired,divorced,unknown,no,no,no,cellular,jun,thu,544,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7290000000000001,4991.6,yes +38,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,106,3,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +36,blue-collar,married,high.school,no,no,no,telephone,jun,thu,272,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +35,services,married,high.school,no,unknown,unknown,cellular,may,fri,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +50,services,married,high.school,no,yes,no,cellular,nov,tue,129,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +44,services,married,high.school,no,yes,no,telephone,jun,thu,172,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +66,retired,married,unknown,no,no,no,cellular,sep,tue,332,5,999,0,nonexistent,-1.1,94.199,-37.5,0.8809999999999999,4963.6,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.8580000000000005,5191.0,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.3130000000000002,5099.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 +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 +50,admin.,married,high.school,no,no,no,telephone,may,wed,260,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +47,technician,married,professional.course,no,no,no,cellular,nov,thu,93,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +31,unemployed,married,high.school,yes,no,no,cellular,nov,tue,111,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +43,services,married,high.school,no,no,no,cellular,nov,thu,81,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,admin.,married,professional.course,no,no,no,cellular,aug,mon,318,2,999,0,nonexistent,-1.7,94.027,-38.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +43,blue-collar,married,professional.course,no,yes,yes,cellular,jun,thu,1720,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7290000000000001,4991.6,yes +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 +39,admin.,married,high.school,no,yes,no,cellular,may,mon,432,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,163,1,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +29,entrepreneur,divorced,basic.9y,no,yes,no,telephone,jun,thu,53,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,36,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +29,unemployed,single,university.degree,no,yes,no,cellular,aug,tue,33,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +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 +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 +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 +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 +56,entrepreneur,married,university.degree,no,no,yes,telephone,may,wed,1697,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,married,professional.course,unknown,no,no,cellular,nov,tue,124,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,technician,married,professional.course,no,no,no,telephone,mar,mon,300,6,6,1,success,-1.8,93.369,-34.8,0.6459999999999999,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +57,management,married,university.degree,no,no,yes,cellular,nov,tue,218,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +50,blue-collar,divorced,basic.9y,no,no,no,cellular,may,fri,262,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +31,unemployed,married,high.school,no,yes,yes,cellular,nov,thu,91,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,management,single,university.degree,no,yes,no,telephone,may,wed,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +56,retired,married,basic.4y,no,no,no,cellular,dec,thu,429,1,999,0,nonexistent,-3.0,92.713,-33.0,0.7140000000000001,5023.5,yes +53,self-employed,married,basic.4y,no,yes,yes,cellular,nov,tue,464,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +36,services,married,high.school,no,yes,no,telephone,may,mon,195,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +49,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +38,technician,married,university.degree,no,no,no,cellular,mar,tue,350,2,999,2,failure,-1.8,92.843,-50.0,1.6869999999999998,5099.1,yes +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 +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 +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 +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 +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 +46,entrepreneur,married,professional.course,no,no,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +53,admin.,married,professional.course,no,yes,yes,cellular,nov,tue,140,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +27,unemployed,single,basic.4y,no,no,no,cellular,jun,tue,238,1,999,2,failure,-1.7,94.055,-39.8,0.7609999999999999,4991.6,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 +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 +53,entrepreneur,single,basic.9y,no,no,no,telephone,may,wed,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,technician,divorced,university.degree,no,no,no,cellular,aug,fri,90,1,999,1,failure,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,services,single,professional.course,no,yes,no,telephone,may,mon,314,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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,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 +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 +32,admin.,married,high.school,no,yes,no,cellular,may,mon,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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,technician,married,professional.course,no,no,no,cellular,nov,thu,321,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +38,management,single,university.degree,no,yes,no,cellular,nov,thu,262,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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,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 +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,unknown,no,no,yes,cellular,jul,mon,78,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,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 +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 +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 +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 +25,services,single,unknown,no,yes,no,cellular,jun,tue,516,1,13,2,failure,-1.7,94.055,-39.8,0.7020000000000001,4991.6,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,services,single,high.school,no,no,no,cellular,nov,thu,148,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,428,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +34,admin.,married,university.degree,no,no,yes,cellular,dec,tue,196,2,6,2,success,-3.0,92.713,-33.0,0.7070000000000001,5023.5,yes +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 +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 +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 +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 +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 +24,self-employed,single,university.degree,no,no,no,cellular,aug,thu,64,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8290000000000001,5076.2,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 +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 +56,technician,married,professional.course,unknown,no,no,telephone,jun,thu,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,management,married,high.school,unknown,no,no,cellular,may,mon,273,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +30,management,married,university.degree,no,yes,no,telephone,sep,wed,20,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,student,single,university.degree,no,no,no,cellular,may,fri,81,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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,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 +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 +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 +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 +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,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +36,technician,single,professional.course,no,yes,no,cellular,nov,thu,352,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +31,technician,married,high.school,no,yes,yes,cellular,nov,thu,232,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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.,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 +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 +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,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 +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 +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 +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 +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.,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 +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 +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 +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 +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,basic.9y,no,yes,no,cellular,jul,wed,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +52,admin.,married,professional.course,no,no,yes,cellular,sep,wed,506,3,999,0,nonexistent,-1.1,94.199,-37.5,0.8759999999999999,4963.6,yes +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 +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 +36,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,unemployed,married,professional.course,no,yes,no,telephone,aug,fri,275,6,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +29,services,married,basic.9y,no,yes,no,telephone,may,mon,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +66,retired,married,unknown,no,no,no,cellular,sep,tue,667,1,999,1,failure,-1.1,94.199,-37.5,0.8809999999999999,4963.6,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,blue-collar,married,high.school,no,no,no,cellular,nov,thu,52,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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.,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,services,married,professional.course,unknown,yes,yes,telephone,may,mon,361,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,management,single,high.school,no,yes,no,cellular,nov,thu,48,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +49,entrepreneur,married,high.school,no,no,no,telephone,nov,tue,177,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +56,technician,married,university.degree,no,no,no,cellular,nov,thu,162,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +35,self-employed,unknown,university.degree,no,no,no,cellular,nov,thu,221,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +32,admin.,married,university.degree,no,yes,no,cellular,nov,thu,158,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +36,admin.,married,high.school,no,no,no,telephone,jun,thu,127,4,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +44,technician,married,professional.course,no,yes,no,cellular,may,mon,147,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +44,services,divorced,high.school,unknown,no,no,telephone,may,wed,220,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,91,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +41,admin.,married,university.degree,no,no,no,telephone,jun,thu,115,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,72,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,blue-collar,divorced,unknown,no,yes,no,telephone,nov,tue,125,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +36,admin.,single,high.school,no,yes,no,telephone,dec,mon,358,6,999,0,nonexistent,-3.0,92.713,-33.0,0.7170000000000001,5023.5,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.8580000000000005,5191.0,no +56,housemaid,married,basic.4y,no,yes,no,cellular,aug,wed,359,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8340000000000001,5076.2,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 +31,admin.,single,university.degree,unknown,no,no,telephone,may,fri,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +68,retired,married,high.school,no,yes,no,cellular,oct,tue,88,1,999,2,failure,-3.4,92.431,-26.9,0.7440000000000001,5017.5,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 +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 +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 +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 +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,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 +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 +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 +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 +58,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,158,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +34,admin.,married,high.school,unknown,no,no,cellular,may,fri,267,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,divorced,university.degree,no,yes,yes,cellular,nov,tue,384,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +47,services,married,high.school,no,yes,no,cellular,nov,tue,164,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +27,admin.,single,university.degree,no,no,no,cellular,sep,wed,397,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,5017.5,yes +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 +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 +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 +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 +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 +58,technician,married,professional.course,unknown,no,no,telephone,may,wed,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +40,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,thu,22,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +55,retired,married,basic.4y,no,yes,no,cellular,aug,fri,137,1,3,1,success,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +55,admin.,married,basic.9y,no,no,no,cellular,nov,thu,209,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +37,management,single,basic.9y,no,yes,no,cellular,may,mon,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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,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 +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 +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 +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 +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 +52,management,divorced,university.degree,no,yes,yes,telephone,jun,thu,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,single,university.degree,no,yes,no,cellular,nov,thu,191,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +33,admin.,single,university.degree,no,yes,no,cellular,nov,thu,77,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +41,blue-collar,married,basic.9y,no,no,no,cellular,oct,mon,104,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +34,entrepreneur,married,basic.4y,no,no,no,telephone,jun,thu,26,24,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +37,student,divorced,university.degree,no,yes,yes,cellular,may,thu,417,2,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,yes +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 +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 +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 +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 +30,services,married,high.school,no,no,no,cellular,may,mon,286,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,housemaid,single,university.degree,no,no,no,cellular,oct,tue,296,3,999,0,nonexistent,-3.4,92.431,-26.9,0.7440000000000001,5017.5,yes +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 +24,student,single,unknown,no,yes,no,cellular,sep,wed,300,1,5,1,success,-1.1,94.199,-37.5,0.8859999999999999,4963.6,yes +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 +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 +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 +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 +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 +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 +48,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,thu,537,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +21,student,single,university.degree,no,yes,no,cellular,nov,fri,180,3,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,no +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,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 +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 +35,admin.,married,university.degree,no,yes,no,cellular,may,fri,348,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +32,admin.,single,university.degree,no,no,no,cellular,nov,tue,398,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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,services,married,high.school,no,yes,yes,telephone,may,wed,184,9,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +32,blue-collar,single,basic.9y,no,no,no,cellular,nov,thu,324,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +72,retired,married,basic.6y,no,no,no,cellular,jul,wed,338,1,999,0,nonexistent,-1.7,94.215,-40.3,0.8809999999999999,4991.6,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 +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 +55,services,divorced,high.school,no,no,yes,telephone,may,mon,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +33,self-employed,single,university.degree,no,no,no,cellular,may,mon,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,housemaid,divorced,basic.9y,unknown,yes,no,telephone,may,mon,226,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,63,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +26,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,84,7,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +35,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,fri,153,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +36,admin.,married,university.degree,no,no,no,cellular,nov,tue,51,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +38,services,married,high.school,unknown,no,no,cellular,may,mon,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +43,self-employed,married,high.school,no,no,no,cellular,nov,mon,137,3,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,technician,single,professional.course,no,yes,no,cellular,nov,tue,58,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +31,technician,single,professional.course,no,yes,no,cellular,nov,thu,155,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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.8809999999999999,5076.2,yes +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 +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 +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 +31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,technician,single,professional.course,no,yes,yes,cellular,nov,tue,155,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +58,housemaid,married,basic.4y,unknown,no,no,cellular,nov,tue,91,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,management,married,university.degree,no,no,no,cellular,nov,thu,1192,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +51,management,married,university.degree,no,no,no,cellular,may,fri,203,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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.3130000000000002,5099.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 +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 +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 +30,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,thu,677,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,management,married,university.degree,no,yes,no,cellular,nov,tue,283,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +51,admin.,divorced,high.school,no,yes,no,cellular,nov,tue,283,1,3,7,success,-1.1,94.767,-50.8,1.0490000000000002,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,management,married,professional.course,no,yes,no,cellular,nov,tue,99,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +51,admin.,married,basic.6y,no,no,yes,cellular,may,mon,228,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,admin.,single,university.degree,no,no,no,cellular,oct,fri,147,2,6,1,success,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +54,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,399,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +60,retired,married,professional.course,unknown,no,no,telephone,may,wed,280,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +25,technician,single,high.school,no,yes,no,cellular,may,fri,581,3,999,2,failure,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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 +38,unemployed,single,university.degree,no,yes,no,cellular,nov,tue,97,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +35,self-employed,married,professional.course,no,yes,no,cellular,nov,tue,91,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,51,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,138,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +26,admin.,single,university.degree,no,yes,no,cellular,may,mon,76,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +37,blue-collar,married,high.school,unknown,no,no,cellular,may,fri,323,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +50,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,tue,137,2,9,3,success,-1.1,94.767,-50.8,1.0490000000000002,4963.6,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 +39,admin.,single,high.school,no,no,no,cellular,mar,tue,119,5,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.1,no +36,admin.,married,high.school,no,no,no,telephone,may,mon,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +54,technician,married,university.degree,no,no,no,cellular,nov,tue,432,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,basic.9y,unknown,unknown,unknown,cellular,nov,thu,93,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +27,blue-collar,single,basic.9y,no,no,yes,telephone,jun,thu,869,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,technician,married,professional.course,no,yes,no,telephone,may,mon,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,admin.,married,basic.9y,no,no,no,cellular,may,fri,159,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +35,admin.,married,university.degree,no,yes,no,cellular,oct,wed,300,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +46,retired,married,basic.6y,unknown,yes,no,cellular,apr,wed,525,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,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 +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 +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 +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 +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 +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 +68,retired,single,university.degree,no,no,no,cellular,sep,mon,500,2,999,1,failure,-3.4,92.379,-29.8,0.7390000000000001,5017.5,no +52,services,divorced,high.school,no,no,no,telephone,may,mon,579,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +25,admin.,single,high.school,no,no,no,cellular,may,fri,682,3,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +38,management,married,university.degree,no,no,no,cellular,may,fri,525,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,technician,single,university.degree,no,yes,no,telephone,may,mon,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +39,management,married,university.degree,no,yes,yes,cellular,nov,thu,90,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +33,admin.,single,university.degree,no,yes,no,telephone,may,wed,66,13,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +41,blue-collar,married,basic.4y,no,yes,no,telephone,nov,thu,132,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,self-employed,single,professional.course,no,no,yes,cellular,nov,thu,139,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +40,admin.,single,unknown,unknown,yes,no,telephone,may,wed,30,12,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +33,services,single,high.school,no,no,no,cellular,may,mon,503,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +40,management,married,university.degree,no,no,no,cellular,nov,tue,131,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +45,technician,single,university.degree,no,no,no,cellular,may,fri,561,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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,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 +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 +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 +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 +39,entrepreneur,married,university.degree,no,yes,no,cellular,sep,tue,120,3,999,0,nonexistent,-1.1,94.199,-37.5,0.8809999999999999,4963.6,no +44,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,1058,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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,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 +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 +58,retired,married,university.degree,no,unknown,unknown,cellular,nov,thu,279,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +31,technician,single,university.degree,unknown,yes,yes,telephone,may,mon,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +53,admin.,single,university.degree,unknown,yes,no,telephone,may,wed,222,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +31,admin.,single,university.degree,no,yes,no,cellular,nov,tue,84,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,193,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,blue-collar,married,basic.4y,no,no,yes,cellular,may,mon,285,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +30,services,married,high.school,no,yes,no,cellular,nov,thu,174,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +37,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,services,single,high.school,unknown,yes,no,cellular,may,fri,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,yes,no,cellular,sep,wed,110,2,18,2,failure,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +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 +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 +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 +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 +47,admin.,married,university.degree,unknown,no,no,telephone,jun,thu,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,technician,married,professional.course,no,no,no,cellular,nov,thu,147,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +32,student,single,university.degree,no,no,no,cellular,may,fri,209,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,technician,single,university.degree,no,yes,no,cellular,dec,tue,296,1,5,1,success,-3.0,92.713,-33.0,0.7070000000000001,5023.5,yes +43,unemployed,single,unknown,no,yes,no,cellular,nov,thu,87,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +36,admin.,married,university.degree,no,yes,yes,cellular,may,thu,1178,1,6,2,success,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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 +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 +30,admin.,single,university.degree,no,yes,no,cellular,may,mon,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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.3130000000000002,5099.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 +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 +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 +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 +28,unemployed,married,professional.course,no,no,no,cellular,aug,fri,276,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +30,technician,single,professional.course,no,yes,yes,cellular,nov,tue,69,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +28,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,thu,109,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +32,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,thu,292,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +32,technician,single,basic.9y,no,yes,no,telephone,may,mon,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +50,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,213,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,services,married,high.school,no,no,no,cellular,oct,fri,141,1,999,2,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +73,retired,married,university.degree,no,yes,no,cellular,mar,tue,179,1,999,1,failure,-1.8,92.843,-50.0,1.6869999999999998,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,34,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,32,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +50,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,160,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,blue-collar,married,professional.course,no,yes,no,cellular,nov,thu,475,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +40,admin.,married,university.degree,unknown,yes,yes,telephone,may,wed,603,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +33,services,married,high.school,no,yes,no,telephone,jun,thu,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +31,services,married,basic.6y,no,no,no,cellular,nov,thu,843,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +49,technician,married,university.degree,no,no,no,cellular,aug,tue,90,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +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 +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 +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 +45,technician,single,university.degree,no,no,no,cellular,may,fri,311,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +25,services,divorced,high.school,no,yes,yes,telephone,may,wed,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +25,admin.,single,university.degree,no,no,yes,cellular,nov,mon,295,1,7,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +25,unemployed,married,high.school,no,yes,no,cellular,mar,wed,436,2,6,1,success,-1.8,93.369,-34.8,0.6509999999999999,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,blue-collar,married,unknown,no,no,no,cellular,nov,thu,366,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +29,admin.,married,basic.9y,no,no,no,cellular,nov,thu,143,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +32,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,206,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +41,admin.,married,high.school,no,yes,yes,telephone,jun,thu,204,4,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +35,student,single,high.school,no,no,no,telephone,may,mon,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,748,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +30,technician,single,basic.9y,no,no,yes,cellular,may,mon,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +32,services,married,high.school,unknown,no,no,telephone,jun,thu,97,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,technician,single,professional.course,no,no,no,cellular,jul,mon,562,4,999,0,nonexistent,-1.7,94.215,-40.3,0.8270000000000001,4991.6,yes +46,management,single,university.degree,no,no,yes,cellular,may,mon,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +29,unemployed,married,basic.4y,no,no,no,telephone,dec,thu,805,1,999,0,nonexistent,-3.0,92.713,-33.0,0.7140000000000001,5023.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,118,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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,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 +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 +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 +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 +30,unemployed,single,professional.course,no,yes,no,cellular,mar,mon,341,1,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,no +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 +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 +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 +32,technician,single,university.degree,no,no,yes,telephone,nov,thu,197,7,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +42,admin.,single,basic.9y,unknown,no,yes,telephone,may,wed,408,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,admin.,married,high.school,no,yes,yes,cellular,may,fri,81,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +33,admin.,single,high.school,no,no,no,telephone,may,wed,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,single,high.school,no,yes,no,cellular,may,mon,134,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +45,unknown,married,unknown,no,no,no,telephone,jun,thu,484,8,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +27,admin.,single,university.degree,no,no,no,cellular,may,mon,409,1,1,1,success,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +77,retired,married,unknown,no,yes,no,cellular,nov,fri,193,1,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +81,retired,divorced,basic.4y,no,no,no,cellular,sep,wed,532,2,7,1,success,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +24,student,single,high.school,no,no,no,cellular,jun,wed,112,2,14,2,success,-1.7,94.055,-39.8,0.7390000000000001,4991.6,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 +29,admin.,married,university.degree,no,yes,no,cellular,dec,mon,116,2,999,1,failure,-3.0,92.713,-33.0,0.7090000000000001,5023.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +50,blue-collar,married,basic.4y,no,yes,yes,telephone,nov,tue,234,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +34,technician,single,university.degree,no,yes,no,cellular,nov,thu,354,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,technician,married,basic.6y,no,yes,no,cellular,nov,thu,223,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +53,admin.,married,university.degree,unknown,yes,no,cellular,sep,tue,81,5,999,0,nonexistent,-3.4,92.379,-29.8,0.8190000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,admin.,divorced,university.degree,no,unknown,unknown,cellular,nov,thu,257,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,247,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +37,admin.,single,high.school,no,yes,no,cellular,nov,thu,1035,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +25,admin.,married,university.degree,no,no,no,cellular,may,mon,496,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +36,services,single,high.school,no,no,no,cellular,nov,thu,105,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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,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 +38,management,single,university.degree,no,yes,yes,cellular,nov,thu,186,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,no +35,services,married,high.school,no,no,no,cellular,sep,tue,421,2,3,1,success,-3.4,92.379,-29.8,0.7879999999999999,5017.5,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 +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 +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 +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 +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 +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,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 +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 +31,technician,married,professional.course,no,no,no,telephone,may,wed,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +48,housemaid,married,professional.course,no,no,no,cellular,jul,wed,388,3,6,1,success,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,services,single,high.school,no,yes,no,cellular,nov,thu,173,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +36,technician,single,professional.course,no,yes,no,cellular,nov,thu,911,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +45,technician,single,university.degree,no,no,no,cellular,may,fri,763,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +44,unknown,married,basic.6y,no,yes,yes,telephone,may,mon,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,management,married,basic.4y,unknown,no,no,telephone,may,mon,882,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,136,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +40,management,married,high.school,unknown,no,no,cellular,nov,tue,825,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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.0760000000000005,5195.8,no +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 +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 +29,services,married,high.school,unknown,yes,yes,cellular,nov,thu,129,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,admin.,single,high.school,no,no,no,cellular,aug,wed,431,4,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +25,services,single,unknown,no,yes,no,cellular,jun,tue,154,2,3,3,success,-1.7,94.055,-39.8,0.7020000000000001,4991.6,yes +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 +76,retired,divorced,professional.course,no,yes,no,cellular,dec,thu,956,1,999,0,nonexistent,-3.0,92.713,-33.0,0.7070000000000001,5023.5,no +34,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,493,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +29,self-employed,single,university.degree,no,no,no,cellular,nov,thu,88,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +36,unemployed,single,university.degree,no,no,no,cellular,aug,fri,415,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +39,services,married,high.school,no,yes,no,cellular,may,mon,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +30,services,single,high.school,no,yes,yes,cellular,may,mon,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +50,blue-collar,married,basic.4y,no,no,no,cellular,jun,tue,135,4,999,1,failure,-1.7,94.055,-39.8,0.7609999999999999,4991.6,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 +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 +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 +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 +49,admin.,divorced,university.degree,no,yes,no,cellular,may,fri,164,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +48,admin.,married,university.degree,no,no,no,cellular,nov,thu,301,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,services,married,basic.6y,no,yes,no,telephone,may,mon,85,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +40,services,single,basic.6y,no,no,no,cellular,nov,thu,107,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.1530000000000005,5195.8,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 +32,services,married,high.school,no,no,no,cellular,may,mon,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,housemaid,married,high.school,no,no,no,cellular,nov,thu,99,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +42,admin.,married,university.degree,no,no,no,cellular,may,mon,98,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,admin.,married,high.school,no,no,no,cellular,mar,tue,168,1,999,0,nonexistent,-1.8,92.843,-50.0,1.7990000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,technician,single,professional.course,no,no,no,cellular,nov,tue,165,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +28,self-employed,single,university.degree,no,yes,yes,cellular,mar,wed,217,1,999,1,failure,-1.8,93.369,-34.8,0.6509999999999999,5008.7,no +58,admin.,divorced,university.degree,no,yes,yes,telephone,may,wed,363,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,208,4,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +47,housemaid,single,basic.9y,no,no,no,cellular,nov,thu,128,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,self-employed,single,university.degree,no,yes,no,telephone,mar,wed,152,1,999,1,failure,-1.8,93.369,-34.8,0.6509999999999999,5008.7,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 +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 +35,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,35,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +29,admin.,married,high.school,no,yes,no,cellular,may,mon,106,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,admin.,divorced,high.school,no,yes,no,telephone,sep,fri,101,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,no +28,admin.,married,university.degree,no,yes,no,cellular,aug,wed,75,1,999,1,failure,-2.9,92.201,-31.4,0.8340000000000001,5076.2,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.1530000000000005,5195.8,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 +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 +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 +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 +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 +34,admin.,married,high.school,no,yes,no,cellular,jun,wed,238,1,6,2,success,-1.7,94.055,-39.8,0.7040000000000001,4991.6,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 +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 +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 +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 +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 +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 +31,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +50,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +44,technician,married,high.school,no,no,no,cellular,nov,tue,231,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +27,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,653,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +52,admin.,married,university.degree,no,yes,no,telephone,mar,tue,294,1,999,1,failure,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +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,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +61,retired,married,basic.4y,no,yes,yes,cellular,aug,fri,69,1,999,1,failure,-2.9,92.201,-31.4,0.8490000000000001,5076.2,no +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 +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 +29,admin.,single,university.degree,no,yes,no,cellular,nov,tue,636,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +39,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +41,entrepreneur,married,high.school,no,yes,no,cellular,nov,tue,120,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +31,admin.,married,university.degree,no,yes,no,cellular,nov,tue,71,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,single,university.degree,no,no,no,telephone,may,mon,259,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +51,entrepreneur,divorced,university.degree,no,yes,no,cellular,may,mon,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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.3130000000000002,5099.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 +31,admin.,married,university.degree,no,no,no,cellular,nov,thu,211,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,university.degree,no,no,yes,cellular,may,mon,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +26,blue-collar,single,high.school,unknown,no,no,cellular,may,mon,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +50,admin.,married,university.degree,no,yes,no,cellular,nov,mon,183,1,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,admin.,married,high.school,no,no,yes,cellular,nov,tue,271,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,admin.,single,high.school,no,yes,no,cellular,may,fri,92,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +31,services,single,professional.course,no,no,no,telephone,jun,thu,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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,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 +66,retired,divorced,high.school,no,no,no,cellular,jul,wed,211,1,999,1,failure,-1.7,94.215,-40.3,0.8959999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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,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,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 +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 +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 +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 +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 +24,student,single,high.school,no,yes,no,cellular,aug,fri,200,1,6,4,failure,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +32,technician,single,high.school,no,no,no,telephone,may,mon,28,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +34,admin.,married,high.school,no,no,no,cellular,nov,tue,201,3,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +32,management,single,university.degree,no,yes,no,cellular,mar,tue,59,1,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,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 +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 +40,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,182,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,blue-collar,single,high.school,no,no,no,cellular,nov,thu,184,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +36,admin.,single,professional.course,no,yes,yes,telephone,may,wed,828,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +46,self-employed,married,basic.6y,unknown,yes,no,cellular,nov,tue,32,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +79,retired,married,high.school,no,yes,no,cellular,may,thu,196,2,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,no +38,technician,married,professional.course,no,yes,no,telephone,nov,tue,205,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +29,admin.,single,university.degree,no,yes,no,cellular,jun,wed,147,1,999,2,failure,-1.7,94.055,-39.8,0.7040000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,management,married,professional.course,no,no,yes,cellular,may,fri,376,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +73,retired,married,basic.4y,no,yes,yes,cellular,aug,fri,135,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,no +52,admin.,single,basic.4y,no,no,no,cellular,may,mon,776,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +20,student,single,high.school,no,no,yes,cellular,oct,mon,169,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +49,entrepreneur,married,professional.course,unknown,no,no,cellular,nov,tue,132,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,admin.,married,high.school,no,yes,yes,telephone,oct,wed,149,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,no +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 +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 +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 +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 +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 +54,technician,single,university.degree,unknown,no,no,telephone,jun,thu,594,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +44,technician,single,professional.course,unknown,no,no,telephone,may,mon,374,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +36,blue-collar,single,high.school,no,yes,yes,cellular,jun,wed,342,2,3,1,success,-1.7,94.055,-39.8,0.7390000000000001,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +55,technician,married,basic.9y,unknown,yes,no,telephone,may,wed,958,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,admin.,single,professional.course,no,yes,no,telephone,nov,thu,25,8,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,27,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +31,blue-collar,married,professional.course,unknown,no,no,cellular,nov,thu,230,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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,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 +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 +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 +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 +39,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,180,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +33,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,21,11,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +23,services,single,basic.9y,unknown,yes,no,cellular,may,mon,350,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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,entrepreneur,single,university.degree,no,yes,yes,cellular,nov,thu,74,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +36,admin.,married,high.school,no,no,no,telephone,may,mon,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +29,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,mon,567,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +33,services,married,basic.9y,no,unknown,unknown,cellular,may,mon,180,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +31,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,225,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +30,housemaid,married,high.school,no,yes,no,telephone,may,wed,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +75,retired,married,basic.4y,no,no,no,cellular,oct,wed,113,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,married,university.degree,no,yes,no,cellular,apr,wed,73,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,no +34,management,married,university.degree,no,yes,yes,cellular,nov,tue,411,3,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,admin.,married,high.school,unknown,yes,no,cellular,may,fri,503,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +46,self-employed,married,basic.4y,no,yes,yes,cellular,nov,tue,162,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +52,technician,married,professional.course,no,yes,no,cellular,nov,fri,495,1,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +26,admin.,single,high.school,no,yes,no,telephone,aug,wed,170,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,self-employed,single,university.degree,no,no,yes,cellular,may,fri,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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,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 +56,retired,married,high.school,no,yes,no,cellular,jul,fri,603,1,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +37,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,thu,340,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,technician,married,professional.course,no,yes,no,cellular,nov,thu,1040,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,admin.,single,university.degree,no,yes,no,cellular,aug,fri,140,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +30,admin.,married,university.degree,no,no,no,cellular,jul,fri,438,2,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,99,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +40,admin.,married,university.degree,no,yes,no,cellular,may,mon,174,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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,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 +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 +32,admin.,single,university.degree,no,yes,no,telephone,may,wed,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +37,technician,married,university.degree,no,yes,yes,telephone,may,wed,298,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,blue-collar,married,unknown,unknown,yes,no,telephone,may,wed,508,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +29,admin.,single,high.school,no,no,no,cellular,aug,fri,88,1,999,2,failure,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,married,university.degree,no,yes,no,cellular,may,mon,580,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +32,technician,single,university.degree,no,no,no,cellular,nov,tue,77,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +52,retired,divorced,basic.4y,no,yes,yes,telephone,may,wed,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.9y,no,yes,yes,cellular,may,tue,637,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,single,high.school,no,unknown,unknown,cellular,nov,tue,229,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +48,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,268,1,3,3,success,-1.8,93.876,-40.0,0.6679999999999999,5008.7,yes +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 +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 +24,student,single,unknown,no,yes,no,cellular,sep,wed,191,2,999,3,failure,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +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 +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 +52,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,79,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +32,services,single,basic.9y,no,no,yes,telephone,jun,thu,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +57,technician,married,high.school,no,no,yes,cellular,may,mon,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,admin.,married,university.degree,no,yes,no,cellular,nov,thu,111,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +40,admin.,divorced,basic.9y,no,yes,no,cellular,nov,tue,394,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +39,services,married,high.school,unknown,yes,yes,cellular,may,fri,19,6,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,198,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +27,admin.,single,high.school,unknown,yes,no,telephone,may,wed,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,139,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +55,entrepreneur,married,professional.course,no,yes,no,telephone,oct,mon,323,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,no +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 +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 +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 +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 +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 +42,management,divorced,high.school,no,yes,no,cellular,may,fri,163,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +46,admin.,single,university.degree,no,no,no,telephone,jun,thu,57,6,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,blue-collar,married,unknown,no,yes,no,cellular,may,mon,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +61,retired,married,university.degree,no,yes,no,cellular,aug,tue,101,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,technician,married,professional.course,no,no,yes,cellular,nov,tue,166,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,admin.,married,university.degree,no,unknown,unknown,cellular,sep,tue,55,6,999,1,failure,-3.4,92.379,-29.8,0.8190000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,admin.,single,basic.9y,unknown,yes,no,telephone,jun,thu,319,6,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +39,management,single,high.school,unknown,no,no,telephone,nov,tue,274,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,technician,married,professional.course,no,yes,no,telephone,nov,fri,332,2,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +56,unknown,married,basic.4y,no,yes,no,cellular,oct,tue,172,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7440000000000001,5017.5,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 +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 +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 +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 +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,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 +30,blue-collar,single,unknown,no,yes,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +72,retired,single,university.degree,no,no,no,cellular,may,fri,114,3,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +66,retired,married,basic.4y,no,yes,yes,telephone,aug,wed,82,3,999,3,failure,-2.9,92.201,-31.4,0.8540000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +33,blue-collar,married,basic.6y,no,yes,no,cellular,apr,wed,351,3,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +53,technician,married,high.school,no,no,yes,telephone,may,mon,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +41,services,single,high.school,no,yes,no,cellular,may,fri,408,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +31,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,wed,67,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +46,management,single,university.degree,no,no,yes,cellular,nov,thu,378,8,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +49,unemployed,unknown,high.school,no,yes,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,university.degree,no,no,yes,cellular,nov,thu,52,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +32,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,208,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +38,services,married,basic.9y,no,no,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +36,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,379,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +28,blue-collar,single,professional.course,no,yes,no,cellular,may,mon,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,admin.,married,university.degree,no,yes,no,cellular,aug,fri,326,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,services,single,high.school,unknown,yes,no,cellular,nov,thu,125,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +64,housemaid,married,basic.4y,no,no,yes,cellular,dec,thu,501,1,6,1,success,-3.0,92.713,-33.0,0.7140000000000001,5023.5,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.8660000000000005,5228.1,yes +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 +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 +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 +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,services,married,high.school,no,no,no,telephone,may,wed,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +56,technician,married,professional.course,unknown,no,no,cellular,nov,tue,81,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,self-employed,divorced,basic.9y,unknown,no,no,cellular,nov,thu,486,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +29,blue-collar,married,professional.course,no,yes,yes,cellular,nov,thu,136,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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,divorced,unknown,no,no,no,telephone,jul,tue,222,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,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 +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 +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 +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 +34,admin.,married,university.degree,no,no,no,cellular,may,fri,247,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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,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 +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 +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 +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 +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 +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 +27,admin.,married,university.degree,no,yes,no,cellular,aug,tue,415,5,12,1,success,-1.7,94.027,-38.3,0.8859999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,144,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +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 +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 +55,management,married,university.degree,no,no,no,cellular,aug,fri,72,1,999,1,failure,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +35,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,220,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +39,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,143,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +39,admin.,married,basic.4y,no,no,no,telephone,may,mon,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +43,management,married,professional.course,no,no,no,cellular,nov,tue,42,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +48,admin.,married,university.degree,no,yes,no,cellular,dec,mon,347,4,6,2,success,-3.0,92.713,-33.0,0.7170000000000001,5023.5,no +50,housemaid,married,basic.4y,no,yes,no,telephone,nov,tue,150,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +46,admin.,married,high.school,no,no,no,cellular,may,fri,318,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +59,technician,married,unknown,unknown,unknown,unknown,telephone,jun,thu,247,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +53,technician,married,unknown,no,no,no,telephone,jun,thu,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +59,retired,married,basic.9y,unknown,no,no,telephone,may,mon,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +41,management,divorced,basic.6y,no,yes,no,cellular,nov,thu,167,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +22,student,single,high.school,no,no,no,cellular,sep,wed,369,3,5,1,success,-1.1,94.199,-37.5,0.8859999999999999,4963.6,yes +49,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,mon,204,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +33,management,married,high.school,unknown,no,no,telephone,may,wed,353,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +55,management,married,university.degree,no,yes,no,telephone,nov,tue,47,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +44,technician,single,university.degree,no,no,no,cellular,nov,thu,284,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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,unknown,no,no,cellular,nov,wed,83,1,999,1,failure,-0.1,93.2,-42.0,4.12,5195.8,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 +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 +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 +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 +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 +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 +48,admin.,married,high.school,no,yes,yes,telephone,jun,thu,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,blue-collar,married,basic.6y,no,yes,no,cellular,jun,fri,106,1,999,2,failure,-1.7,94.055,-39.8,0.7070000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +32,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,housemaid,married,basic.4y,no,yes,yes,cellular,may,fri,340,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,239,5,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +31,admin.,single,university.degree,no,yes,no,telephone,mar,tue,295,1,3,2,success,-1.8,93.369,-34.8,0.6459999999999999,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +37,unemployed,married,professional.course,no,yes,no,telephone,may,wed,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,mon,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,married,professional.course,no,yes,no,cellular,nov,thu,144,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,management,married,university.degree,no,yes,yes,cellular,nov,tue,84,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +30,unemployed,married,high.school,no,no,yes,cellular,nov,tue,155,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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,married,basic.9y,no,no,no,cellular,mar,tue,180,2,999,0,nonexistent,-1.8,92.843,-50.0,1.7990000000000002,5099.1,yes +30,technician,married,university.degree,no,no,yes,cellular,nov,thu,180,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +58,retired,married,basic.4y,unknown,yes,no,telephone,jun,thu,179,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +50,blue-collar,divorced,basic.6y,no,yes,no,cellular,may,mon,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +53,admin.,divorced,university.degree,no,no,yes,cellular,nov,tue,172,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +29,management,single,university.degree,no,yes,no,cellular,may,fri,468,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +30,technician,single,professional.course,no,no,yes,cellular,nov,tue,835,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +54,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +46,admin.,married,high.school,no,no,no,telephone,jun,thu,428,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +31,technician,married,university.degree,no,no,no,telephone,jun,thu,983,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,yes +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 +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 +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 +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 +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 +33,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,184,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,technician,married,university.degree,no,yes,yes,cellular,mar,tue,113,1,999,1,failure,-1.8,92.843,-50.0,1.6869999999999998,5099.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 +39,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,122,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +39,technician,divorced,professional.course,no,unknown,unknown,telephone,may,mon,182,11,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +71,retired,married,university.degree,no,yes,no,cellular,aug,thu,1112,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8290000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,150,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +48,admin.,married,unknown,unknown,no,no,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +28,technician,single,university.degree,no,no,no,cellular,jul,tue,146,3,6,2,success,-1.7,94.215,-40.3,0.8759999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,services,divorced,high.school,no,no,no,telephone,nov,tue,236,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +60,admin.,married,professional.course,no,yes,no,telephone,may,mon,324,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +38,technician,single,university.degree,no,no,no,cellular,nov,tue,131,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,services,married,university.degree,no,yes,no,cellular,nov,tue,140,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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.1530000000000005,5195.8,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,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 +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 +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 +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 +58,housemaid,married,basic.4y,no,yes,no,telephone,jun,thu,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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,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,admin.,married,high.school,no,yes,no,cellular,sep,fri,434,2,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,yes +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 +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 +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 +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 +56,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,994,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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,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 +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 +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 +36,technician,divorced,professional.course,no,unknown,unknown,cellular,nov,thu,156,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +39,admin.,married,university.degree,no,yes,no,cellular,may,mon,156,7,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +36,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,768,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +59,admin.,single,professional.course,no,no,no,telephone,may,wed,291,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +35,technician,married,university.degree,no,no,no,cellular,nov,tue,90,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,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.1530000000000005,5195.8,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 +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 +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 +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 +30,technician,married,university.degree,unknown,no,no,telephone,jun,thu,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +50,admin.,married,university.degree,no,no,no,cellular,nov,mon,176,1,7,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +19,student,single,basic.9y,no,yes,no,cellular,may,tue,203,1,999,3,failure,-1.8,93.876,-40.0,0.6679999999999999,5008.7,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 +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 +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 +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 +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 +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 +36,self-employed,divorced,basic.4y,no,yes,no,telephone,jun,thu,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,419,5,3,2,success,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +31,technician,married,university.degree,no,yes,no,cellular,may,mon,50,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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,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 +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 +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 +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 +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 +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 +38,admin.,single,university.degree,no,yes,no,cellular,nov,thu,95,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +29,admin.,single,university.degree,no,yes,no,cellular,apr,wed,513,1,5,2,success,-1.8,93.075,-47.1,1.4980000000000002,5099.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 +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 +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 +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 +42,admin.,married,high.school,no,yes,no,telephone,may,wed,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +31,self-employed,married,university.degree,no,no,no,cellular,may,fri,704,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +29,admin.,single,high.school,no,yes,yes,cellular,mar,mon,257,1,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,yes +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 +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 +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 +49,management,married,university.degree,no,yes,no,cellular,nov,tue,116,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,entrepreneur,married,basic.9y,no,no,no,cellular,nov,thu,158,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,technician,single,university.degree,no,yes,yes,cellular,nov,tue,193,4,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +53,housemaid,married,unknown,no,yes,no,cellular,nov,thu,65,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +55,admin.,married,unknown,no,yes,yes,cellular,nov,thu,591,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,84,12,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +29,technician,married,university.degree,no,yes,no,cellular,nov,fri,210,1,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +38,technician,married,professional.course,no,yes,no,cellular,sep,fri,166,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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 +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 +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 +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 +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 +62,technician,married,unknown,no,no,yes,cellular,jul,mon,123,2,6,1,success,-1.7,94.215,-40.3,0.8270000000000001,4991.6,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 +33,admin.,single,university.degree,no,no,no,cellular,nov,tue,100,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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,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 +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 +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 +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 +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 +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 +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 +27,unknown,single,high.school,unknown,yes,no,cellular,may,mon,334,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,management,married,high.school,no,yes,yes,cellular,nov,tue,174,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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,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 +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 +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,457,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +28,student,single,basic.9y,no,yes,no,cellular,mar,tue,156,1,999,0,nonexistent,-1.8,92.843,-50.0,1.7990000000000002,5099.1,yes +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +39,admin.,married,high.school,no,yes,no,cellular,nov,thu,50,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +76,housemaid,married,basic.4y,no,no,no,cellular,jun,tue,296,5,999,0,nonexistent,-1.7,94.055,-39.8,0.7020000000000001,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +56,management,married,university.degree,no,yes,no,cellular,aug,tue,370,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,admin.,single,high.school,no,no,no,cellular,nov,tue,143,3,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,blue-collar,married,professional.course,unknown,no,no,cellular,nov,tue,214,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +44,admin.,married,university.degree,unknown,yes,no,telephone,jun,thu,18,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +43,entrepreneur,married,high.school,unknown,no,yes,cellular,nov,thu,274,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +29,services,divorced,high.school,no,yes,no,cellular,may,fri,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +51,housemaid,married,unknown,no,yes,no,cellular,aug,fri,121,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +43,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,may,mon,485,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +32,admin.,married,high.school,no,yes,no,cellular,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +18,student,single,unknown,no,yes,no,cellular,nov,tue,600,2,999,3,failure,-1.1,94.767,-50.8,1.0490000000000002,4963.6,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 +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,47,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,entrepreneur,divorced,high.school,no,yes,yes,cellular,nov,wed,258,2,999,1,failure,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +26,admin.,single,university.degree,no,no,no,cellular,oct,fri,306,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,admin.,single,university.degree,no,yes,no,cellular,aug,fri,119,1,999,1,failure,-2.9,92.201,-31.4,0.8809999999999999,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 +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 +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 +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 +50,unemployed,married,basic.4y,unknown,yes,no,telephone,may,mon,272,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,unemployed,divorced,high.school,no,no,yes,telephone,jun,thu,257,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +61,retired,married,basic.9y,no,yes,yes,cellular,sep,fri,104,2,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +38,admin.,married,university.degree,no,yes,no,telephone,jun,thu,197,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +29,technician,single,university.degree,no,no,no,cellular,jul,fri,1007,6,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,yes +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 +78,retired,divorced,basic.4y,no,yes,no,cellular,nov,thu,463,1,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +35,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,746,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,admin.,divorced,professional.course,no,no,no,cellular,nov,thu,80,5,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,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.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +92,retired,married,unknown,no,yes,no,cellular,may,thu,271,1,6,2,success,-1.8,93.876,-40.0,0.6829999999999999,5008.7,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,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 +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 +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 +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 +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 +46,entrepreneur,divorced,basic.9y,no,yes,no,cellular,nov,thu,201,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,241,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,yes,no,telephone,nov,thu,25,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +40,management,married,university.degree,no,no,no,telephone,jul,fri,367,2,3,2,success,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,entrepreneur,married,basic.6y,unknown,yes,no,cellular,may,mon,379,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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,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 +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 +43,management,married,basic.9y,no,yes,yes,cellular,aug,fri,233,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,retired,married,high.school,no,no,no,telephone,jun,thu,355,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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.,married,university.degree,no,yes,no,cellular,may,fri,101,2,999,3,failure,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,unknown,no,no,no,telephone,jun,thu,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,326,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +35,services,married,high.school,no,no,no,cellular,may,fri,125,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +41,admin.,divorced,university.degree,no,no,no,telephone,nov,thu,233,4,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +50,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,152,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +40,unemployed,divorced,high.school,no,no,yes,telephone,jun,thu,243,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +49,unemployed,married,professional.course,no,yes,no,telephone,nov,thu,226,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,self-employed,married,basic.4y,unknown,no,no,telephone,jun,thu,60,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +40,admin.,single,unknown,unknown,no,yes,telephone,may,mon,61,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,yes,yes,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +37,self-employed,single,basic.9y,no,yes,no,cellular,may,fri,82,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +40,services,single,university.degree,no,no,no,telephone,may,wed,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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.0760000000000005,5195.8,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 +47,entrepreneur,divorced,basic.9y,no,no,no,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +32,entrepreneur,married,basic.9y,no,no,no,cellular,nov,tue,432,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +36,admin.,single,university.degree,no,yes,no,cellular,jun,wed,883,1,999,1,failure,-1.7,94.055,-39.8,0.7390000000000001,4991.6,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 +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 +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 +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 +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 +28,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,505,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +54,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,138,1,7,2,failure,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,services,married,professional.course,no,no,no,telephone,may,mon,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +56,technician,single,professional.course,no,yes,no,cellular,nov,tue,116,6,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +44,technician,single,basic.9y,no,yes,no,telephone,jun,thu,113,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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,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 +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 +37,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +26,admin.,married,high.school,no,yes,no,cellular,nov,mon,432,5,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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.,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,technician,married,professional.course,unknown,no,no,telephone,may,wed,288,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +34,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,54,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,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.0760000000000005,5195.8,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 +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 +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 +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 +59,technician,married,professional.course,no,yes,no,cellular,aug,wed,210,4,999,0,nonexistent,-2.9,92.201,-31.4,0.8340000000000001,5076.2,yes +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,123,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +42,entrepreneur,married,basic.6y,no,yes,yes,cellular,may,fri,158,3,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,single,basic.9y,no,yes,no,cellular,nov,thu,220,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +34,technician,married,high.school,no,yes,yes,cellular,nov,thu,116,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +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,university.degree,no,no,no,cellular,apr,thu,662,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +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 +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 +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 +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 +32,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,mon,29,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,unknown,yes,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +44,services,married,high.school,no,no,no,cellular,may,fri,263,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +51,services,married,high.school,unknown,yes,yes,telephone,may,mon,94,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +37,technician,divorced,professional.course,no,no,no,cellular,may,mon,66,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +33,blue-collar,married,basic.6y,no,yes,no,cellular,apr,wed,165,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,services,married,high.school,no,no,no,telephone,jun,thu,231,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +24,services,single,high.school,no,unknown,unknown,telephone,may,wed,1307,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +35,self-employed,divorced,basic.9y,no,no,yes,telephone,may,mon,55,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +37,admin.,divorced,high.school,no,no,no,cellular,may,fri,11,8,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +55,technician,married,high.school,no,no,no,telephone,may,wed,214,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +57,retired,married,university.degree,no,yes,no,cellular,aug,wed,187,1,999,1,failure,-2.9,92.201,-31.4,0.8340000000000001,5076.2,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 +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 +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 +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 +37,admin.,married,high.school,no,no,no,telephone,apr,tue,426,2,999,0,nonexistent,-1.8,93.749,-34.6,0.6459999999999999,5008.7,yes +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 +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 +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 +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 +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 +40,technician,single,university.degree,no,no,no,cellular,nov,mon,141,3,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,no +36,services,married,basic.6y,unknown,yes,no,cellular,may,mon,102,6,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +51,management,married,university.degree,no,yes,no,cellular,may,mon,131,2,999,4,failure,-1.8,93.876,-40.0,0.6970000000000001,5008.7,no +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 +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 +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 +49,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,mon,290,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +56,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,110,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +39,admin.,married,high.school,no,yes,no,cellular,apr,wed,110,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +44,technician,married,professional.course,no,no,no,cellular,may,mon,132,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +43,self-employed,married,basic.9y,no,no,no,telephone,may,wed,173,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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,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 +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 +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 +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 +34,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,1094,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +45,blue-collar,single,professional.course,no,yes,no,cellular,may,fri,1954,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,893,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +32,admin.,single,university.degree,no,no,no,cellular,oct,wed,371,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +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 +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 +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 +45,technician,married,high.school,no,yes,no,cellular,nov,tue,79,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +42,entrepreneur,married,university.degree,no,no,no,telephone,may,mon,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +53,retired,divorced,high.school,no,yes,no,telephone,may,wed,111,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +44,blue-collar,married,high.school,no,no,no,telephone,may,wed,250,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,technician,married,basic.9y,no,no,no,cellular,may,fri,144,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,128,2,999,0,nonexistent,-1.7,94.215,-40.3,0.7929999999999999,4991.6,yes +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 +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 +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 +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 +40,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,student,single,high.school,no,no,no,cellular,aug,fri,292,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +61,retired,married,basic.4y,no,yes,no,cellular,nov,mon,301,1,9,3,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +18,student,single,unknown,no,no,no,telephone,sep,tue,401,2,999,0,nonexistent,-3.4,92.379,-29.8,0.7879999999999999,5017.5,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 +56,retired,married,basic.4y,no,no,no,cellular,nov,tue,130,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +35,technician,married,high.school,unknown,yes,no,cellular,may,fri,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +35,technician,married,professional.course,no,no,no,cellular,nov,thu,366,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,services,married,high.school,no,no,no,telephone,jun,thu,201,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,basic.9y,no,yes,no,cellular,jul,thu,55,14,999,0,nonexistent,1.4,93.918,-42.7,4.958,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 +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 +80,retired,divorced,basic.4y,no,no,no,cellular,oct,tue,125,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7440000000000001,5017.5,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 +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 +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 +57,management,married,university.degree,no,yes,yes,cellular,nov,tue,609,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +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 +45,management,married,basic.9y,no,yes,no,cellular,may,thu,165,1,999,3,failure,-1.8,93.876,-40.0,0.6920000000000001,5008.7,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.1530000000000005,5195.8,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 +22,student,single,high.school,no,no,no,cellular,may,fri,312,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,management,married,university.degree,no,yes,no,cellular,nov,thu,149,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,admin.,married,basic.9y,no,yes,no,telephone,jun,thu,622,4,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,57,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +33,admin.,single,high.school,no,no,no,cellular,nov,tue,436,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,admin.,single,high.school,no,no,no,cellular,nov,thu,40,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +28,admin.,single,university.degree,no,yes,no,cellular,nov,thu,189,2,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,no +58,retired,married,university.degree,no,yes,no,cellular,aug,fri,92,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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,cellular,aug,mon,207,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,entrepreneur,married,university.degree,unknown,yes,yes,cellular,nov,tue,157,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.8580000000000005,5191.0,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.3130000000000002,5099.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 +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 +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 +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 +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 +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,admin.,single,university.degree,no,yes,no,cellular,nov,thu,1816,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,128,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +31,admin.,divorced,university.degree,no,no,no,telephone,may,mon,53,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +45,admin.,single,high.school,no,yes,no,cellular,may,mon,276,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +31,technician,married,professional.course,no,yes,no,cellular,apr,wed,131,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.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 +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 +34,technician,single,basic.9y,no,no,no,cellular,aug,mon,205,3,6,3,success,-1.7,94.027,-38.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +57,management,married,university.degree,no,yes,no,cellular,nov,tue,93,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +27,admin.,single,basic.9y,no,yes,yes,telephone,may,wed,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +32,technician,single,university.degree,unknown,no,no,telephone,may,wed,857,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +40,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,356,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,management,divorced,basic.6y,no,yes,no,cellular,nov,thu,147,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +41,admin.,married,university.degree,unknown,yes,no,cellular,may,fri,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +51,entrepreneur,divorced,university.degree,no,no,no,cellular,may,mon,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +43,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,88,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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.4980000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,management,divorced,university.degree,no,no,no,cellular,sep,tue,190,3,6,1,success,-1.1,94.199,-37.5,0.8809999999999999,4963.6,yes +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,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 +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 +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 +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 +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 +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,86,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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,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 +43,admin.,divorced,basic.9y,no,yes,no,cellular,may,mon,47,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +74,retired,divorced,basic.4y,no,yes,yes,cellular,jul,wed,106,2,999,0,nonexistent,-1.7,94.215,-40.3,0.8959999999999999,4991.6,no +37,management,married,unknown,no,no,no,cellular,nov,thu,171,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,services,married,high.school,no,no,no,telephone,jun,thu,511,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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.3130000000000002,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 +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 +33,services,divorced,high.school,no,no,yes,cellular,nov,thu,98,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +31,admin.,divorced,university.degree,no,no,no,cellular,may,mon,239,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +58,management,divorced,university.degree,no,no,no,telephone,nov,wed,139,1,999,0,nonexistent,-0.1,93.2,-42.0,4.2860000000000005,5195.8,yes +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,married,professional.course,no,no,no,telephone,may,mon,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +49,blue-collar,single,high.school,no,yes,yes,cellular,may,mon,217,6,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +84,retired,married,basic.9y,no,yes,no,cellular,may,wed,267,1,999,1,failure,-1.8,93.876,-40.0,0.6970000000000001,5008.7,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 +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 +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 +34,admin.,married,university.degree,no,no,yes,cellular,sep,wed,245,3,999,0,nonexistent,-1.1,94.199,-37.5,0.8859999999999999,4963.6,yes +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 +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 +47,blue-collar,married,basic.9y,unknown,yes,no,telephone,nov,thu,76,9,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +38,blue-collar,single,high.school,no,yes,no,cellular,may,fri,81,3,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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,university.degree,no,yes,no,cellular,oct,wed,467,2,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes +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,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 +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 +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 +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 +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 +49,management,married,university.degree,no,yes,no,telephone,may,wed,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +31,admin.,single,university.degree,no,yes,no,telephone,jun,thu,237,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,married,high.school,no,yes,no,cellular,nov,thu,167,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +32,blue-collar,single,university.degree,unknown,yes,yes,cellular,nov,tue,119,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +33,admin.,married,university.degree,no,yes,no,cellular,may,fri,663,3,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,761,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,yes +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 +45,management,single,basic.9y,no,yes,no,cellular,nov,thu,165,3,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,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 +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 +40,services,single,high.school,unknown,no,no,cellular,may,fri,239,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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.4y,unknown,no,no,cellular,jul,fri,202,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,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 +25,admin.,single,unknown,no,yes,no,telephone,nov,mon,643,4,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +29,technician,single,university.degree,no,yes,no,cellular,nov,thu,93,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +40,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,171,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +76,retired,divorced,basic.4y,no,no,no,cellular,sep,tue,221,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7879999999999999,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,management,married,university.degree,no,no,no,cellular,may,fri,316,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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.,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 +40,services,married,basic.4y,unknown,no,no,cellular,may,fri,308,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +31,management,single,university.degree,no,yes,no,cellular,may,mon,125,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +29,technician,single,university.degree,no,yes,no,telephone,may,mon,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +53,management,married,university.degree,no,yes,no,cellular,nov,thu,186,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +32,self-employed,single,university.degree,no,yes,no,telephone,nov,thu,93,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +49,entrepreneur,married,high.school,unknown,yes,no,cellular,nov,thu,611,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +27,admin.,single,high.school,no,no,no,cellular,jun,tue,586,2,999,0,nonexistent,-1.7,94.055,-39.8,0.7609999999999999,4991.6,yes +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 +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 +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 +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,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 +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 +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,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 +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 +33,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,175,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +32,admin.,married,university.degree,no,no,no,cellular,nov,thu,165,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,single,university.degree,no,no,no,cellular,may,mon,386,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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,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 +38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,163,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +54,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +32,admin.,married,professional.course,no,yes,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +24,technician,single,university.degree,no,yes,yes,cellular,nov,tue,467,3,6,3,failure,-1.1,94.767,-50.8,1.0490000000000002,4963.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +29,management,single,university.degree,no,no,no,cellular,nov,tue,232,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +30,technician,married,university.degree,no,no,no,cellular,nov,thu,85,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +34,admin.,single,university.degree,no,no,yes,telephone,may,wed,110,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +55,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,303,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +42,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,120,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +57,retired,married,basic.4y,unknown,yes,no,telephone,may,mon,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +32,admin.,married,university.degree,no,yes,no,cellular,aug,fri,88,5,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +72,retired,married,basic.4y,no,no,yes,cellular,jul,fri,483,4,8,1,success,-1.7,94.215,-40.3,0.8220000000000001,4991.6,yes +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 +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 +36,management,married,university.degree,no,no,no,cellular,jun,tue,265,1,999,1,failure,-1.7,94.055,-39.8,0.7609999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,131,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +38,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,23,16,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,741,4,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +36,blue-collar,married,basic.9y,no,unknown,unknown,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,technician,married,basic.9y,no,yes,no,cellular,may,mon,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +58,management,married,university.degree,no,no,no,cellular,may,thu,289,1,3,4,success,-1.8,93.876,-40.0,0.6829999999999999,5008.7,yes +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 +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 +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 +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 +38,admin.,married,high.school,no,no,no,telephone,jul,tue,5,1,999,1,failure,-1.7,94.215,-40.3,0.8759999999999999,4991.6,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 +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 +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 +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 +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 +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 +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 +58,retired,married,basic.4y,no,no,no,cellular,sep,wed,394,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,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.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +33,blue-collar,married,basic.9y,no,unknown,unknown,cellular,nov,tue,111,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +32,blue-collar,married,basic.9y,no,no,no,telephone,nov,tue,296,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +32,management,single,university.degree,no,no,no,cellular,nov,thu,500,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +56,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,thu,212,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +32,entrepreneur,single,university.degree,no,no,yes,cellular,nov,thu,67,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +37,entrepreneur,married,basic.6y,no,yes,no,cellular,aug,fri,148,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,admin.,married,university.degree,no,no,no,telephone,jun,thu,47,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,admin.,married,high.school,no,yes,no,cellular,nov,thu,790,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +32,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +21,student,single,high.school,no,yes,no,cellular,apr,fri,551,1,999,0,nonexistent,-1.8,93.749,-34.6,0.6629999999999999,5008.7,yes +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 +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 +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 +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 +49,admin.,divorced,high.school,no,no,no,cellular,may,mon,128,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +33,admin.,single,high.school,no,yes,no,cellular,aug,fri,182,2,999,1,failure,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +58,technician,married,unknown,no,no,no,cellular,nov,tue,82,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +36,admin.,single,university.degree,no,no,no,cellular,nov,thu,642,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +61,retired,married,basic.9y,no,no,no,cellular,aug,fri,99,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +82,retired,married,university.degree,no,yes,no,cellular,oct,tue,215,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7440000000000001,5017.5,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 +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 +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 +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 +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 +31,admin.,married,university.degree,no,yes,no,cellular,may,mon,712,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +50,self-employed,married,basic.4y,unknown,no,yes,telephone,may,wed,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +30,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,single,high.school,no,no,no,telephone,nov,fri,53,3,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +38,entrepreneur,married,basic.4y,no,yes,yes,cellular,nov,tue,224,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +20,technician,single,professional.course,no,yes,no,telephone,jun,tue,52,1,999,1,failure,-1.7,94.055,-39.8,0.7020000000000001,4991.6,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 +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.6y,unknown,no,no,telephone,may,tue,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191.0,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,admin.,single,university.degree,no,no,no,cellular,nov,thu,757,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,338,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,services,married,high.school,unknown,yes,no,cellular,nov,thu,255,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +73,retired,divorced,high.school,no,no,yes,cellular,dec,tue,63,3,6,2,success,-3.0,92.713,-33.0,0.7070000000000001,5023.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,admin.,married,high.school,no,no,no,telephone,may,mon,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +41,services,divorced,high.school,no,yes,no,cellular,may,mon,622,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +29,services,married,basic.9y,no,yes,yes,cellular,nov,thu,142,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,housemaid,single,basic.9y,no,yes,no,cellular,may,mon,279,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,technician,married,professional.course,no,no,yes,cellular,sep,fri,520,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,yes +32,unemployed,married,high.school,no,yes,no,cellular,nov,thu,728,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,admin.,divorced,university.degree,no,no,yes,telephone,sep,wed,173,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8759999999999999,4963.6,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 +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 +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 +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 +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 +51,retired,married,basic.9y,no,yes,no,cellular,nov,thu,259,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,no +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 +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,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 +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 +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 +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 +34,technician,married,professional.course,no,yes,no,cellular,nov,tue,333,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +38,technician,married,university.degree,no,yes,no,cellular,mar,tue,122,1,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +51,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,mon,231,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +46,admin.,married,university.degree,no,no,no,cellular,may,thu,154,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6920000000000001,5008.7,yes +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 +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 +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 +31,admin.,married,professional.course,no,no,no,cellular,mar,mon,161,2,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +34,self-employed,single,professional.course,no,yes,no,cellular,may,fri,76,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,management,single,university.degree,no,yes,no,telephone,nov,thu,207,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +50,management,married,university.degree,no,yes,no,cellular,nov,tue,94,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,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 +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 +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 +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 +44,blue-collar,married,basic.6y,no,yes,yes,telephone,may,mon,668,7,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,single,high.school,no,no,yes,cellular,may,fri,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,622,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,entrepreneur,married,professional.course,unknown,no,no,cellular,may,mon,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +23,student,single,professional.course,no,yes,no,cellular,sep,wed,316,1,8,2,success,-1.1,94.199,-37.5,0.8759999999999999,4963.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,technician,married,professional.course,no,no,no,cellular,nov,tue,91,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +80,retired,divorced,basic.4y,no,no,no,cellular,oct,tue,96,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7440000000000001,5017.5,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.1530000000000005,5195.8,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 +43,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +31,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,thu,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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.8660000000000005,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 +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 +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 +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 +41,management,married,university.degree,no,yes,no,cellular,nov,tue,57,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +29,housemaid,married,high.school,no,yes,no,cellular,nov,thu,408,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +47,admin.,divorced,high.school,no,no,no,cellular,nov,tue,352,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +41,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,96,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +57,technician,single,professional.course,no,yes,no,telephone,jun,thu,451,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +43,admin.,married,high.school,no,no,no,telephone,may,wed,726,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +29,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,mon,224,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +31,technician,single,unknown,unknown,yes,no,cellular,nov,thu,276,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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.,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 +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 +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 +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 +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 +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 +37,services,single,professional.course,no,yes,no,cellular,may,fri,279,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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,technician,married,high.school,no,no,no,cellular,may,mon,40,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +33,unemployed,married,university.degree,no,yes,no,telephone,jul,fri,25,1,999,0,nonexistent,-1.7,94.215,-40.3,0.8220000000000001,4991.6,no +29,admin.,single,basic.9y,no,no,no,cellular,may,mon,177,4,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +34,admin.,single,university.degree,no,no,no,telephone,jun,thu,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,thu,628,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,admin.,married,university.degree,no,no,no,cellular,nov,thu,96,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,no +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 +34,services,married,high.school,no,no,no,telephone,may,wed,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +24,admin.,single,high.school,no,no,no,telephone,jun,thu,131,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +70,retired,married,professional.course,no,no,no,cellular,aug,fri,70,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +40,management,married,unknown,no,yes,no,cellular,nov,thu,165,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +19,student,single,unknown,no,no,no,cellular,nov,mon,132,2,3,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +36,management,married,university.degree,no,no,no,telephone,jun,thu,22,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +38,self-employed,divorced,high.school,no,no,no,cellular,aug,fri,391,3,999,1,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +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 +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 +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 +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 +34,admin.,single,university.degree,unknown,no,no,telephone,jun,thu,17,16,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +41,services,single,basic.9y,no,no,no,cellular,nov,thu,146,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +28,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,mon,267,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,services,married,university.degree,no,yes,no,cellular,may,mon,105,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,unemployed,single,university.degree,no,yes,yes,cellular,jul,wed,314,1,5,2,success,-1.7,94.215,-40.3,0.8809999999999999,4991.6,yes +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +24,technician,single,university.degree,no,no,no,cellular,oct,wed,197,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,management,married,university.degree,no,no,no,cellular,may,fri,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +52,management,married,basic.4y,unknown,no,no,telephone,may,mon,88,35,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,basic.6y,unknown,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.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 +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 +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 +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 +42,services,married,basic.9y,unknown,no,no,telephone,may,mon,173,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +76,retired,married,professional.course,unknown,yes,no,cellular,jun,tue,295,1,9,2,success,-1.7,94.055,-39.8,0.7609999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,266,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +29,admin.,single,university.degree,no,no,no,cellular,nov,thu,134,2,9,2,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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,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 +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 +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 +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 +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 +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 +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 +48,admin.,married,university.degree,no,yes,no,telephone,may,mon,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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.8580000000000005,5191.0,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.1530000000000005,5195.8,no +52,services,married,university.degree,no,yes,no,telephone,may,wed,370,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +56,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,147,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +26,admin.,single,high.school,no,no,no,cellular,may,mon,610,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,technician,married,professional.course,no,no,no,cellular,may,mon,72,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,student,single,high.school,no,no,yes,cellular,jun,thu,176,2,12,2,failure,-1.7,94.055,-39.8,0.7290000000000001,4991.6,yes +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 +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 +32,admin.,married,university.degree,no,yes,no,cellular,nov,thu,155,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +36,technician,single,professional.course,no,no,yes,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,management,divorced,university.degree,no,no,no,telephone,jun,thu,20,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +37,self-employed,married,high.school,no,no,yes,telephone,may,wed,394,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +48,admin.,married,high.school,no,yes,no,telephone,may,mon,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +35,admin.,single,university.degree,no,yes,no,cellular,may,mon,75,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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.7390000000000001,5017.5,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 +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 +56,services,divorced,high.school,unknown,yes,no,cellular,may,mon,125,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +38,admin.,married,high.school,no,no,no,cellular,may,fri,217,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,technician,married,university.degree,no,no,no,telephone,nov,thu,172,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +68,management,married,basic.9y,no,yes,no,cellular,dec,thu,97,1,999,2,failure,-3.0,92.713,-33.0,0.7120000000000001,5023.5,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 +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 +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 +49,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,86,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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,married,basic.4y,unknown,no,no,cellular,may,fri,612,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +37,housemaid,married,university.degree,no,yes,no,telephone,nov,wed,129,1,999,0,nonexistent,-0.1,93.2,-42.0,4.2860000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +62,admin.,divorced,university.degree,no,yes,no,cellular,nov,wed,572,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7190000000000001,5017.5,no +29,admin.,single,high.school,no,yes,no,telephone,may,mon,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +54,services,married,basic.9y,no,yes,yes,cellular,nov,mon,175,3,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +47,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,tue,62,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,entrepreneur,married,professional.course,no,no,no,cellular,nov,tue,1855,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +70,retired,divorced,professional.course,no,yes,no,telephone,sep,wed,380,4,999,0,nonexistent,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +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 +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 +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 +38,technician,married,university.degree,no,yes,no,cellular,aug,wed,220,5,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,no +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 +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 +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 +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 +40,management,married,university.degree,no,no,no,cellular,nov,tue,1122,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,53,29,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,divorced,university.degree,no,no,yes,cellular,nov,tue,198,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +39,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,343,2,14,1,success,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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,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 +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,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 +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 +59,retired,divorced,basic.4y,no,yes,yes,cellular,jul,mon,796,1,6,1,success,-1.7,94.215,-40.3,0.8270000000000001,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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,jul,mon,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +36,admin.,married,high.school,no,yes,no,cellular,nov,thu,59,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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.9y,no,yes,no,telephone,jun,tue,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,management,married,university.degree,no,yes,no,cellular,mar,tue,225,5,999,0,nonexistent,-1.8,92.843,-50.0,1.7990000000000002,5099.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 +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 +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 +29,admin.,single,basic.9y,unknown,no,no,telephone,may,mon,333,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,single,university.degree,no,no,yes,cellular,nov,thu,264,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +40,services,divorced,high.school,no,no,no,telephone,jun,thu,265,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,management,single,university.degree,no,no,no,telephone,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,313,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +27,technician,single,university.degree,no,yes,no,cellular,dec,tue,1370,3,6,2,success,-3.0,92.713,-33.0,0.7070000000000001,5023.5,yes +36,self-employed,married,basic.9y,no,yes,yes,cellular,nov,thu,151,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,admin.,married,professional.course,no,no,no,cellular,sep,wed,953,2,999,0,nonexistent,-1.1,94.199,-37.5,0.8759999999999999,4963.6,yes +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 +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 +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 +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 +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 +36,services,married,high.school,no,yes,yes,cellular,sep,wed,569,3,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +64,retired,married,university.degree,no,no,no,cellular,aug,fri,102,1,999,1,failure,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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.,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 +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 +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 +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 +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 +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 +31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,239,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +32,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,83,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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.7140000000000001,5017.5,yes +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 +35,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,419,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +46,housemaid,married,high.school,no,yes,no,cellular,aug,fri,358,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +23,technician,single,professional.course,unknown,yes,yes,cellular,jun,tue,421,1,4,3,success,-1.7,94.055,-39.8,0.7020000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,tue,54,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +42,self-employed,married,high.school,unknown,yes,no,cellular,nov,thu,77,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,no,yes,cellular,sep,wed,242,2,999,1,failure,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +34,self-employed,single,basic.9y,no,no,no,cellular,nov,thu,91,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +30,services,single,high.school,no,yes,no,cellular,may,mon,288,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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.3130000000000002,5099.1,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 +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 +28,admin.,single,university.degree,no,no,no,cellular,oct,fri,317,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +62,retired,married,high.school,no,no,no,cellular,oct,wed,210,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +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 +53,services,divorced,university.degree,no,yes,yes,cellular,nov,tue,105,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +29,admin.,single,high.school,no,no,no,telephone,may,wed,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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,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 +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 +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 +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 +25,student,single,high.school,no,yes,yes,cellular,jun,tue,660,2,6,3,success,-1.7,94.055,-39.8,0.7609999999999999,4991.6,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 +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 +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 +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 +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 +24,technician,single,basic.9y,no,yes,no,cellular,may,mon,111,6,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,management,married,university.degree,no,no,no,cellular,nov,thu,1256,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +52,technician,married,professional.course,no,yes,no,cellular,nov,fri,259,1,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,admin.,single,high.school,no,yes,no,cellular,may,thu,457,2,999,1,failure,-1.8,93.876,-40.0,0.6829999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +34,technician,married,professional.course,no,yes,no,cellular,apr,fri,211,2,6,2,success,-1.8,93.749,-34.6,0.6629999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,technician,married,professional.course,no,yes,no,cellular,nov,tue,149,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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,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 +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 +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 +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.,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,self-employed,single,professional.course,no,yes,no,cellular,nov,thu,361,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,34,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,technician,divorced,high.school,no,yes,no,cellular,nov,thu,94,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +36,management,married,high.school,unknown,yes,no,cellular,nov,thu,74,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +53,technician,divorced,high.school,no,no,no,cellular,nov,thu,290,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +52,admin.,married,university.degree,no,no,no,cellular,mar,tue,231,1,6,2,success,-1.8,93.369,-34.8,0.6459999999999999,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +52,management,married,university.degree,no,yes,no,cellular,nov,thu,179,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +69,retired,married,basic.9y,no,yes,no,cellular,sep,wed,71,1,5,1,success,-3.4,92.379,-29.8,0.7809999999999999,5017.5,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 +35,admin.,married,university.degree,no,no,no,cellular,aug,fri,201,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +35,blue-collar,married,basic.6y,no,yes,no,cellular,nov,tue,372,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +42,self-employed,married,university.degree,no,no,no,telephone,may,wed,518,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +34,unemployed,married,high.school,no,yes,no,cellular,nov,thu,562,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,wed,161,2,999,1,failure,-1.8,93.075,-47.1,1.4980000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,services,married,high.school,unknown,no,no,cellular,nov,tue,80,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,529,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +33,blue-collar,single,basic.6y,no,unknown,unknown,cellular,may,fri,295,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +31,admin.,married,high.school,no,no,no,telephone,may,wed,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +37,services,married,basic.6y,no,no,no,telephone,may,wed,155,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,management,married,basic.9y,no,unknown,unknown,cellular,nov,tue,373,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +33,unemployed,divorced,professional.course,no,unknown,unknown,telephone,may,mon,446,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +51,unemployed,divorced,high.school,unknown,yes,no,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,entrepreneur,single,basic.9y,no,no,no,cellular,nov,tue,386,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +33,services,married,basic.6y,no,yes,no,cellular,may,mon,72,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,admin.,married,university.degree,no,no,no,telephone,nov,thu,71,1,13,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,technician,divorced,high.school,no,yes,no,telephone,may,mon,457,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +38,services,married,basic.6y,no,yes,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +65,retired,married,basic.4y,no,yes,no,cellular,mar,tue,189,1,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,professional.course,no,no,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,entrepreneur,married,university.degree,no,no,no,cellular,may,fri,17,5,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +31,technician,single,unknown,unknown,no,no,cellular,nov,thu,63,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +36,admin.,single,high.school,no,yes,no,cellular,oct,mon,113,1,6,1,success,-3.4,92.431,-26.9,0.7390000000000001,5017.5,no +39,technician,single,professional.course,unknown,yes,no,cellular,may,fri,264,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,single,basic.4y,no,yes,yes,cellular,nov,thu,104,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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,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 +39,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,583,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +52,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,202,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,housemaid,single,high.school,no,no,no,telephone,may,mon,1203,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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,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 +34,admin.,single,university.degree,no,no,no,cellular,nov,thu,169,1,7,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +29,admin.,divorced,high.school,no,yes,yes,cellular,may,mon,78,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +33,admin.,single,professional.course,no,no,no,telephone,jun,thu,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,self-employed,single,university.degree,no,yes,no,cellular,sep,tue,445,2,999,0,nonexistent,-3.4,92.379,-29.8,0.7879999999999999,5017.5,yes +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 +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 +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 +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 +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 +48,services,married,high.school,unknown,yes,yes,telephone,may,mon,115,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +76,management,married,unknown,no,no,no,cellular,sep,fri,879,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,yes +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 +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 +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 +51,admin.,married,university.degree,no,yes,no,cellular,aug,thu,212,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8290000000000001,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 +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 +44,management,married,basic.9y,no,no,no,cellular,nov,tue,638,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +26,student,single,high.school,no,yes,no,cellular,may,mon,73,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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.8660000000000005,5228.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,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 +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 +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 +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 +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 +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 +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 +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 +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 +62,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,mon,152,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +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 +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 +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 +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 +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 +34,technician,married,university.degree,no,no,no,cellular,nov,thu,183,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +39,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,mon,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +56,unknown,married,basic.4y,no,no,no,cellular,oct,tue,480,1,2,2,success,-3.4,92.431,-26.9,0.7440000000000001,5017.5,yes +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 +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 +34,management,married,university.degree,no,no,no,telephone,nov,thu,29,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +78,unknown,married,unknown,no,yes,no,cellular,sep,wed,234,1,999,1,failure,-3.4,92.379,-29.8,0.7809999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +77,retired,divorced,basic.4y,no,no,no,cellular,may,tue,393,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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 +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 +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 +39,admin.,single,high.school,no,yes,no,cellular,oct,fri,132,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +50,blue-collar,married,unknown,unknown,yes,yes,telephone,may,mon,10,8,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +33,services,single,high.school,no,yes,no,cellular,may,fri,557,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,blue-collar,married,professional.course,no,yes,no,telephone,nov,tue,15,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,management,married,university.degree,no,no,no,telephone,jun,thu,175,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +29,admin.,single,university.degree,no,no,yes,cellular,apr,wed,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.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 +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 +29,unemployed,married,basic.4y,unknown,yes,no,cellular,nov,thu,166,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,1149,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +64,housemaid,married,basic.4y,no,no,no,cellular,dec,thu,422,1,6,2,success,-3.0,92.713,-33.0,0.7140000000000001,5023.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,136,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +49,blue-collar,single,unknown,unknown,yes,no,cellular,may,fri,347,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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,management,married,university.degree,no,yes,no,telephone,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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,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 +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 +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 +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 +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 +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 +30,services,married,high.school,no,yes,no,cellular,nov,tue,493,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,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 +33,technician,divorced,professional.course,no,yes,no,cellular,nov,thu,104,3,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +39,admin.,single,high.school,no,yes,no,cellular,mar,tue,395,3,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.1,yes +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 +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 +34,services,married,basic.9y,no,yes,yes,telephone,may,wed,369,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +40,technician,single,university.degree,no,yes,no,cellular,nov,mon,139,2,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,no +81,retired,divorced,basic.4y,no,yes,no,cellular,dec,fri,166,3,999,0,nonexistent,-3.0,92.713,-33.0,0.7140000000000001,5023.5,yes +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 +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 +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 +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 +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 +46,unemployed,married,high.school,unknown,yes,no,cellular,nov,tue,81,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,high.school,no,yes,no,cellular,jul,fri,251,1,999,1,failure,-1.7,94.215,-40.3,0.885,4991.6,yes +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 +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 +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 +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 +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 +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 +51,technician,married,professional.course,no,yes,no,cellular,nov,thu,123,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +34,services,single,high.school,no,no,no,telephone,jun,thu,729,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +54,management,married,university.degree,no,no,no,cellular,nov,tue,244,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +29,admin.,single,high.school,no,no,no,cellular,may,fri,553,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +50,admin.,single,basic.9y,unknown,no,yes,telephone,may,mon,52,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +52,technician,married,professional.course,no,yes,no,cellular,nov,fri,632,1,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,technician,married,professional.course,no,no,no,cellular,may,fri,158,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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,high.school,no,yes,no,telephone,jun,fri,145,24,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,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 +47,services,married,high.school,no,unknown,unknown,cellular,nov,tue,125,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.8580000000000005,5191.0,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 +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,166,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,retired,married,high.school,unknown,no,no,telephone,may,wed,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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,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 +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,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 +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 +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 +29,management,single,university.degree,no,yes,yes,telephone,may,mon,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +35,admin.,single,university.degree,no,no,yes,cellular,may,fri,174,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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.3130000000000002,5099.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 +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 +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 +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 +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 +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 +51,admin.,married,basic.9y,no,no,yes,cellular,nov,tue,515,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +29,technician,single,basic.9y,no,yes,no,cellular,may,mon,170,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +32,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,205,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +36,self-employed,single,university.degree,no,yes,no,telephone,may,mon,39,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +50,admin.,married,university.degree,no,no,no,cellular,aug,tue,587,2,999,1,failure,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +34,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +39,admin.,married,high.school,no,yes,no,cellular,apr,wed,286,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,admin.,single,university.degree,no,yes,no,cellular,sep,tue,386,3,6,3,success,-1.1,94.199,-37.5,0.8809999999999999,4963.6,yes +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 +50,blue-collar,married,unknown,unknown,yes,no,cellular,may,mon,96,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,married,basic.4y,no,no,yes,cellular,may,mon,255,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +33,admin.,married,university.degree,no,no,no,telephone,nov,mon,98,1,999,0,nonexistent,-0.1,93.2,-42.0,4.7330000000000005,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 +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 +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 +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 +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,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 +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 +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,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,313,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +47,technician,married,professional.course,no,no,no,telephone,jul,fri,320,2,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,no +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,single,university.degree,no,yes,no,telephone,nov,thu,105,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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.,married,unknown,no,no,no,cellular,jul,mon,234,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,single,high.school,no,no,no,telephone,may,wed,860,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,services,married,high.school,no,yes,yes,cellular,may,fri,302,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +44,technician,divorced,professional.course,no,no,no,telephone,may,wed,445,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +30,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,142,3,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +56,management,married,university.degree,no,yes,no,cellular,nov,tue,125,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,90,4,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +58,technician,divorced,basic.9y,no,no,no,cellular,nov,thu,178,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +32,admin.,married,high.school,unknown,yes,no,telephone,may,fri,17,9,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,technician,married,university.degree,no,yes,no,cellular,may,mon,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +63,management,married,unknown,no,yes,no,cellular,sep,fri,156,2,999,2,failure,-3.4,92.379,-29.8,0.8029999999999999,5017.5,no +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 +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 +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 +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 +38,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,213,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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,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 +47,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,955,4,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +32,technician,married,professional.course,no,no,yes,telephone,may,mon,142,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,married,high.school,no,yes,no,telephone,nov,thu,72,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +35,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,365,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,705,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +47,management,married,basic.4y,unknown,no,no,telephone,may,mon,268,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +56,blue-collar,single,basic.4y,unknown,no,yes,cellular,nov,tue,307,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,high.school,unknown,yes,yes,telephone,jun,mon,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,self-employed,married,university.degree,no,unknown,unknown,telephone,may,mon,167,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +60,housemaid,married,high.school,unknown,yes,no,telephone,may,wed,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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,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 +47,admin.,single,university.degree,no,yes,no,cellular,jun,tue,119,1,999,4,failure,-1.7,94.055,-39.8,0.7020000000000001,4991.6,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 +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 +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 +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 +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 +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 +32,unemployed,married,university.degree,no,no,no,cellular,nov,tue,329,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,management,married,university.degree,no,yes,no,cellular,oct,wed,1118,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +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 +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 +53,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,mon,267,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +62,technician,married,unknown,no,no,no,cellular,jul,mon,262,2,999,2,failure,-1.7,94.215,-40.3,0.8270000000000001,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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,high.school,no,yes,no,telephone,jun,tue,229,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,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 +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 +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 +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 +51,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,267,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +36,management,married,high.school,unknown,yes,no,cellular,nov,thu,371,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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,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 +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 +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 +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 +47,services,married,high.school,no,no,yes,cellular,may,fri,506,2,999,2,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +49,technician,married,professional.course,no,no,no,cellular,nov,tue,267,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.8660000000000005,5228.1,no +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 +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 +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 +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 +25,services,single,high.school,no,no,no,cellular,aug,fri,553,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +34,technician,single,university.degree,no,yes,no,cellular,jul,mon,251,3,999,0,nonexistent,-1.7,94.215,-40.3,0.7929999999999999,4991.6,yes +35,admin.,single,high.school,no,unknown,unknown,cellular,may,fri,579,2,10,1,success,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +19,student,single,high.school,no,yes,no,cellular,dec,thu,110,2,999,3,failure,-3.0,92.713,-33.0,0.7120000000000001,5023.5,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 +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 +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 +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 +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 +55,self-employed,married,university.degree,unknown,no,no,cellular,may,mon,217,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +67,retired,married,professional.course,no,no,no,telephone,oct,mon,270,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +31,admin.,single,high.school,no,yes,no,cellular,aug,tue,243,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +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 +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 +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 +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 +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,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 +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 +48,unemployed,married,university.degree,no,no,yes,cellular,mar,mon,151,1,999,1,failure,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +76,retired,married,basic.4y,no,yes,no,cellular,aug,fri,406,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8490000000000001,5076.2,no +43,admin.,divorced,high.school,no,no,no,telephone,may,mon,311,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +38,admin.,single,basic.9y,no,no,no,cellular,may,thu,275,2,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +22,admin.,single,university.degree,no,no,no,cellular,jun,wed,407,1,3,1,success,-1.7,94.055,-39.8,0.7040000000000001,4991.6,yes +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 +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 +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 +34,services,married,high.school,no,yes,no,cellular,nov,thu,640,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +25,technician,single,university.degree,no,yes,no,cellular,aug,fri,142,2,999,1,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +20,student,single,high.school,no,no,no,cellular,aug,fri,190,2,999,1,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +35,entrepreneur,married,university.degree,no,no,no,cellular,may,fri,270,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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,admin.,married,high.school,no,no,no,telephone,may,wed,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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.3130000000000002,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,divorced,basic.9y,no,yes,no,cellular,may,mon,226,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +33,services,single,high.school,no,yes,no,cellular,nov,thu,100,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +43,management,married,university.degree,no,yes,no,cellular,nov,tue,89,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +60,technician,divorced,professional.course,unknown,yes,no,telephone,may,wed,202,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,518,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +38,admin.,married,university.degree,no,yes,no,cellular,nov,mon,210,3,999,0,nonexistent,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,services,single,high.school,no,no,no,cellular,nov,thu,91,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +38,technician,married,professional.course,no,no,no,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,124,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +40,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,tue,113,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +76,retired,married,basic.4y,no,no,no,cellular,aug,fri,61,1,999,1,failure,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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.2990000000000002,5099.1,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 +55,blue-collar,single,basic.6y,no,yes,no,cellular,nov,tue,204,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +32,services,single,high.school,no,yes,no,cellular,may,fri,583,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,blue-collar,divorced,basic.9y,no,yes,yes,cellular,nov,thu,215,6,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +48,services,married,high.school,no,no,no,telephone,sep,tue,11,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8809999999999999,4963.6,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 +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 +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 +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 +48,technician,married,professional.course,no,no,no,cellular,jul,tue,288,1,999,1,failure,-1.7,94.215,-40.3,0.8759999999999999,4991.6,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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,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 +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 +31,blue-collar,single,high.school,no,yes,no,cellular,mar,tue,272,1,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.1,yes +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 +40,services,married,basic.6y,no,no,no,cellular,nov,thu,215,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +31,management,single,university.degree,no,no,no,cellular,nov,thu,319,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +31,blue-collar,single,basic.4y,no,no,no,cellular,nov,thu,148,6,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +75,retired,married,basic.4y,no,yes,yes,cellular,jul,fri,67,2,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,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 +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 +33,admin.,married,university.degree,no,no,no,telephone,may,mon,643,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +56,management,married,university.degree,no,yes,no,cellular,nov,mon,124,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +48,admin.,married,unknown,unknown,no,no,cellular,nov,tue,319,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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.,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 +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 +29,services,married,high.school,no,yes,no,cellular,nov,thu,114,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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,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 +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 +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 +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 +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 +25,blue-collar,single,high.school,unknown,yes,no,cellular,may,mon,23,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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.2990000000000002,5099.1,no +26,student,single,university.degree,no,no,no,cellular,nov,fri,181,1,7,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +26,unknown,single,basic.9y,no,no,no,cellular,mar,tue,212,1,999,0,nonexistent,-1.8,92.843,-50.0,1.7990000000000002,5099.1,no +39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,195,3,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,management,married,high.school,no,yes,no,cellular,nov,tue,417,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +36,services,married,high.school,no,yes,no,telephone,jun,thu,394,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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,admin.,married,university.degree,no,yes,no,cellular,sep,wed,691,2,999,0,nonexistent,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +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 +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 +36,admin.,married,university.degree,no,yes,no,cellular,sep,tue,127,1,999,2,failure,-1.1,94.199,-37.5,0.8809999999999999,4963.6,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 +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 +29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,103,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +31,technician,single,university.degree,unknown,yes,no,telephone,jun,thu,817,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,yes +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 +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 +56,technician,married,professional.course,no,no,no,cellular,nov,thu,51,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,admin.,married,high.school,no,no,no,telephone,nov,tue,46,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,admin.,single,university.degree,no,yes,no,cellular,nov,tue,105,5,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +39,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,69,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +58,blue-collar,divorced,unknown,no,no,no,telephone,may,mon,467,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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,apr,wed,417,2,999,2,failure,-1.8,93.075,-47.1,1.445,5099.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 +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 +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 +59,admin.,single,university.degree,no,no,no,cellular,aug,thu,259,3,15,1,success,-2.9,92.201,-31.4,0.8290000000000001,5076.2,yes +29,admin.,single,university.degree,no,no,no,cellular,aug,fri,289,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +34,blue-collar,married,basic.9y,no,yes,yes,telephone,nov,thu,98,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +76,housemaid,married,basic.4y,no,yes,no,cellular,jun,tue,326,1,999,1,failure,-1.7,94.055,-39.8,0.7020000000000001,4991.6,yes +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 +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 +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 +52,technician,married,professional.course,no,no,no,cellular,nov,fri,202,5,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +35,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,mon,83,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +37,technician,single,university.degree,no,no,no,telephone,may,wed,494,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +53,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,may,mon,63,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +56,admin.,married,high.school,unknown,yes,no,cellular,nov,tue,105,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +29,admin.,divorced,high.school,no,yes,no,cellular,nov,tue,920,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +39,technician,married,university.degree,no,yes,yes,cellular,nov,thu,42,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,admin.,married,university.degree,no,yes,no,cellular,aug,tue,148,1,999,2,failure,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +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 +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 +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 +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 +43,admin.,married,professional.course,no,yes,no,telephone,jun,thu,193,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +58,management,single,professional.course,no,no,no,telephone,may,wed,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +37,services,married,high.school,no,yes,yes,telephone,may,wed,521,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,single,high.school,no,no,no,cellular,nov,fri,122,4,999,3,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +27,student,single,university.degree,no,yes,no,telephone,nov,mon,125,1,999,0,nonexistent,-0.1,93.2,-42.0,4.4060000000000015,5195.8,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 +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 +39,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +40,admin.,divorced,high.school,no,yes,yes,telephone,sep,wed,21,1,999,1,failure,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +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 +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 +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 +34,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,20,8,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +35,technician,single,university.degree,no,yes,no,telephone,may,wed,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +36,services,married,high.school,no,no,no,telephone,may,wed,361,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +62,technician,married,unknown,no,yes,no,cellular,jul,mon,248,1,999,2,failure,-1.7,94.215,-40.3,0.8270000000000001,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +34,blue-collar,single,high.school,no,yes,no,cellular,may,fri,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +35,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,197,4,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +48,entrepreneur,married,university.degree,no,no,yes,cellular,aug,fri,295,2,4,2,success,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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,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 +28,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,51,6,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +60,retired,married,professional.course,no,yes,no,telephone,jun,thu,190,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +43,technician,married,professional.course,no,yes,yes,cellular,nov,thu,47,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,services,single,basic.9y,no,yes,no,cellular,nov,thu,163,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +32,technician,single,professional.course,no,yes,no,cellular,may,mon,242,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +32,management,single,high.school,no,yes,no,telephone,may,mon,326,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,blue-collar,divorced,high.school,no,no,no,telephone,may,wed,206,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +50,housemaid,married,unknown,no,yes,no,telephone,jun,thu,86,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +36,technician,divorced,professional.course,no,yes,no,cellular,may,mon,341,7,999,0,nonexistent,-1.8,93.876,-40.0,0.6970000000000001,5008.7,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 +57,admin.,married,university.degree,no,no,yes,cellular,nov,tue,192,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,325,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +74,retired,married,university.degree,no,yes,yes,cellular,aug,wed,232,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,yes +78,retired,divorced,unknown,no,no,no,cellular,jun,thu,282,4,999,0,nonexistent,-1.7,94.055,-39.8,0.7290000000000001,4991.6,yes +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 +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 +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 +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 +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 +36,admin.,married,university.degree,no,no,no,telephone,nov,thu,281,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,services,single,high.school,no,no,no,telephone,may,mon,401,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +41,management,married,university.degree,no,no,no,telephone,may,mon,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +45,technician,unknown,basic.6y,no,no,no,cellular,may,mon,197,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +46,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,176,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +48,technician,married,university.degree,no,yes,no,cellular,nov,tue,82,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +33,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,1388,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +36,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +40,management,married,university.degree,no,yes,no,telephone,oct,wed,172,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +44,admin.,married,basic.4y,unknown,no,no,telephone,may,mon,49,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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,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 +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 +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 +68,retired,married,high.school,no,no,no,cellular,nov,mon,1248,2,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +66,retired,married,high.school,no,no,no,cellular,mar,tue,618,1,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +37,services,single,high.school,no,no,no,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +62,retired,married,high.school,no,no,no,cellular,jul,tue,355,2,999,0,nonexistent,-1.7,94.215,-40.3,0.8759999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +49,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,tue,157,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +34,services,divorced,basic.9y,no,yes,no,cellular,may,mon,465,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +53,services,married,high.school,unknown,yes,no,telephone,jun,thu,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +37,blue-collar,married,basic.4y,no,no,yes,cellular,may,fri,269,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +42,entrepreneur,single,basic.4y,no,yes,no,cellular,nov,thu,93,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +50,technician,married,professional.course,no,yes,no,cellular,nov,tue,1978,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +57,technician,married,high.school,no,yes,no,cellular,may,mon,758,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +40,entrepreneur,married,basic.9y,no,no,no,telephone,jun,thu,331,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,services,married,high.school,unknown,no,no,telephone,may,wed,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +47,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,tue,196,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +34,admin.,married,university.degree,no,yes,no,cellular,aug,tue,360,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +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 +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 +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 +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 +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 +29,entrepreneur,married,basic.6y,no,yes,no,telephone,may,wed,190,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +31,services,married,basic.9y,no,yes,no,cellular,nov,thu,57,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +34,technician,married,professional.course,no,yes,no,telephone,mar,mon,129,1,6,1,success,-1.8,93.369,-34.8,0.6459999999999999,5008.7,no +46,technician,married,university.degree,no,yes,no,cellular,may,mon,231,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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,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 +22,student,single,high.school,no,yes,no,cellular,may,tue,272,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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 +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 +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 +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,cellular,jul,tue,861,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,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 +33,self-employed,divorced,university.degree,no,no,no,telephone,nov,thu,352,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,technician,married,professional.course,no,no,no,telephone,nov,tue,189,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +68,retired,married,professional.course,no,unknown,unknown,cellular,may,thu,237,7,999,2,failure,-1.8,93.876,-40.0,0.6920000000000001,5008.7,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 +39,services,divorced,high.school,no,no,no,telephone,jun,thu,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +52,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,191,3,9,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,technician,married,university.degree,no,no,yes,cellular,jun,tue,434,2,999,1,failure,-1.7,94.055,-39.8,0.7020000000000001,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +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 +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 +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 +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 +39,admin.,married,university.degree,no,no,no,cellular,nov,tue,251,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +44,entrepreneur,single,university.degree,no,no,no,telephone,jun,thu,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,management,married,basic.9y,no,no,yes,cellular,may,mon,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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.8660000000000005,5228.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +18,student,single,unknown,no,yes,no,telephone,may,tue,421,1,3,1,success,-1.8,93.876,-40.0,0.6679999999999999,5008.7,yes +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +53,management,married,university.degree,no,yes,no,cellular,nov,tue,244,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,single,high.school,no,yes,no,cellular,aug,fri,1088,3,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,services,single,high.school,no,no,no,cellular,nov,thu,140,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,40,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +49,admin.,single,high.school,no,no,no,cellular,oct,fri,165,1,999,1,failure,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +28,blue-collar,single,high.school,no,no,yes,cellular,jul,mon,101,2,999,2,failure,-1.7,94.215,-40.3,0.8270000000000001,4991.6,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 +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 +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 +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 +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 +33,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,thu,129,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +34,technician,married,high.school,no,yes,no,cellular,may,mon,225,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +36,admin.,single,university.degree,no,no,no,cellular,nov,thu,105,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +35,technician,married,high.school,no,no,no,telephone,may,wed,208,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,unemployed,single,high.school,no,yes,no,telephone,may,mon,21,5,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +25,admin.,married,high.school,no,no,no,cellular,may,mon,261,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +44,management,divorced,university.degree,no,unknown,unknown,cellular,may,fri,47,5,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +44,services,single,high.school,no,yes,no,cellular,may,fri,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,married,university.degree,no,no,no,telephone,nov,mon,57,4,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +57,retired,married,professional.course,no,unknown,unknown,cellular,nov,tue,193,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,55,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +34,services,married,high.school,no,yes,no,cellular,may,mon,577,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,management,married,university.degree,no,yes,yes,cellular,nov,tue,240,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,management,married,university.degree,no,yes,no,cellular,nov,thu,661,4,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +45,services,married,high.school,unknown,no,no,telephone,jun,thu,379,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,services,married,professional.course,no,yes,yes,cellular,nov,tue,265,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +34,technician,married,professional.course,no,yes,yes,telephone,sep,tue,376,2,999,0,nonexistent,-3.4,92.379,-29.8,0.7879999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,married,university.degree,no,yes,no,cellular,may,mon,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,entrepreneur,divorced,basic.4y,no,no,no,cellular,nov,tue,290,1,5,1,success,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.8580000000000005,5191.0,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 +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 +30,admin.,single,university.degree,no,yes,no,cellular,aug,tue,193,1,999,0,nonexistent,-1.7,94.027,-38.3,0.8859999999999999,4991.6,no +32,admin.,single,high.school,no,no,no,cellular,nov,thu,470,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,unknown,professional.course,no,yes,no,cellular,nov,thu,125,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +19,student,single,unknown,no,yes,no,cellular,nov,mon,380,1,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,management,married,basic.9y,no,yes,no,cellular,nov,tue,129,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +39,entrepreneur,married,professional.course,no,unknown,unknown,cellular,nov,thu,165,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +45,management,married,professional.course,no,yes,no,cellular,nov,thu,619,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +33,blue-collar,single,high.school,no,yes,no,cellular,may,fri,435,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,155,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,unknown,no,no,no,telephone,jun,thu,65,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +45,services,married,basic.9y,no,no,yes,telephone,may,mon,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +43,blue-collar,married,high.school,unknown,unknown,unknown,telephone,may,wed,671,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +43,admin.,married,unknown,no,yes,no,telephone,jun,thu,189,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,entrepreneur,divorced,university.degree,no,no,no,telephone,jun,thu,40,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +56,housemaid,married,basic.4y,no,no,no,telephone,may,mon,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,divorced,university.degree,no,yes,no,telephone,nov,tue,51,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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,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 +73,retired,married,basic.4y,no,yes,no,cellular,aug,fri,305,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,65,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +76,retired,married,basic.4y,no,yes,no,cellular,sep,wed,259,2,3,1,success,-3.4,92.379,-29.8,0.7809999999999999,5017.5,yes +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 +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 +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 +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 +33,blue-collar,married,basic.9y,no,no,yes,cellular,nov,thu,200,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +23,admin.,single,university.degree,no,yes,no,cellular,jul,wed,104,1,999,2,failure,-1.7,94.215,-40.3,0.8809999999999999,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +82,housemaid,divorced,basic.4y,no,no,no,cellular,jul,wed,316,1,999,0,nonexistent,-1.7,94.215,-40.3,0.8809999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,unknown,unknown,no,yes,telephone,may,mon,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191.0,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 +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 +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 +44,self-employed,married,university.degree,no,no,no,telephone,nov,thu,39,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,technician,divorced,professional.course,unknown,no,no,cellular,may,mon,927,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +32,technician,divorced,professional.course,no,no,yes,cellular,may,fri,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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,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 +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 +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 +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 +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 +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 +46,entrepreneur,married,university.degree,no,yes,no,cellular,nov,tue,148,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +48,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,332,10,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,technician,married,university.degree,no,no,no,cellular,oct,fri,170,1,6,1,success,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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 +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 +48,technician,divorced,professional.course,no,yes,yes,cellular,nov,tue,86,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +54,admin.,married,high.school,no,no,no,telephone,may,wed,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +27,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,877,7,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +25,services,single,unknown,no,yes,no,cellular,jun,tue,383,2,999,2,failure,-1.7,94.055,-39.8,0.7020000000000001,4991.6,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 +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 +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 +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 +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 +48,technician,married,basic.9y,no,no,no,cellular,sep,tue,99,3,999,1,failure,-3.4,92.379,-29.8,0.8190000000000001,5017.5,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 +46,services,divorced,high.school,no,no,no,cellular,may,mon,222,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +39,services,married,basic.9y,no,yes,no,cellular,nov,tue,219,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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,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 +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,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +26,student,single,professional.course,no,yes,no,cellular,aug,fri,150,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +42,technician,married,professional.course,no,no,no,cellular,may,fri,1014,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +51,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,tue,103,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,services,married,high.school,no,yes,no,cellular,nov,tue,78,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +39,management,divorced,university.degree,no,yes,no,cellular,nov,thu,10,6,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +34,technician,single,professional.course,no,no,no,cellular,may,mon,573,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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.9y,no,no,no,cellular,may,tue,234,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +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 +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 +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 +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 +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 +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 +22,student,single,high.school,no,no,no,cellular,may,fri,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +28,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,146,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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.6y,no,no,no,telephone,may,wed,1183,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191.0,yes +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 +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 +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 +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 +31,management,single,university.degree,no,yes,no,cellular,may,fri,268,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +28,admin.,single,high.school,no,no,no,telephone,may,wed,27,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +25,student,single,high.school,no,yes,no,cellular,aug,fri,78,1,999,1,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +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 +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 +35,services,single,professional.course,unknown,yes,no,cellular,nov,tue,114,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +91,retired,married,university.degree,no,yes,yes,cellular,sep,wed,837,1,999,2,failure,-3.4,92.379,-29.8,0.7809999999999999,5017.5,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 +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 +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 +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 +55,retired,divorced,basic.9y,no,no,no,cellular,nov,thu,178,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +72,retired,married,professional.course,no,no,no,cellular,sep,wed,1,1,999,1,failure,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,blue-collar,single,high.school,no,no,no,cellular,may,fri,455,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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.8660000000000005,5228.1,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 +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 +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 +43,admin.,married,university.degree,no,yes,no,cellular,nov,thu,197,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +37,admin.,married,university.degree,no,no,no,cellular,nov,tue,475,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,394,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,157,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +44,unknown,married,basic.6y,no,no,no,telephone,may,wed,254,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +38,unemployed,single,high.school,no,yes,no,cellular,dec,mon,1002,3,10,1,success,-3.0,92.713,-33.0,0.7170000000000001,5023.5,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 +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 +34,admin.,single,university.degree,no,no,yes,cellular,may,fri,398,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +47,self-employed,divorced,university.degree,no,no,no,cellular,mar,tue,261,1,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,yes +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 +25,services,single,professional.course,no,yes,no,telephone,jun,thu,18,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +31,admin.,single,university.degree,no,yes,yes,telephone,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +33,management,married,university.degree,no,no,no,cellular,nov,thu,133,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +53,technician,married,professional.course,unknown,yes,yes,telephone,may,mon,579,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +26,admin.,married,basic.9y,no,yes,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +39,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,138,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +18,student,single,unknown,no,yes,no,cellular,sep,fri,563,1,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,yes +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 +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 +35,admin.,married,high.school,no,yes,no,cellular,may,fri,141,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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.3130000000000002,5099.1,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 +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 +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 +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 +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 +78,retired,divorced,basic.4y,no,yes,no,cellular,nov,fri,182,2,3,1,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +22,blue-collar,single,basic.4y,no,yes,no,telephone,nov,thu,16,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +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 +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 +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 +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 +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 +30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,769,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +29,technician,single,professional.course,no,yes,no,cellular,jun,wed,226,2,6,1,success,-1.7,94.055,-39.8,0.7040000000000001,4991.6,yes +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,395,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +36,admin.,married,university.degree,no,yes,no,cellular,may,tue,196,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6970000000000001,5008.7,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 +34,management,married,university.degree,no,no,no,telephone,jun,thu,221,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +30,technician,single,university.degree,no,no,no,cellular,nov,thu,168,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +65,retired,married,basic.4y,no,yes,no,cellular,aug,tue,197,2,999,1,failure,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,management,married,university.degree,no,no,no,cellular,nov,thu,154,3,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,no +39,services,married,high.school,no,no,no,telephone,may,wed,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +24,unemployed,single,high.school,no,yes,no,cellular,may,mon,699,1,13,2,failure,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,admin.,married,basic.9y,no,yes,no,cellular,nov,thu,85,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,76,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +61,retired,married,basic.4y,no,yes,no,cellular,aug,fri,168,1,15,1,success,-2.9,92.201,-31.4,0.8490000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +23,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,672,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,services,divorced,high.school,no,no,no,cellular,nov,tue,119,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,housemaid,divorced,basic.4y,no,no,no,cellular,aug,wed,89,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,self-employed,married,university.degree,unknown,yes,yes,cellular,nov,thu,1490,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +37,technician,single,university.degree,no,no,no,telephone,may,wed,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +22,services,single,high.school,no,yes,no,telephone,may,mon,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +37,admin.,single,university.degree,no,yes,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.8580000000000005,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 +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 +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 +38,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +32,technician,divorced,professional.course,no,yes,no,cellular,nov,tue,78,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +43,services,divorced,professional.course,no,no,no,cellular,may,mon,108,6,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +40,blue-collar,single,basic.9y,no,yes,yes,cellular,nov,thu,426,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,admin.,married,university.degree,unknown,yes,no,telephone,jun,thu,160,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +52,services,married,high.school,unknown,yes,no,cellular,may,mon,930,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +46,technician,married,professional.course,no,no,no,cellular,nov,thu,108,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +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 +27,admin.,single,university.degree,no,no,yes,telephone,jun,thu,263,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +28,unemployed,single,high.school,no,yes,yes,telephone,may,mon,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,entrepreneur,single,university.degree,no,yes,no,telephone,may,mon,30,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +42,self-employed,single,basic.4y,no,yes,no,cellular,nov,tue,100,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,45,13,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,328,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +35,entrepreneur,married,high.school,no,no,no,cellular,sep,tue,91,2,999,0,nonexistent,-3.4,92.379,-29.8,0.8190000000000001,5017.5,no +35,unemployed,divorced,professional.course,no,no,no,cellular,nov,tue,282,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +37,admin.,married,university.degree,no,yes,yes,cellular,may,fri,364,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +48,technician,married,university.degree,no,no,no,cellular,nov,tue,346,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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,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 +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 +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 +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 +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 +46,admin.,married,university.degree,no,no,no,cellular,nov,thu,358,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +40,housemaid,single,university.degree,no,no,yes,telephone,may,wed,502,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,technician,single,basic.9y,no,no,no,cellular,may,fri,87,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +28,management,single,university.degree,no,yes,no,cellular,jun,thu,169,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7290000000000001,4991.6,yes +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 +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 +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 +36,management,married,basic.9y,no,unknown,unknown,telephone,may,mon,285,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,entrepreneur,married,basic.6y,unknown,yes,yes,cellular,may,mon,330,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +38,technician,married,professional.course,no,no,no,telephone,may,wed,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +31,services,divorced,professional.course,no,no,no,cellular,nov,tue,68,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +46,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,thu,60,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,admin.,single,university.degree,no,yes,no,telephone,aug,tue,205,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,74,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +69,retired,married,high.school,no,yes,yes,cellular,sep,wed,840,1,6,2,success,-1.1,94.199,-37.5,0.8859999999999999,4963.6,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 +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 +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 +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 +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 +52,admin.,divorced,university.degree,no,yes,no,telephone,jun,tue,36,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7020000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +43,technician,married,basic.9y,unknown,no,no,telephone,jun,thu,246,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +34,technician,single,high.school,no,yes,no,telephone,nov,tue,251,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,professional.course,no,no,no,cellular,apr,fri,365,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,598,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.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 +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 +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 +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 +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 +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 +42,admin.,divorced,university.degree,no,no,no,cellular,may,fri,308,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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.8660000000000005,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 +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 +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 +32,blue-collar,single,university.degree,unknown,yes,no,cellular,nov,tue,63,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,214,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,university.degree,no,unknown,unknown,cellular,nov,thu,470,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,admin.,married,high.school,no,yes,no,cellular,nov,tue,50,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +23,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,657,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +32,management,single,university.degree,no,yes,no,cellular,mar,tue,71,3,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.1,yes +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 +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 +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 +30,blue-collar,single,basic.4y,no,no,no,telephone,may,wed,59,8,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +36,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,212,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +29,admin.,single,basic.9y,unknown,no,no,telephone,may,wed,272,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +40,admin.,married,high.school,no,no,no,cellular,oct,wed,524,3,999,1,failure,-3.4,92.431,-26.9,0.7240000000000001,5017.5,yes +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 +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 +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 +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 +56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,112,7,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,university.degree,unknown,no,no,cellular,nov,wed,698,1,999,0,nonexistent,-0.1,93.2,-42.0,4.12,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +45,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,1162,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +59,retired,divorced,professional.course,no,no,no,telephone,jun,tue,8,1,999,1,failure,-1.7,94.055,-39.8,0.7020000000000001,4991.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 +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 +30,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,48,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,university.degree,no,no,no,cellular,oct,fri,130,1,6,1,success,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,housemaid,divorced,high.school,no,yes,no,cellular,nov,thu,67,6,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,admin.,married,high.school,no,no,no,cellular,nov,tue,141,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +37,admin.,married,university.degree,no,yes,yes,cellular,mar,tue,159,3,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.1,yes +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 +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 +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 +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 +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 +30,admin.,single,university.degree,no,no,no,cellular,nov,thu,278,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.1530000000000005,5195.8,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 +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 +38,management,married,professional.course,no,yes,yes,cellular,nov,thu,94,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +33,management,single,university.degree,no,yes,yes,cellular,apr,wed,1176,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,self-employed,married,basic.4y,unknown,no,no,telephone,may,wed,389,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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.8580000000000005,5191.0,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 +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 +36,admin.,married,high.school,no,no,no,cellular,may,mon,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +34,management,married,university.degree,no,no,no,cellular,nov,mon,75,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +31,admin.,single,university.degree,no,no,no,cellular,aug,thu,81,1,3,1,success,-2.9,92.201,-31.4,0.8290000000000001,5076.2,yes +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 +28,admin.,married,university.degree,no,yes,no,cellular,aug,fri,140,1,999,1,failure,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +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 +21,student,single,high.school,no,no,no,cellular,oct,mon,328,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,yes +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,services,married,basic.9y,unknown,yes,no,cellular,nov,thu,251,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +33,admin.,married,university.degree,no,yes,no,telephone,may,wed,563,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +39,admin.,married,university.degree,no,yes,no,telephone,nov,thu,442,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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,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,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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,322,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +33,technician,single,professional.course,no,yes,no,telephone,nov,mon,4918,1,999,0,nonexistent,-0.1,93.2,-42.0,4.4060000000000015,5195.8,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 +27,entrepreneur,married,university.degree,no,no,yes,cellular,may,mon,117,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +34,blue-collar,married,professional.course,no,no,no,cellular,nov,tue,164,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,high.school,no,no,no,cellular,aug,wed,321,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,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 +49,admin.,divorced,basic.6y,no,no,no,cellular,nov,tue,295,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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,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 +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.9y,unknown,no,no,telephone,may,thu,413,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191.0,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 +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 +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 +25,blue-collar,single,high.school,unknown,yes,no,telephone,may,mon,300,3,999,2,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +47,technician,single,professional.course,unknown,no,no,telephone,may,wed,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,housemaid,married,basic.4y,no,no,no,cellular,nov,tue,242,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +38,management,married,university.degree,no,yes,no,cellular,nov,thu,258,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +24,student,single,professional.course,no,yes,no,cellular,jul,wed,817,2,999,0,nonexistent,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +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 +48,admin.,married,unknown,unknown,no,yes,cellular,nov,tue,63,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +31,admin.,married,university.degree,no,yes,no,telephone,nov,mon,44,1,999,0,nonexistent,-0.1,93.2,-42.0,4.7330000000000005,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.0760000000000005,5195.8,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 +45,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,thu,301,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +36,blue-collar,married,high.school,no,yes,no,cellular,may,fri,232,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +30,technician,single,professional.course,no,no,no,telephone,jun,tue,8,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7020000000000001,4991.6,no +30,management,married,university.degree,no,yes,no,cellular,mar,mon,106,3,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,21,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,technician,married,basic.9y,no,yes,yes,cellular,may,mon,142,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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,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 +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 +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,high.school,no,yes,no,telephone,jun,tue,201,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +36,admin.,married,university.degree,no,no,no,telephone,may,mon,124,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +43,management,married,unknown,no,yes,no,telephone,dec,mon,2062,2,8,1,success,-3.0,92.713,-33.0,0.7090000000000001,5023.5,yes +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 +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 +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 +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 +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 +23,services,single,professional.course,unknown,no,no,telephone,jun,thu,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +57,retired,single,professional.course,no,no,no,telephone,jun,thu,647,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +25,student,single,high.school,no,yes,no,cellular,nov,mon,61,3,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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,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 +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 +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,basic.9y,no,yes,no,cellular,nov,tue,226,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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,no,no,no,telephone,jun,fri,43,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,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 +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 +80,retired,married,basic.4y,no,no,no,cellular,may,mon,382,1,3,3,success,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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 +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 +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 +59,management,married,university.degree,no,yes,no,cellular,sep,fri,328,2,3,1,success,-3.4,92.379,-29.8,0.8029999999999999,5017.5,yes +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 +29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,315,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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,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 +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 +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 +36,blue-collar,married,basic.9y,no,no,no,telephone,nov,thu,96,8,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +48,services,single,unknown,no,yes,no,cellular,nov,thu,164,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +40,admin.,single,high.school,no,yes,no,telephone,nov,thu,119,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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 +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 +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 +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 +43,management,married,professional.course,no,no,no,cellular,nov,tue,257,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +32,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,923,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +52,services,married,high.school,unknown,yes,no,telephone,may,mon,243,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +68,retired,married,professional.course,no,no,yes,cellular,may,thu,420,1,999,1,failure,-1.8,93.876,-40.0,0.6920000000000001,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,thu,75,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +41,services,married,university.degree,no,yes,no,cellular,nov,thu,283,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,housemaid,single,high.school,no,no,no,telephone,jun,thu,406,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,unemployed,single,professional.course,no,no,no,cellular,nov,tue,191,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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,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 +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 +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 +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 +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 +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 +28,admin.,single,university.degree,no,no,no,telephone,jun,fri,138,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7190000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +59,retired,divorced,basic.4y,no,no,yes,cellular,jul,mon,210,3,999,2,failure,-1.7,94.215,-40.3,0.8270000000000001,4991.6,yes +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 +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 +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 +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 +43,services,divorced,professional.course,no,no,no,cellular,may,fri,196,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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.3130000000000002,5099.1,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 +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 +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 +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 +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 +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.,married,unknown,unknown,yes,yes,telephone,jun,thu,323,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,377,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +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,services,single,high.school,no,yes,no,telephone,may,mon,32,5,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +34,admin.,unknown,university.degree,no,yes,no,cellular,may,mon,304,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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.8580000000000005,5191.0,no +32,technician,single,professional.course,no,yes,no,cellular,may,mon,183,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +31,services,single,high.school,unknown,no,no,cellular,may,fri,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,services,married,high.school,unknown,no,no,cellular,may,fri,311,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +49,housemaid,married,basic.4y,unknown,no,yes,telephone,may,wed,801,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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,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 +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 +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 +38,services,married,high.school,no,yes,no,cellular,apr,wed,484,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,no +36,technician,married,university.degree,no,no,no,telephone,may,wed,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +32,housemaid,married,basic.4y,no,yes,no,cellular,may,fri,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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,high.school,no,yes,no,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,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 +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 +34,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,mon,100,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +30,admin.,single,university.degree,no,no,no,cellular,nov,thu,319,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +34,services,married,basic.9y,no,yes,yes,telephone,may,mon,437,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +36,services,married,basic.9y,no,yes,no,cellular,aug,fri,215,1,999,1,failure,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +48,technician,divorced,professional.course,no,yes,no,cellular,nov,thu,89,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +55,blue-collar,married,unknown,unknown,no,no,cellular,may,fri,9,2,999,2,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,technician,married,professional.course,no,yes,no,telephone,may,wed,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +36,services,single,high.school,no,yes,no,cellular,nov,thu,422,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +72,retired,married,basic.4y,no,yes,no,cellular,jul,fri,582,2,999,1,failure,-1.7,94.215,-40.3,0.8220000000000001,4991.6,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 +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 +33,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,340,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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,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 +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 +25,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,260,9,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +46,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,138,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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,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 +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,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 +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 +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 +40,admin.,divorced,professional.course,no,no,no,telephone,may,mon,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +29,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,494,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +51,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,mon,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +47,services,single,basic.9y,no,no,no,cellular,nov,tue,187,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +31,technician,married,high.school,no,no,no,cellular,nov,thu,149,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,blue-collar,divorced,professional.course,no,yes,no,telephone,nov,tue,301,2,7,2,success,-1.1,94.767,-50.8,1.0490000000000002,4963.6,yes +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 +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 +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 +45,technician,single,university.degree,no,no,no,cellular,may,tue,146,2,999,1,failure,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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 +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 +29,blue-collar,married,high.school,no,no,no,telephone,may,wed,357,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +43,services,divorced,high.school,no,no,no,cellular,nov,thu,329,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +30,services,single,high.school,unknown,no,no,cellular,may,fri,422,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,retired,married,university.degree,no,no,no,cellular,aug,tue,634,3,999,1,failure,-1.7,94.027,-38.3,0.8859999999999999,4991.6,yes +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 +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 +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 +25,admin.,single,university.degree,no,yes,no,telephone,nov,mon,107,2,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +27,services,single,high.school,no,yes,no,cellular,may,fri,86,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +39,management,married,university.degree,no,no,no,cellular,nov,tue,368,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +39,admin.,married,high.school,no,no,no,cellular,nov,mon,1011,1,3,2,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +29,admin.,single,university.degree,no,no,no,cellular,mar,mon,287,2,999,0,nonexistent,-1.8,93.369,-34.8,0.6459999999999999,5008.7,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 +54,admin.,single,university.degree,no,yes,no,cellular,nov,tue,119,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +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 +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 +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 +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 +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 +37,technician,married,professional.course,unknown,no,no,telephone,may,wed,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +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 +55,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,tue,86,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +38,admin.,single,university.degree,no,yes,no,cellular,may,fri,132,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,admin.,married,university.degree,no,yes,no,cellular,nov,thu,871,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +29,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,34,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +77,retired,married,unknown,no,yes,no,cellular,nov,fri,381,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,technician,divorced,university.degree,unknown,no,no,telephone,may,mon,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,199,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,thu,420,4,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +36,management,married,university.degree,no,yes,no,cellular,nov,thu,302,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,technician,married,professional.course,no,yes,no,telephone,may,wed,150,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +33,services,married,high.school,unknown,no,no,cellular,nov,thu,130,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +36,admin.,married,high.school,no,yes,yes,cellular,may,mon,142,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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,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 +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 +30,technician,single,university.degree,no,no,no,cellular,nov,thu,59,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +31,services,married,high.school,no,no,no,cellular,nov,thu,62,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,unknown,single,university.degree,no,yes,no,telephone,oct,wed,182,2,999,0,nonexistent,-3.4,92.431,-26.9,0.7240000000000001,5017.5,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 +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 +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 +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 +79,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,126,1,3,2,success,-2.9,92.201,-31.4,0.8490000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,admin.,married,high.school,no,no,no,cellular,nov,tue,132,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,management,married,university.degree,no,yes,no,cellular,oct,fri,87,1,2,1,success,-3.4,92.431,-26.9,0.7390000000000001,5017.5,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +24,student,single,basic.9y,no,yes,no,cellular,apr,tue,345,1,999,0,nonexistent,-1.8,93.749,-34.6,0.6459999999999999,5008.7,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.3130000000000002,5099.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 +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 +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 +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 +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 +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 +46,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,353,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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.8660000000000005,5228.1,no +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 +44,management,single,university.degree,no,yes,no,cellular,nov,tue,120,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +48,admin.,married,high.school,no,no,no,telephone,nov,tue,301,1,999,2,failure,-1.1,94.767,-50.8,1.0490000000000002,4963.6,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 +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 +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 +36,blue-collar,single,basic.9y,no,yes,no,telephone,jun,thu,21,10,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,technician,married,professional.course,no,no,no,telephone,nov,thu,159,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +34,management,married,university.degree,no,yes,no,cellular,nov,thu,130,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +30,technician,single,professional.course,no,yes,no,cellular,may,mon,308,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,management,married,university.degree,no,yes,no,telephone,may,fri,283,3,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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,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 +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 +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 +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 +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 +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 +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 +30,self-employed,single,university.degree,no,no,no,telephone,jun,thu,39,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +33,management,married,university.degree,no,no,no,cellular,may,fri,364,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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.8660000000000005,5228.1,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 +64,retired,married,unknown,no,no,no,cellular,aug,fri,252,4,999,0,nonexistent,-2.9,92.201,-31.4,0.8490000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +51,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,139,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +49,technician,married,university.degree,no,no,no,cellular,may,thu,188,1,999,1,failure,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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.3130000000000002,5099.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 +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 +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 +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 +36,admin.,married,high.school,no,yes,no,cellular,jul,fri,122,1,999,1,failure,-2.9,92.469,-33.6,1.0590000000000002,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,admin.,single,high.school,no,no,no,cellular,may,mon,1487,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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,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 +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,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 +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 +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 +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 +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 +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 +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 +54,unknown,married,basic.9y,no,yes,no,cellular,jul,tue,174,2,13,2,success,-1.7,94.215,-40.3,0.8759999999999999,4991.6,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 +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 +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 +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 +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 +38,self-employed,married,professional.course,no,no,no,cellular,nov,tue,1788,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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,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 +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 +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 +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 +45,unemployed,married,basic.9y,no,yes,no,cellular,nov,thu,454,5,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,172,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,yes,no,cellular,aug,wed,768,2,999,2,failure,-2.9,92.201,-31.4,0.8540000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,single,high.school,no,yes,no,cellular,nov,tue,117,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,management,married,professional.course,no,yes,no,cellular,may,mon,240,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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,no,yes,no,telephone,may,fri,319,6,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,tue,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +35,entrepreneur,married,high.school,no,yes,no,cellular,nov,thu,566,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +41,admin.,single,high.school,no,yes,no,cellular,may,fri,57,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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.,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,services,single,basic.6y,no,yes,yes,telephone,may,mon,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +50,admin.,married,university.degree,no,no,yes,cellular,nov,tue,189,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,professional.course,no,yes,no,telephone,jun,thu,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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.3130000000000002,5099.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 +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 +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 +47,admin.,divorced,university.degree,no,no,yes,cellular,nov,tue,96,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,blue-collar,married,professional.course,no,no,no,telephone,may,mon,87,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +31,admin.,married,high.school,no,yes,yes,cellular,may,mon,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,478,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +53,self-employed,divorced,university.degree,no,no,no,cellular,nov,tue,597,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +45,admin.,divorced,university.degree,no,no,no,telephone,may,wed,681,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +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 +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 +42,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,tue,364,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,admin.,single,university.degree,no,no,no,telephone,nov,thu,65,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,admin.,married,high.school,unknown,yes,yes,cellular,nov,tue,65,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +56,retired,married,university.degree,no,yes,no,cellular,nov,wed,156,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +29,admin.,single,university.degree,no,no,no,cellular,may,thu,216,1,3,3,success,-1.8,93.876,-40.0,0.6829999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,blue-collar,divorced,basic.9y,no,yes,yes,telephone,may,mon,400,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +28,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,student,single,high.school,no,yes,no,cellular,nov,thu,670,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +33,services,married,high.school,unknown,no,no,telephone,may,wed,227,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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,management,married,university.degree,no,no,no,cellular,nov,tue,114,5,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +71,retired,married,basic.9y,no,yes,yes,cellular,jul,fri,230,6,999,0,nonexistent,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,588,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,services,divorced,high.school,no,no,no,cellular,may,mon,150,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,thu,74,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +57,services,divorced,unknown,no,no,no,cellular,may,fri,144,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +39,technician,married,professional.course,no,yes,no,cellular,may,fri,346,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +35,admin.,married,high.school,no,yes,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +43,management,married,university.degree,no,no,no,telephone,may,wed,237,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +58,management,married,unknown,no,no,no,cellular,nov,thu,142,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +29,technician,single,university.degree,no,unknown,unknown,telephone,may,mon,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +46,self-employed,married,basic.9y,unknown,no,no,telephone,jun,thu,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +44,management,married,university.degree,no,yes,no,cellular,nov,tue,170,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +46,admin.,married,high.school,no,yes,no,cellular,sep,wed,408,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,5017.5,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +53,self-employed,married,university.degree,no,yes,no,telephone,may,wed,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +63,retired,married,university.degree,no,no,no,cellular,aug,tue,177,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,no +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 +62,housemaid,married,university.degree,no,yes,no,cellular,nov,thu,237,1,3,3,success,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +54,admin.,married,basic.4y,unknown,yes,no,cellular,nov,tue,127,4,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +50,technician,married,professional.course,no,unknown,unknown,cellular,nov,tue,319,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +29,services,single,high.school,no,yes,no,telephone,jun,thu,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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.8660000000000005,5228.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 +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 +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 +36,technician,single,university.degree,no,yes,yes,cellular,jul,mon,305,4,3,1,success,-1.7,94.215,-40.3,0.8270000000000001,4991.6,no +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 +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 +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 +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 +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 +29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,225,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +25,admin.,single,high.school,no,yes,yes,cellular,may,fri,137,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +42,technician,divorced,basic.9y,no,no,no,telephone,may,wed,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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,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 +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 +24,student,single,high.school,no,yes,no,cellular,aug,fri,456,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +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 +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 +34,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,518,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +31,admin.,single,university.degree,no,yes,no,cellular,sep,fri,112,7,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,no +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 +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 +52,admin.,married,university.degree,no,no,yes,telephone,may,mon,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +28,admin.,single,university.degree,no,no,no,cellular,aug,fri,70,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +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 +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 +33,blue-collar,married,high.school,unknown,no,yes,cellular,may,fri,296,5,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +46,entrepreneur,divorced,high.school,no,yes,no,cellular,nov,thu,88,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +44,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,90,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +32,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,120,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +57,entrepreneur,married,high.school,no,no,no,cellular,nov,thu,199,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +38,self-employed,married,professional.course,no,yes,no,cellular,nov,thu,86,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +53,unknown,married,high.school,unknown,yes,no,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,unemployed,married,high.school,no,yes,no,cellular,jul,fri,474,7,999,0,nonexistent,-1.7,94.215,-40.3,0.8220000000000001,4991.6,yes +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 +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 +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 +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 +29,technician,single,professional.course,unknown,no,no,cellular,nov,thu,128,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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,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 +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 +58,management,married,basic.4y,no,no,no,cellular,nov,wed,88,2,999,0,nonexistent,-3.4,92.649,-30.1,0.7190000000000001,5017.5,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 +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 +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 +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 +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 +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 +60,entrepreneur,married,basic.4y,no,yes,no,telephone,may,wed,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,167,5,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +33,technician,married,university.degree,no,yes,no,cellular,mar,tue,56,2,999,0,nonexistent,-1.8,92.843,-50.0,1.6869999999999998,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,services,married,basic.9y,no,no,no,cellular,may,mon,400,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +42,admin.,divorced,university.degree,no,yes,no,cellular,may,fri,243,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +56,retired,married,basic.4y,no,yes,yes,cellular,nov,thu,258,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,admin.,married,high.school,no,yes,no,cellular,nov,tue,67,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +30,management,married,university.degree,no,no,yes,cellular,nov,tue,89,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +28,admin.,single,university.degree,no,yes,no,telephone,may,mon,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,high.school,no,yes,no,cellular,jul,fri,362,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,housemaid,married,basic.4y,no,no,yes,cellular,jul,wed,462,1,4,1,success,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,entrepreneur,single,high.school,no,no,no,cellular,nov,thu,290,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +30,management,married,university.degree,no,yes,no,cellular,may,mon,249,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,admin.,single,university.degree,no,no,no,cellular,may,mon,143,4,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,251,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +46,management,married,unknown,no,yes,no,cellular,nov,thu,121,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +58,entrepreneur,married,basic.4y,no,no,yes,cellular,nov,tue,164,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,99,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +47,management,married,basic.4y,unknown,no,no,telephone,may,mon,99,22,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +37,management,married,university.degree,no,no,no,cellular,nov,tue,96,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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,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 +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 +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 +38,management,married,professional.course,no,no,no,cellular,nov,thu,112,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +38,management,married,professional.course,no,yes,no,cellular,nov,thu,124,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +39,management,divorced,university.degree,unknown,no,no,telephone,jun,thu,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,management,married,university.degree,no,yes,no,cellular,nov,tue,197,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +44,entrepreneur,divorced,basic.6y,no,yes,no,cellular,nov,tue,132,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +54,entrepreneur,divorced,university.degree,no,yes,yes,telephone,nov,thu,761,3,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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,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 +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 +54,retired,married,high.school,no,no,no,cellular,nov,tue,172,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +54,technician,divorced,university.degree,no,unknown,unknown,cellular,dec,mon,164,1,999,0,nonexistent,-3.0,92.713,-33.0,0.7170000000000001,5023.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +41,management,married,university.degree,no,no,no,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +37,unemployed,single,university.degree,no,yes,no,cellular,nov,tue,135,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +37,admin.,single,university.degree,no,no,yes,cellular,may,mon,553,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +52,technician,divorced,basic.9y,no,yes,yes,telephone,may,mon,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +38,management,married,university.degree,no,no,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +32,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +30,admin.,married,university.degree,no,yes,yes,cellular,sep,wed,475,5,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,5017.5,yes +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 +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 +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 +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 +39,admin.,single,university.degree,no,yes,yes,cellular,may,mon,292,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,services,married,high.school,unknown,yes,no,cellular,nov,thu,441,4,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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,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 +44,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jun,thu,471,3,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,single,university.degree,no,no,no,cellular,nov,thu,986,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +35,services,divorced,university.degree,no,yes,no,cellular,may,mon,215,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,technician,single,university.degree,no,no,no,cellular,may,mon,66,4,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +31,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,415,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,admin.,married,university.degree,no,yes,yes,telephone,may,wed,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +54,self-employed,married,basic.9y,no,yes,no,cellular,nov,tue,139,4,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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,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 +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 +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 +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 +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 +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,professional.course,unknown,yes,no,cellular,aug,thu,151,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,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 +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 +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 +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 +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 +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 +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 +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,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 +54,management,married,basic.6y,no,yes,no,cellular,may,mon,142,5,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +37,services,married,high.school,no,yes,no,cellular,nov,tue,157,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,single,unknown,no,no,no,telephone,may,fri,92,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191.0,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 +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 +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 +31,admin.,married,high.school,no,yes,yes,telephone,may,wed,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,843,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,married,basic.9y,no,yes,yes,cellular,nov,thu,539,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,admin.,married,university.degree,no,yes,no,cellular,may,fri,763,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +51,unemployed,divorced,university.degree,no,no,no,cellular,nov,thu,286,6,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +40,services,married,high.school,no,yes,no,cellular,nov,tue,66,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +37,blue-collar,divorced,basic.6y,no,no,no,cellular,nov,tue,200,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +37,unemployed,single,university.degree,no,yes,yes,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,technician,divorced,professional.course,no,no,no,cellular,nov,thu,77,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,unemployed,single,basic.6y,unknown,yes,no,cellular,nov,tue,76,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +28,self-employed,married,professional.course,no,no,no,telephone,may,mon,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +41,technician,married,basic.9y,no,yes,no,telephone,nov,tue,102,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +30,services,divorced,high.school,no,no,no,cellular,may,mon,159,2,11,1,success,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,335,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +33,admin.,single,university.degree,no,yes,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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,admin.,single,university.degree,no,no,yes,cellular,nov,thu,250,2,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +62,technician,married,unknown,no,yes,no,cellular,jul,mon,273,1,16,1,success,-1.7,94.215,-40.3,0.8270000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +60,self-employed,married,university.degree,no,yes,no,telephone,oct,fri,128,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,technician,divorced,professional.course,no,yes,yes,cellular,jun,wed,181,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7390000000000001,4991.6,no +48,housemaid,married,basic.4y,no,yes,no,telephone,sep,mon,9,1,999,0,nonexistent,-1.1,94.199,-37.5,0.8759999999999999,4963.6,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 +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 +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 +39,services,married,high.school,no,yes,no,cellular,may,mon,49,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +33,admin.,single,university.degree,no,no,no,cellular,may,mon,657,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,yes +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 +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 +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 +53,technician,divorced,professional.course,no,yes,no,cellular,nov,wed,320,1,999,0,nonexistent,-0.1,93.2,-42.0,4.2860000000000005,5195.8,no +50,admin.,married,university.degree,no,yes,no,cellular,nov,mon,124,5,999,1,failure,-3.4,92.649,-30.1,0.7140000000000001,5017.5,no +31,services,married,high.school,no,no,yes,cellular,nov,thu,49,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +53,admin.,married,university.degree,no,yes,no,cellular,may,mon,202,3,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +35,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,114,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.2990000000000002,5099.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 +52,services,married,high.school,no,no,yes,cellular,may,fri,38,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +31,unemployed,single,high.school,no,no,no,cellular,may,thu,339,2,999,0,nonexistent,-1.8,93.876,-40.0,0.6920000000000001,5008.7,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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +41,services,single,university.degree,no,yes,no,cellular,aug,fri,325,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +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 +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 +29,admin.,single,university.degree,no,yes,no,cellular,mar,mon,361,1,3,3,success,-1.8,93.369,-34.8,0.6459999999999999,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,513,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +36,technician,married,basic.6y,no,yes,no,telephone,may,mon,82,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +34,management,single,university.degree,no,yes,no,telephone,may,thu,18,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6829999999999999,5008.7,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 +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 +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 +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 +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 +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 +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 +34,management,married,university.degree,no,yes,no,telephone,nov,thu,30,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +34,management,divorced,university.degree,no,no,no,cellular,nov,thu,370,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +36,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,8,6,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,blue-collar,married,high.school,unknown,no,no,telephone,may,wed,713,4,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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,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 +43,blue-collar,single,professional.course,no,no,no,telephone,jun,thu,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +44,blue-collar,married,high.school,no,unknown,unknown,cellular,may,mon,279,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +32,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,61,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +48,admin.,single,university.degree,no,yes,no,cellular,aug,fri,260,2,999,1,failure,-2.9,92.201,-31.4,0.8690000000000001,5076.2,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 +48,blue-collar,married,professional.course,no,no,no,telephone,may,mon,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +62,retired,married,university.degree,no,no,no,telephone,sep,wed,595,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,5017.5,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 +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +37,management,divorced,high.school,no,yes,no,cellular,nov,tue,1268,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +37,admin.,married,university.degree,no,no,no,cellular,aug,wed,225,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +32,technician,married,professional.course,no,yes,no,telephone,nov,thu,106,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +30,self-employed,single,university.degree,no,yes,no,cellular,sep,tue,145,1,999,0,nonexistent,-3.4,92.379,-29.8,0.7879999999999999,5017.5,yes +38,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,60,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,486,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +36,services,married,basic.9y,no,yes,no,cellular,aug,fri,221,1,4,1,success,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +32,technician,married,professional.course,no,yes,no,cellular,apr,wed,625,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,5099.1,no +24,student,single,high.school,no,yes,no,cellular,dec,thu,726,3,999,0,nonexistent,-3.0,92.713,-33.0,0.7120000000000001,5023.5,yes +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 +55,unknown,married,university.degree,no,yes,no,cellular,aug,wed,164,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,yes +36,management,single,university.degree,no,yes,no,cellular,nov,tue,240,3,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +50,housemaid,married,basic.4y,no,no,no,cellular,nov,tue,109,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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,high.school,unknown,no,no,cellular,aug,tue,256,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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.,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 +40,unemployed,married,professional.course,no,no,no,telephone,nov,tue,129,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +78,retired,married,basic.4y,no,no,yes,cellular,aug,wed,103,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8340000000000001,5076.2,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,entrepreneur,married,university.degree,no,no,no,telephone,nov,thu,125,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +47,admin.,married,high.school,no,no,no,telephone,may,wed,465,11,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,36,5,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +54,management,married,basic.6y,no,yes,no,cellular,may,mon,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,69,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +57,services,married,high.school,unknown,no,yes,telephone,jun,thu,267,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +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 +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 +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 +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 +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 +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 +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 +47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,177,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +46,technician,married,professional.course,no,yes,no,cellular,nov,tue,135,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +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 +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 +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 +33,housemaid,married,high.school,no,no,no,cellular,nov,tue,188,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +28,admin.,married,high.school,no,yes,no,cellular,may,fri,579,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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,married,high.school,no,yes,no,cellular,may,thu,328,2,6,3,success,-1.8,93.876,-40.0,0.6829999999999999,5008.7,yes +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +56,management,divorced,university.degree,no,no,no,cellular,may,fri,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +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 +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 +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 +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 +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 +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,656,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +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 +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 +39,management,married,university.degree,no,no,no,cellular,nov,tue,435,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +49,admin.,married,high.school,unknown,no,no,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +50,self-employed,divorced,university.degree,no,yes,no,cellular,nov,thu,743,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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.8660000000000005,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 +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 +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 +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 +50,admin.,divorced,basic.9y,no,yes,no,cellular,nov,tue,128,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +51,housemaid,married,unknown,no,yes,yes,cellular,aug,fri,268,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8809999999999999,5076.2,yes +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 +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 +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 +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,487,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +36,technician,married,professional.course,no,no,no,telephone,jun,thu,38,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +31,technician,married,professional.course,no,yes,no,cellular,apr,wed,647,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4980000000000002,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 +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 +33,technician,single,university.degree,no,no,no,telephone,may,wed,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,services,married,basic.9y,no,yes,no,cellular,nov,thu,755,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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,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 +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 +58,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +55,admin.,married,high.school,no,yes,no,cellular,nov,tue,106,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +34,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,500,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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,admin.,single,university.degree,no,no,yes,cellular,aug,tue,543,1,999,1,failure,-2.9,92.201,-31.4,0.8590000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +36,technician,single,professional.course,no,yes,no,cellular,may,mon,196,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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 +38,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,388,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +46,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,418,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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,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 +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 +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 +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 +33,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,39,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +27,services,single,high.school,no,no,no,cellular,jul,fri,700,5,6,2,success,-1.7,94.215,-40.3,0.8959999999999999,4991.6,yes +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 +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 +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 +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 +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 +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 +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 +31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,230,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +25,admin.,single,university.degree,no,yes,no,cellular,oct,mon,123,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +58,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,308,1,6,1,success,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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,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 +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 +72,retired,married,basic.4y,no,no,no,cellular,sep,fri,230,1,3,2,success,-3.4,92.379,-29.8,0.8029999999999999,5017.5,yes +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 +32,blue-collar,married,high.school,no,no,no,cellular,may,fri,319,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +35,admin.,married,high.school,no,yes,no,cellular,nov,tue,17,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +32,services,married,high.school,no,yes,yes,telephone,may,wed,383,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +50,management,married,basic.4y,no,yes,no,cellular,nov,tue,389,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +27,services,single,high.school,no,yes,no,telephone,may,mon,343,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +40,services,divorced,high.school,no,no,no,telephone,may,wed,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +39,services,divorced,high.school,no,yes,no,cellular,nov,tue,46,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +43,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,288,3,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +39,admin.,married,university.degree,no,no,no,telephone,jun,thu,370,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +34,management,single,university.degree,no,no,yes,cellular,may,fri,662,4,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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 +50,management,married,university.degree,no,no,no,cellular,nov,thu,146,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +22,student,single,high.school,no,yes,no,telephone,jun,wed,355,1,999,2,failure,-1.7,94.055,-39.8,0.7390000000000001,4991.6,no +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 +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 +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 +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 +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 +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 +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 +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 +54,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,mon,500,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +30,self-employed,single,university.degree,no,yes,no,cellular,nov,thu,151,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +18,student,single,unknown,no,yes,no,cellular,may,tue,489,1,6,1,success,-1.8,93.876,-40.0,0.6679999999999999,5008.7,yes +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 +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,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 +36,admin.,married,high.school,no,yes,no,telephone,nov,wed,114,1,999,1,failure,-0.1,93.2,-42.0,4.2860000000000005,5195.8,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,admin.,single,high.school,no,yes,no,cellular,may,mon,211,2,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +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 +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 +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 +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,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 +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 +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,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 +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 +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 +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 +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 +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 +41,blue-collar,married,basic.6y,no,yes,yes,telephone,nov,tue,137,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,high.school,unknown,yes,no,cellular,may,mon,412,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +40,technician,married,professional.course,no,no,no,cellular,nov,tue,348,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,101,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,wed,240,2,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,yes +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 +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 +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 +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 +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,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 +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 +31,admin.,married,professional.course,no,no,yes,cellular,dec,mon,367,2,999,1,failure,-3.0,92.713,-33.0,0.7090000000000001,5023.5,yes +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 +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,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 +35,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,thu,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +46,admin.,divorced,university.degree,no,no,no,telephone,may,mon,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +26,management,single,university.degree,no,no,no,cellular,sep,fri,351,2,999,0,nonexistent,-3.4,92.379,-29.8,0.8029999999999999,5017.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +45,housemaid,married,professional.course,unknown,yes,no,telephone,jun,thu,126,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +49,housemaid,divorced,basic.6y,no,yes,no,telephone,may,wed,295,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +26,student,single,basic.9y,unknown,yes,no,cellular,may,fri,682,2,3,2,success,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +47,blue-collar,married,unknown,unknown,yes,no,telephone,may,wed,191,6,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +49,technician,married,professional.course,unknown,yes,no,telephone,may,mon,95,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +37,blue-collar,married,high.school,no,yes,no,cellular,may,fri,475,3,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +31,technician,married,university.degree,no,yes,no,cellular,may,mon,15,8,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +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 +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 +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 +46,admin.,married,basic.6y,unknown,no,yes,cellular,may,mon,270,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +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,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 +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 +33,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,392,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,no +36,housemaid,married,basic.4y,unknown,no,no,telephone,may,mon,501,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +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 +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 +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 +73,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,76,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8540000000000001,5076.2,no +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 +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 +36,admin.,single,university.degree,no,no,no,cellular,aug,tue,278,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8590000000000001,5076.2,yes +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 +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 +24,student,single,high.school,no,yes,no,cellular,jun,thu,530,1,999,0,nonexistent,-1.7,94.055,-39.8,0.7290000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +38,self-employed,married,high.school,unknown,yes,no,cellular,nov,tue,126,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,entrepreneur,divorced,university.degree,unknown,no,no,cellular,may,fri,133,8,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +34,admin.,married,university.degree,no,yes,no,cellular,may,fri,159,1,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +55,retired,married,basic.4y,unknown,yes,no,telephone,may,wed,316,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +57,housemaid,married,basic.4y,no,no,yes,telephone,may,wed,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,no +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 +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 +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 +27,services,married,professional.course,no,yes,no,telephone,may,mon,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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,no,yes,no,cellular,nov,mon,238,1,999,0,nonexistent,-0.1,93.2,-42.0,4.191,5195.8,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 +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 +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 +36,blue-collar,single,basic.9y,no,yes,no,cellular,nov,tue,67,2,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +30,admin.,married,high.school,no,no,no,cellular,nov,tue,157,1,999,1,failure,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,blue-collar,single,professional.course,no,no,no,cellular,may,tue,165,1,999,1,failure,-1.8,93.876,-40.0,0.6679999999999999,5008.7,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 +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 +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 +31,management,single,university.degree,no,no,no,cellular,nov,tue,82,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +53,admin.,married,basic.9y,no,no,no,telephone,may,wed,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,admin.,married,high.school,no,no,no,telephone,may,mon,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +42,management,married,university.degree,no,yes,no,cellular,sep,wed,232,1,3,2,success,-1.1,94.199,-37.5,0.8859999999999999,4963.6,yes +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +73,retired,married,basic.9y,no,no,no,cellular,aug,fri,239,1,15,1,success,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +82,retired,married,university.degree,no,yes,no,cellular,oct,tue,526,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7440000000000001,5017.5,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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +50,technician,married,high.school,no,yes,no,cellular,dec,mon,229,1,999,1,failure,-3.0,92.713,-33.0,0.7170000000000001,5023.5,yes +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 +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 +25,admin.,single,high.school,no,no,no,telephone,may,fri,128,8,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +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 +58,retired,married,high.school,no,yes,no,cellular,nov,thu,125,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +33,admin.,married,university.degree,no,yes,no,cellular,nov,thu,240,1,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +45,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,295,1,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.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 +36,technician,single,professional.course,no,yes,no,telephone,nov,tue,34,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,technician,married,professional.course,no,no,no,telephone,may,wed,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +35,management,single,high.school,no,yes,yes,cellular,may,fri,130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,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 +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 +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 +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 +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 +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 +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 +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 +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 +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.9y,no,no,yes,telephone,jun,wed,920,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +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 +50,admin.,married,university.degree,no,no,yes,cellular,aug,thu,460,1,15,2,failure,-2.9,92.201,-31.4,0.8290000000000001,5076.2,yes +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 +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 +30,student,single,unknown,no,no,no,cellular,dec,mon,69,1,999,1,failure,-3.0,92.713,-33.0,0.7170000000000001,5023.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +29,admin.,single,high.school,no,no,no,cellular,jul,fri,446,1,999,0,nonexistent,-2.9,92.469,-33.6,1.0590000000000002,5076.2,yes +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 +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 +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 +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 +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 +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 +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 +69,retired,married,high.school,no,no,no,cellular,may,wed,289,1,10,1,success,-1.8,93.876,-40.0,0.6970000000000001,5008.7,yes +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 +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 +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 +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 +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 +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 +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 +34,management,single,university.degree,no,yes,yes,cellular,nov,thu,125,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +41,blue-collar,divorced,basic.9y,no,yes,no,telephone,nov,tue,32,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +32,entrepreneur,married,university.degree,no,no,yes,cellular,jul,fri,116,1,999,0,nonexistent,-1.7,94.215,-40.3,0.8220000000000001,4991.6,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 +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 +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 +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 +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 +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +28,technician,single,university.degree,no,yes,no,cellular,jul,tue,175,5,999,0,nonexistent,-1.7,94.215,-40.3,0.8759999999999999,4991.6,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 +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 +51,unemployed,divorced,high.school,no,no,no,cellular,dec,thu,112,2,999,0,nonexistent,-3.0,92.713,-33.0,0.7140000000000001,5023.5,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +30,admin.,married,high.school,no,yes,yes,cellular,may,mon,82,9,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +40,entrepreneur,married,basic.9y,no,no,no,telephone,nov,tue,40,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +55,entrepreneur,married,professional.course,no,no,no,cellular,oct,mon,116,1,999,0,nonexistent,-3.4,92.431,-26.9,0.7390000000000001,5017.5,no +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 +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 +58,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,80,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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.8580000000000005,5191.0,yes +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 +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 +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 +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 +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 +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 +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 +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 +26,services,single,high.school,no,no,no,cellular,may,mon,298,2,999,2,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +31,services,divorced,professional.course,no,yes,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +38,management,married,basic.9y,no,yes,no,cellular,nov,tue,390,3,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +32,admin.,single,university.degree,no,yes,no,telephone,nov,fri,135,1,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +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,unknown,yes,no,cellular,may,wed,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +47,admin.,married,university.degree,no,yes,no,cellular,nov,thu,70,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +43,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,287,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,high.school,no,no,no,telephone,may,wed,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191.0,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 +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 +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 +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 +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 +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 +30,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +38,unemployed,divorced,university.degree,no,yes,no,telephone,may,wed,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +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 +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 +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 +32,blue-collar,married,basic.6y,no,yes,yes,cellular,may,mon,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,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 +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 +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 +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 +35,technician,married,professional.course,no,yes,no,cellular,aug,fri,225,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8690000000000001,5076.2,yes +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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +53,management,married,high.school,no,no,no,cellular,nov,thu,184,1,999,1,failure,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +30,services,married,high.school,no,yes,no,cellular,nov,tue,65,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +55,blue-collar,divorced,basic.4y,unknown,yes,yes,cellular,may,mon,163,1,999,1,failure,-1.8,92.893,-46.2,1.2990000000000002,5099.1,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 +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 +40,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,1080,1,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,yes +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,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 +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 +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 +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 +42,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,23,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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 +41,entrepreneur,married,university.degree,no,yes,no,cellular,nov,tue,854,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,student,married,high.school,no,no,no,telephone,sep,wed,277,5,999,0,nonexistent,-3.4,92.379,-29.8,0.7809999999999999,5017.5,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 +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 +41,blue-collar,married,high.school,no,yes,no,cellular,nov,tue,77,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,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 +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 +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 +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 +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 +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 +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 +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 +54,admin.,divorced,basic.9y,no,yes,no,telephone,may,thu,74,1,999,0,nonexistent,-1.8,93.876,-40.0,0.6990000000000001,5008.7,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 +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 +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 +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 +35,technician,married,university.degree,no,yes,no,cellular,may,mon,262,3,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +52,admin.,single,high.school,no,no,no,telephone,jul,mon,9,1,999,1,failure,-1.7,94.215,-40.3,0.7929999999999999,4991.6,no +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 +33,admin.,married,university.degree,no,yes,no,telephone,may,wed,623,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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 +48,management,married,university.degree,no,no,yes,telephone,jun,thu,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.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 +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 +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 +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 +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 +39,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,175,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +49,technician,married,university.degree,no,yes,no,telephone,nov,thu,14,7,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 +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 +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 +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 +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 +43,management,single,university.degree,no,no,no,cellular,oct,tue,408,1,999,1,failure,-3.4,92.431,-26.9,0.7440000000000001,5017.5,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 +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 +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 +36,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,fri,68,5,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.1,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 +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 +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 +30,services,married,high.school,no,yes,no,telephone,nov,thu,156,7,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,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.0760000000000005,5195.8,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 +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 +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 +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 +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 +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 +36,technician,single,university.degree,no,no,no,telephone,nov,tue,18,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +63,retired,married,basic.4y,no,no,no,cellular,jul,fri,273,1,999,0,nonexistent,-1.7,94.215,-40.3,0.8959999999999999,4991.6,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 +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,no,yes,telephone,jun,tue,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +32,admin.,married,university.degree,no,no,no,cellular,nov,thu,18,6,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,no +35,services,single,high.school,no,yes,no,telephone,may,fri,473,2,999,0,nonexistent,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +35,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,mon,289,5,999,0,nonexistent,-1.8,92.893,-46.2,1.2990000000000002,5099.1,no +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 +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 +36,management,divorced,professional.course,no,no,no,cellular,nov,tue,75,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +33,admin.,married,basic.9y,no,yes,no,telephone,may,fri,147,2,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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,technician,single,university.degree,no,no,no,cellular,nov,mon,984,5,999,0,nonexistent,-3.4,92.649,-30.1,0.7140000000000001,5017.5,yes +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 +50,management,married,university.degree,no,no,no,cellular,nov,tue,66,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,no +41,services,divorced,basic.9y,no,yes,no,telephone,jun,thu,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,no +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 +48,technician,married,university.degree,no,yes,no,cellular,nov,tue,208,1,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +42,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +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 +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 +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 +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 +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,237,2,999,0,nonexistent,1.4,94.465,-41.8,4.8660000000000005,5228.1,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +26,admin.,married,high.school,no,no,yes,cellular,nov,wed,112,1,999,1,failure,-3.4,92.649,-30.1,0.7190000000000001,5017.5,no +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +42,unemployed,married,high.school,no,yes,no,cellular,nov,tue,154,2,999,0,nonexistent,-0.1,93.2,-42.0,4.1530000000000005,5195.8,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 +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 +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 +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 +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 +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 +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 +51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,5191.0,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 +58,management,married,basic.9y,no,yes,no,telephone,may,wed,187,5,999,0,nonexistent,1.1,93.994,-36.4,4.8580000000000005,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.8580000000000005,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 +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 +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 +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 +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 +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 +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 +30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,83,1,999,2,failure,-2.9,92.201,-31.4,0.8809999999999999,5076.2,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 +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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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,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 +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,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +28,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,137,3,999,1,failure,-1.8,92.893,-46.2,1.3130000000000002,5099.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 +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 +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 +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 +62,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,64,1,999,0,nonexistent,-2.9,92.201,-31.4,0.8490000000000001,5076.2,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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +31,blue-collar,single,basic.4y,no,yes,no,cellular,nov,thu,111,2,999,0,nonexistent,-0.1,93.2,-42.0,4.0760000000000005,5195.8,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 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/batch_endpoint_model/mnist-tf.model.data-00000-of-00001 b/sdk/ml/azure-ai-ml/tests/test_configs/batch_endpoint_model/mnist-tf.model.data-00000-of-00001 new file mode 100644 index 0000000000000000000000000000000000000000..cde30cc06482d47dd1f90f7a3f3c69a354b2bcf7 GIT binary patch literal 1066440 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%0ANGBn0o}6M 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 g0Np{d5iWz8E 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

;6Fo;&lD7+0&~f>#*6Nr9 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 #A?Go<8?&;8WNdmi0 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�B0T*n3$Y7z`YyF1<$F9sB=vKMkQVnr%DB=IJp@W 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

crko- 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 t3a=k&kbhXnwgx>GQ7-ZOsXZ1#nZ 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�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

1X^*R4^2K#?4X(s@n? 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

XjfsV-g59*eVl!EBI1-+y{iG{uHo~X2 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
gT&e+l(8fDN#gjq7yCm>T0`8m_i-+&$ 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Ν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

^XNhHDcs8r#Mtjmw}v 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�f=6Zh5(Mmw)C~Gc7FO4_*EW`|I%JjfsJ|)b@M6c z)C7T}(q9P6a6nftJq+ZYxhey$wCwu?w)+Qw|E?9#tg6iVNG@hBt&n6^Knu@EEExxf zWSPky#9=@`4Bo2O;Qjj}Wae^V*uRGB8=aEI;{3N*vZ50notRdj*Ln=jzM-HZD8>ZL ziox;LB%}uua6lsg1%F6`SFR6Sa+`+^K{aq8YcWZ!S%jMRdeGv%7lsUOgsYpoNVY>7 zHr(g{RXIcC^F`U#??p7@asis2d1%h@G>^9p_E{2%Yj~WPS5C>X17~553}p&2AT5 zkh%-A6m?1PTM<@eDhnISeNbIh1!dyYi1a@>cEe3I>UMP%i7Rb|QN?EbBXtLIQ=1`p zZ~&w(7E&hm9j5wDW46qBiq(QuIPpm@eAAiD+vdNUZca$S*qVAc(9WRewlKnMbAYbdL!8k@doBX&vY@kcg&7?-Bp}JE*ut0Mb=0a6LCaOXymU z<+EOqYvV}TSH8k9V>{fSyBePq9fhd}B-z@Dod0Ule3;;%iF^E_>7#EcFu6GaD%m_3 zemw%pm#T=%A|a-XzZXYK<1z3`050`T!(d-)@~*dm1_~k_`qT#&A>(A#)I8V=EV&`6 zjYrna!1hVmoHNq{WcIhf2~l<4g$8eKzNQLa$Wxees2x>Lcf$D8yZC!Zobj0Ej$ic* z@L@?ib)2*wul^Qdhdg`88kb5?%kkp&#tWc}UqNnO{DG0xW#qcuZT!o8h8>4R!Di?N zaWu^ZU&*f+w?_;sT_Yi1WHz2TFpq?Oo4_tJn#>IOvs9|A8taojg2pv5h`8QQ9%^rc zqR>wCU+zJUR&bp6TPcv&EX=-l5oCL8(xGvZ56numgW|}Qe8qRttaJld ztLDyWWOW!=*m3hWp+-D@@6N+K}r~5SFh7$j%MiHd0TZl53D`1iC9$1sp1d;O$aUg9T6ih6K4Tig+ z``81x;ar63Uozpsl1LoIeKcOG09saf(4!p`)2)BOVMT5h+t3In6&t~{-x?)WB!EWO z0(!Yr0?lGM?ntEw&1`!^MP3S$8y#w3uM>u|lx5Rkd!_-j$|Qp4J7qZR!+FCR{LwOfJ_=_KkkH-fC_cK7xNfS0 ziBI1GIogcv($z4oTTNs#nhH*JWbz{$Y`DHv1MgRgK2Sbkg9LbBey~zh4b(>oA$v^?NHdsJja;P z?X>y>p!CLNY{KR>eEF3Lc(Ru3yNqSR_OM2d!&?Iqs>N_7XfN(67KO#Tt>E5gvH<%xB*EFEBFy>QFX+IBRVa8N1*?8* zq5rx?Y<6ch42n$$zSL6Y=%xf1`}~rZV(tbJvUfnUZW?)d;5P|odXSwOg)t{Sqjv9K zjv*w2&o?-d2X7i+wV^*+aan-z^9!lcp+DHmIYZO^xaTlV680+`#)bx4qEoRBo;;WZ z*|wgbxGWKlByo(s@wGHi{XO>`^Z*RA5S)cJ;31O_^tgK(rXCexKkebT*$*GmWmJ*> z`OjnQxf;s598^f0K6ygvKmgiWck}AEw~?Cxqa;53F}Fi?ho1vJu!hSGq$L@UNVo|n zxo%O$4HZk5OP%LUO3b z-XPlGw47E1DP!M%oWCVo4}01gplYxT?>`r27mUP_rtcT=NNqYMoV`MXr!1f^C(XfC zW5@CSgl32}Gr>#BlbA{`SNxGz2m6~$VXy8V^5s4Ej`jXb6fG3tz`!In`L8TYj&{PX zY#HLT^feW0(Lf}k>{U%;s!@HHoEZ~hHIyIo*55MbZSv#%#Nu{PH}VORHR_>w(-Sa} z`vxtwDrmV@9@`9EK=zR~-LG?&R=G8x;)AK|Gt&y3wB}>MdEXys{NE;wSQSD08q7hd zG6fcQ%>=LBo4AQev-|$>u(kXhgr23Go41H_yD*SFe+2GUzopvlHCTQx6y*PXgkIOX z@UprI9}iW4MvXEYSC|8zUt2;^3&%F}cE<~zEDTly)-2n#*OkJ_>vv3nVaWWK3s)5dpQ0$djh{M;2g=q`fx+39J2eTFp2>u zae}@bh6ly-r%PQ0o1}Ks@^67|zc?HfPyzngE^aR?hSe+Epw0auWR9ydS7#_NvU6k^ z1KrD5pFK|LixH4;E`q(0@|>rx7Jr`gg~@}mjO3GYk|OMd!DnZ%%0HH~-g86YZSxFv zPEs?ZSTM3xUr;Q(nl+kU2xr;_S<5%R@KVK()cSoR&ixE6 zSQ3gc--0o=UykW}EY0*fNwedc8Pt${2UW%KaBfi_%{{b$)x4YnclzAmTdx<^;{?{` zP8@bfac&V+#5e!F#@}52ZC(k&;LAH;t7HXF7C#|hqlB1UXGGbQ<)_eN@&yy z56%@E(1^Aj;J?KSy2VOi?owGi*C5C!pG^h(e+TK&u8&xCvJ!KyDe!cLv#GU|5bJuY z2+l2=4+rM?gE=?bR}6gyU4C;xxh)vyc9|2g%LdSLfXhkD&cX0Nx0;kg6!d3YEr%u-(|#uh;|;f zji%u5=<^&S_AgH4m_Cn6inY_cxm>o|2*eokaHP@;p2m$~^Q-CX8s~mASzivX(uJ5v zZ65lce@-Rl4C0ID1@Kr!kR;oFfv?}Sz#~)&RUTSE(6g`T9TZ7l?{R~vM_JhSy&bpd zIAN278BSpo@O)1s_D-JyJ{8NUbRd__%+|#-%L0*{bjJhx#z5IV5+*LIq;=;;(MzKY z7rC>T^6e?gM0P;+S#Bn8*U#<8Ca|&wQt(f=9T$e&Bf(N9FfHLbjJ@p#;Q&vFbLhmS z3;ZzK-vMh(&5+Lhg2BR+3SBXQlgFQt`Nov0s|Z3lfYMCpkWxXDF zid+T1{`qjogz%=m*$(B~unm*_%Q;1(`0`Wpc7B;W?M(tPD z;O;BFaCY=PnD0+zW|h-H~_XU&{n0U)LH$UcLpDv>n=#<54JbQIo8{ z8H~#fBdKLm6dntE2nu?s=*3$NwX+RDYHT+O+(U?d$#En82(n*K&4(HMyF7)61?=*4 zKl~P&iAy~T!Q*`g&u{^7a~KKshiVCg2^7;=8wTO#^{psLBT>;kZh0yC7mwi7iE@noQf}X__W~~Mi-vDsKht z2cHYgp_6S2FkyxytXDIkx&2DqxkZQnPE!Tn+OQDlV9V_-7jm4h<*3r*2Cs)5p(MW- z!Y%pGvTy{%BW6>_dmZFglrq}HEQHYe4@k!sA6$Ga9m=?z)a=}O7#Xwxbt8RXEPV$m z6>b141rfB9d;p978E`pKJ4kBxyvb$Z%HghR2_!4pzp{# zRS%vwe!|?z$!KMAjeBN3aNf;mlA$2XuIQ5GnFx8~&aaWk^j_wClb>;7nic;|y%-8{ zpPfa$3JfX!h1I<+#EE&2=`%i)+#N;WcIG8V8Lnk^JoS5p1H`Ml=| zMa1<(2U&TYCHgPsvKKm2Q8%5!qJ@a8*q%3n|?lVw_=@=fJkM{B}q3g&g;&59S z`#Q@Z;iLo`ao{YZEPo0~9;-Q6f&^X7acURpdy+|^JvjKeg<8moFpArY!TxCvJ=v>( zSEr~z?fXsWvEn?+E_4CS$Hwq7Mi(n4u4EO(BO&^36(yBxLP-484`JHi* zTvl|2c(JEsMP3m$T$uxd@BFCa(Ew0A@($Z4GdQ@|AO70)q2eA{rs}g7dbr=gwdMI> z&as~xxcqQ+hbZ$UF1p}K^j0a|G?){=KY`=Zcy!(?%d}X%BVW&@Rz;|S}@&wjsP9%9?HXpp#L|{!+DzRX#!1_rJ{AY3ny@i&+ z%DBZ$#KhBZ&hb87=f*vyd6f{NdKU!5+R?`<5pS2NB2Ui&r&bnXX^sKjI3~=VO^JuM z`vO7sMLf(@E+&Dm7K2*;JU05vN%&@&i8Al)>5}EQz_4Z(p3%Dje($f)wWcr8wEQ^O zYW4F^3x6YXwt1nI*m3l@{D)>5y~lIMxV=uk4@A|@N3E^ z4=XW=J7XYxC>>5_aBQ$FjxiuM4@Knt!E2-eS|o*-fctXnu)G0ie4mbo_wGT7xzA~B z=6x96Y6$7slNjkKO3a+~{%D~o$Zq*KpFOH4#+(UxfCI(D)S<-ADQudNgrY8!m{rR=$OSDGw7$(k@T4p-v=e1D zjy}Re(}VG#Z7Q`3$UrA9o11Yw5T1pd$Hng^u=;~x*v{KE?it5ai6eNxYZH22O+%#z&!By<96HB$!z%6` zJj=M1V+L}$y#N6?r*{vN_f5yjs|V41R2^=)G~%@P3LyHV0Sq)BgRprZPUq&0N4FQy z!2kiQXcgh!nNieT)D8JIe>L5F?^~K)X#5&yJEs{ zQ&b$I#$Up}t6rEN6a{I%8BkL%2g_*RDL`E%;h^>)kq-_RabBrx$890Da^e{fGFVnsy zQixhgfLC|+VKyw}IL6QEqgYX_*!T?Aibvy>o$_$6`VOpqT29_v{|XsyomA{I$0_Wn z1MUN-LXX_wM}rl3zIwz(zB$&reK|H=u^@H9?WAsX9jgB;#jX3Fp+{959Ew?uOKeZU zn70}@cqY=!WxJ_M&Hzra;?6>TW#mn)0>rKehQeE`=$U~r6qx*k@Rr-)>7|pHjo;tE zyD)3;wQJ->_GZEIX7I^B6D;}Eh9@m|Ef}8&yEtp^W5cJkgMPu%~#ec@RQtOlP z*x?=cc_PPHop~P4o75xC>A{mtari-81D?*yflD%9_)<5z&`D_$tc<(^_j~f8zjrby zL@Yu>EAG6ZYXVwp*Tc0%+u$_Uzs%Vph80TpV84A2-0FA%pIY4bD@A^y{GLwG(8~e7 zCim|am*E+gIMC7!qw~=`!PKmF z5gK2c0Ub9E;jUp8=}UJMNt;u!Xx2CuYRvSnLZ7iY-bBUwqJnF{$}`aKnwmeKLq|czfjL(Kcw{e;_-Kh z;A`}qY!#}9ZYgnKA3aBG9{(%ICWZYCZiO%Knba$CW_-tD|PxG!S zOzoBg-2*3~VCyYV?98Xz|2v23O5@vs>2tGkHJqPhe!lfpx=r?vh`&Y|8|-< z=OJ-M1*22&ci$%b*?u3R#~$H#-FlwmzeMm`{~S)KNitinzK4sUhHzWk8|t{8<26T&B~^ieL3%?ST=Wly@qzI6W4?4A_19asfJk)rW8vt zC7-5}fr>=_r|iurSQC#|xqH9nG;i4Vdjg{t$GI%lbzx6zA%;ANgxN1F0lw`6nma_O z#cm8ZxEVIT*TL%!93!zi5u6+@f>XadHJadnC0&uQr(7J@8+Q>05djz$<6)-cZ>V|C z@pk|4F(qp=4xWnx9h-kNGba(={u08EN9IGNdjWV|^98Td8^Mhqi2h60QvqXrQsbEg z`_`mTrHQ||?#XvzdG|Dm?(~P?I!f{_et@U)BvSP-1{E8u>2c1rpw4jyG&&0L!mSQ? zZ6`>+DHLFD>^Jb%Gl1!~I`BGO8K)Jdp}&AGnoSU54A+E`zo~z5+7pfuKeK=z@mrAm zaO;QE;VxSBtdRzdh0{GYe{la+Jv!~uB-$krh5IaT)A1l~@0cZrmF-jU{?K$rddqZ1 zpXHdOSGiu(77=!7&pa4DFAi}-u6R%$z`~{!Rn$W1{sa&Hw_l1d#aX974P?n8o-;UB zode;Cy_hi`3P~Sh;jaxUAWD> z5+$AN;9GM)-rxEfY^OJZgi8TRQ5%&0uMDn!H-^U?Kjq<(+4wqBo;Zuepxv}+^tHMT zlWz9Yn0>P$`dbPL#RY+f-4D3sww$J)s)6mZGhlXQNCRuhID^|jjzvX%R76*x9ReDY}I?{m(IfTJ4KlvEAGSKy#fe7SO?qt zvoP?O0<*s63gouDBlcDoQRZJ4T-B|ob>B5n@Yfj3u=)!kl;WnDyYbEXiA>~wz3|_1 zAvUOo+hPA&0B+yB(9TK@oo1(l`j=36KJ*Ik#uS*DlSn*P7r`v)Uizf*DazH}z~IGzXm zQmD8h3&B^1L2*MZ`f;os>4@8C&$+@Ax-Jt>ixFDf6#|~pCUnm_PYik$iZAqU@n=NK zW3I72zAny!1?(gIlz)e>FP;wV86TnjVI%K!u`hpFNk5jIxr_Je(m^F&j{cQ5z)kL% zv`ix$f7u!RnD0WkZ-xhNVga^8~}JaLYJR^nhqc$_ClRfM}@ zHb>*WIS;hoPS^pO%5Q)*;o*x;cft?X!&vKw(Bx1H-MO8(aL!(;&}58#slUkbxWk~L zsDUb0k)ToGPkJf@*qSUw>ROaU9)*-*Y2I`rbD&^H~diROeWc z346(8#*+GuhvHM|&+t3i0K}#v@Z`m zvpnRHx1`kkD1Q4snJtm+=HFR)12yV8N#sUAH9;}9dA10XE7b^2Ieoa7?+)%yJMr^& zNBqal)0OUUUA(7(Al14Z_N#DzTZ0ZL<>rB=LvbkhiU;OD#mP~RJT5a>&R?f^7j>^Y zW4wj}{Pi8CsaE1xU}KJd@`J!O^)Z~SxdsQOWb(3^VJP_JhQlXI$?U{HRNOg*^Xcw` zuA=jp^zs`N%=4y6-LIkU@&qe~U__d}28{I3X{vx6}$;u6j>2t(0-A@DrZ9Sj5mV6Cq| z{<=LAGYSIni!A3=urtK^3*0OsNR{!|_tK71oxu7SFTsm;TX6d@$4{x6MNM|dQ1eBF z#IolCTG&lw_^N&AqV)mC#FcS>&1;Bw?T<;GE@%~W7;ws69qE3IUM$J=?w3;4awljC z6JgD}-*Il%JE*qb7#u79Qk|DyaWA*amGwy{PL_pG!QJI%%+8|r<{tbr6|SUw_j7c8 z8w01#e}#obKJcq>J~@?3@k*>K_j6@o)}wjwTKNg=h;YRz$3(!lvk}|1S(>Ki4}zOq zh}nPE7_t)~;LHo;-^>EJQ30Z2%3zvT2JUcu3(Mz}Vcq(hU=m>gLUl=atn49bXsMBp zb2v}R7jOQXxGJ(RK@x^G8Dr^x9(3W6DA+4230sxK3TBFPobhzdci8`%wl=8Yuj>Nr z*@}-arS>~Xv^0lhre|R|EFZpKxs4^Z4!C4&J$Og-LwwjBNEx|F&zbw+q|kM|U?EhH^ZPv-SWwQtwIg*9iR$~Qgl{W(2Ai|`b zOu(&4q3Buv3Uq$vK<#~LHcZkQYc~7A<#~^wGm95ueL0yC3R$muz){Yp%dnWhke za{M_Y(9sOMzX~&(c4ZOuqblGNo(&;vDX-t}7+#7PN0|+su&PmvrJ){>lm3->=~i<- z_AdA%C&<1!=L*B)k=VwudW?i?Ad_RI{Jg}XaeFE>B*)_%0}(i0eharfxJP=fc=Gmd z{)HdwJ`uHYPfZ466*UXq2;3n47uJ0+eXcBX}d6MD_c&c9rzC`Zu9Af z?&+XiBo6T&t$b(28loh0l@x6_05^|S;NeO$xJE;XZn_}bTXqj-PJf1q&v&7osU#k8 z5@m8%+((HVUkrMC2B+qw(h4CD^iS@fTXc$H%A0*W;l;k-WG2mqTP1^A*&m+QmQDy8 z4go>$vv6lEqV(V~d*)XN%F8gk->(O;;ebvMf&^RO`QJoBfn#j209MJL0t1E2ngOwjI>m!f?*Og zc4ZN_4hi@^C5ylF=QX@_FBbL-y&+d#_n?l`YH->piiYnvzVYF=aNSjl_f1=f{U#Z} zvt62uQ}->UVFDlMtlMKaxNt5UQp$$HXf4>`r~^6)ru4-33`ib(hB`7~u+1im7+Cn? z+=*N_)p{mm|J{IDfje+-?;DVR>W{-GN>Os35OX8tA5>W9fwjjgjGd-L4u5>BeS5no z*1hbbN(VjBi7yVzEV9t|)C5LTZzHiNt)>T14bED8=NN8h;p7)nZeHAqO9bOUW7l!4 z*_#46yGNnHXCB4{)xyPXB^W)VfnPXg|Ifvv9D_@n>(IGFK*<#B^Yh}K^D10?dlzif zI}F{50&HT}YJBm#nS`saMvajqkmjr#Z8Nm_5iO>`>P~^+&Fv&aDh+}S*VF9LB4V59 z531s>VCOjkGnBv6(CT8ylIz2&G9Kr44uOlGRnX_U3|d#(gT?nqJo)ej7Joa#S6q?| z2Iii)_Q)wrmmAQUbmR#UT%HZDVrRfm-zKmLc7(<2ov66qL{KQVg!3cbQ2llhZZx?G zrC&QCy!txczq=z9_eGk$Jh!kB+VweuA@RZqA~ z;0EZ3yN&o+lYMacHQi@y32%(g@Pzn_*qc3vadM0r>}h-r4k4e&iNzcES;wU?@cl)y zKrk1I+^1rFdw;4G?r98mF!J0hbq~V>@#Yo1J1H$y$iMJ*0yx zgu-!4_fs(WxCy6mdGO0Nq6`--qe+!&OmOQOW>MTl{<%V5*vQ>E=+hl^VQ(({D{sUv z-AQEaw4EflU>CoUmc#xf+`HxDb+r8{&&=LAica_aAjAHRZQpE+?c>CMXNBJO= z_Y$^>OvBQ$B+|lt_6y$I^IBE%xJVEgj+xJ4D7SZLx{!w(ZKgrNRX#XP zKZ%FezsArnG1yvg3s0s6!QGSdU@-R{wKzC~^&2~bt>ayowk-rI<*Tq)^%+=yzeP51 zz3=-gKH|^w%8a)NH16x;OUAspF&lwYYlCWAs>%OOH>~2V0p;JhAyJ1Z(_(@fb^@y+DYyHeXII z+X=GAm6pQYf{A$d(E}KaDFkt*0hg?Cf}+GU|TFcOGcW_?+xd}w1w45KC=K*^s_CW!C%Vl~^$ZTP*gSnUMudc(PTw2F!b6ErE?h^B&k;cCJQr^>eVo%i5Ga!X>f>Qx zwQC*orQ{Uy61Ko_ZaYRUktgqx$FV6Xp3Y6YNW*vC1&I`4wnuFWV1dyB+}2KaPpTw^zXG(cy*fq)7bol9x-@8uC#7LiH;WSX`g=bYvJG(b2S+g4o1ABJ&siGU7_ z>80|S%igrU=@qoRv%pVMUdVgN<>~svak-!OHji`j=nLn`Na9Zne&dSkxeS}y z8ArVHd>kK^&tWE1Uq!1jKR9{yDb)8pfw{9qp(UPk&cyk^bQ67OiP;8h%m*UYbQ1r@ zU&Jqm&OlT5S1u1yM=L$_AfN012RpamJsieR{Z*vBcm=EI`4@X{)>3A}8tOAB2Gu%= zP;g%oTD8xCrgIPuDJ)rAgA8PM`&gA1LdZ~b)mokn$ryX&j zUI2-C$N9c+2D&dUpr5vJTqa{KE1?#F|J-s&>@1F@WSxsA<21BK?SH|3wO{nVsE1_d zz56kbl6f4P?9L;OG4*gG@0q13?p_aI zvn3E`R|+r{#ufN`;x{O?OobMYTKdY~l6da3E-0O#1L_+4u{F_$lv}HkW#ij8R`qpa zs>gLFE;`|xVoPW$uB9u6xbH-zL{da0n7cW#xOqH}v~KxEgEGy?;?iJzy&A}Oxl!KI z%ks>b(NUC`IGdUITa&eU{{s?cgo3SWC2Xx$$M@zF*^zk-@XAvX4YzH?6(3gOiNM#8 ze|QV8-oysnrF-c3+yD}x=f=({-oTze_8W&?Z!mX^ZZX$qPo&YsY8byYiG9@62Upm)X>j0Bu#U|NM+Bd?K{|^2{2z`Ywu9^uLTRN_cF>7K!!I z=FgeSL-NeM=?mE2@C3H*NFkJ`cHo->q3q}Lt8t)?%X$}lg`xsscD`Z|qhhg+>i_A7 z<}cn%l2RLlhTUZk&qpxW8N!Yk?!>o8Z?Rqx{_I-GOh!0z8>@3D5XbNAWUj59$p)-g zP7Rz3m^nKIu>JTr9IdIvE1yHy?%pBXJ8vU?{qUImVinF-oG)b(hND@P<$UHt?lhwJ z@i?>3>H+KB_ncjSri{7P*^UoYUx90x4Kvzs9yPRMS=%YO=usibMw}aj(dE;bv~oQ* zd;Jl%G|`mZKYW!5^{r#-1l`$_Aw6u@j$KU08cVh&VKuXDk}*^E(;oUIZm@f@sENh9GnMU_0Z~`U-E~=x6_1bshz--)5ib zzK9u14 z;<^ejwT@?JmL@Pm*X}Y?K5DQg4=++pqpOU<0SjiU-3R<_5yv<^E=1kmQz32OBCC<> z$OM#a!g{sUOoZl9CR6$dYkp)BJG9Cj#=7mG;MNhoio@2z064Y~J4$6fZ@ z-@EMZSFz0J-9GH%3%QJ%+7d=a>z=mWhc>qHyAXRLj*v1)nj}t^%uoIIs!LWu_TCVJ=Raz+TW*#9v$0Ve5H6CS%ewGJEn?=FrR- zW_7zDW8}1fb$2x3{8u5+>g371|FxA}xk!)6G;(Hzc0OjEqg@z<3+BvZ<1prN`!u#d zOMt1{zY7i}&cIVkUt`}nJGOpTHlu&qnO6e`*iAG1nXRidVX*Bqd-ZD^4DXd@k37E1 zEW31u`EYv@Q{LQyX{O>RUzY-Mv<#iHE;AWTALzMYA?A~b3$$(D!rtvX%2;e$##nak zK|P)@&PbDCFV(i8)8B{erPO?;WYukE!LB&QbMkgJXS9e-o8!H4Fj2l z)$`b6V>M*=^jOB~bvN$R4`KC9Zm<=|pwRAXen%wp!W&0r^=&4NF6 z{p9Q9OKg$8GYVi3>+SE14xci4p;n^nH?n%5clIOu{8bz4`Qt59ck(7XU2!whRW+9_ z`;yFP*jO-wW*t~n+K8|0%h0F6gWccro2)QQV2ej0*g^4e)@rdN>-oe4j_3QMs^(ja zIbzSOT}ruoZ!DguUdiZP{lqNM3S-s#tT{HYC*9XjL51FOe7$aAW@X$RCgXA#n;9m@ z*yr`JHeatZZH`LJ@*}ITuJ|ge?;OCq6f|Sxw}*p#x*&|YAEg4ix9Rj3W3WlV40_(N z+#bu7(fK0F9IxNSsNSE65-S_QWw`^py6q18~}fS$Ri| z_0m5=RyBw)*59MqMKg@q7s)SiYrHRNYOzd-(lX}dmcvY6>~hxi@kZ3Mn$L`wpJXli z1Hj_rXLj$0=j?Ukql|~8FH;*-K<6AxVvIfvfJ`(&`wQ=w$k*pt$4n1)e9KeTI;N6t zP<%)Hlj|7}PGfhkdqEf%&QJWciaDmz0{eUPWSg$Jm2T_`MlpB(%fYT5e>(2)T|A(%0;B@_697HbCh%& z_yNnTp?>@jt$)VC$oCs0bk2Hlrq~<#!P;c)k`?&SXfw*}PotJs7-WAc z2gQhNy7<&-Fje+K|0)p#KdQy3>6`eU;CMKz0bqLl0k1*pXN!2r4%Gh=hLh?SK!5lc zy!qG!Dl78vXhIfN4i;bEx)I@??7l@F1`vlo~y${M0t57`b4jOBX;jPPNzF%A- zSWl>>*~S&cr@LUa{*erim*qYalq|MheEYwQ1`Bn&xw6XJ+Jt{ zg=g73y+6|>avH_Nx3^WID`qC64JIXy`C5>A^rXZ)t(|Y`Q-e=A#?awj2Fr`H@Vt5w z*7wTj_F)sqcZ#AJtc~#KR1Q76a+;sm?TjUzR^S~FOKSviz&98tpm_#cdd9(2;T-0_ z@}sKyO3jK%rTB966!f$RVg5r4bW5qG7rWMjP7oIqZJC~0@&p+e+lvuLB>d%l^NE{v zKS<=ALDga(4qr0G^*SEdZ)l94+qS^{Y!N;2i-2s}6pl#|PE@x^9_yxpfFH4ehB59H z2m1~R3&+UnT~#FN9GhoHtB8Mp5J-&+G0#whS{0@^pb!UBvET8%hA9r+T1G49TH*GP zX<+@d7ia7%XxEeoW;~>DU{MOX9zTcES$7~eZWP|F$;99O>kDjt5Ao7Z0OgZQ8OcsF zj`#1zc~TANE4>1L|2mhBXEXUg+ABQ0G8uJ+sUVv7nsD0pp+Zs+m?yQKTV`N?{ z9Xf@=oJvTTU|5?30-sK{q9BhAFTxBkX*!<<@0=nDj#;2ya2E7;B|=778EHMh$A~^5 zjasOU=UON6MUg-L)tL^QAOmdtu8q~Bm%y7{3>z=&{Ncq@M2O-Hob~0NfCth1HAZb3!JgPaK&B|2%j5+0wYau zkPU%rWg*VHmw{R#zr#J7WhiqtfC0e{=5F*LU(My4MYENuO!jX)<~N7gHD8KGPlT|* z(H6bpQ$TWM4{V#Y4!-r|(U!x$u-#k*-h7@w-_%z$@{194mREz_?nFFTy%{)z*+d+k zjVm)NNbOZ;OsUl+p{+OIR=_@z8NdRwlL0t?F$WLdv18tFLt^pC3}b6M#m^t>gH&-H zM(b=snniIk@-@SWJ_MP|CG70m3ZCYFpz}LDy!!Y$sIe9Ue^QR=FrC2uhASX)`w8W? zsKAnn959Jv*qN3X%6-y-()Vtlv057n+3AeO{{Tq0X=2UTS8_Y`B)BCDz@$+PaC-rA z_Y_NP*(umqlmV+Ya^aZrMYQrtgLl!Mu+)|X^`V)l&NrsZ`<{Z2wleMTzD{QrJtmyP zdPJ@(5sx@sgBT^fCWBUQa2d_UiZ&rQnfW2_c^T}Vc0d)`6keH9gWCqmFpyX$)}81k zCHe>9a)mie4_&1v+;aJxWOoSO$Ls~G{z1}&Z%MyDqb5;_tCW`YbL9Wd7hqJh&%qAU+Sw8D2z$Km7MYwe@x=alHyt=9xI#+yZW~L|9&zg|53h zkSooCbUSNfw`4JC%GME7mw<3PnZ;9c> zv$0sv%U25Qqv6V9#33*rmlQTpj-EDY6DZ*{nqe(_5E2}{>0HhY#0Ce8FBvYtwzPw4 zPd4_(jKLxA0Z=MFh&ex$uwrnW2rg>US;L2s^XpCgn6nUWq{hRfRVWmFdxdhk91^yx zitlFFObPm=J=0=bncR9c5Hi{;njc_&z$0 O1fwjRai_mdhW`W7rYPY6 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/batch_endpoint_model/mnist-tf.model.index b/sdk/ml/azure-ai-ml/tests/test_configs/batch_endpoint_model/mnist-tf.model.index new file mode 100644 index 0000000000000000000000000000000000000000..5d7349858dac4833536ea34da7279935f2a2395c GIT binary patch literal 295 zcmZQzVB=tvV&Y(AU>D3V)KAJxEaqSoVijWMSi_{Tfzy<$+4BN3n^bmcQC?~eP=*UA zGl2~(t+0VpqhXt+=|PtFHyGJOj9{8sgqS!|6gKR))R@3*+S(pnj;x;(tQD-{z#&VG z11s50^*^T_Vc-_dFD)r3EkQPfOQGS7gNBCbq{maN*x4lDZr}iE2VyRT6+rm~@}@3j z=?@ryfDuH5vR-h4a}Io3xPgI@xq#s!SPo32J$rxj8Y9PJMt+bo{2=^yL$^w)`)vTi CsX@X3 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/batch_endpoint_model/mnist-tf.model.meta b/sdk/ml/azure-ai-ml/tests/test_configs/batch_endpoint_model/mnist-tf.model.meta new file mode 100644 index 0000000000000000000000000000000000000000..79d058f6c0c811e8cd9d45141eb0b4ac99f3622a GIT binary patch literal 30157 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 grad: array, hess: array + # log likelihood loss + def loglikelihood(preds, train_data): + labels = train_data.get_label() + preds = 1.0 / (1.0 + np.exp(-preds)) + grad = preds - labels + hess = preds * (1.0 - preds) + return grad, hess + + # self-defined eval metric + # f(preds: array, train_data: Dataset) -> name: string, eval_result: float, is_higher_better: bool + # binary error + # NOTE: when you do customized loss function, the default prediction value is margin + # This may make built-in evalution metric calculate wrong results + # For example, we are doing log likelihood loss, the prediction is score before logistic transformation + # Keep this in mind when you use the customization + def binary_error(preds, train_data): + labels = train_data.get_label() + preds = 1.0 / (1.0 + np.exp(-preds)) + return "error", np.mean(labels != (preds > 0.5)), False + + gbm = lgb.train( + params, + lgb_train, + num_boost_round=10, + init_model=gbm, + fobj=loglikelihood, + feval=binary_error, + valid_sets=lgb_eval, + ) + + print("Finished 40 - 50 rounds with self-defined objective function and eval metric...") + + input_sample = X_train.head(1) + signature = infer_signature(input_sample, y_pred) + + mlflow.lightgbm.log_model( + gbm, + "lightgbm_artifact", + signature=signature, + input_example=input_sample, + registered_model_name="lightgbm_predict", + ) + + # another self-defined eval metric + # f(preds: array, train_data: Dataset) -> name: string, eval_result: float, is_higher_better: bool + # accuracy + # NOTE: when you do customized loss function, the default prediction value is margin + # This may make built-in evalution metric calculate wrong results + # For example, we are doing log likelihood loss, the prediction is score before logistic transformation + # Keep this in mind when you use the customization + def accuracy(preds, train_data): + labels = train_data.get_label() + preds = 1.0 / (1.0 + np.exp(-preds)) + return "accuracy", np.mean(labels == (preds > 0.5)), True + + +if __name__ == "__main__": + main() diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/logistic_regression.py b/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/logistic_regression.py new file mode 100644 index 000000000000..92d8ef6cb758 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/logistic_regression.py @@ -0,0 +1,101 @@ +# coding: utf-8 +"""Comparison of `binary` and `xentropy` objectives. + +BLUF: The `xentropy` objective does logistic regression and generalizes +to the case where labels are probabilistic (i.e. numbers between 0 and 1). + +Details: Both `binary` and `xentropy` minimize the log loss and use +`boost_from_average = TRUE` by default. Possibly the only difference +between them with default settings is that `binary` may achieve a slight +speed improvement by assuming that the labels are binary instead of +probabilistic. +""" + +import time + +import lightgbm as lgb +import numpy as np +import pandas as pd +from scipy.special import expit + +################# +# Simulate some binary data with a single categorical and +# single continuous predictor +np.random.seed(0) +N = 1000 +X = pd.DataFrame({"continuous": range(N), "categorical": np.repeat([0, 1, 2, 3, 4], N / 5)}) +CATEGORICAL_EFFECTS = [-1, -1, -2, -2, 2] +LINEAR_TERM = np.array( + [-0.5 + 0.01 * X["continuous"][k] + CATEGORICAL_EFFECTS[X["categorical"][k]] for k in range(X.shape[0])] +) + np.random.normal(0, 1, X.shape[0]) +TRUE_PROB = expit(LINEAR_TERM) +Y = np.random.binomial(1, TRUE_PROB, size=N) +DATA = { + "X": X, + "probability_labels": TRUE_PROB, + "binary_labels": Y, + "lgb_with_binary_labels": lgb.Dataset(X, Y), + "lgb_with_probability_labels": lgb.Dataset(X, TRUE_PROB), +} + + +################# +# Set up a couple of utilities for our experiments +def log_loss(preds, labels): + """Logarithmic loss with non-necessarily-binary labels.""" + log_likelihood = np.sum(labels * np.log(preds)) / len(preds) + return -log_likelihood + + +def experiment(objective, label_type, data): + """Measure performance of an objective. + + Parameters + ---------- + objective : string 'binary' or 'xentropy' + Objective function. + label_type : string 'binary' or 'probability' + Type of the label. + data : dict + Data for training. + + Returns + ------- + result : dict + Experiment summary stats. + """ + np.random.seed(0) + nrounds = 5 + lgb_data = data["lgb_with_" + label_type + "_labels"] + params = {"objective": objective, "feature_fraction": 1, "bagging_fraction": 1, "verbose": -1} + time_zero = time.time() + gbm = lgb.train(params, lgb_data, num_boost_round=nrounds) + y_fitted = gbm.predict(data["X"]) + y_true = data[label_type + "_labels"] + duration = time.time() - time_zero + return {"time": duration, "correlation": np.corrcoef(y_fitted, y_true)[0, 1], "logloss": log_loss(y_fitted, y_true)} + + +################# +# Observe the behavior of `binary` and `xentropy` objectives +print("Performance of `binary` objective with binary labels:") +print(experiment("binary", label_type="binary", data=DATA)) + +print("Performance of `xentropy` objective with binary labels:") +print(experiment("xentropy", label_type="binary", data=DATA)) + +print("Performance of `xentropy` objective with probability labels:") +print(experiment("xentropy", label_type="probability", data=DATA)) + +# Trying this throws an error on non-binary values of y: +# experiment('binary', label_type='probability', DATA) + +# The speed of `binary` is not drastically different than +# `xentropy`. `xentropy` runs faster than `binary` in many cases, although +# there are reasons to suspect that `binary` should run faster when the +# label is an integer instead of a float +K = 10 +A = [experiment("binary", label_type="binary", data=DATA)["time"] for k in range(K)] +B = [experiment("xentropy", label_type="binary", data=DATA)["time"] for k in range(K)] +print("Best `binary` time: " + str(min(A))) +print("Best `xentropy` time: " + str(min(B))) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/plot_example.py b/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/plot_example.py new file mode 100644 index 000000000000..b9e1f10935fd --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/plot_example.py @@ -0,0 +1,60 @@ +# coding: utf-8 +import lightgbm as lgb +import pandas as pd + +if lgb.compat.MATPLOTLIB_INSTALLED: + import matplotlib.pyplot as plt +else: + raise ImportError("You need to install matplotlib for plot_example.py.") + +print("Loading data...") +# load or create your dataset +df_train = pd.read_csv("../regression/regression.train", header=None, sep="\t") +df_test = pd.read_csv("../regression/regression.test", header=None, sep="\t") + +y_train = df_train[0] +y_test = df_test[0] +X_train = df_train.drop(0, axis=1) +X_test = df_test.drop(0, axis=1) + +# create dataset for lightgbm +lgb_train = lgb.Dataset(X_train, y_train) +lgb_test = lgb.Dataset(X_test, y_test, reference=lgb_train) + +# specify your configurations as a dict +params = {"num_leaves": 5, "metric": ("l1", "l2"), "verbose": 0} + +evals_result = {} # to record eval results for plotting + +print("Starting training...") +# train +gbm = lgb.train( + params, + lgb_train, + num_boost_round=100, + valid_sets=[lgb_train, lgb_test], + feature_name=["f" + str(i + 1) for i in range(X_train.shape[-1])], + categorical_feature=[21], + evals_result=evals_result, + verbose_eval=10, +) + +print("Plotting metrics recorded during training...") +ax = lgb.plot_metric(evals_result, metric="l1") +plt.show() + +print("Plotting feature importances...") +ax = lgb.plot_importance(gbm, max_num_features=10) +plt.show() + +print("Plotting split value histogram...") +ax = lgb.plot_split_value_histogram(gbm, feature="f26", bins="auto") +plt.show() + +print("Plotting 54th tree...") # one tree use categorical feature to split +ax = lgb.plot_tree(gbm, tree_index=53, figsize=(15, 15), show_info=["split_gain"]) +plt.show() + +print("Plotting 54th tree with graphviz...") +graph = lgb.create_tree_digraph(gbm, tree_index=53, name="Tree54") +graph.render(view=True) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/simple_example.py b/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/simple_example.py new file mode 100644 index 000000000000..cd3fe0259207 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/simple_example.py @@ -0,0 +1,45 @@ +# coding: utf-8 +import lightgbm as lgb +import pandas as pd +from sklearn.metrics import mean_squared_error + +print("Loading data...") +# load or create your dataset +df_train = pd.read_csv("../regression/regression.train", header=None, sep="\t") +df_test = pd.read_csv("../regression/regression.test", header=None, sep="\t") + +y_train = df_train[0] +y_test = df_test[0] +X_train = df_train.drop(0, axis=1) +X_test = df_test.drop(0, axis=1) + +# create dataset for lightgbm +lgb_train = lgb.Dataset(X_train, y_train) +lgb_eval = lgb.Dataset(X_test, y_test, reference=lgb_train) + +# specify your configurations as a dict +params = { + "boosting_type": "gbdt", + "objective": "regression", + "metric": {"l2", "l1"}, + "num_leaves": 31, + "learning_rate": 0.05, + "feature_fraction": 0.9, + "bagging_fraction": 0.8, + "bagging_freq": 5, + "verbose": 0, +} + +print("Starting training...") +# train +gbm = lgb.train(params, lgb_train, num_boost_round=20, valid_sets=lgb_eval, early_stopping_rounds=5) + +print("Saving model...") +# save model to file +gbm.save_model("model.txt") + +print("Starting predicting...") +# predict +y_pred = gbm.predict(X_test, num_iteration=gbm.best_iteration) +# eval +print("The rmse of prediction is:", mean_squared_error(y_test, y_pred) ** 0.5) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/sklearn_example.py b/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/sklearn_example.py new file mode 100644 index 000000000000..48852e1d90a5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/batch_setup/light_gbm_examples/python-guide/sklearn_example.py @@ -0,0 +1,72 @@ +# coding: utf-8 +import numpy as np +import pandas as pd +import lightgbm as lgb + +from sklearn.metrics import mean_squared_error +from sklearn.model_selection import GridSearchCV + +print("Loading data...") +# load or create your dataset +df_train = pd.read_csv("../regression/regression.train", header=None, sep="\t") +df_test = pd.read_csv("../regression/regression.test", header=None, sep="\t") + +y_train = df_train[0] +y_test = df_test[0] +X_train = df_train.drop(0, axis=1) +X_test = df_test.drop(0, axis=1) + +print("Starting training...") +# train +gbm = lgb.LGBMRegressor(num_leaves=31, learning_rate=0.05, n_estimators=20) +gbm.fit(X_train, y_train, eval_set=[(X_test, y_test)], eval_metric="l1", early_stopping_rounds=5) + +print("Starting predicting...") +# predict +y_pred = gbm.predict(X_test, num_iteration=gbm.best_iteration_) +# eval +print("The rmse of prediction is:", mean_squared_error(y_test, y_pred) ** 0.5) + +# feature importances +print("Feature importances:", list(gbm.feature_importances_)) + + +# self-defined eval metric +# f(y_true: array, y_pred: array) -> name: string, eval_result: float, is_higher_better: bool +# Root Mean Squared Logarithmic Error (RMSLE) +def rmsle(y_true, y_pred): + return "RMSLE", np.sqrt(np.mean(np.power(np.log1p(y_pred) - np.log1p(y_true), 2))), False + + +print("Starting training with custom eval function...") +# train +gbm.fit(X_train, y_train, eval_set=[(X_test, y_test)], eval_metric=rmsle, early_stopping_rounds=5) + + +# another self-defined eval metric +# f(y_true: array, y_pred: array) -> name: string, eval_result: float, is_higher_better: bool +# Relative Absolute Error (RAE) +def rae(y_true, y_pred): + return "RAE", np.sum(np.abs(y_pred - y_true)) / np.sum(np.abs(np.mean(y_true) - y_true)), False + + +print("Starting training with multiple custom eval functions...") +# train +gbm.fit(X_train, y_train, eval_set=[(X_test, y_test)], eval_metric=[rmsle, rae], early_stopping_rounds=5) + +print("Starting predicting...") +# predict +y_pred = gbm.predict(X_test, num_iteration=gbm.best_iteration_) +# eval +print("The rmsle of prediction is:", rmsle(y_test, y_pred)[1]) +print("The rae of prediction is:", rae(y_test, y_pred)[1]) + +# other scikit-learn modules +estimator = lgb.LGBMRegressor(num_leaves=31) + +param_grid = {"learning_rate": [0.01, 0.1, 1], "n_estimators": [20, 40]} + +gbm = GridSearchCV(estimator, param_grid, cv=3) +gbm.fit(X_train, y_train) + +print("Best parameters found by grid search are:", gbm.best_params_) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_environment_version.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_environment_version.yml new file mode 100644 index 000000000000..e55ba15f8ba9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_environment_version.yml @@ -0,0 +1,3 @@ +command: echo test +environment: azureml:myTestEnv:18.04:2022 +compute: azureml:testCompute diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inline_inputs_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inline_inputs_test.yml new file mode 100644 index 000000000000..73fcfc87bf46 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inline_inputs_test.yml @@ -0,0 +1,13 @@ +# $schema: http://azureml/sdk-2-0/CommandJob.json + +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +display_name: "test_display_name" +compute: "azureml:cpu-cluster" +experiment_name: mfe-test1 +identity: + type: AMLToken +inputs: + component_in_data_1: # simple input without default value + value: nohello \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_input_types.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_input_types.yml new file mode 100644 index 000000000000..b4d92c087ea1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_input_types.yml @@ -0,0 +1,18 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/commandJob.schema.json +command: echo "inputs dont need to be used in command" +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 +properties: + _azureml.ComputeTargetType: amlcompute +inputs: + "test_dataset": + path: "/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/data/fake-dataset/versions/2" + "test_url": + mode: ro_mount + type: uri_file + path: "azureml://fake/url.json" + "test_string_literal": "literal string" + "test_literal_valued_int": + value: 42 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_dataset_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_dataset_test.yml new file mode 100644 index 000000000000..d1ad32482d29 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_dataset_test.yml @@ -0,0 +1,13 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/commandJob.schema.json +command: echo ${{inputs.test1}} +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 +properties: + test_property: test_value +inputs: + "test1": + type: uri_file + mode: ro_mount + path: https://test.blob.core.windows.net/azureml-blobstore-test/testdata/data.csv \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_incorrect_datastore_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_incorrect_datastore_test.yml new file mode 100644 index 000000000000..68289fe4120c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_incorrect_datastore_test.yml @@ -0,0 +1,14 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/commandJob.schema.json +command: echo ${{inputs.test1}} +type: command +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 +properties: + test_property: test_value +inputs: + test1: + mode: ro_mount + type: uri_file + path: https://test.blob.core.windows.net/non-existent-ds/testdata/data.csv \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_rest.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_rest.yml new file mode 100644 index 000000000000..be9a545bef83 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_rest.yml @@ -0,0 +1,58 @@ +{ + "id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/jobs/test_773798882091", + "name":"test_773798882091", + "type":"Microsoft.MachineLearningServices/workspaces/jobs", + "properties":{ + "job_type":"Command", + "provisioning_state":"Succeeded", + "services":{ + "Tracking":{ + "type":"Tracking", + "endpoint":"azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS?" + }, + "Studio":{ + "type":"Studio", + "endpoint":"https://ml.azure.com/experiments/mfe-test1/runs/test_773798882091?wsid=/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourcegroups/RLTesting/workspaces/AnkitWS" + } + }, + "tags":{ + + }, + "properties":{ + "_azureml.ComputeTargetType":"amlcompute", + "azureml.datastoreId":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/datastores/ankitws8854091092_azureml", + "mlflow.source.git.repoURL":"https://msdata.visualstudio.com/DefaultCollection/Vienna/_git/sdk-cli-v2", + "mlflow.source.git.branch":"users/anksing/ContractChange", + "mlflow.source.git.commit":"42452ba3e14e1f00d63d5c8497c9813410581b43", + "azureml.git.dirty":"True" + }, + "experiment_name":"mfe-test1", + "computeId": "/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/computes/test-sai-i", + "output":{ + "datastore_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/datastores/ankitws8854091092_azureml", + "path":"ExperimentRun/dcid.test_773798882091" + }, + "status":"Preparing", + "code_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/codes//versions/", + "command":"echo $AZURE_ML_INPUT0", + "environment_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "inputs":{ + "test1":{ + "uri":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/data/fakeData/versions/1", + "jobInputType": "Dataset", + "mode":"ReadWriteMount" + } + }, + "environment_variables":{ + + }, + "parameters":{ + + } + }, + "system_data":{ + "created_at":"2021-03-18T19:28:47.64094Z", + "created_by":"Ankit Singhal", + "created_by_type":"User" + } +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_test.yml new file mode 100644 index 000000000000..681cebd86344 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_inputs_test.yml @@ -0,0 +1,12 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/commandJob.schema.json +command: echo ${{inputs.test1}} +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 +properties: + test_property: test_value +inputs: + "test1": + mode: ro_mount + path: /subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/data/fakeData/versions/1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_output.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_output.yml new file mode 100644 index 000000000000..ba47a555d1e0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_output.yml @@ -0,0 +1,14 @@ +name: output_test +compute: azureml:testCompute +inputs: + training_data: ./training_data.pkl + max_epochs: 21 + learning_rate: 0.01 +outputs: + model_output: + mode: mount +command: >- + python ./train.py --training_data {inputs.training_data} --max_epochs {inputs.max_epochs} + --learning_rate {inputs.learning_rate} --model_output {outputs.model_output} +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +code: ../python \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_output_types.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_output_types.yml new file mode 100644 index 000000000000..f1a934ed07b3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_output_types.yml @@ -0,0 +1,14 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/commandJob.schema.json +command: echo "inputs dont need to be used in command" +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 +properties: + _azureml.ComputeTargetType: amlcompute +outputs: + test1: + test2: + mode: upload + test3: + mode: rw_mount \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_quick_with_output.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_quick_with_output.yml new file mode 100644 index 000000000000..e8bef075d241 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_quick_with_output.yml @@ -0,0 +1,7 @@ +$schema: https://azuremlschemas.azureedge.net/latest/commandJob.schema.json +command: echo "hello world" > ${{outputs.hello_output}}/helloworld.txt +outputs: + hello_output: + mode: upload +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:testCompute diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_relative_inputs_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_relative_inputs_test.yml new file mode 100644 index 000000000000..c1b3c6eb0444 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_relative_inputs_test.yml @@ -0,0 +1,13 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/commandJob.schema.json +command: echo ${{inputs.test1}} +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 +properties: + _azureml.ComputeTargetType: amlcompute +inputs: + "test1": + mode: ro_mount + type: uri_file + path: "../python/sample1.csv" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest.yml new file mode 100644 index 000000000000..19a057273596 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest.yml @@ -0,0 +1,57 @@ +{ + "id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/jobs/test_617704734544", + "name":"test1", + "type":"Microsoft.MachineLearningServices/workspaces/jobs", + "properties":{ + "job_type":"Command", + "provisioning_state":"Succeeded", + "services":{ + "Tracking":{ + "type":"Tracking", + "endpoint":"azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS?" + }, + "Studio":{ + "type":"Studio", + "endpoint":"https://ml.azure.com/experiments/mfe-test1/runs/test_617704734544?wsid=/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourcegroups/RLTesting/workspaces/AnkitWS" + } + }, + "tags":{ + + }, + "properties":{ + "_azureml.ComputeTargetType":"amlcompute", + "azureml.datastoreId":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/datastores/ankitws8854091092_azureml", + "mlflow.source.git.repoURL":"https://msdata.visualstudio.com/DefaultCollection/Vienna/_git/sdk-cli-v2", + "mlflow.source.git.branch":"users/anksing/ContractChange", + "mlflow.source.git.commit":"42452ba3e14e1f00d63d5c8497c9813410581b43", + "azureml.git.dirty":"True" + }, + "experiment_name":"mfe-test1", + "computeId":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/computes/test-sai-i", + "output":{ + "datastore_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/datastores/ankitws8854091092_azureml", + "path":"ExperimentRun/dcid.test_617704734544" + }, + "status":"Preparing", + "code_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/codes//versions/", + "command":"pip freeze", + "environment_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "input_data_bindings":{ + + }, + "environment_variables":{ + + }, + "identity":{ + "identity_type":"AMLToken" + }, + "parameters":{ + + } + }, + "system_data":{ + "created_at":"2021-03-18T18:50:41.991375Z", + "created_by":"Ankit Singhal", + "created_by_type":"User" + } +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest_amltoken_identity.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest_amltoken_identity.yml new file mode 100644 index 000000000000..b316853e4a35 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest_amltoken_identity.yml @@ -0,0 +1,57 @@ +{ + "id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/jobs/test_617704734544", + "name":"test_617704734544", + "type":"Microsoft.MachineLearningServices/workspaces/jobs", + "properties":{ + "job_type":"Command", + "provisioning_state":"Succeeded", + "services":{ + "Tracking":{ + "type":"Tracking", + "endpoint":"azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS?" + }, + "Studio":{ + "type":"Studio", + "endpoint":"https://ml.azure.com/experiments/mfe-test1/runs/test_617704734544?wsid=/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourcegroups/RLTesting/workspaces/AnkitWS" + } + }, + "tags":{ + + }, + "properties":{ + "_azureml.ComputeTargetType":"amlcompute", + "azureml.datastoreId":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/datastores/ankitws8854091092_azureml", + "mlflow.source.git.repoURL":"https://msdata.visualstudio.com/DefaultCollection/Vienna/_git/sdk-cli-v2", + "mlflow.source.git.branch":"users/anksing/ContractChange", + "mlflow.source.git.commit":"42452ba3e14e1f00d63d5c8497c9813410581b43", + "azureml.git.dirty":"True" + }, + "experiment_name":"mfe-test1", + "computeId":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/computes/test-sai-i", + "output":{ + "datastore_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/datastores/ankitws8854091092_azureml", + "path":"ExperimentRun/dcid.test_617704734544" + }, + "status":"Preparing", + "code_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/codes//versions/", + "command":"pip freeze", + "environment_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "input_data_bindings":{ + + }, + "environment_variables":{ + + }, + "identity":{ + "identity_type":"AMLToken" + }, + "parameters":{ + + } + }, + "system_data":{ + "created_at":"2021-03-18T18:50:41.991375Z", + "created_by":"Ankit Singhal", + "created_by_type":"User" + } +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest_msi_identity.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest_msi_identity.yml new file mode 100644 index 000000000000..b4cab3a9a142 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_rest_msi_identity.yml @@ -0,0 +1,58 @@ +{ + "id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/jobs/test_297155932351", + "name":"test_297155932351", + "type":"Microsoft.MachineLearningServices/workspaces/jobs", + "properties":{ + "job_type":"Command", + "provisioning_state":"Succeeded", + "services":{ + "Tracking":{ + "type":"Tracking", + "endpoint":"azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS?" + }, + "Studio":{ + "type":"Studio", + "endpoint":"https://ml.azure.com/experiments/mfe-test1/runs/test_297155932351?wsid=/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourcegroups/RLTesting/workspaces/AnkitWS" + } + }, + "tags":{ + + }, + "properties":{ + "_azureml.ComputeTargetType":"amlcompute", + "azureml.datastoreId":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/datastores/ankitws8854091092_azureml", + "mlflow.source.git.repoURL":"https://msdata.visualstudio.com/DefaultCollection/Vienna/_git/sdk-cli-v2", + "mlflow.source.git.branch":"users/anksing/ContractChange", + "mlflow.source.git.commit":"42452ba3e14e1f00d63d5c8497c9813410581b43", + "azureml.git.dirty":"True" + }, + "experiment_name":"mfe-test1", + "computeId":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/computes/test-sai-i", + "output":{ + "datastore_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/datastores/ankitws8854091092_azureml", + "path":"ExperimentRun/dcid.test_297155932351" + }, + "status":"Preparing", + "code_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/codes//versions/", + "command":"pip freeze", + "environment_id":"/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "input_data_bindings":{ + + }, + "environment_variables":{ + + }, + "identity":{ + "identity_type":"Managed", + "client_id":"4e0f6e81-e0e0-4c63-a64e-e916c48c177e" + }, + "parameters":{ + + } + }, + "system_data":{ + "created_at":"2021-03-18T19:44:58.775606Z", + "created_by":"Ankit Singhal", + "created_by_type":"User" + } +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test.yml new file mode 100644 index 000000000000..41bc479ab082 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test.yml @@ -0,0 +1,16 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +display_name: "test_display_name" +compute: "azureml:cpu-cluster" +experiment_name: mfe-test1 +identity: + type: AMLToken +tags: + empty_tag: +properties: + empty_property: +inputs: + hello_input: + type: uri_folder + path: ../data \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_amltoken_identity.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_amltoken_identity.yml new file mode 100644 index 000000000000..980a13bad737 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_amltoken_identity.yml @@ -0,0 +1,9 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 +properties: + test_property: test_value +identity: + type: AMLToken diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_msi_identity.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_msi_identity.yml new file mode 100644 index 000000000000..765bbb5d3935 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_msi_identity.yml @@ -0,0 +1,10 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 +properties: + test_property: test_value +identity: + type: Managed + client_id: 4e0f6e81-e0e0-4c63-a64e-e916c48c177e diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_dataset.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_dataset.yml new file mode 100644 index 000000000000..45e2101b50a8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_dataset.yml @@ -0,0 +1,13 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "testdataset1" +display_name: "test_dataset_display_name1" +compute: "azureml:testCompute" +experiment_name: mfe-test1-dataset +identity: + type: AMLToken +inputs: + "testdataset": + mode: ro_mount + type: uri_file + path: azureml://datastores/workspaceblobstore/paths/python/data.csv diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_inputs.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_inputs.yml new file mode 100644 index 000000000000..e117f31d61b2 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_inputs.yml @@ -0,0 +1,14 @@ +command: pip freeze && echo 1 +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +display_name: "test_display_name" +compute: "azureml:cpu-cluster" +experiment_name: mfe-test1 +identity: + type: AMLToken +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 +outputs: + job_out_path_1: + mode: mount \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_local_dataset.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_local_dataset.yml new file mode 100644 index 000000000000..ab05a7371ee8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_with_local_dataset.yml @@ -0,0 +1,12 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "testdataset1" +display_name: "test_dataset_display_name1" +compute: "azureml:testCompute" +experiment_name: mfe-test1-dataset +identity: + type: AMLToken +inputs: + "testdataset": + mode: ro_mount + path: ../data \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_yaml_ref.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_yaml_ref.yml new file mode 100644 index 000000000000..bced7bd906da --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_yaml_ref.yml @@ -0,0 +1,9 @@ +command: pip freeze +environment: file:../environment/environment_conda.yml +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 +properties: + test_property: test_value +identity: + type: AMLToken diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_with_virtualcluster.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_with_virtualcluster.yaml new file mode 100644 index 000000000000..949ecfdce6e6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_with_virtualcluster.yaml @@ -0,0 +1,11 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:/subscriptions/test_subscription/resourceGroups/test_resource_group/providers/Microsoft.MachineLearningServices/virtualclusters/testvcinmaster" +resources: + instance_count: 1 + instance_type: "AISupercomputer.D1" +properties: + test_property: test_value +identity: + type: AMLToken diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_with_virtualcluster_2.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_with_virtualcluster_2.yaml new file mode 100644 index 000000000000..b1c4b17e141e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_with_virtualcluster_2.yaml @@ -0,0 +1,11 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:virtualClusters/testvcinmaster" +resources: + instance_count: 1 + instance_type: "AISupercomputer.D1" +properties: + test_property: test_value +identity: + type: AMLToken diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_1.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_1.yml new file mode 100644 index 000000000000..0915e15861c3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_1.yml @@ -0,0 +1,14 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +distribution: + type: "Pytorch" + process_count_per_instance: 4 +experiment_name: mfe-test1 +properties: + test_property: test_value +resources: + instance_count: 2 +limits: + timeout: 30 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_2.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_2.yml new file mode 100644 index 000000000000..52af7ce3ca15 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_2.yml @@ -0,0 +1,14 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +distribution: + type: "mpi" + process_count_per_instance: 4 +experiment_name: mfe-test1 +properties: + test_property: test_value +resources: + instance_count: 2 +limits: + timeout: 30 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_3.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_3.yml new file mode 100644 index 000000000000..3bec918ab242 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_3.yml @@ -0,0 +1,15 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +distribution: + type: "TensorFlow" + parameter_server_count: 3 + worker_count: 3 +experiment_name: mfe-test1 +properties: + test_property: test_value +resources: + instance_count: 2 +limits: + timeout: 30 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_bad.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_bad.yml new file mode 100644 index 000000000000..368caba05de6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/dist_job_bad.yml @@ -0,0 +1,10 @@ +command: pip freeze +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +name: "test1" +compute: "azureml:testCompute" +distribution: + type: "TensorFlow" + process_count_per_instance: 2 +experiment_name: mfe-test1 +properties: + test_property: test_value diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/inlined_assets.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/inlined_assets.yaml new file mode 100644 index 000000000000..fb16b329ba03 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/inlined_assets.yaml @@ -0,0 +1,16 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/commandJob.schema.json +command: echo ${{inputs.test1}} +environment: + conda_file: "../environment/environment_files/environment.yml" + name: "DroppedEnvName" + version: 2 + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04:20210727.v1 +code: "./path/to/code" +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 +properties: + test_property: test_value +inputs: + "test1": + path: https://path/to/blob diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/local_job.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/local_job.yaml new file mode 100644 index 000000000000..eb095cbd1444 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/local_job.yaml @@ -0,0 +1,8 @@ +type: command +command: echo "hi world" +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: local +properties: + my_property: foo +tags: + add_tag: "added on job" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_env_var_command.json b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_env_var_command.json new file mode 100644 index 000000000000..b27dce5dad9d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_env_var_command.json @@ -0,0 +1,50 @@ +{ + "id": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/jobs/cd0aa20d-8cd5-47bb-a041-0c06c89d56c7", + "name": "cd0aa20d-8cd5-47bb-a041-0c06c89d56c7", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "jobType": "Command", + "provisioningState": "Succeeded", + "tags": { + "_aml_system_ComputeTargetStatus": "{\"AllocationState\":\"steady\",\"PreparingNodeCount\":0,\"RunningNodeCount\":1,\"CurrentNodeCount\":1}" + }, + "properties": { + "_azureml.ComputeTargetType": "amlcompute", + "azureml.datastoreId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/datastores/rihorn7698147626_azureml", + "my_property": "foo", + "mlflow.source.git.repoURL": "https://msdata.visualstudio.com/DefaultCollection/Vienna/_git/sdk-cli-v2", + "mlflow.source.git.branch": "master", + "mlflow.source.git.commit": "9151c3245dd414a3d57aedc40662ccb6df611d8c", + "azureml.git.dirty": "True", + "ProcessInfoFile": "azureml-logs/process_info.json", + "ProcessStatusFile": "azureml-logs/process_status.json" + }, + "experimentName": "Default", + "computeId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/computes/goazurego", + "output": { + "datastoreId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/datastores/rihorn7698147626_azureml", + "path": "ExperimentRun/dcid.cd0aa20d-8cd5-47bb-a041-0c06c89d56c7" + }, + "status": "Completed", + "command": "echo ${{inputs.filePath}} && ls ${{inputs.dirPath}}", + "environmentId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "inputs": { + "filePath": { + "jobInputType": "UriFile", + "uri": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/data/f4179156-dbef-41b4-91a0-40d26a3ef5be/versions/1", + "mode": "ReadWriteMount" + }, + "dirPath": { + "jobInputType": "UriFolder", + "uri": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/data/86bf5aa8-8d5e-40ab-afe8-3f753d4b4e01/versions/1", + "mode": "ReadWriteMount" + } + }, + "parameters": {} + }, + "systemData": { + "createdAt": "2021-02-18T14:56:18.593573Z", + "createdBy": "Brandon Horn", + "createdByType": "User" + } +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_legacy1_command.json b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_legacy1_command.json new file mode 100644 index 000000000000..a5daea054d5f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_legacy1_command.json @@ -0,0 +1,50 @@ +{ + "id": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/jobs/cd0aa20d-8cd5-47bb-a041-0c06c89d56c7", + "name": "cd0aa20d-8cd5-47bb-a041-0c06c89d56c7", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "jobType": "Command", + "provisioningState": "Succeeded", + "tags": { + "_aml_system_ComputeTargetStatus": "{\"AllocationState\":\"steady\",\"PreparingNodeCount\":0,\"RunningNodeCount\":1,\"CurrentNodeCount\":1}" + }, + "properties": { + "_azureml.ComputeTargetType": "amlcompute", + "azureml.datastoreId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/datastores/rihorn7698147626_azureml", + "my_property": "foo", + "mlflow.source.git.repoURL": "https://msdata.visualstudio.com/DefaultCollection/Vienna/_git/sdk-cli-v2", + "mlflow.source.git.branch": "master", + "mlflow.source.git.commit": "9151c3245dd414a3d57aedc40662ccb6df611d8c", + "azureml.git.dirty": "True", + "ProcessInfoFile": "azureml-logs/process_info.json", + "ProcessStatusFile": "azureml-logs/process_status.json" + }, + "experimentName": "Default", + "computeId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/computes/goazurego", + "output": { + "datastoreId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/datastores/rihorn7698147626_azureml", + "path": "ExperimentRun/dcid.cd0aa20d-8cd5-47bb-a041-0c06c89d56c7" + }, + "status": "Completed", + "command": "echo ${{inputs.filePath}} && ls ${{inputs.dirPath}}", + "environmentId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "inputs": { + "filePath": { + "jobInputType": "UriFile", + "uri": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/data/f4179156-dbef-41b4-91a0-40d26a3ef5be/versions/1", + "mode": "ReadOnlyMount" + }, + "dirPath": { + "jobInputType": "UriFolder", + "uri": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/data/86bf5aa8-8d5e-40ab-afe8-3f753d4b4e01/versions/1", + "mode": "ReadWriteMount" + } + }, + "parameters": {} + }, + "systemData": { + "createdAt": "2021-02-18T14:56:18.593573Z", + "createdBy": "Brandon Horn", + "createdByType": "User" + } +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_legacy2_command.json b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_legacy2_command.json new file mode 100644 index 000000000000..4d1541827051 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/rest_command_job_legacy2_command.json @@ -0,0 +1,50 @@ +{ + "id": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/jobs/cd0aa20d-8cd5-47bb-a041-0c06c89d56c7", + "name": "cd0aa20d-8cd5-47bb-a041-0c06c89d56c7", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "jobType": "Command", + "provisioningState": "Succeeded", + "tags": { + "_aml_system_ComputeTargetStatus": "{\"AllocationState\":\"steady\",\"PreparingNodeCount\":0,\"RunningNodeCount\":1,\"CurrentNodeCount\":1}" + }, + "properties": { + "_azureml.ComputeTargetType": "amlcompute", + "azureml.datastoreId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/datastores/rihorn7698147626_azureml", + "my_property": "foo", + "mlflow.source.git.repoURL": "https://msdata.visualstudio.com/DefaultCollection/Vienna/_git/sdk-cli-v2", + "mlflow.source.git.branch": "master", + "mlflow.source.git.commit": "9151c3245dd414a3d57aedc40662ccb6df611d8c", + "azureml.git.dirty": "True", + "ProcessInfoFile": "azureml-logs/process_info.json", + "ProcessStatusFile": "azureml-logs/process_status.json" + }, + "experimentName": "Default", + "computeId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/computes/goazurego", + "output": { + "datastoreId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/datastores/rihorn7698147626_azureml", + "path": "ExperimentRun/dcid.cd0aa20d-8cd5-47bb-a041-0c06c89d56c7" + }, + "status": "Completed", + "command": "echo ${{inputs.filePath}} && ls ${{inputs.dirPath}}", + "environmentId": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "inputs": { + "filePath": { + "jobInputType": "UriFolder", + "uri": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/data/f4179156-dbef-41b4-91a0-40d26a3ef5be/versions/1", + "mode": "ReadWriteMount" + }, + "dirPath": { + "uri": "/subscriptions/5f08d643-1910-4a38-a7c7-84a39d4f42e0/resourceGroups/rihorn-cli/providers/Microsoft.MachineLearningServices/workspaces/rihorn/data/86bf5aa8-8d5e-40ab-afe8-3f753d4b4e01/versions/1", + "jobInputType": "UriFile", + "mode": "ReadWriteMount" + } + }, + "parameters": {} + }, + "systemData": { + "createdAt": "2021-02-18T14:56:18.593573Z", + "createdBy": "Brandon Horn", + "createdByType": "User" + } +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/simple_train_conda.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/simple_train_conda.yml new file mode 100644 index 000000000000..e6d20b8622ac --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/simple_train_conda.yml @@ -0,0 +1,11 @@ +channels: + - defaults + - anaconda + - conda-forge +dependencies: + - python=3.6 + - scikit-learn + - pip + - pip: + - mlflow + - azureml-mlflow diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/command_job/simple_train_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/simple_train_test.yml new file mode 100644 index 000000000000..77f1f9b888f1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/command_job/simple_train_test.yml @@ -0,0 +1,8 @@ +command: python ./simple_train.py -c 45 +code: "../python/" +environment: + conda_file: ./simple_train_conda.yml + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 +name: "test1" +compute: "azureml:testCompute" +experiment_name: mfe-test1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/1in1out.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/components/1in1out.yaml new file mode 100644 index 000000000000..0133a9278ff5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/1in1out.yaml @@ -0,0 +1,15 @@ +$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json +name: one_in_one_out +display_name: One In One Out +version: 0.0.1 +type: command +inputs: + input1: + type: uri_folder +outputs: + output1: + type: uri_folder +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 +command: >- + echo ${{inputs.input1}} && + echo ${{outputs.output1}} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/1in2out.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/components/1in2out.yaml new file mode 100644 index 000000000000..40ab7df0ac7b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/1in2out.yaml @@ -0,0 +1,18 @@ +$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json +name: one_in_two_out +display_name: One In Two Out (Split) +version: 0.0.1 +type: command +inputs: + input1: + type: uri_folder +outputs: + output1: + type: uri_folder + output2: + type: uri_folder +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 +command: >- + echo ${{inputs.input1}} && + echo ${{outputs.output1}} && + echo ${{outputs.output2}} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_component_code_arm_id.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_component_code_arm_id.yml new file mode 100644 index 000000000000..ee593188003e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_component_code_arm_id.yml @@ -0,0 +1,22 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: sample_command_component_basic +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +outputs: + component_out_path: + type: uri_folder + +command: >- + echo Hello World + +code: azureml:/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/test-rg-centraluseuap-v2-2021W10/providers/Microsoft.MachineLearningServices/workspaces/sdk_vnext_cli/codes/e736692c-8542-11eb-b746-6c2b59f8af4d/versions/1 + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_component_code_local_path.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_component_code_local_path.yml new file mode 100644 index 000000000000..15ca4adafc26 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_component_code_local_path.yml @@ -0,0 +1,22 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: sample_command_component_basic +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +outputs: + component_out_path: + type: uri_folder + +command: >- + echo Hello World + +code: "./helloworld_components_with_env" + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_parallel_component_score.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_parallel_component_score.yml new file mode 100644 index 000000000000..d61f2d742492 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_parallel_component_score.yml @@ -0,0 +1,53 @@ +#source ../configs/parallel-job/batch-score-ParallelComponent.yaml +$schema: http://azureml/sdk-2-0/ParallelComponent.json +name: batch_score +type: parallel +version: 1.0.0 +display_name: BatchScore +description: parallel component for batch score + +inputs: + score_input: + type: mltable + description: The data to be split and scored in parallel. + optional: false + label: + type: uri_file + description: Other reference data for batch scoring, e.g. labels. + optional: false + score_model: + type: custom_model + description: The model for batch score. + optional: false + +outputs: + scored_result: + type: mltable + scoring_summary: + type: uri_file + +resources: + instance_count: 2 + +retry_settings: + max_retries: 10 + timeout: 3 + +max_concurrency_per_instance: 12 +error_threshold: 10 +mini_batch_error_threshold: 5 +logging_level: "DEBUG" + +mini_batch_size: "10kb" +input_data: ${{inputs.score_input}} + +task: + type: function + code: "../python" + entry_script: pass_through.py + args: >- # optional + --label ${{inputs.label}} + --model ${{inputs.score_model}} + --output_scored_result ${{outputs.scored_result}} + append_row_to: ${{outputs.scoring_summary}} # optional, If Null, equals to summary_only mode in v1. + environment: azureml:AzureML-Minimal:2 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_parallel_component_score_rest.json b/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_parallel_component_score_rest.json new file mode 100644 index 000000000000..656c0ebc1a5a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/basic_parallel_component_score_rest.json @@ -0,0 +1,72 @@ +{ + "id": "/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/DesignerTestRG/providers/Microsoft.MachineLearningServices/workspaces/DesignerTest-centraluseuap/components/test_389889218331/versions/0.0.1", + "name": null, + "type": null, + "properties": { + "description": null, + "tags": null, + "properties": {}, + "isAnonymous": false, + "componentSpec": { + "$schema": "http://azureml/sdk-2-0/ParallelComponent.json", + "name": "batch_score", + "version": "1.0.0", + "type": "parallel", + "display_name": "BatchScore", + "description": "parallel component for batch score", + "inputs": { + "score_input": { + "name": "score_input", + "optional": "False", + "description": "The data to be split and scored in parallel.", + "type": "mltable" + }, + "label": { + "type": "uri_file", + "description": "Other reference data for batch scoring, e.g. labels.", + "optional": false + }, + "score_model": { + "type": "custom_model", + "description": "The model for batch score.", + "optional": false + } + }, + "outputs": { + "scored_result": { + "type": "mltable" + }, + "scoring_summary": { + "type": "uri_file" + } + }, + "resources": { + "instance_count": 2 + }, + "retry_settings": { + "max_retries": 10, + "timeout": 3 + }, + "max_concurrency_per_instance": 12, + "error_threshold": 10, + "mini_batch_error_threshold": 5, + "logging_level": "DEBUG", + "mini_batch_size": "10kb", + "input_data": "${{inputs.score_input}}", + "task": { + "type": "function", + "code": "../python", + "entry_script": "pass_through.py", + "args": "--label ${{inputs.label}} --model ${{inputs.score_model}} --output_scored_result ${{outputs.scored_result}}", + "append_row_to": "${{outputs.scoring_summary}}", + "environment": "azureml:AzureML-Minimal:2" + } + } + }, + "systemData": { + "createdAt": "2022-03-11T02:58:14.9644668Z", + "createdBy": "Xiaoran Li", + "createdByType": "User", + "lastModifiedAt": "2022-03-11T02:58:15.7637279Z" + } +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/component_e2e.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/component_e2e.yml new file mode 100644 index 000000000000..8ca7854c191f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/component_e2e.yml @@ -0,0 +1,10 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +name: atestcomponent +version: 1 +code: ../python +command: >- + echo ${{outputs.output_path}} +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +outputs: + output_path: + type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/component_no_version.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/component_no_version.yml new file mode 100644 index 000000000000..835b977c1aa1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/component_no_version.yml @@ -0,0 +1,9 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +name: atestcomponent +code: ../python +command: >- + echo ${{outputs.output_path}} +environment: azureml:AzureML-Minimal:2 +outputs: + output_path: + type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/default_optional_component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/default_optional_component.yml new file mode 100644 index 000000000000..ff16d9db4ded --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/default_optional_component.yml @@ -0,0 +1,42 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: default_optional_component +display_name: Component with default and optional parameters +description: Component with default and optional parameters +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +inputs: + required_input: + type: uri_folder + optional_input: + type: uri_folder + optional: true + required_param: + type: string + required_param_with_default: + type: string + default: 'required_param_with_default' + optional_param: + type: string + optional: true + optional_param_with_default: + type: string + default: 'optional_param_with_default' + optional: true + + +command: >- + echo Hello World & + echo required_param ${{inputs.required_param}} & + echo required_param_with_default ${{inputs.required_param_with_default}} & + [echo optional_param ${{inputs.optional_param}} &] + [echo optional_param_with_default ${{inputs.optional_param_with_default}} &] + echo required_input ${{inputs.required_input}} & + [echo optional_input ${{inputs.optional_input}} &] + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component.yml new file mode 100644 index 000000000000..45b49c4c24dd --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component.yml @@ -0,0 +1,34 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + optional: True + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + echo [${{inputs.component_in_number}}] & + echo ${{inputs.component_in_path}} & + echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_alt1.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_alt1.yml new file mode 100644 index 000000000000..c34b5ed81e5f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_alt1.yml @@ -0,0 +1,32 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoft_samples_command_component_basic +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path: + type: uri_folder + +command: >- + echo Hello World & + echo ${{inputs.component_in_number}} & + echo ${{inputs.component_in_path}} & + echo ${{outputs.component_out_path}} + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_for_sweep.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_for_sweep.yml new file mode 100644 index 000000000000..af148f45a76a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_for_sweep.yml @@ -0,0 +1,53 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_for_sweep +display_name: CommandComponentForSweep +description: This is the command component for sweep +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + batch_size: + type: integer + first_layer_neurons: + type: integer + second_layer_neurons: + type: integer + third_layer_neurons: + type: integer + epochs: + type: integer + momentum: + type: number + weight_decay: + type: number + learning_rate: + type: number + f1: + type: number + f2: + type: number + random_seed: + type: integer + default: 42 + data_folder: + type: mltable + +outputs: + trained_model_dir: + type: mlflow_model + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo "Start training ..." && + python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} + --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} + --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} + --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} + --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}} + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_mpi.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_mpi.yml new file mode 100644 index 000000000000..85998ebe2efe --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_mpi.yml @@ -0,0 +1,38 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_mpi +display_name: CommandComponentMpi +description: This is the mpi command component +tags: + tag: tagvalue + owner: sdkteam + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path: + type: uri_folder + +command: >- + echo Hello World & + echo ${{inputs.component_in_number}} & + echo ${{inputs.component_in_path}} & + echo ${{outputs.component_out_path}} + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + +distribution: + type: "mpi" + process_count_per_instance: 1 + added_property: 7 + +resources: + instance_count: 2 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_multiple_data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_multiple_data.yml new file mode 100644 index 000000000000..06b4f2422dfb --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_multiple_data.yml @@ -0,0 +1,95 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_multiple_data +display_name: CommandComponentMultipleData +description: This is a command component with a lot of inputs +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +inputs: + component_in_1: + type: uri_folder + component_in_2: + type: uri_folder + component_in_3: + type: uri_folder + component_in_4: + type: uri_folder + component_in_5: + type: uri_folder + component_in_6: + type: uri_folder + component_in_7: + type: uri_folder + component_in_8: + type: uri_folder + component_in_9: + type: uri_folder + component_in_10: + type: uri_folder + component_in_11: + type: uri_folder + component_in_12: + type: uri_folder + component_in_13: + type: uri_folder + component_in_14: + type: uri_folder + component_in_15: + type: uri_folder + +outputs: + component_out_1: + type: uri_folder + component_out_2: + type: uri_folder + component_out_3: + type: uri_folder + component_out_4: + type: uri_folder + component_out_5: + type: uri_folder + component_out_6: + type: uri_folder + component_out_7: + type: uri_folder + component_out_8: + type: uri_folder + component_out_9: + type: uri_folder + component_out_10: + type: uri_folder + +command: >- + echo Multiple Data & + echo ${{inputs.component_in_1}} & + echo ${{inputs.component_in_2}} & + echo ${{inputs.component_in_3}} & + echo ${{inputs.component_in_4}} & + echo ${{inputs.component_in_5}} & + echo ${{inputs.component_in_6}} & + echo ${{inputs.component_in_7}} & + echo ${{inputs.component_in_8}} & + echo ${{inputs.component_in_9}} & + echo ${{inputs.component_in_10}} & + echo ${{inputs.component_in_11}} & + echo ${{inputs.component_in_12}} & + echo ${{inputs.component_in_13}} & + echo ${{inputs.component_in_14}} & + echo ${{inputs.component_in_15}} & + echo ${{outputs.component_out_1}} & + echo ${{outputs.component_out_2}} & + echo ${{outputs.component_out_3}} & + echo ${{outputs.component_out_4}} & + echo ${{outputs.component_out_5}} & + echo ${outputs.component_out_6}} & + echo ${{outputs.component_out_7}} & + echo ${{outputs.component_out_8}} & + echo ${{outputs.component_out_9}} & + echo ${{outputs.component_out_10}} + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_no_paths.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_no_paths.yml new file mode 100644 index 000000000000..2033e44934b3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_no_paths.yml @@ -0,0 +1,22 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +name: microsoftsamplescommandcomponentbasic_nopaths_test +version: 1 +display_name: CommandComponentBasic +is_deterministic: True +type: command +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam +inputs: + component_in_number: + type: number + optional: False + default: 10.99 + description: A number +environment: + conda_file: ../environment/endpoint_conda.yml + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 +command: echo Hello World & echo ${{inputs.component_in_number}} +code: "./" +... diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_pytorch.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_pytorch.yml new file mode 100644 index 000000000000..05cadf8a8e52 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_pytorch.yml @@ -0,0 +1,39 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_pytorch +display_name: CommandComponentPytorch +description: This is the pytorch command component +tags: + tag: tagvalue + owner: sdkteam + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path: + type: uri_folder + +command: >- + echo Hello World & + echo ${{inputs.component_in_number}} & + echo ${{inputs.component_in_path}} & + echo ${{outputs.component_out_path}} + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + +distribution: + type: "Pytorch" + process_count_per_instance: 4 + added_property: 7 + +resources: + instance_count: 2 + added_property: 7 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_registry.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_registry.yml new file mode 100644 index 000000000000..b818860e0b2c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_registry.yml @@ -0,0 +1,30 @@ +$schema: http://azureml/sdk-2-0/CommandComponent.json +type: command + +name: command_component_basic_registry_3 +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 3 + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + optional: True + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: "echo Hello World" +code: azureml://registries/testFeed/codes/f5f51a11-1c9e-4cb9-89b1-48ff67a2b2f3/versions/1 +environment: azureml://registries/CuratedRegistry/environments/AzureML-minimal-ubuntu18.04-py37-cpu-inference/versions/34 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_rest.json b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_rest.json new file mode 100644 index 000000000000..a0cee007ffee --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_rest.json @@ -0,0 +1,54 @@ +{ + "id": "/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/DesignerTestRG/providers/Microsoft.MachineLearningServices/workspaces/DesignerTest-centraluseuap/components/test_389889218331/versions/0.0.1", + "name": null, + "type": null, + "properties": { + "description": null, + "tags": null, + "properties": {}, + "isAnonymous": false, + "componentSpec": { + "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json", + "name": "microsoftsamples_command_component_basic", + "version": "0.0.1", + "type": "command", + "display_name": "CommandComponentBasic", + "description": "This is the basic command component", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "is_deterministic": "True", + "inputs": { + "component_in_path": { + "name": "component_in_path", + "optional": "False", + "description": "A path", + "type": "uri_folder" + }, + "component_in_number": { + "name": "component_in_number", + "optional": "True", + "description": "A number", + "type": "Number", + "default": "10.99" + } + }, + "outputs": { + "component_out_path": { + "name": "component_out_path", + "type": "uri_folder" + } + }, + "command": "echo Hello World & echo [${{inputs.component_in_number}}] & echo ${{inputs.component_in_path}} & echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number", + "environment": "azureml:/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/DesignerTestRG/providers/Microsoft.MachineLearningServices/workspaces/DesignerTest-centraluseuap/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/DesignerTestRG/providers/Microsoft.MachineLearningServices/workspaces/DesignerTest-centraluseuap/codes/221061b5-a6de-4d60-81fd-3a852cdfe1db/versions/1" + } + }, + "systemData": { + "createdAt": "2021-08-19T02:58:14.9644668Z", + "createdBy": "Zhen Ruan", + "createdByType": "User", + "lastModifiedAt": "2021-08-19T02:58:15.7637279Z" + } +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_tensorflow.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_tensorflow.yml new file mode 100644 index 000000000000..e8d6709c1af2 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_tensorflow.yml @@ -0,0 +1,39 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_tensor_flow +display_name: CommandComponentTensorFlow +description: This is the TensorFlow command component +tags: + tag: tagvalue + owner: sdkteam + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path: + type: uri_folder + +command: >- + echo Hello World & + echo ${{inputs.component_in_number}} & + echo ${{inputs.component_in_path}} & + echo ${{outputs.component_out_path}} + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + +distribution: + type: "TensorFlow" + parameter_server_count: 1 + worker_count: 2 + added_property: 7 + +resources: + instance_count: 2 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_input_and_output.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_input_and_output.yml new file mode 100644 index 000000000000..9c2dbdb0ebf3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_input_and_output.yml @@ -0,0 +1,40 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic +display_name: CommandComponentBasicWithInputAndOutput +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path_1: + type: uri_folder + component_out_path_2: + type: uri_folder + component_out_path_3: + type: uri_folder + + +command: >- + echo Hello World && + echo ${{inputs.component_in_number}} && + mkdir -p ${{outputs.component_out_path_1}} && + cp -p -r ${{inputs.component_in_path}} ${{outputs.component_out_path_1}} && + echo ${{outputs.component_out_path_2}} && + echo ${{outputs.component_out_path_3}} + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +code: "./" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_paths.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_paths.yml new file mode 100644 index 000000000000..ab734ee876f3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_paths.yml @@ -0,0 +1,24 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +name: microsoftsamples_command_component_basic_with_paths_test +version: 1 +display_name: CommandComponentBasic +is_deterministic: True +type: command +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam +inputs: + component_in_number: + type: number + optional: False + default: 10.99 + description: A number + component_in_path_1: + type: uri_folder + component_in_path_2: + type: uri_folder +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +code: "./" +command: echo Hello World & echo ${{inputs.component_in_number}} & echo ${{inputs.component_in_path_1}} & echo ${{inputs.component_in_path_2}} +... diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_uppercase_input.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_uppercase_input.yml new file mode 100644 index 000000000000..8911b4a33f87 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_with_uppercase_input.yml @@ -0,0 +1,34 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + component_In_number: + description: A number + type: number + default: 10.99 + optional: True + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + echo [${{inputs.component_In_number}}] & + echo ${{inputs.component_in_path}} & + echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/conda.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/conda.yml new file mode 100644 index 000000000000..244b1c23e0a4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/conda.yml @@ -0,0 +1,11 @@ +name: example-environment +channels: + - conda-forge +dependencies: + - python=3.6.1 + - pip + - pip: + - nbgitpuller + - sphinx-gallery + - pandas + - matplotlib diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_inline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_inline.yml new file mode 100644 index 000000000000..564916eb26c4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_inline.yml @@ -0,0 +1,47 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: helloworld_component_with_env +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + optional: True + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + echo [${{inputs.component_in_number}}] & + echo ${{inputs.component_in_path}} & + echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number + +environment: + conda_file: + name: example-environment + channels: + - conda-forge + dependencies: + - python=3.6.1 + - pip + - pip: + - nbgitpuller + - sphinx-gallery + - pandas + - matplotlib + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_path_0.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_path_0.yml new file mode 100644 index 000000000000..eff401829c68 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_path_0.yml @@ -0,0 +1,36 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: helloworld_component_with_env +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + optional: True + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + echo [${{inputs.component_in_number}}] & + echo ${{inputs.component_in_path}} & + echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number + +environment: + conda_file: ./conda.yml + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_path_1.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_path_1.yml new file mode 100644 index 000000000000..518691e89e63 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/helloworld_component_env_path_1.yml @@ -0,0 +1,36 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: helloworld_component_with_env +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + optional: True + component_in_path: + description: A path + type: uri_folder + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + echo [${{inputs.component_in_number}}] & + echo ${{inputs.component_in_path}} & + echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number + +environment: + conda_file: ./env/conda.yml + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_parallel.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_parallel.yml new file mode 100644 index 000000000000..6dcd0d1756e8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_parallel.yml @@ -0,0 +1,35 @@ +#source ../configs/parallel-job/batch-score-ParallelComponent.yaml +$schema: http://azureml/sdk-2-0/ParallelComponent.json +name: batch_score +type: parallel +version: 1.0.0 +display_name: BatchScore +description: parallel component for batch score + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + optional: false + component_in_path: + description: A path + type: uri_folder + +outputs: + results: + type: mltable + +task: + type: function + code: ./src + entry_script: score.py + args: >- # optional + --label ${{inputs.label}} + --model ${{inputs.model}} + --output ${{outputs.scored_result}} + append_row_to: ${{outputs.scoring_summary}} # optional, If Null, equals to summary_only mode in v1. + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + +mini_batch_size: "10mb" +input_data: ${{inputs.score_input}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/input_types_component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/input_types_component.yml new file mode 100644 index 000000000000..c0032b65ea3b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/input_types_component.yml @@ -0,0 +1,48 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoft_samples_command_component_basic_inputs +display_name: CommandComponentBasicInputs +description: This is the basic command component with several input types +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +inputs: + component_in_string: + description: A string + type: string + component_in_ranged_integer: + description: A ranged integer + type: integer + default: 10 + min: 1 + max: 100 + optional: false + component_in_enum: + description: An enum + type: string + default: hello + enum: ['hello', 'world'] + component_in_boolean: + description: A boolean + type: boolean + default: false + component_in_ranged_number: + description: A ranged number + type: number + min: 2 + max: 8 + default: 10 + +command: >- + echo Hello World & + echo ${{inputs.component_in_string}} & + echo ${{inputs.component_in_ranged_integer}} & + echo ${{inputs.component_in_enum}} & + echo ${{inputs.component_in_boolean}} & + echo ${{inputs.component_in_ranged_number}} & + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/input_types_component_rest.json b/sdk/ml/azure-ai-ml/tests/test_configs/components/input_types_component_rest.json new file mode 100644 index 000000000000..a6764e678662 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/input_types_component_rest.json @@ -0,0 +1,77 @@ +{ + "id": "/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/DesignerTestRG/providers/Microsoft.MachineLearningServices/workspaces/DesignerTest-centraluseuap/components/test_820738797279/versions/1", + "name": null, + "type": null, + "properties": { + "description": null, + "tags": null, + "properties": {}, + "isAnonymous": false, + "componentSpec": { + "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json", + "name": "microsoft_samples_command_component_basic_inputs", + "version": "1", + "type": "command", + "display_name": "CommandComponentBasicInputs", + "description": "This is the basic command component with several input types", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "is_deterministic": "True", + "inputs": { + "component_in_string": { + "name": "component_in_string", + "optional": "False", + "description": "A string", + "type": "String" + }, + "component_in_ranged_integer": { + "name": "component_in_ranged_integer", + "optional": "False", + "description": "A ranged integer", + "type": "Integer", + "default": "10", + "min": "1", + "max": "100" + }, + "component_in_enum": { + "name": "component_in_enum", + "optional": "False", + "description": "An enum", + "type": "String", + "default": "hello", + "enum": [ + "hello", + "world" + ] + }, + "component_in_boolean": { + "name": "component_in_boolean", + "optional": "False", + "description": "A boolean", + "type": "Boolean", + "default": "false" + }, + "component_in_ranged_number": { + "name": "component_in_ranged_number", + "optional": "False", + "description": "A ranged number", + "type": "Number", + "default": "10.0", + "min": "2.0", + "max": "8.0" + } + }, + "command": "echo Hello World & echo ${{inputs.component_in_string}} & echo ${{inputs.component_in_ranged_integer}} & echo ${{inputs.component_in_enum}} & echo ${{inputs.component_in_boolean}} & echo ${{inputs.component_in_ranged_number}} &", + "environment": "azureml:/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/DesignerTestRG/providers/Microsoft.MachineLearningServices/workspaces/DesignerTest-centraluseuap/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/DesignerTestRG/providers/Microsoft.MachineLearningServices/workspaces/DesignerTest-centraluseuap/codes/1f12f20c-6cbe-4838-a211-82ba4288575c/versions/1" + } + }, + "systemData": { + "createdAt": "2021-08-19T03:11:23.430582Z", + "createdBy": "Zhen Ruan", + "createdByType": "User", + "lastModifiedAt": "2021-08-19T03:11:24.2132391Z" + } +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/code.name_only.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/code.name_only.yml new file mode 100644 index 000000000000..fe10f9b951d8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/code.name_only.yml @@ -0,0 +1,10 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +name: atestcomponent +version: 1 +code: azureml:AzureML-Code +command: >- + echo ${{outputs.output_path}} +environment: azureml:AzureML-Minimal:1 +outputs: + output_path: + type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/combo.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/combo.yml new file mode 100644 index 000000000000..fb95abbb352b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/combo.yml @@ -0,0 +1,10 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +name: atestcomponent +version: 1 +code: ./non-existent/ +command: >- + echo ${{inputs.non_existent}} > ${{outputs.non_existent}} +environment: azureml:name-only +outputs: + output_path: + type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/empty.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/empty.yml new file mode 100644 index 000000000000..8b137891791f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/empty.yml @@ -0,0 +1 @@ + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/environment.name_only.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/environment.name_only.yml new file mode 100644 index 000000000000..4b7ca85abe36 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/environment.name_only.yml @@ -0,0 +1,10 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +name: atestcomponent +version: 1 +code: ../../python +command: >- + echo ${{outputs.output_path}} +environment: azureml:AzureML-Minimal +outputs: + output_path: + type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/error_format.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/error_format.yml new file mode 100644 index 000000000000..a5931f5f0ded --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/error_format.yml @@ -0,0 +1 @@ +name: |? diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_blank_input_names.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_blank_input_names.yml new file mode 100644 index 000000000000..681bfda746ff --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_blank_input_names.yml @@ -0,0 +1,54 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic_with_invalid_input_names +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + sanitiza_version: + description: sanitiza version + type: number + default: 10.99 + optional: True + CamelCase: + description: camel case + type: number + default: 10.99 + optional: True + have_number1: + description: have number + type: number + default: 10.99 + optional: True + _start_with_underscore: + description: start with underscore + type: number + default: 10.99 + optional: True + have blank: + description: have blank + type: number + default: 10.99 + optional: True + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + [& echo ${{inputs.sanitiza_version}}] + [& echo ${{inputs.CamelCase}}] + [& echo ${{inputs.have_number1}}] + [& echo ${{inputs._start_with_underscore}}] + [& echo ${{inputs.have blank}}] + echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_blank_output_names.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_blank_output_names.yml new file mode 100644 index 000000000000..28b14a28a61c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_blank_output_names.yml @@ -0,0 +1,48 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic_with_invalid_input_names +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + sanitiza_version: + description: sanitiza version + type: number + default: 10.99 + optional: True + CamelCase: + description: camel case + type: number + default: 10.99 + optional: True + have_number1: + description: have number + type: number + default: 10.99 + optional: True + _start_with_underscore: + description: start with underscore + type: number + default: 10.99 + optional: True + +outputs: + have blank: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + [& echo ${{inputs.sanitiza_version}}] + [& echo ${{inputs.CamelCase}}] + [& echo ${{inputs.have_number1}}] + [& echo ${{inputs._start_with_underscore}}] + echo ${{outputs.have blank}} > ${{outputs.have blank}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_dash_input_names.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_dash_input_names.yml new file mode 100644 index 000000000000..235fb8ddb15c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_dash_input_names.yml @@ -0,0 +1,54 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic_with_invalid_input_names +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + sanitiza_version: + description: sanitiza version + type: number + default: 10.99 + optional: True + CamelCase: + description: camel case + type: number + default: 10.99 + optional: True + have_number1: + description: have number + type: number + default: 10.99 + optional: True + _start_with_underscore: + description: start with underscore + type: number + default: 10.99 + optional: True + have-dash: + description: have dash + type: number + default: 10.99 + optional: True + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + [& echo ${{inputs.sanitiza_version}}] + [& echo ${{inputs.CamelCase}}] + [& echo ${{inputs.have_number1}}] + [& echo ${{inputs._start_with_underscore}}] + [& echo ${{inputs.have-dash}}] + echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_dash_output_names.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_dash_output_names.yml new file mode 100644 index 000000000000..7416d9de2d50 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_dash_output_names.yml @@ -0,0 +1,48 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic_with_invalid_input_names +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + sanitiza_version: + description: sanitiza version + type: number + default: 10.99 + optional: True + CamelCase: + description: camel case + type: number + default: 10.99 + optional: True + have_number1: + description: have number + type: number + default: 10.99 + optional: True + _start_with_underscore: + description: start with underscore + type: number + default: 10.99 + optional: True + +outputs: + have-dash: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + [& echo ${{inputs.sanitiza_version}}] + [& echo ${{inputs.CamelCase}}] + [& echo ${{inputs.have_number1}}] + [& echo ${{inputs._start_with_underscore}}] + echo ${{outputs.have-dash}} > ${{outputs.have-dash}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_special_character_input_names.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_special_character_input_names.yml new file mode 100644 index 000000000000..68a4dc2ea631 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_special_character_input_names.yml @@ -0,0 +1,54 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic_with_invalid_input_names +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + sanitiza_version: + description: sanitiza version + type: number + default: 10.99 + optional: True + CamelCase: + description: camel case + type: number + default: 10.99 + optional: True + have_number1: + description: have number + type: number + default: 10.99 + optional: True + _start_with_underscore: + description: start with underscore + type: number + default: 10.99 + optional: True + have_*@special_characters: + description: have *@special characters + type: number + default: 10.99 + optional: True + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + [& echo ${{inputs.sanitiza_version}}] + [& echo ${{inputs.CamelCase}}] + [& echo ${{inputs.have_number1}}] + [& echo ${{inputs._start_with_underscore}}] + [& echo ${{inputs.have_*@special_characters}}] + echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_special_character_output_names.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_special_character_output_names.yml new file mode 100644 index 000000000000..414e802b07c2 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_special_character_output_names.yml @@ -0,0 +1,48 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic_with_invalid_input_names +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + sanitiza_version: + description: sanitiza version + type: number + default: 10.99 + optional: True + CamelCase: + description: camel case + type: number + default: 10.99 + optional: True + have_number1: + description: have number + type: number + default: 10.99 + optional: True + _start_with_underscore: + description: start with underscore + type: number + default: 10.99 + optional: True + +outputs: + have_*@special_characters: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + [& echo ${{inputs.sanitiza_version}}] + [& echo ${{inputs.CamelCase}}] + [& echo ${{inputs.have_number1}}] + [& echo ${{inputs._start_with_underscore}}] + echo ${{outputs.have_*@special_characters}} > ${{outputs.have_*@special_characters}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_dash_input_names.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_dash_input_names.yml new file mode 100644 index 000000000000..5d25ceb02563 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_dash_input_names.yml @@ -0,0 +1,54 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic_with_invalid_input_names +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + sanitiza_version: + description: sanitiza version + type: number + default: 10.99 + optional: True + CamelCase: + description: camel case + type: number + default: 10.99 + optional: True + have_number1: + description: have number + type: number + default: 10.99 + optional: True + _start_with_underscore: + description: start with underscore + type: number + default: 10.99 + optional: True + -start_with_dash: + description: start with dash + type: number + default: 10.99 + optional: True + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + [& echo ${{inputs.sanitiza_version}}] + [& echo ${{inputs.CamelCase}}] + [& echo ${{inputs.have_number1}}] + [& echo ${{inputs._start_with_underscore}}] + [& echo ${{inputs.-start_with_dash}}] + echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_dash_output_names.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_dash_output_names.yml new file mode 100644 index 000000000000..075d0d93b0f3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_dash_output_names.yml @@ -0,0 +1,48 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic_with_invalid_input_names +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + sanitiza_version: + description: sanitiza version + type: number + default: 10.99 + optional: True + CamelCase: + description: camel case + type: number + default: 10.99 + optional: True + have_number1: + description: have number + type: number + default: 10.99 + optional: True + _start_with_underscore: + description: start with underscore + type: number + default: 10.99 + optional: True + +outputs: + -start_with_dash: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + [& echo ${{inputs.sanitiza_version}}] + [& echo ${{inputs.CamelCase}}] + [& echo ${{inputs.have_number1}}] + [& echo ${{inputs._start_with_underscore}}] + echo ${{outputs.-start_with_dash}} > ${{outputs.-start_with_dash}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_number_input_names.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_number_input_names.yml new file mode 100644 index 000000000000..8e6df9900e7c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_number_input_names.yml @@ -0,0 +1,54 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic_with_invalid_input_names +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + sanitiza_version: + description: sanitiza version + type: number + default: 10.99 + optional: True + CamelCase: + description: camel case + type: number + default: 10.99 + optional: True + have_number1: + description: have number + type: number + default: 10.99 + optional: True + _start_with_underscore: + description: start with underscore + type: number + default: 10.99 + optional: True + 1start_with_number: + description: start with number + type: number + default: 10.99 + optional: True + +outputs: + component_out_path: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + [& echo ${{inputs.sanitiza_version}}] + [& echo ${{inputs.CamelCase}}] + [& echo ${{inputs.have_number1}}] + [& echo ${{inputs._start_with_underscore}}] + [& echo ${{inputs.1start_with_number}}] + echo ${{outputs.component_out_path}} > ${{outputs.component_out_path}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_number_output_names.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_number_output_names.yml new file mode 100644 index 000000000000..4240362c5a1a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/helloworld_component_with_start_number_output_names.yml @@ -0,0 +1,48 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic_with_invalid_input_names +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + sanitiza_version: + description: sanitiza version + type: number + default: 10.99 + optional: True + CamelCase: + description: camel case + type: number + default: 10.99 + optional: True + have_number1: + description: have number + type: number + default: 10.99 + optional: True + _start_with_underscore: + description: start with underscore + type: number + default: 10.99 + optional: True + +outputs: + 1start_with_number: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + [& echo ${{inputs.sanitiza_version}}] + [& echo ${{inputs.CamelCase}}] + [& echo ${{inputs.have_number1}}] + [& echo ${{inputs._start_with_underscore}}] + echo ${{outputs.1start_with_number}} > ${{outputs.1start_with_number}}/component_in_number + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/name_none.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/name_none.yml new file mode 100644 index 000000000000..b0fbb7e70f62 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/name_none.yml @@ -0,0 +1,10 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +name: +version: 1 +code: ../python +command: >- + echo ${{outputs.output_path}} +environment: azureml:AzureML-Minimal:2 +outputs: + output_path: + type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/no_environment.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/no_environment.yml new file mode 100644 index 000000000000..604a8a0eb9fb --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/no_environment.yml @@ -0,0 +1,9 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +name: atestcomponent +version: 1 +code: ../python +command: >- + echo ${{outputs.output_path}} +outputs: + output_path: + type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/non_dict.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/non_dict.yml new file mode 100644 index 000000000000..18f9223c0cac --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/non_dict.yml @@ -0,0 +1 @@ +name |? diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/unsupported_fields.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/unsupported_fields.yml new file mode 100644 index 000000000000..a0c81b0446ac --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/invalid/unsupported_fields.yml @@ -0,0 +1,11 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +name: atestcomponent +name1: atestcomponent +version: 1 +code: ../python +command: >- + echo ${{outputs.output_path}} +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +outputs: + output_path: + type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/merge_outputs_component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/merge_outputs_component.yml new file mode 100644 index 000000000000..51db5ba00af0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/merge_outputs_component.yml @@ -0,0 +1,33 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: component_merge_outputs +display_name: ComponentMergeOutputs +version: 0.0.1 + +command: >- + echo Hello World && + echo ${{inputs.component_in_number}} && + mkdir -p ${{outputs.component_out_path_1}} && + mkdir -p ${{outputs.component_out_path_2}} && + cp -r ${{inputs.component_in_path_1}} ${{outputs.component_out_path_1}} && + cp -r ${{inputs.component_in_path_2}} ${{outputs.component_out_path_2}} +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + component_in_path_1: + description: A path + type: uri_folder + component_in_path_2: + description: A path + type: uri_folder + +outputs: + component_out_path_1: + type: uri_folder + component_out_path_2: + type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/parallel_component_with_file_input.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/parallel_component_with_file_input.yml new file mode 100644 index 000000000000..80dd08782865 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/parallel_component_with_file_input.yml @@ -0,0 +1,39 @@ +#source ../configs/parallel-job/batch-score-ParallelComponent.yaml +$schema: http://azureml/sdk-2-0/ParallelComponent.json +name: file_batch_score +type: parallel +version: 1.0.0 +display_name: BatchScore +description: parallel component for batch score + +inputs: + job_data_path: + type: mltable + description: The data to be split and scored in parallel. + optional: false + +outputs: + job_output_path: + type: uri_folder + +mini_batch_size: "1" +input_data: ${{inputs.job_data_path}} +mini_batch_error_threshold: 1 +max_concurrency_per_instance: 1 +logging_level: "WARNING" +error_threshold: -1 +retry_settings: + max_retries: 2 + timeout: 60 + +resources: + instance_count: 2 + +task: + type: function + code: ../script_parallel/ + entry_script: pass_through.py + args: >- + --job_output_path ${{outputs.job_output_path}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/custom_model.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/custom_model.yml new file mode 100644 index 000000000000..c58fc6b44ae1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/custom_model.yml @@ -0,0 +1,40 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoft_samples_command_component_custom_input_outputs +display_name: CommandComponentCustomInputOutputs +description: This is the command component with input/output types of custom model +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +inputs: + component_in_custom_model: + type: custom_model + + component_in_trition_model: + type: triton_model + +# component_in_openai_model: +# type: openai_model + +outputs: + component_out_custom_model: + type: custom_model + + component_out_trition_model: + type: triton_model + +# component_out_openai_model: +# type: openai_model + +command: | + python -c " + import pickle + with open('${{inputs.component_in_custom_model}}/model.pkl', 'rb') as f: + model = pickle.load(f) + " + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/mlflow_model.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/mlflow_model.yml new file mode 100644 index 000000000000..7e7d3f56ac4c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/mlflow_model.yml @@ -0,0 +1,30 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +# not supported yet. + +name: microsoft_samples_command_component_ml_table_input_outputs +display_name: CommandComponentMLTableInputOutputs +description: This is the command component with input/output types of MLTable +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +inputs: + component_in_mlflow_model_azure: + type: mlflow_model + + component_in_mlflow_model_uri: + type: mlflow_model + +outputs: + component_out_mlflow_model: + type: mlflow_model + +command: | + echo ${{inputs.component_in_mlflow_model_azure}} + echo ${{inputs.component_in_mlflow_model_uri}} + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/mltable.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/mltable.yml new file mode 100644 index 000000000000..b53fccbb0d56 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/mltable.yml @@ -0,0 +1,37 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +# not supported yet. + +name: microsoft_samples_command_component_ml_table_input_outputs +display_name: CommandComponentMLTableInputOutputs +description: This is the command component with input/output types of MLTable +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +inputs: + component_in_mltable_mount: + type: mltable + + component_in_mltable_url: + type: mltable + + component_in_mltable_eval: + type: mltable + +outputs: + component_out_mltable_rw_mount: + type: mltable + + component_out_mltable_upload: + type: mltable + +command: | + echo ${{inputs.component_in_mltable_mount}} + echo ${{inputs.component_in_mltable_url}} + echo ${{inputs.component_in_mltable_eval}} + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/object.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/object.yml new file mode 100644 index 000000000000..4c0e87bc5a34 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/object.yml @@ -0,0 +1,68 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +# not supported yet. + +name: microsoft_samples_command_component_object_input_outputs +display_name: CommandComponentObjectInputOutputs +description: This is the command component with input/output types of object +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +inputs: + # object with explicit inline json schema annotation + component_in_object_with_inline_schema: + type: object + description: This is and object that must have first_name, last_name and id + schema: + $schema: https://json-schema.org/draft/2019-09/schema + type: object + properties: + first_name: { type: string } + last_name: { type: string } + id: { type: integer } + additionalProperties: false + + # object with explicit referenced schema annotation + component_in_object_with_schema: + type: object + description: This is and object that must have first_name, last_name and id + schema: https://ignite6981724196.blob.core.windows.net/schemas/my_json_schema.json#/definitions/person + + # object without schema annotation + component_in_object_without_schema: + type: object + description: This and object isn't backed by a schema + +outputs: + component_out_object_with_inline_schema: + type: object + description: This is and object that must have first_name, last_name and id + schema: + $schema: https://json-schema.org/draft/2019-09/schema + type: object + properties: + first_name: { type: string } + last_name: { type: string } + id: { type: integer } + additionalProperties: false + + component_out_object_with_schema: + type: object + description: This is and object that must have first_name, last_name and id + schema: https://ignite6981724196.blob.core.windows.net/schemas/my_json_schema.json#/definitions/person + + component_out_object_without_schema: + type: object + description: This and object isn't backed by a schema + +command: | + # prints out the object in JSON format + echo ${{inputs.component_in_object_with_inline_schema}} + echo ${{inputs.component_in_object_with_schema}} + echo ${{inputs.component_in_object_without_schema}} + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/path.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/path.yml new file mode 100644 index 000000000000..e6dbea360c4b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/type_contract/path.yml @@ -0,0 +1,32 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoft_samples_command_component_path_input_outputs +display_name: CommandComponentPathInputOutputs +description: This is the command component with input/output types of path +tags: + tag: tagvalue + owner: sdkteam + +version: 1 + +inputs: + component_in_file: + type: uri_file + component_in_folder: + type: uri_folder + component_in_path: # can be file or folder, the code can handle both + type: path + +outputs: + component_out_file: + type: uri_file + component_out_folder: + type: uri_folder + +command: | + cp ${{inputs.component_in_file}} ${{outputs.component_out_file}} + cp -r ${{inputs.component_in_folder}} ${{outputs.component_out_folder}} + echo "${{inputs.component_in_path}} is a path" + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-aml-no-identity.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-aml-no-identity.yaml new file mode 100644 index 000000000000..097cc3e73aa9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-aml-no-identity.yaml @@ -0,0 +1,13 @@ +name: banchaml +type: amlcompute +tier: dedicated +description: some_desc_aml +size: Standard_DS2_v2 +ssh_public_access_enabled: true +ssh_settings: + admin_username: azureuser + ssh_key_value: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWm/4TTHMZdzZVJcob2aFRWDmIyJLxk028AKh7K03RDgR8bz/Knd9DgB2V3sipjY9wYJ1U9YbsUoAt24+CWZFpnoB79J6vaoqwUb7c6nGkaNrWoGZKI+v26GOX8O2MUjjOyBuPEinJtQ432J4affHfeRI+1iDQXuwFUKhNbRVpxh2h9otXF+J1UvSUaPYggS7Iivyha/x8HJzFcNnIPrAZkPiT/Nb/Qk7FyoFTEw64cIl1ByvmF3ewSOeVXKDpb2d4vrSDTVmXFKRrWduhM3sHO5dckREKc+tSQ0M+SpfBqaBgRTAie4jFVSIiSHCvL2BRQXBMRiyPgNlpiJWTPLp/ administrator@MININT-7IP9G6S + admin_password: passwd12345 +min_instances: 0 +max_instances: 2 +idle_time_before_scale_down: 100 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-aml.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-aml.yaml new file mode 100644 index 000000000000..09d6f85d9623 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-aml.yaml @@ -0,0 +1,17 @@ +name: banchaml +type: amlcompute +description: some_desc_aml +size: Standard_DS2_v2 +ssh_public_access_enabled: true +ssh_settings: + admin_username: azureuser + ssh_key_value: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWm/4TTHMZdzZVJcob2aFRWDmIyJLxk028AKh7K03RDgR8bz/Knd9DgB2V3sipjY9wYJ1U9YbsUoAt24+CWZFpnoB79J6vaoqwUb7c6nGkaNrWoGZKI+v26GOX8O2MUjjOyBuPEinJtQ432J4affHfeRI+1iDQXuwFUKhNbRVpxh2h9otXF+J1UvSUaPYggS7Iivyha/x8HJzFcNnIPrAZkPiT/Nb/Qk7FyoFTEw64cIl1ByvmF3ewSOeVXKDpb2d4vrSDTVmXFKRrWduhM3sHO5dckREKc+tSQ0M+SpfBqaBgRTAie4jFVSIiSHCvL2BRQXBMRiyPgNlpiJWTPLp/ administrator@MININT-7IP9G6S + admin_password: passwd12345 +identity: + type: user_assigned + user_assigned_identities: + - resource_id: /subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/test-rg-centraluseuap-v2-t-2021W35/providers/Microsoft.ManagedIdentity/userAssignedIdentities/x + - resource_id: /subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/test-rg-centraluseuap-v2-t-2021W35/providers/Microsoft.ManagedIdentity/userAssignedIdentities/y +min_instances: 0 +max_instances: 2 +idle_time_before_scale_down: 100 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci-schedules.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci-schedules.yaml new file mode 100644 index 000000000000..3060bbe6f6ad --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci-schedules.yaml @@ -0,0 +1,22 @@ +name: banchci +type: computeinstance +size: STANDARD_DS3_V2 +schedules: + compute_start_stop: + - action: stop + trigger: + type: cron + start_time: "2021-03-10T21:21:07" + time_zone: Pacific Standard Time + expression: 0 18 * * * + - action: start + trigger: + type: recurrence + start_time: "2021-03-10T21:21:07" + time_zone: Pacific Standard Time + frequency: week + interval: 1 + schedule: + hours: [0] + minutes: [15] + week_days: ['monday', 'tuesday'] \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci-unit.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci-unit.yaml new file mode 100644 index 000000000000..e5a059bfef50 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci-unit.yaml @@ -0,0 +1,16 @@ +name: banchci +type: computeinstance +description: some_desc_ci + +size: Standard_DS2_v2 + +network_settings: + vnet_name: myvnet-wus2 + subnet: default + +create_on_behalf_of: + user_tenant_id: 72f988bf-86f1-41af-91ab-2d7cd011db47 + user_object_id: 17bac01b-4294-48c1-a35d-5bd1b4e8c777 + +ssh_settings: + ssh_key_value: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWm/4TTHMZdzZVJcob2aFRWDmIyJLxk028AKh7K03RDgR8bz/Knd9DgB2V3sipjY9wYJ1U9YbsUoAt24+CWZFpnoB79J6vaoqwUb7c6nGkaNrWoGZKI+v26GOX8O2MUjjOyBuPEinJtQ432J4affHfeRI+1iDQXuwFUKhNbRVpxh2h9otXF+J1UvSUaPYggS7Iivyha/x8HJzFcNnIPrAZkPiT/Nb/Qk7FyoFTEw64cIl1ByvmF3ewSOeVXKDpb2d4vrSDTVmXFKRrWduhM3sHO5dckREKc+tSQ0M+SpfBqaBgRTAie4jFVSIiSHCvL2BRQXBMRiyPgNlpiJWTPLp/ administrator@MININT-7IP9G6S diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci.yaml new file mode 100644 index 000000000000..880dbd55aeaa --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-ci.yaml @@ -0,0 +1,9 @@ +name: banchci +type: computeinstance +description: some_desc_ci + +size: Standard_DS2_v2 + +ssh_public_access_enabled: False +ssh_settings: + ssh_key_value: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWm/4TTHMZdzZVJcob2aFRWDmIyJLxk028AKh7K03RDgR8bz/Knd9DgB2V3sipjY9wYJ1U9YbsUoAt24+CWZFpnoB79J6vaoqwUb7c6nGkaNrWoGZKI+v26GOX8O2MUjjOyBuPEinJtQ432J4affHfeRI+1iDQXuwFUKhNbRVpxh2h9otXF+J1UvSUaPYggS7Iivyha/x8HJzFcNnIPrAZkPiT/Nb/Qk7FyoFTEw64cIl1ByvmF3ewSOeVXKDpb2d4vrSDTVmXFKRrWduhM3sHO5dckREKc+tSQ0M+SpfBqaBgRTAie4jFVSIiSHCvL2BRQXBMRiyPgNlpiJWTPLp/ administrator@MININT-7IP9G6S diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-kubernetes.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-kubernetes.yaml new file mode 100644 index 000000000000..c3f2c78c12bb --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-kubernetes.yaml @@ -0,0 +1,6 @@ +$schema: http://azureml/sdk-2-0/KubernetesCompute.json +description: 'A specification of an K8S cluster (to be attached or already attached)' +name: testarc +namespace: default +type: kubernetes +resource_id : /subscriptions/dummy/resourceGroups/dummy/providers/Microsoft.Kubernetes/connectedClusters/dummy \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-vm.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-vm.yaml new file mode 100644 index 000000000000..5c6a11134a0e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/compute/compute-vm.yaml @@ -0,0 +1,11 @@ +name: banchcivm +type: virtualmachine +description: some_desc_vm + +resource_id: /subscriptions/13e50845-67bc-4ac5-94db-48d493a6d9e8/resourceGroups/myrg/providers/Microsoft.Compute/virtualMachines/myvm + +ssh_settings: + ssh_port: 8888 + admin_username: azureuser + admin_password: azureuserpassword + ssh_private_key_file: tests/test_configs/compute/ssh_fake_key.txt \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/compute/ssh_fake_key.txt b/sdk/ml/azure-ai-ml/tests/test_configs/compute/ssh_fake_key.txt new file mode 100644 index 000000000000..77ab11a7c422 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/compute/ssh_fake_key.txt @@ -0,0 +1 @@ +myfakekey \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/data/sample1.csv b/sdk/ml/azure-ai-ml/tests/test_configs/data/sample1.csv new file mode 100644 index 000000000000..a27e6468c2c0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/data/sample1.csv @@ -0,0 +1,9 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_file.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_file.yaml new file mode 100644 index 000000000000..430f44aafb02 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_file.yaml @@ -0,0 +1,5 @@ +name: testFileData +version: 1 +description: "this is a test dataset" +path: ../python/simple_train.py +type: uri_file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path.yaml new file mode 100644 index 000000000000..d1945b8ec1f9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path.yaml @@ -0,0 +1,5 @@ +name: testFileData +version: 1 +description: "this is a test dataset" +path: ../data +type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path_mltable.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path_mltable.yaml new file mode 100644 index 000000000000..55ff47c7b30e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path_mltable.yaml @@ -0,0 +1,5 @@ +name: testIrisData +version: 1 +description: iris dataset +path: ./iris-mltable +type: mltable diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path_with_datastore.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path_with_datastore.yaml new file mode 100644 index 000000000000..1c08f658882e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_local_path_with_datastore.yaml @@ -0,0 +1,5 @@ +name: testIrisData +version: 1 +description: iris dataset +path: ../data +type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_missing_path_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_missing_path_test.yml new file mode 100644 index 000000000000..e0f5a5f51ad2 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/data_missing_path_test.yml @@ -0,0 +1,4 @@ +name: testFileData +version: 1 +description: "this is an invalid schema" +type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_empty_paths_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_empty_paths_test.yml new file mode 100644 index 000000000000..81bcf470fc9a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_empty_paths_test.yml @@ -0,0 +1,5 @@ +name: testDatasetfolder +version: 1 +description: "this is a test dataset" +paths: + - path: https://sag3uw5aitwz5iw.blob.core.windows.net/azureml-blobstore-525ecb0d-ade1-4979-bed9-a80da71c5fba/LocalUpload/79dd8f7e00e2fe2d398effb65ff874e3/data/sample1.csv \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_file.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_file.yaml new file mode 100644 index 000000000000..52f4b1ab55b2 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_file.yaml @@ -0,0 +1,5 @@ +name: testFileData +version: 1 +description: "this is a test dataset" +local_path: ../python/simple_train.py + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_file_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_file_test.yml new file mode 100644 index 000000000000..8430cf6151b3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_file_test.yml @@ -0,0 +1,5 @@ +name: testDatasetfile +version: 1 +description: "this is a test dataset" +paths: + - file: https://test.blob.core.windows.net/azureml-blobstore-test/testdata/data.csv \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_multiple_folder_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_multiple_folder_test.yml new file mode 100644 index 000000000000..9e8a6ed1ccf5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_multiple_folder_test.yml @@ -0,0 +1,6 @@ +name: testDatasetfolder +version: 1 +description: "this is a test dataset" +paths: + - folder: https://test.blob.core.windows.net/azureml-blobstore-test/testdata/ + - folder: https://test.blob.core.windows.net/azureml-blobstore-test/test/data/ \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_multiple_paths_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_multiple_paths_test.yml new file mode 100644 index 000000000000..c1a8d63f00b6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_multiple_paths_test.yml @@ -0,0 +1,6 @@ +name: testDatasetfolder +version: 1 +description: "this is a test dataset" +paths: + - file: https://test.blob.core.windows.net/azureml-blobstore-test/testdata/data.csv + - file: https://test.blob.core.windows.net/azureml-blobstore-test/testdata/data.csv \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_test.yml new file mode 100644 index 000000000000..04332d558b6e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_folder_test.yml @@ -0,0 +1,5 @@ +name: testDatasetfolder +version: 1 +description: "this is a test dataset" +paths: + - folder: azureml://subscriptions/my-sub-id/resourcegroups/my-rg/workspaces/myworkspace/datastores/workspaceblobstore/feb/ \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_local_path.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_local_path.yaml new file mode 100644 index 000000000000..c498ac63d263 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_local_path.yaml @@ -0,0 +1,4 @@ +name: testFileData +version: 1 +description: "this is a test dataset" +local_path: ../data diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_local_path_with_datastore.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_local_path_with_datastore.yaml new file mode 100644 index 000000000000..342706cf0782 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_local_path_with_datastore.yaml @@ -0,0 +1,4 @@ +name: testIrisData +version: 1 +description: iris dataset +local_path: ../data diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_no_paths_and_local_path_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_no_paths_and_local_path_test.yml new file mode 100644 index 000000000000..3790673b65c7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_no_paths_and_local_path_test.yml @@ -0,0 +1,3 @@ +name: testDatasetfolder +version: 1 +description: "this is a test dataset" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_whitespace_file_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_whitespace_file_test.yml new file mode 100644 index 000000000000..61b444c44e97 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_whitespace_file_test.yml @@ -0,0 +1,5 @@ +name: testDatasetfolder +version: 1 +description: "this is a test dataset" +paths: + - file: " " diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_whitespace_folder_test.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_whitespace_folder_test.yml new file mode 100644 index 000000000000..d576d8bfe8dc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_whitespace_folder_test.yml @@ -0,0 +1,5 @@ +name: testDatasetfolder +version: 1 +description: "this is a test dataset" +paths: + - folder: " " diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_with_file_and_folder.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_with_file_and_folder.yml new file mode 100644 index 000000000000..8a9a6b0cf555 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/dataset_with_file_and_folder.yml @@ -0,0 +1,6 @@ +name: testDatasetfolder +version: 1 +description: "this is a test dataset" +paths: + - folder: https://test.blob.core.windows.net/azureml-blobstore-test/testdata/ + file: https://test.blob.core.windows.net/azureml-blobstore-test/testdata/data.csv \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/invalid-mltable/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/invalid-mltable/MLTable new file mode 100644 index 000000000000..59cfcddd1332 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/invalid-mltable/MLTable @@ -0,0 +1,7 @@ +paths: + - file: ./iris.csv +transformations: + - read_delimited: + delimiter: "," + encoding: unknownencoding + header: all_files_same_headers diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/invalid-mltable/iris.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/invalid-mltable/iris.csv new file mode 100644 index 000000000000..e6d58a1d3caa --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/invalid-mltable/iris.csv @@ -0,0 +1,151 @@ +sepal_length,sepal_width,petal_length,petal_width,species +101,152,123,187,Iris-setosa +4.9,3,1.4,0.2,Iris-setosa +4.7,3.2,1.3,0.2,Iris-setosa +4.6,3.1,1.5,0.2,Iris-setosa +5,3.6,1.4,0.2,Iris-setosa +5.4,3.9,1.7,0.4,Iris-setosa +4.6,3.4,1.4,0.3,Iris-setosa +5,3.4,1.5,0.2,Iris-setosa +4.4,2.9,1.4,0.2,Iris-setosa +4.9,3.1,1.5,0.1,Iris-setosa +5.4,3.7,1.5,0.2,Iris-setosa +4.8,3.4,1.6,0.2,Iris-setosa +4.8,3,1.4,0.1,Iris-setosa +4.3,3,1.1,0.1,Iris-setosa +5.8,4,1.2,0.2,Iris-setosa +5.7,4.4,1.5,0.4,Iris-setosa +5.4,3.9,1.3,0.4,Iris-setosa +5.1,3.5,1.4,0.3,Iris-setosa +5.7,3.8,1.7,0.3,Iris-setosa +5.1,3.8,1.5,0.3,Iris-setosa +5.4,3.4,1.7,0.2,Iris-setosa +5.1,3.7,1.5,0.4,Iris-setosa +4.6,3.6,1,0.2,Iris-setosa +5.1,3.3,1.7,0.5,Iris-setosa +4.8,3.4,1.9,0.2,Iris-setosa +5,3,1.6,0.2,Iris-setosa +5,3.4,1.6,0.4,Iris-setosa +5.2,3.5,1.5,0.2,Iris-setosa +5.2,3.4,1.4,0.2,Iris-setosa +4.7,3.2,1.6,0.2,Iris-setosa +4.8,3.1,1.6,0.2,Iris-setosa +5.4,3.4,1.5,0.4,Iris-setosa +5.2,4.1,1.5,0.1,Iris-setosa +5.5,4.2,1.4,0.2,Iris-setosa +4.9,3.1,1.5,0.1,Iris-setosa +5,3.2,1.2,0.2,Iris-setosa +5.5,3.5,1.3,0.2,Iris-setosa +4.9,3.1,1.5,0.1,Iris-setosa +4.4,3,1.3,0.2,Iris-setosa +5.1,3.4,1.5,0.2,Iris-setosa +5,3.5,1.3,0.3,Iris-setosa +4.5,2.3,1.3,0.3,Iris-setosa +4.4,3.2,1.3,0.2,Iris-setosa +5,3.5,1.6,0.6,Iris-setosa +5.1,3.8,1.9,0.4,Iris-setosa +4.8,3,1.4,0.3,Iris-setosa +5.1,3.8,1.6,0.2,Iris-setosa +4.6,3.2,1.4,0.2,Iris-setosa +5.3,3.7,1.5,0.2,Iris-setosa +5,3.3,1.4,0.2,Iris-setosa +7,3.2,4.7,1.4,Iris-versicolor +6.4,3.2,4.5,1.5,Iris-versicolor +6.9,3.1,4.9,1.5,Iris-versicolor +5.5,2.3,4,1.3,Iris-versicolor +6.5,2.8,4.6,1.5,Iris-versicolor +5.7,2.8,4.5,1.3,Iris-versicolor +6.3,3.3,4.7,1.6,Iris-versicolor +4.9,2.4,3.3,1,Iris-versicolor +6.6,2.9,4.6,1.3,Iris-versicolor +5.2,2.7,3.9,1.4,Iris-versicolor +5,2,3.5,1,Iris-versicolor +5.9,3,4.2,1.5,Iris-versicolor +6,2.2,4,1,Iris-versicolor +6.1,2.9,4.7,1.4,Iris-versicolor +5.6,2.9,3.6,1.3,Iris-versicolor +6.7,3.1,4.4,1.4,Iris-versicolor +5.6,3,4.5,1.5,Iris-versicolor +5.8,2.7,4.1,1,Iris-versicolor +6.2,2.2,4.5,1.5,Iris-versicolor +5.6,2.5,3.9,1.1,Iris-versicolor +5.9,3.2,4.8,1.8,Iris-versicolor +6.1,2.8,4,1.3,Iris-versicolor +6.3,2.5,4.9,1.5,Iris-versicolor +6.1,2.8,4.7,1.2,Iris-versicolor +6.4,2.9,4.3,1.3,Iris-versicolor +6.6,3,4.4,1.4,Iris-versicolor +6.8,2.8,4.8,1.4,Iris-versicolor +6.7,3,5,1.7,Iris-versicolor +6,2.9,4.5,1.5,Iris-versicolor +5.7,2.6,3.5,1,Iris-versicolor +5.5,2.4,3.8,1.1,Iris-versicolor +5.5,2.4,3.7,1,Iris-versicolor +5.8,2.7,3.9,1.2,Iris-versicolor +6,2.7,5.1,1.6,Iris-versicolor +5.4,3,4.5,1.5,Iris-versicolor +6,3.4,4.5,1.6,Iris-versicolor +6.7,3.1,4.7,1.5,Iris-versicolor +6.3,2.3,4.4,1.3,Iris-versicolor +5.6,3,4.1,1.3,Iris-versicolor +5.5,2.5,4,1.3,Iris-versicolor +5.5,2.6,4.4,1.2,Iris-versicolor +6.1,3,4.6,1.4,Iris-versicolor +5.8,2.6,4,1.2,Iris-versicolor +5,2.3,3.3,1,Iris-versicolor +5.6,2.7,4.2,1.3,Iris-versicolor +5.7,3,4.2,1.2,Iris-versicolor +5.7,2.9,4.2,1.3,Iris-versicolor +6.2,2.9,4.3,1.3,Iris-versicolor +5.1,2.5,3,1.1,Iris-versicolor +5.7,2.8,4.1,1.3,Iris-versicolor +6.3,3.3,6,2.5,Iris-virginica +5.8,2.7,5.1,1.9,Iris-virginica +7.1,3,5.9,2.1,Iris-virginica +6.3,2.9,5.6,1.8,Iris-virginica +6.5,3,5.8,2.2,Iris-virginica +7.6,3,6.6,2.1,Iris-virginica +4.9,2.5,4.5,1.7,Iris-virginica +7.3,2.9,6.3,1.8,Iris-virginica +6.7,2.5,5.8,1.8,Iris-virginica +7.2,3.6,6.1,2.5,Iris-virginica +6.5,3.2,5.1,2,Iris-virginica +6.4,2.7,5.3,1.9,Iris-virginica +6.8,3,5.5,2.1,Iris-virginica +5.7,2.5,5,2,Iris-virginica +5.8,2.8,5.1,2.4,Iris-virginica +6.4,3.2,5.3,2.3,Iris-virginica +6.5,3,5.5,1.8,Iris-virginica +7.7,3.8,6.7,2.2,Iris-virginica +7.7,2.6,6.9,2.3,Iris-virginica +6,2.2,5,1.5,Iris-virginica +6.9,3.2,5.7,2.3,Iris-virginica +5.6,2.8,4.9,2,Iris-virginica +7.7,2.8,6.7,2,Iris-virginica +6.3,2.7,4.9,1.8,Iris-virginica +6.7,3.3,5.7,2.1,Iris-virginica +7.2,3.2,6,1.8,Iris-virginica +6.2,2.8,4.8,1.8,Iris-virginica +6.1,3,4.9,1.8,Iris-virginica +6.4,2.8,5.6,2.1,Iris-virginica +7.2,3,5.8,1.6,Iris-virginica +7.4,2.8,6.1,1.9,Iris-virginica +7.9,3.8,6.4,2,Iris-virginica +6.4,2.8,5.6,2.2,Iris-virginica +6.3,2.8,5.1,1.5,Iris-virginica +6.1,2.6,5.6,1.4,Iris-virginica +7.7,3,6.1,2.3,Iris-virginica +6.3,3.4,5.6,2.4,Iris-virginica +6.4,3.1,5.5,1.8,Iris-virginica +6,3,4.8,1.8,Iris-virginica +6.9,3.1,5.4,2.1,Iris-virginica +6.7,3.1,5.6,2.4,Iris-virginica +6.9,3.1,5.1,2.3,Iris-virginica +5.8,2.7,5.1,1.9,Iris-virginica +6.8,3.2,5.9,2.3,Iris-virginica +6.7,3.3,5.7,2.5,Iris-virginica +6.7,3,5.2,2.3,Iris-virginica +6.3,2.5,5,1.9,Iris-virginica +6.5,3,5.2,2,Iris-virginica +6.2,3.4,5.4,2.3,Iris-virginica +5.9,3,5.1,1.8,Iris-virginica diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/iris-mltable/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/iris-mltable/MLTable new file mode 100644 index 000000000000..c459d92a28bf --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/iris-mltable/MLTable @@ -0,0 +1,7 @@ +paths: + - file: ./iris.csv +transformations: + - read_delimited: + delimiter: "," + encoding: ascii + header: all_files_same_headers diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/iris-mltable/iris.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/iris-mltable/iris.csv new file mode 100644 index 000000000000..e6d58a1d3caa --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/iris-mltable/iris.csv @@ -0,0 +1,151 @@ +sepal_length,sepal_width,petal_length,petal_width,species +101,152,123,187,Iris-setosa +4.9,3,1.4,0.2,Iris-setosa +4.7,3.2,1.3,0.2,Iris-setosa +4.6,3.1,1.5,0.2,Iris-setosa +5,3.6,1.4,0.2,Iris-setosa +5.4,3.9,1.7,0.4,Iris-setosa +4.6,3.4,1.4,0.3,Iris-setosa +5,3.4,1.5,0.2,Iris-setosa +4.4,2.9,1.4,0.2,Iris-setosa +4.9,3.1,1.5,0.1,Iris-setosa +5.4,3.7,1.5,0.2,Iris-setosa +4.8,3.4,1.6,0.2,Iris-setosa +4.8,3,1.4,0.1,Iris-setosa +4.3,3,1.1,0.1,Iris-setosa +5.8,4,1.2,0.2,Iris-setosa +5.7,4.4,1.5,0.4,Iris-setosa +5.4,3.9,1.3,0.4,Iris-setosa +5.1,3.5,1.4,0.3,Iris-setosa +5.7,3.8,1.7,0.3,Iris-setosa +5.1,3.8,1.5,0.3,Iris-setosa +5.4,3.4,1.7,0.2,Iris-setosa +5.1,3.7,1.5,0.4,Iris-setosa +4.6,3.6,1,0.2,Iris-setosa +5.1,3.3,1.7,0.5,Iris-setosa +4.8,3.4,1.9,0.2,Iris-setosa +5,3,1.6,0.2,Iris-setosa +5,3.4,1.6,0.4,Iris-setosa +5.2,3.5,1.5,0.2,Iris-setosa +5.2,3.4,1.4,0.2,Iris-setosa +4.7,3.2,1.6,0.2,Iris-setosa +4.8,3.1,1.6,0.2,Iris-setosa +5.4,3.4,1.5,0.4,Iris-setosa +5.2,4.1,1.5,0.1,Iris-setosa +5.5,4.2,1.4,0.2,Iris-setosa +4.9,3.1,1.5,0.1,Iris-setosa +5,3.2,1.2,0.2,Iris-setosa +5.5,3.5,1.3,0.2,Iris-setosa +4.9,3.1,1.5,0.1,Iris-setosa +4.4,3,1.3,0.2,Iris-setosa +5.1,3.4,1.5,0.2,Iris-setosa +5,3.5,1.3,0.3,Iris-setosa +4.5,2.3,1.3,0.3,Iris-setosa +4.4,3.2,1.3,0.2,Iris-setosa +5,3.5,1.6,0.6,Iris-setosa +5.1,3.8,1.9,0.4,Iris-setosa +4.8,3,1.4,0.3,Iris-setosa +5.1,3.8,1.6,0.2,Iris-setosa +4.6,3.2,1.4,0.2,Iris-setosa +5.3,3.7,1.5,0.2,Iris-setosa +5,3.3,1.4,0.2,Iris-setosa +7,3.2,4.7,1.4,Iris-versicolor +6.4,3.2,4.5,1.5,Iris-versicolor +6.9,3.1,4.9,1.5,Iris-versicolor +5.5,2.3,4,1.3,Iris-versicolor +6.5,2.8,4.6,1.5,Iris-versicolor +5.7,2.8,4.5,1.3,Iris-versicolor +6.3,3.3,4.7,1.6,Iris-versicolor +4.9,2.4,3.3,1,Iris-versicolor +6.6,2.9,4.6,1.3,Iris-versicolor +5.2,2.7,3.9,1.4,Iris-versicolor +5,2,3.5,1,Iris-versicolor +5.9,3,4.2,1.5,Iris-versicolor +6,2.2,4,1,Iris-versicolor +6.1,2.9,4.7,1.4,Iris-versicolor +5.6,2.9,3.6,1.3,Iris-versicolor +6.7,3.1,4.4,1.4,Iris-versicolor +5.6,3,4.5,1.5,Iris-versicolor +5.8,2.7,4.1,1,Iris-versicolor +6.2,2.2,4.5,1.5,Iris-versicolor +5.6,2.5,3.9,1.1,Iris-versicolor +5.9,3.2,4.8,1.8,Iris-versicolor +6.1,2.8,4,1.3,Iris-versicolor +6.3,2.5,4.9,1.5,Iris-versicolor +6.1,2.8,4.7,1.2,Iris-versicolor +6.4,2.9,4.3,1.3,Iris-versicolor +6.6,3,4.4,1.4,Iris-versicolor +6.8,2.8,4.8,1.4,Iris-versicolor +6.7,3,5,1.7,Iris-versicolor +6,2.9,4.5,1.5,Iris-versicolor +5.7,2.6,3.5,1,Iris-versicolor +5.5,2.4,3.8,1.1,Iris-versicolor +5.5,2.4,3.7,1,Iris-versicolor +5.8,2.7,3.9,1.2,Iris-versicolor +6,2.7,5.1,1.6,Iris-versicolor +5.4,3,4.5,1.5,Iris-versicolor +6,3.4,4.5,1.6,Iris-versicolor +6.7,3.1,4.7,1.5,Iris-versicolor +6.3,2.3,4.4,1.3,Iris-versicolor +5.6,3,4.1,1.3,Iris-versicolor +5.5,2.5,4,1.3,Iris-versicolor +5.5,2.6,4.4,1.2,Iris-versicolor +6.1,3,4.6,1.4,Iris-versicolor +5.8,2.6,4,1.2,Iris-versicolor +5,2.3,3.3,1,Iris-versicolor +5.6,2.7,4.2,1.3,Iris-versicolor +5.7,3,4.2,1.2,Iris-versicolor +5.7,2.9,4.2,1.3,Iris-versicolor +6.2,2.9,4.3,1.3,Iris-versicolor +5.1,2.5,3,1.1,Iris-versicolor +5.7,2.8,4.1,1.3,Iris-versicolor +6.3,3.3,6,2.5,Iris-virginica +5.8,2.7,5.1,1.9,Iris-virginica +7.1,3,5.9,2.1,Iris-virginica +6.3,2.9,5.6,1.8,Iris-virginica +6.5,3,5.8,2.2,Iris-virginica +7.6,3,6.6,2.1,Iris-virginica +4.9,2.5,4.5,1.7,Iris-virginica +7.3,2.9,6.3,1.8,Iris-virginica +6.7,2.5,5.8,1.8,Iris-virginica +7.2,3.6,6.1,2.5,Iris-virginica +6.5,3.2,5.1,2,Iris-virginica +6.4,2.7,5.3,1.9,Iris-virginica +6.8,3,5.5,2.1,Iris-virginica +5.7,2.5,5,2,Iris-virginica +5.8,2.8,5.1,2.4,Iris-virginica +6.4,3.2,5.3,2.3,Iris-virginica +6.5,3,5.5,1.8,Iris-virginica +7.7,3.8,6.7,2.2,Iris-virginica +7.7,2.6,6.9,2.3,Iris-virginica +6,2.2,5,1.5,Iris-virginica +6.9,3.2,5.7,2.3,Iris-virginica +5.6,2.8,4.9,2,Iris-virginica +7.7,2.8,6.7,2,Iris-virginica +6.3,2.7,4.9,1.8,Iris-virginica +6.7,3.3,5.7,2.1,Iris-virginica +7.2,3.2,6,1.8,Iris-virginica +6.2,2.8,4.8,1.8,Iris-virginica +6.1,3,4.9,1.8,Iris-virginica +6.4,2.8,5.6,2.1,Iris-virginica +7.2,3,5.8,1.6,Iris-virginica +7.4,2.8,6.1,1.9,Iris-virginica +7.9,3.8,6.4,2,Iris-virginica +6.4,2.8,5.6,2.2,Iris-virginica +6.3,2.8,5.1,1.5,Iris-virginica +6.1,2.6,5.6,1.4,Iris-virginica +7.7,3,6.1,2.3,Iris-virginica +6.3,3.4,5.6,2.4,Iris-virginica +6.4,3.1,5.5,1.8,Iris-virginica +6,3,4.8,1.8,Iris-virginica +6.9,3.1,5.4,2.1,Iris-virginica +6.7,3.1,5.6,2.4,Iris-virginica +6.9,3.1,5.1,2.3,Iris-virginica +5.8,2.7,5.1,1.9,Iris-virginica +6.8,3.2,5.9,2.3,Iris-virginica +6.7,3.3,5.7,2.5,Iris-virginica +6.7,3,5.2,2.3,Iris-virginica +6.3,2.5,5,1.9,Iris-virginica +6.5,3,5.2,2,Iris-virginica +6.2,3.4,5.4,2.3,Iris-virginica +5.9,3,5.1,1.8,Iris-virginica diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/0.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b5011542e977ac84582d50854d5c9be73c42d0 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^G9b(WBpAZe8a#m1GEW!Bkcv6U2@-huDQ|9?xw znj-E0O$T)?Ws1UooBjD4-Kv@X>GgY6Rynq9#r4$&s@2g(E^T!qp{Yx$kVVncS{IJYiq-n>Vcz zob>vi(t-2u?}tyD7Ns;ZIxIGp_mau(T~WfzpEC0>nD-TIt`ALo0rHurtDnm{r-UW| DHA!#$ literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/2.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/2.png new file mode 100644 index 0000000000000000000000000000000000000000..765d4e29a93b46962ca0c986a3a67d58c573e7fd GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^G9b(WBpAZe8a#khji-xaNX4Aw1PK<0xAA&;CqLLb z?ohpL|7hCfzec>9G5qob}(k zaQ3cW@d|#Ho#NLEv)BAEm*4*6OMUGQ)%kyl4{4_VmhMk^zklBTL1t6 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/3.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dd21aaa838f9f70d06ccd6e16a8675bd8406ef89 GIT binary patch literal 266 zcmV+l0rmcgP)K>55 zkh8xF(mC1JuHpCZOf)%#=RgzhbaF8;$Upo2xsVmZ7kfm&%v_){Wpv4tauBBc2@FYu zGZaq!|GNZ5vgh}27!%Xjn=naHd!W;v$zhkA0QAsZTL!F>+wKA-x1jm+*5ALLo=^V% z1qTzF977>ESRuq@bV*>iKqQ~-RpvsMWU%XlNaBc3k9EJ-x_iiBm!um20C0eimm22` Q-v9sr07*qoM6N<$g3CX7umAu6 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/MLTable new file mode 100644 index 000000000000..469f0c4c1413 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-data/MLTable @@ -0,0 +1,5 @@ +paths: + - file: ./0.png + - file: ./1.png + - file: ./2.png + - file: ./3.png diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/MLTable new file mode 100644 index 000000000000..841a81b6d3b4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/MLTable @@ -0,0 +1,2 @@ +paths: + - file: ./mnist diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/0.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b5011542e977ac84582d50854d5c9be73c42d0 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^G9b(WBpAZe8a#m1GEW!Bkcv6U2@-huDQ|9?xw znj-E0O$T)?Ws1UooBjD4-Kv@X>GgY6Rynq9#r4$&s@2g(E^T!qp{Yx$kVVncS{IJYiq-n>Vcz zob>vi(t-2u?}tyD7Ns;ZIxIGp_mau(T~WfzpEC0>nD-TIt`ALo0rHurtDnm{r-UW| DHA!#$ literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/2.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/2.png new file mode 100644 index 0000000000000000000000000000000000000000..765d4e29a93b46962ca0c986a3a67d58c573e7fd GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^G9b(WBpAZe8a#khji-xaNX4Aw1PK<0xAA&;CqLLb z?ohpL|7hCfzec>9G5qob}(k zaQ3cW@d|#Ho#NLEv)BAEm*4*6OMUGQ)%kyl4{4_VmhMk^zklBTL1t6 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/3.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dd21aaa838f9f70d06ccd6e16a8675bd8406ef89 GIT binary patch literal 266 zcmV+l0rmcgP)K>55 zkh8xF(mC1JuHpCZOf)%#=RgzhbaF8;$Upo2xsVmZ7kfm&%v_){Wpv4tauBBc2@FYu zGZaq!|GNZ5vgh}27!%Xjn=naHd!W;v$zhkA0QAsZTL!F>+wKA-x1jm+*5ALLo=^V% z1qTzF977>ESRuq@bV*>iKqQ~-RpvsMWU%XlNaBc3k9EJ-x_iiBm!um20C0eimm22` Q-v9sr07*qoM6N<$g3CX7umAu6 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/4.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/4.png new file mode 100644 index 0000000000000000000000000000000000000000..da45e7a9c8223f455d8c0488d266b4a7f0c8f211 GIT binary patch literal 251 zcmVz_6#tLTp?nw;*Nn>fz6|MLa6}J002ovPDHLkV1jo} BZ(0BV literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/5.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9470ab1d5d908dde21d398751c9bf519b8c6e205 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^G9b(WBpAZe8a#khpQnpsNX4A9=M=dP6-cyw+}~q( zW>!jjM5Lg8g22WK_Q)HGBK(RPO*3@m5`8Dj9Y_$45tHPf_rOrH=5_z`$J`I^n=k4( zV^y9Z?U!(0$lK3gi$VMLeVbbrCmq!`etkIju#i}n^{Xp67YZ&H@T|@cFW$W6;i88k x&$^7|VvjOEzoD})C{rT$hF06XT?Kz0+NFOpQ#k#6!h4VlJzf1=);T3K0RS_-PICYN literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/6.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/6.png new file mode 100644 index 0000000000000000000000000000000000000000..84d4622ec2e542c0b3298508290c7c270708a765 GIT binary patch literal 260 zcmV+f0sH=mP)m_K$`-L&F{;KA}9Fz*GjnDosX)>aw2>GPKI;3|E8d5bo={P6vo#6x0V;h!kK>) z;BwFZ#h_?h{QnF$jGggs9;#Cp{oMq0A7}I1zYOS-fA_C<1A^A0fB&vTlQe$v_wT>I zf5F6UWi&|!LC4O2FFHFrb^iWch%N^QO8?G@;*?zQ*A=H+=)aFfI3?%(TZ&VT;rSQb z8Z-XAz^(DZ-?Oodqa?ua|{uRa{C-eH>-@nU*uuD$(3zYo(u9yvroczbX7j^<=pG#no^#6B| zfg|bmzyBw(m>l*u07!28`)@xFrsVp+vw`HRzyI2?7#sHYf=1}F-*5lD(ZZAzdIxgt zPL&&fXJFCl^5Or#i5v`V|L!YelbzQGbPMPDzYDQQLP5meM>v8B2$+`rt;4O=;Ok#C z+_J_0)^OsK6utFN54Tpie@k&oGVJ<-C757<@4g=%twaC-Yqe5GtES?L00000NkvXX Hu0mjfr>%Pz literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/8.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f2daf2361312e9cf0ec54603a67b33f70605e903 GIT binary patch literal 263 zcmV+i0r>ujP) ziW*lDZZu8Y=l=RJFeos{F=4ucZR6h-E*#G1Y5n_>AD7=^{@$0tCC4!B?>d}v46puv zt2e|Y`5)-H-;<*&L$$O*G0gA&ivTZHph+^D-n#c2Ci|xb(`aXp6HwXp*le!&`*Viz z5*(67KwW!)(J}>_BBhEt9{000dkcn@N;!kz#C N002ovPDHLkV1ffDbq@dl literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/9.png b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/mnist-mltable/mnist/9.png new file mode 100644 index 0000000000000000000000000000000000000000..6fab54ae267995135e5c817ff1550402a1b7a48b GIT binary patch literal 299 zcmV+`0o4A9P)COD`@89EPt-nwFd-^Z~Rc8)!%{&2;oF;%h6c+va_c56nyIk3? zfB&MeOEIK;`uFcLJ9asXlYjp%aNv;i0|tT< x4mpO4|NeF2l4E%M|0Q~;Awc2(9Gr64001{=dUyL-xgP)k002ovPDHLkV1lzEka_?B literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/neural-iris-mltable/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/neural-iris-mltable/MLTable new file mode 100644 index 000000000000..c459d92a28bf --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/neural-iris-mltable/MLTable @@ -0,0 +1,7 @@ +paths: + - file: ./iris.csv +transformations: + - read_delimited: + delimiter: "," + encoding: ascii + header: all_files_same_headers diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dataset/neural-iris-mltable/iris.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/neural-iris-mltable/iris.csv new file mode 100644 index 000000000000..8bd75a708148 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dataset/neural-iris-mltable/iris.csv @@ -0,0 +1,75 @@ +5.099999999999999645e+00,3.500000000000000000e+00,1.399999999999999911e+00,2.000000000000000111e-01,1.764052345967664026e+00,4.001572083672232938e-01,9.787379841057392005e-01,2.240893199201457797e+00,1.867557990149967484e+00,-9.772778798764110153e-01,9.500884175255893682e-01,-1.513572082976978872e-01,-1.032188517935578448e-01,4.105985019383723289e-01,1.440435711608779867e-01,1.454273506962975082e+00,7.610377251469934157e-01,1.216750164928284139e-01,4.438632327454256621e-01,3.336743273742668325e-01,1.494079073157606130e+00,-2.051582637658008745e-01,3.130677016509013644e-01,-8.540957393017247767e-01,-2.552989815834078691e+00,6.536185954403606058e-01,8.644361988595057333e-01,-7.421650204064419443e-01,2.269754623987607633e+00,-1.454365674598764757e+00,4.575851730144606805e-02,-1.871838500258335980e-01,1.532779214358457542e+00,1.469358769900285022e+00,1.549474256969163022e-01,3.781625196021735635e-01,-8.877857476301127537e-01,-1.980796468223926965e+00,-3.479121493261526088e-01,1.563489691039800511e-01,1.230290680727720742e+00,1.202379848784411287e+00,-3.873268174079522730e-01,-3.023027505753355659e-01 +4.900000000000000355e+00,3.000000000000000000e+00,1.399999999999999911e+00,2.000000000000000111e-01,-1.048552965067092613e+00,-1.420017937178975176e+00,-1.706270190625012617e+00,1.950775395231789666e+00,-5.096521817516534991e-01,-4.380743016111863786e-01,-1.252795360049926199e+00,7.774903558319100627e-01,-1.613897847557951515e+00,-2.127402802139687077e-01,-8.954665611936756253e-01,3.869024978592620068e-01,-5.108051375688730245e-01,-1.180632184122412109e+00,-2.818222833865486818e-02,4.283318705304176577e-01,6.651722238316788716e-02,3.024718977397813924e-01,-6.343220936809635946e-01,-3.627411659871381255e-01,-6.724604477759510424e-01,-3.595531615405412884e-01,-8.131462820444540496e-01,-1.726282602331676852e+00,1.774261422537528332e-01,-4.017809362082618851e-01,-1.630198346966044598e+00,4.627822555257741777e-01,-9.072983643832421841e-01,5.194539579613895175e-02,7.290905621775368717e-01,1.289829107574106681e-01,1.139400684543300679e+00,-1.234825820353652626e+00,4.023416411775490031e-01,-6.848100909403131986e-01,-8.707971491818817800e-01,-5.788496647644154613e-01,-3.115525321273726611e-01,5.616534222974543800e-02 +4.700000000000000178e+00,3.200000000000000178e+00,1.300000000000000044e+00,2.000000000000000111e-01,-1.165149840783356483e+00,9.008264869541871001e-01,4.656624397304598428e-01,-1.536243686277223741e+00,1.488252193795599698e+00,1.895889176030583156e+00,1.178779571159650708e+00,-1.799248358123509139e-01,-1.070752621510542513e+00,1.054451726931136646e+00,-4.031769469731796285e-01,1.222445070382427446e+00,2.082749780768602954e-01,9.766390364837127525e-01,3.563663971744018832e-01,7.065731681919481533e-01,1.050002072082047849e-02,1.785870493905835188e+00,1.269120927036199165e-01,4.019893634447016528e-01,1.883150697056254375e+00,-1.347759061142446368e+00,-1.270484998485733596e+00,9.693967081580111556e-01,-1.173123405114159912e+00,1.943621185649292649e+00,-4.136189807597473456e-01,-7.474548114407577604e-01,1.922942026480384703e+00,1.480514791434424327e+00,1.867558960426569881e+00,9.060446582753852729e-01,-8.612256850547025389e-01,1.910064953099033680e+00,-2.680033709513803819e-01,8.024563957963951610e-01,9.472519677737479826e-01,-1.550100930908341890e-01,6.140793703460802888e-01,9.222066715665268033e-01 +4.599999999999999645e+00,3.100000000000000089e+00,1.500000000000000000e+00,2.000000000000000111e-01,3.764255311556294337e-01,-1.099400790584194487e+00,2.982381742060559726e-01,1.326385896687030330e+00,-6.945678597313654778e-01,-1.496345403276707620e-01,-4.351535517216374438e-01,1.849263728479341840e+00,6.722947570124354622e-01,4.074618362411104311e-01,-7.699160744453164007e-01,5.392491912918172536e-01,-6.743326606573760706e-01,3.183055827435118251e-02,-6.358460783788809634e-01,6.764332949464997302e-01,5.765908166149409375e-01,-2.082987555779948763e-01,3.960067126616452771e-01,-1.093061508730505782e+00,-1.491257592705605539e+00,4.393917012645369158e-01,1.666734953725290402e-01,6.350314368921063934e-01,2.383144774863942050e+00,9.444794869904138412e-01,-9.128222254441585859e-01,1.117016288095852961e+00,-1.315907410511521158e+00,-4.615846048147089764e-01,-6.824160532463123541e-02,1.713342721649366629e+00,-7.447548220484399017e-01,-8.264385386590143989e-01,-9.845252442543230009e-02,-6.634782863621073723e-01,1.126635922106506982e+00,-1.079931508363423331e+00,-1.147468652411102408e+00,-4.378200447444340337e-01 +5.000000000000000000e+00,3.600000000000000089e+00,1.399999999999999911e+00,2.000000000000000111e-01,-4.980324506923048955e-01,1.929532053816985782e+00,9.494208069257608074e-01,8.755124138519089494e-02,-1.225435518830167991e+00,8.443629764015471162e-01,-1.000215347389564746e+00,-1.544771096777611596e+00,1.188029792352301772e+00,3.169426119248496265e-01,9.208588237808189580e-01,3.187276529430211891e-01,8.568306119026911638e-01,-6.510255933001468653e-01,-1.034242841784464684e+00,6.815945182816269821e-01,-8.034096641738410760e-01,-6.895497777502005432e-01,-4.555325035173431458e-01,1.747915902505672858e-02,-3.539939112534839505e-01,-1.374951293418018805e+00,-6.436184028328905127e-01,-2.223403152224426638e+00,6.252314510271874681e-01,-1.602057655606747621e+00,-1.104383339428450572e+00,5.216507926097440490e-02,-7.395629963913132876e-01,1.543014595406735801e+00,-1.292856909723448577e+00,2.670508693491829288e-01,-3.928281822749560281e-02,-1.168093497741197417e+00,5.232766605317537012e-01,-1.715463312222481052e-01,7.717905512136673529e-01,8.235041539637314445e-01,2.163235949280689852e+00,1.336527949436391971e+00 +5.400000000000000355e+00,3.899999999999999911e+00,1.699999999999999956e+00,4.000000000000000222e-01,-3.691818379424435803e-01,-2.393791775759263885e-01,1.099659595887113150e+00,6.552637307225978036e-01,6.401315260975920518e-01,-1.616956044310834395e+00,-2.432612439893563558e-02,-7.380309092056887010e-01,2.799245990432382425e-01,-9.815038964295794144e-02,9.101789080925919428e-01,3.172182151913020554e-01,7.863279621089761529e-01,-4.664190967359430617e-01,-9.444462559182503769e-01,-4.100496932025484709e-01,-1.702041386144059407e-02,3.791517355550818036e-01,2.259308950690852136e+00,-4.225715166064269307e-02,-9.559450004927769751e-01,-3.459817756993864291e-01,-4.635959746460941999e-01,4.814814737734621763e-01,-1.540797014444624802e+00,6.326199420033171150e-02,1.565065379653755862e-01,2.321810362002757755e-01,-5.973160689653627120e-01,-2.379217297360070038e-01,-1.424060908982531570e+00,-4.933198833621940671e-01,-5.428614760167177478e-01,4.160500462614254991e-01,-1.156182431821912715e+00,7.811981017099933755e-01,1.494484544491368805e+00,-2.069985025013532542e+00,4.262587307781009471e-01,6.769080350302455473e-01 +4.599999999999999645e+00,3.399999999999999911e+00,1.399999999999999911e+00,2.999999999999999889e-01,-6.374370255522290307e-01,-3.972718143287976567e-01,-1.328805775869556227e-01,-2.977908794017283256e-01,-3.090129690471222212e-01,-1.676003806329976697e+00,1.152331564783120044e+00,1.079618592036821090e+00,-8.133642592042028552e-01,-1.466424327802513972e+00,5.210648764527585630e-01,-5.757879698130661250e-01,1.419531633207796739e-01,-3.193284171450951892e-01,6.915387510701865859e-01,6.947491436560059297e-01,-7.255973784635842971e-01,-1.383363955395055411e+00,-1.582938397335081904e+00,6.103793791072051889e-01,-1.188859257784028900e+00,-5.068163542986875436e-01,-5.963140384505081215e-01,-5.256729626954628753e-02,-1.936279805846506941e+00,1.887785967938285514e-01,5.238910238342056047e-01,8.842208704466140989e-02,-3.108861716984717138e-01,9.740016626878340855e-02,3.990463456401301956e-01,-2.772592756426650151e+00,1.955912308250694176e+00,3.900933226879264581e-01,-6.524085823870200418e-01,-3.909533751876010932e-01,4.937417773491884487e-01,-1.161039390343665267e-01,-2.030684467781494362e+00,2.064492861359319420e+00 +5.000000000000000000e+00,3.399999999999999911e+00,1.500000000000000000e+00,2.000000000000000111e-01,-1.105406572324726111e-01,1.020172711715799707e+00,-6.920498477843911589e-01,1.536377054245797735e+00,2.863436888922795687e-01,6.088438344754507625e-01,-1.045253366146954743e+00,1.211145289682700854e+00,6.898181645347883917e-01,1.301846229564998403e+00,-6.280875596415789186e-01,-4.810271184607877171e-01,2.303916697683941806e+00,-1.060015822721547263e+00,-1.359497006783208228e-01,1.136891362602695299e+00,9.772496771485560119e-02,5.829536797532935966e-01,-3.994490292628751771e-01,3.700558878475187496e-01,-1.306526851735316574e+00,1.658130679618188053e+00,-1.181640451285697613e-01,-6.801782039968503613e-01,6.663830820319143200e-01,-4.607197873885532924e-01,-1.334258471402753443e+00,-1.346717505797555336e+00,6.937731526901325108e-01,-1.595734381462668994e-01,-1.337015596684391627e-01,1.077743805976262736e+00,-1.126825808756743541e+00,-7.306777528648248365e-01,-3.848798091812754563e-01,9.435158931707400554e-02,-4.217145129057893460e-02,-2.868871923899076193e-01,-6.162640209564740346e-02,-1.073052762911746866e-01 +4.400000000000000355e+00,2.899999999999999911e+00,1.399999999999999911e+00,2.000000000000000111e-01,-7.196043885517928729e-01,-8.129929885540773116e-01,2.745163577239395081e-01,-8.909150829955279072e-01,-1.157355259190853580e+00,-3.122922511256933098e-01,-1.576670161638158985e-01,2.256723497298209313e+00,-7.047002758562337377e-01,9.432607249694947571e-01,7.471883342046318210e-01,-1.188944955203736109e+00,7.732529774025996838e-01,-1.183880640193317735e+00,-2.659172237996740851e+00,6.063195243593807460e-01,-1.755890583437719421e+00,4.509344618059148435e-01,-6.840108977372165722e-01,1.659550796189872113e+00,1.068509399316009079e+00,-4.533858038513876587e-01,-6.878376110286823497e-01,-1.214077403094120600e+00,-4.409226322925913766e-01,-2.803554951845090848e-01,-3.646935443916853870e-01,1.567038552723639677e-01,5.785214977288783977e-01,3.496544569931739899e-01,-7.641439239064430344e-01,-1.437791473801578457e+00,1.364531848102471301e+00,-6.894491845499376437e-01,-6.522935999350191194e-01,-5.211893123011108742e-01,-1.843069550156648528e+00,-4.779740040404866774e-01,-4.796558140079476562e-01,6.203582983435125264e-01 +4.900000000000000355e+00,3.100000000000000089e+00,1.500000000000000000e+00,1.000000000000000056e-01,6.984571491073360283e-01,3.770889086269340121e-03,9.318483741143036569e-01,3.399649838012619996e-01,-1.568211160255476855e-02,1.609281682982229844e-01,-1.906534935813993525e-01,-3.948495140334503106e-01,-2.677335368939664506e-01,-1.128011331470006873e+00,2.804417053162959750e-01,-9.931236109295806802e-01,8.416312640736364203e-01,-2.494585801609488507e-01,4.949498165009073858e-02,4.938367762809563466e-01,6.433144650629278871e-01,-1.570623408633452733e+00,-2.069036761639717337e-01,8.801789120807822497e-01,-1.698105819432254471e+00,3.872804753950633838e-01,-2.255564229402189369e+00,-1.022506843635603513e+00,3.863055184018809873e-02,-1.656715102321953736e+00,-9.855107376841506506e-01,-1.471835007463586864e+00,1.648134932207559578e+00,1.642277554873339540e-01,5.672902778526693890e-01,-2.226751005151544893e-01,-3.534317487571990712e-01,-1.616474188651032540e+00,-2.918373627478628163e-01,-7.614922118116232985e-01,8.579239242923363262e-01,1.141101866657573405e+00,1.466578715574177627e+00,8.525519394612319779e-01 +5.400000000000000355e+00,3.700000000000000178e+00,1.500000000000000000e+00,2.000000000000000111e-01,-5.986539369229860741e-01,-1.115896985960394439e+00,7.666631816450860670e-01,3.562928174722889141e-01,-1.768538450677030749e+00,3.554817927437690650e-01,8.145198224878663629e-01,5.892558918162996151e-02,-1.850536710093415305e-01,-8.076484876163556592e-01,-1.446534699563387871e+00,8.002979493400275146e-01,-3.091144447717087962e-01,-2.334666615436927217e-01,1.732721186919133238e+00,6.845011068591904113e-01,3.708250012811020735e-01,1.420618051872356569e-01,1.519994860765772726e+00,1.719589307416194535e+00,9.295051114795280789e-01,5.822245913979242626e-01,-2.094603071206144751e+00,1.237219142335065775e-01,-1.301069541937039942e-01,9.395322938556871506e-02,9.430460873225178231e-01,-2.739677167189556339e+00,-5.693120534701850977e-01,2.699043549407613707e-01,-4.668455460527625167e-01,-1.416906113126259470e+00,8.689634868967953674e-01,2.768719058461280302e-01,-9.711045704444846161e-01,3.148172045158237897e-01,8.215857120497958022e-01,5.292646299360853623e-03,8.005648034309967853e-01,7.826017516166135224e-02 +4.799999999999999822e+00,3.399999999999999911e+00,1.600000000000000089e+00,2.000000000000000111e-01,-3.952289826543543549e-01,-1.159420516399912948e+00,-8.593076697161272648e-02,1.942929380457716626e-01,8.758327615873309213e-01,-1.151074684872267218e-01,4.574156062209908113e-01,-9.646120137337284017e-01,-7.826291558275251248e-01,-1.103892990268877522e-01,-1.054628463985013864e+00,8.202478373246812060e-01,4.631303293186070924e-01,2.790957643924534270e-01,3.389041252159445405e-01,2.021043561484797468e+00,-4.688641879667956314e-01,-2.201441285500557843e+00,1.993001968964651927e-01,-5.060354096166589516e-02,-5.175190425104032599e-01,-9.788298593587698715e-01,-4.391895218021479308e-01,1.813384292178212842e-01,-5.028167006425382501e-01,2.412453679543748564e+00,-9.605043816331479967e-01,-7.931173627076716359e-01,-2.288620040014528456e+00,2.514844150215370111e-01,-2.016406627799760098e+00,-5.394546333745013911e-01,-2.756705345605569568e-01,-7.097279658468882424e-01,1.738872677454510907e+00,9.943943913154988934e-01,1.319136876301575612e+00,-8.824188185499185488e-01,1.128594064514568451e+00,4.960009463439621902e-01 +4.799999999999999822e+00,3.000000000000000000e+00,1.399999999999999911e+00,1.000000000000000056e-01,7.714059486768455320e-01,1.029438828782767157e+00,-9.087632459590531120e-01,-4.243176209779014885e-01,8.625960113284510955e-01,-2.655619092974932816e+00,1.513328082573205169e+00,5.531320642075839844e-01,-4.570396066023485471e-02,2.205076557571732931e-01,-1.029935283308976546e+00,-3.499433645891047440e-01,1.100284338220373748e+00,1.298021972326221185e+00,2.696224052563579665e+00,-7.392466628041513554e-02,-6.585529668050037477e-01,-5.142339659399888241e-01,-1.018041875287364784e+00,-7.785475594085075612e-02,3.827324300122681433e-01,-3.424228053195386978e-02,1.096346845665798542e+00,-2.342158013445365394e-01,-3.474506524985632727e-01,-5.812684768603252339e-01,-1.632634526234495231e+00,-1.567767724308454014e+00,-1.179157930637687812e+00,1.301428071664760822e+00,8.952602728899299311e-01,1.374964066392989848e+00,-1.332211654594501749e+00,-1.968624689786020232e+00,-6.600563201340828856e-01,1.758189532960280077e-01,4.986902749098274801e-01,1.047972155968052821e+00,2.842796708072146128e-01,1.742668780655631133e+00 +4.299999999999999822e+00,3.000000000000000000e+00,1.100000000000000089e+00,1.000000000000000056e-01,-2.226056809483204779e-01,-9.130792180417963699e-01,-1.681218215494433510e+00,-8.889713580954499150e-01,2.421179609851230041e-01,-8.887202573536308048e-01,9.367424635352571416e-01,1.412327706037443065e+00,-2.369586905226602980e+00,8.640523004976479182e-01,-2.239604058661736730e+00,4.014990550902874933e-01,1.224870564193659694e+00,6.485610634357617810e-02,-1.279689173204239472e+00,-5.854312042777726210e-01,-2.616454457109007037e-01,-1.822447837899429379e-01,-2.028968407666670581e-01,-1.098827793093137967e-01,2.134800489101688903e-01,-1.208573653733221231e+00,-2.420198298702194994e-01,1.518261170355705403e+00,-3.846454231425177617e-01,-4.438360931551977862e-01,1.078197303714237831e+00,-2.559184666344096470e+00,1.181378601288285868e+00,-6.319037580051672931e-01,1.639285724525866295e-01,9.632135592119682455e-02,9.424681192203937519e-01,-2.675947462353476802e-01,-6.780257815644503694e-01,1.297845790651098730e+00,-2.364173817141180134e+00,2.033418170524324900e-02,-1.347925422629120407e+00,-7.615733882565589585e-01 +5.799999999999999822e+00,4.000000000000000000e+00,1.199999999999999956e+00,2.000000000000000111e-01,2.011256681463136964e+00,-4.459542645585702625e-02,1.950696971513811717e-01,-1.781562855705591364e+00,-7.290446587946957102e-01,1.965574007287849145e-01,3.547576931132180866e-01,6.168865543932787743e-01,8.627898917576322380e-03,5.270042084546596728e-01,4.537819126356840149e-01,-1.829740411004531442e+00,3.700572191014953050e-02,7.679024077327036846e-01,5.898798207345194999e-01,-3.638588099707898982e-01,-8.056265075393678199e-01,-1.118311924321632178e+00,-1.310540115414123297e-01,1.133079879559721892e+00,-1.951804101481602105e+00,-6.598917297294979445e-01,-1.139802455426774053e+00,7.849575212405001112e-01,-5.543096265713008952e-01,-4.706376581547914162e-01,-2.169495699366489894e-01,4.453932508947973101e-01,-3.923889981496367363e-01,-3.046143054799926642e+00,5.433118913875196743e-01,4.390429576720425442e-01,-2.195410283312132504e-01,-1.084036620671934514e+00,3.517801106813582823e-01,3.792355335355867552e-01,-4.700328827008747878e-01,-2.167314705755386262e-01,-9.301565025243212492e-01,-1.785890920873291488e-01 +5.700000000000000178e+00,4.400000000000000355e+00,1.500000000000000000e+00,4.000000000000000222e-01,-1.550429345083480959e+00,4.173188210318354852e-01,-9.443684908242938603e-01,2.381031478323121231e-01,-1.405962916267899265e+00,-5.900576458695396820e-01,-1.104894050659278315e-01,-1.660699811869263298e+00,1.151478731400921579e-01,-3.791475628799227393e-01,-1.742356197809230567e+00,-1.303242754112315716e+00,6.051200840821666649e-01,8.955559855513239853e-01,-1.319086397799670574e-01,4.047618120404974928e-01,2.238435633129106928e-01,3.296229821277380512e-01,1.285984007080293035e+00,-1.506998398214272061e+00,6.764607323616231849e-01,-3.820089555778202195e-01,-2.242589342516403406e-01,-3.022497304550700314e-01,-3.751471166612838637e-01,-1.226196191783019085e+00,1.833391992576012541e-01,1.670943032788857252e+00,-5.613302044875711355e-02,-1.385042735095726001e-03,-6.872990371566635170e-01,-1.174745464181114751e-01,4.661664260340307453e-01,-3.702424407043429233e-01,-4.538040410520010615e-01,4.032645401632468096e-01,-9.180047698190454408e-01,2.524966270768724264e-01,8.203217972614217368e-01,1.359948541679484313e+00 +5.400000000000000355e+00,3.899999999999999911e+00,1.300000000000000044e+00,4.000000000000000222e-01,-9.038200727694681302e-02,1.367597239806713549e+00,1.034409886481518104e+00,-9.962126403710661604e-01,-1.217938511593150919e+00,-3.049636378544204329e-01,1.028935492594854173e+00,-7.228700756000490391e-02,-6.006575576577884990e-01,1.552243180048560767e+00,2.869044880033463918e-01,-2.320594275790741623e+00,3.171606262926887632e-01,5.200406145708678096e-01,2.256086544711037867e-01,4.497121002319925398e-01,-6.727560892298173334e-02,-1.318395869644734208e+00,-3.707040032204534374e-01,-9.456157955562913831e-01,-9.327409107943778199e-01,-1.263068349102275389e+00,4.524890926396463731e-01,9.789614541262708913e-02,-4.481653626807080570e-01,-6.493379277303881203e-01,-2.342310502145216952e-02,1.079194728112489177e+00,-2.004215715498915085e+00,3.768765208508927378e-01,-5.457119740177823752e-01,-1.884585844979447700e+00,-1.945703083163958791e+00,-9.127834941352918063e-01,2.195095557930452634e-01,3.930629339800916222e-01,-9.389815726777852589e-01,1.017020991413244646e+00,1.422983496516106117e+00,3.960865849565601837e-01 +5.099999999999999645e+00,3.500000000000000000e+00,1.399999999999999911e+00,2.999999999999999889e-01,-5.914026678081107935e-01,1.124419184510368153e+00,7.553956956633383069e-01,8.674074113549179454e-01,-6.564636749715314634e-01,-2.834554505274702318e+00,2.116791021483675372e+00,-1.610878403449933716e+00,-3.576807186022112894e-02,2.380745351219750283e+00,3.305767562743739951e-01,9.492464735582356594e-01,-1.502396569381712732e+00,-1.777666954733706284e+00,-5.327027919795545019e-01,1.090749734434500073e+00,-3.462494476473099714e-01,-7.946363210714987302e-01,1.979672899449674561e-01,1.081935218477265259e+00,-1.444940199073371678e+00,-1.210542994123351646e+00,-7.886692545093662021e-01,1.094638374712091355e+00,2.348215259487319018e-01,2.132153410570443608e+00,9.364457258311158494e-01,-3.509517686967038308e-02,1.265077838088765949e+00,2.114970127318780146e-01,-7.049213525074449205e-01,6.799748442451023500e-01,-6.963266538610828338e-01,-2.903971008038667700e-01,1.327782695957983039e+00,-1.012814862173993524e-01,-8.031413873416283211e-01,-4.643376914354916396e-01,1.021790585588673084e+00,-5.525406734167291889e-01 +5.700000000000000178e+00,3.799999999999999822e+00,1.699999999999999956e+00,2.999999999999999889e-01,-3.868708468506465437e-01,-5.102927396336285337e-01,1.839254943403099418e-01,-3.854897603756082813e-01,-1.601836048972536952e+00,-8.871809418450402607e-01,-9.327890415064382656e-01,1.243319384455154886e+00,8.126740421090423716e-01,5.872593793998259759e-01,-5.053583172644099397e-01,-8.157915419939713031e-01,-5.075176016573570426e-01,-1.051880102551673968e+00,2.497200391587007129e+00,-2.245321648371402024e+00,5.640085350738091030e-01,-1.284552297992527237e+00,-1.043434914946926445e-01,-9.880019424937344086e-01,-1.177628962482630826e+00,-1.140196300934961604e+00,1.754986153742058574e+00,-1.329884223095919860e-01,-7.657021944780862954e-01,5.557869640828729807e-01,1.034931456629935298e-02,7.200337593416528126e-01,-1.824256655937829930e+00,3.036039044620014171e-01,7.726948371023817375e-01,-1.661598291114563697e+00,4.481952844233124678e-01,1.696181572828160622e+00,-1.485770335470271673e-02,8.214059370248112391e-01,6.705704503109098935e-01,-7.075056975105769030e-01,3.976673458649516990e-02,-1.566994710861602469e+00 +5.099999999999999645e+00,3.799999999999999822e+00,1.500000000000000000e+00,2.999999999999999889e-01,-4.513030371025261167e-01,2.656879749662359180e-01,7.231004937377981667e-01,2.461212524791161690e-02,7.199837301431654124e-01,-1.102906212955369725e+00,-1.016972745548715973e-01,1.927938451307721623e-02,1.849591246679636480e+00,-2.141666562000842378e-01,-4.990166379941828878e-01,2.135122384354860847e-02,-9.191134448699437298e-01,1.927538490652161707e-01,-3.650552165462576659e-01,-1.791327548041183659e+00,-5.858655113386084662e-02,-3.175430939301992495e-01,-1.632423302067983251e+00,-6.713415461452176825e-02,1.489355962074480288e+00,5.213037482757136853e-01,6.119271927311578096e-01,-1.341496725583042560e+00,4.768983689222224265e-01,1.484495813800780772e-01,5.290452383344316223e-01,4.226286217088256469e-01,-1.359780725503813681e+00,-4.140081155796743184e-02,-7.578708604251660486e-01,-5.008409428482209214e-02,-8.974009269018304868e-01,1.312470367140996297e+00,-8.589723884443423163e-01,-8.989421564655359909e-01,7.458640654355352950e-02,-1.077099069403994802e+00,-4.246633024328657080e-01,-8.299645975379619234e-01 +5.400000000000000355e+00,3.399999999999999911e+00,1.699999999999999956e+00,2.000000000000000111e-01,1.411172063889611694e+00,7.858038268311725583e-01,-5.746951846539464365e-02,-3.912170521740162554e-01,9.409176145751133591e-01,4.052040803228880717e-01,4.980524046828567197e-01,-2.619223734425048244e-02,-1.688230027771432162e+00,-1.124659825595527157e-01,-5.324899192090677413e-01,6.450552734598768989e-01,1.011842432994189078e+00,-6.579510447611686130e-01,4.683852342770516430e-01,1.735878997685713188e+00,-6.677127205705589708e-01,1.681921740073137661e+00,-8.525858471706470043e-01,2.295975560795144449e-02,-1.114561184184125094e-02,1.149889987006237450e-02,-8.376780419079452589e-01,-5.911831037644297293e-01,-6.677202863593993953e-01,3.269625954044573790e-01,3.300351145103116446e-01,2.225944331738258786e+00,1.370989006291121415e+00,-5.098432421384790914e-01,3.248696157961860620e-01,9.971179807917595062e-01,3.060182433851780723e-02,-6.964157844693558141e-02,5.157494276988904003e-02,8.672766288084278186e-01,-8.483205228052325131e-01,-3.256694688201741683e-01,4.704331448464818544e-01,3.114470715541555190e-01 +5.099999999999999645e+00,3.700000000000000178e+00,1.500000000000000000e+00,4.000000000000000222e-01,2.395827598563913252e-01,-3.698011663038032193e-01,9.725357891425369106e-01,2.133868247204537383e+00,4.064154936762062187e-01,-1.931767015498399021e-01,7.557402888945425889e-01,-5.391326367529899466e-01,-7.496903447028966383e-01,3.280874761371180282e-02,-2.582796632969944550e+00,-1.153950363652009425e+00,-3.479618559208458306e-01,-1.353388858147713369e+00,-1.032643101892129600e+00,-4.367483374580073963e-01,-1.642965293530609161e+00,-4.060717962598319186e-01,-5.352701645328444835e-01,2.540520838501601764e-02,1.154184030494019186e+00,1.725044164928659085e-01,2.106202134206362417e-02,9.945445703071174870e-02,2.273927751211284598e-01,-1.016738648609768925e+00,-1.147753247707981733e-01,3.087512418366131217e-01,-1.370759982543060529e+00,8.656529228158532652e-01,1.081376034458189750e+00,-6.313759884493888030e-01,-2.413377914531045498e-01,-8.781903428100731324e-01,6.993804835878171255e-01,-1.061222287445909185e+00,-2.224770102429202978e-01,-8.589199078076715788e-01,5.095427701128949632e-02,-1.794229271489721000e+00 +4.599999999999999645e+00,3.600000000000000089e+00,1.000000000000000000e+00,2.000000000000000111e-01,1.326461642365693416e+00,-9.646064242062639682e-01,5.989468311627604846e-02,-2.125230447703091996e-01,-7.621145119224981279e-01,-8.877801366359353574e-01,9.363985435524595502e-01,-5.256405931019396682e-01,2.711701846373109070e-01,-8.014968853943748028e-01,-6.471814318477606687e-01,4.722471500878487327e-01,9.304084961111163121e-01,-1.753164023270199490e-01,-1.421919871640436872e+00,1.997956079750004665e+00,-8.565493082342094944e-01,-1.541587399671787484e+00,2.594424587768151991e+00,-4.040322938509371409e-01,-1.461732688261408120e+00,-6.834397667886817906e-01,3.675448960222690298e-01,1.903115575939396953e-01,-8.517291972535899758e-01,1.822723600127959420e+00,-5.215796779933731253e-01,-1.184686590411551999e+00,9.606933984606597088e-01,1.329062846539682319e+00,-8.174930976162264606e-01,-1.401347293039310493e+00,1.030438267415604736e+00,-2.047323613057961733e+00,-1.226621659396615494e+00,9.674461500502350431e-01,-5.535254802238957078e-02,-2.639373485926878593e-01,3.528166064943783486e-01,-1.527744235454086830e-01 +5.099999999999999645e+00,3.299999999999999822e+00,1.699999999999999956e+00,5.000000000000000000e-01,-1.298686722163090224e+00,1.276075346006187550e+00,1.325014052886815286e+00,2.053325637779596924e-01,4.513401543201027433e-02,2.339624806020057957e+00,-2.764328450158372030e-01,-2.595769818340394330e-01,3.644812492405055671e-01,1.471321956142338294e+00,1.592770754417483614e+00,-2.585726316767712474e-01,3.083312459593452459e-01,-1.378083467064077139e+00,-3.119761079162129414e-01,-8.402903954793065067e-01,-1.006831752298983806e+00,1.681576716267327631e+00,-7.922866618061449318e-01,-5.316059080114549085e-01,3.658487879168582091e-01,1.297825266973585467e+00,4.811151263888354124e-01,2.759355114021582178e+00,-7.466797825114956932e-02,2.587164402297460475e-01,2.756006739840563546e-01,1.435049386789154502e+00,5.072389511096152548e-01,-1.162297003871490958e-01,-9.474885949068795332e-01,2.444434559616325831e-01,1.401344831291959636e+00,-4.103817936578705861e-01,5.289436184165822175e-01,2.461477886848441599e-01,8.635196583813146143e-01,-8.047537406378693081e-01,2.346647030526561650e+00,-1.279161107028258249e+00 +4.799999999999999822e+00,3.399999999999999911e+00,1.899999999999999911e+00,2.000000000000000111e-01,-3.655510899860373031e-01,9.380925409056455333e-01,2.967331724941133508e-01,8.299861590811031808e-01,-4.961023339825623713e-01,-7.480498268034106724e-02,1.223198363881738623e-02,1.569259614535904346e+00,6.904290243830489837e-01,7.966721083646713941e-01,-6.579260925367952373e-01,9.688826385630507909e-01,2.255816635688035199e-01,1.389145315677927428e+00,2.014060154918468015e+00,-3.067657760270045553e-01,-4.063031304450625547e-01,-8.640449911023695417e-01,-1.435795117163205514e-01,-3.820254489503835948e-01,3.595043995710101581e-01,-1.445668169337359366e-01,-3.615992807816197918e-01,1.064585136127851772e+00,-9.378802311514516932e-01,4.331079531513436498e-01,-4.059417271884834255e-01,7.243685048699644025e-01,1.385261546722230452e+00,-3.030982534240727055e-01,4.410329072731513644e-01,1.787928657331798454e-01,-7.994223995430965735e-01,2.407875097419384380e-01,2.891205052788121677e-01,4.128708204461746800e-01,-1.983988968200457448e-01,9.419230031014656779e-02,-1.147610944843135306e+00,-3.581140754798567416e-01 +5.000000000000000000e+00,3.000000000000000000e+00,1.600000000000000089e+00,2.000000000000000111e-01,5.559626797097979578e-01,8.924738873315303245e-01,-4.223148241252707158e-01,1.047140294332843252e-01,2.280533251240672021e-01,2.014799467044328662e-01,5.407735853003902138e-01,-1.818077630383569510e+00,-4.932407014757259067e-02,2.390336012467648985e-01,-1.000330348953705428e+00,1.673985707010710033e+00,1.615592672381679640e-01,1.563404745028929455e+00,-7.905230218330772107e-01,-9.073001215253270191e-01,2.242522209656818977e-01,-1.678688362828656633e+00,2.149655906260935223e-01,9.721923200291802958e-02,1.015665281542101228e+00,7.010413411650970872e-01,-4.174773498850339881e-01,-1.097496654770244717e+00,1.712305221343296546e+00,-7.921150205651500409e-01,-1.045524557069465788e+00,-1.084856059461445144e+00,1.117305315536664567e+00,-5.189002044248520740e-01,-7.537044661806008294e-01,1.376898259033473293e-01,-2.069447105572910228e-01,-6.780954607862469397e-01,7.539914669784796297e-01,1.065315492097994809e+00,9.853175089398669151e-01,7.669196696611989550e-01,4.026255311300351858e-01,-1.775887999961828889e+00 +5.000000000000000000e+00,3.399999999999999911e+00,1.600000000000000089e+00,4.000000000000000222e-01,1.669250806376968654e+00,3.019892103575529396e-01,6.081564276006414804e-01,1.114962322947402162e+00,1.433352502881991786e+00,4.183980113091925190e-01,4.355461592956536010e-01,-5.992242774597194011e-01,3.308975113876019836e-02,-8.541612608143545060e-01,-7.199405321418946846e-01,-8.935744023141912740e-01,-1.560238909972873622e-01,1.049093187920010273e+00,3.170974773290179627e+00,1.894996375479134632e-01,-1.348413087756120010e+00,1.264983329856256056e+00,-3.007838764760271122e-01,-6.606085939769920090e-01,2.098494779230553053e-01,-1.240624599556227503e+00,2.224631640086067730e-01,-8.837552319915496779e-02,9.837790681547566030e-02,3.814162542091708574e-01,6.749225724080680500e-02,1.633808411289249321e-02,2.843145189979445209e-01,4.154006261711268300e-01,-1.031482460315257699e+00,-1.429991258685448408e+00,-6.163805217221475508e-02,-1.432735489934108042e+00,8.753147092167086474e-02,9.387468756823100779e-01,6.071116719160458697e-01,-1.048170406825473133e+00,-8.602624519575188256e-01,3.283012950007553887e-01 +5.200000000000000178e+00,3.500000000000000000e+00,1.500000000000000000e+00,2.000000000000000111e-01,-4.012978051335100438e-01,-3.166552950521069332e-01,5.969064812479538684e-01,-9.872866934576524089e-01,-4.012347099111824300e-01,-8.000824760846012573e-01,-1.043129498035355596e+00,-8.570781886711646980e-01,6.774621693464116801e-01,5.182038948242156245e-02,-8.791606288350748422e-01,-2.311016075929965274e-01,-1.638807307122177814e+00,-7.333128075836656823e-01,2.149574534867286779e+00,-9.024384966575059452e-02,7.316589270303924808e-01,-6.548837514448298258e-02,3.481692352418086500e-01,6.632580896791739899e-01,-1.104616597526470789e+00,-3.093625727395893713e-02,1.578865194416488205e+00,-7.955005500532910112e-01,-5.664398537322192784e-01,-3.076912773670017476e-01,2.690240731762466586e-01,5.249178636458826652e-01,1.267411654818656697e+00,4.994982334686594583e-01,-6.205312579833403147e-02,1.259167129610813785e+00,7.041110221415821657e-01,-1.495679516257016228e+00,2.526368240355998385e+00,1.769921388196733725e+00,-1.682142227670740953e-01,3.779101017384750572e-01,1.324358749995839135e+00,-1.722007926968826264e-01 +5.200000000000000178e+00,3.399999999999999911e+00,1.399999999999999911e+00,2.000000000000000111e-01,7.303517903770193609e-01,1.104578473571476538e+00,-1.014825907734441035e+00,-6.023318535828621201e-01,9.214083978105812589e-01,4.608144771488305036e-01,9.237965603139468573e-01,-1.325680146537180359e-01,-2.890052109542329828e-01,-1.998639475583372738e+00,-1.146000426507443271e+00,4.706609465849369289e-02,8.245572195642364433e-01,5.311783665356952788e-01,-1.282419740277020159e-01,-2.717715664906966699e-01,2.171796326382801345e-01,7.821118109215217939e-02,1.404545514939711914e+00,1.464407704782498543e-01,-1.481245962197298427e+00,-1.272558135032316962e+00,1.518759336963580120e+00,-1.171160461450080348e+00,7.644974530335335583e-01,-2.683727352093812080e-01,-1.697582939024854798e-01,-1.341327827684201113e-01,1.221384959459198338e+00,-1.928418285439646718e-01,-3.331928284515295324e-02,-1.530803497399492619e+00,2.066905117080032883e-01,5.310425069780596585e-01,2.391455806537870210e-01,1.397896261086735370e+00,5.517135478023173917e-02,2.989774561190176039e-01,1.648504010268178943e+00,-1.550014189358147831e+00 +4.700000000000000178e+00,3.200000000000000178e+00,1.600000000000000089e+00,2.000000000000000111e-01,-4.558253477993688407e-01,1.426158752019266229e+00,9.361291483110824041e-01,6.783800988404703469e-01,8.326507394644783178e-01,3.270662091210220779e-01,1.631597427532271549e+00,3.777591697307178809e-01,2.398671058952785706e-01,1.589586741256432678e-01,1.928639555503860181e-01,-1.157017280815867855e+00,7.706730544633433322e-01,-1.304397337833273218e-01,1.821915097860405952e+00,-7.565047058842289118e-02,4.209182841756565763e-01,2.466021862613344273e-01,-6.255570351092533121e-01,9.921368285185058200e-01,1.905063640560017646e+00,-1.477721965984477720e-02,-3.004787855854222922e-01,-3.550287310553740805e-01,-1.892361893317341393e+00,-1.778131437030125439e-01,2.509981160083239460e-01,1.054757925180282774e+00,9.600477411499278579e-01,-4.164990824366924804e-01,-2.768229947738883312e-01,1.123905305614439021e+00,-1.734638970728791252e-01,-5.100295397556169341e-01,1.392518449434272387e+00,1.037585667050634042e+00,1.879179177425780237e-02,-5.937774477786674776e-01,-2.011880319244709003e+00,5.897036055747238992e-01 +4.799999999999999822e+00,3.100000000000000089e+00,1.600000000000000089e+00,2.000000000000000111e-01,-8.963697225521801704e-01,-1.962732009140752076e+00,1.584820527349017905e+00,6.479677910098883276e-01,-1.139008193116965328e+00,-1.214401382959259035e+00,8.709617821716195696e-01,-8.779706165358701631e-01,1.296149867527883304e+00,6.164593126261552758e-01,5.365965205668234983e-01,4.046954556143003146e-01,1.914508720239117834e-01,8.805111991771105151e-01,-4.540803625156051293e-01,8.595197343438468196e-02,7.519465876771956880e-01,5.629897185861277853e-01,-1.194986805268660301e+00,-5.004096673042639498e-01,2.528035054191545283e-01,-4.080147090398968945e-01,1.774658560973333188e+00,-3.931531947541128669e-01,-1.622184475766908496e-01,7.694301781773038584e-01,3.305327432349157712e-01,-1.452744572047692251e-01,-7.564935288807482783e-01,3.015140573967661775e-01,1.039096440378392661e+00,4.790952240982285781e-01,-7.781835214561222402e-01,1.736774956976710804e+00,-1.446577890035894320e+00,-1.582685641802789034e+00,9.605572244572283536e-01,2.258404786026901034e-01,-5.494985463040402696e-01,-1.098570727555329585e+00 +5.400000000000000355e+00,3.399999999999999911e+00,1.500000000000000000e+00,4.000000000000000222e-01,2.320799839280298205e+00,1.170908721554419496e-01,5.342011708457714558e-01,3.178850972381815909e-01,4.348079577311579347e-01,5.400944605248059194e-01,7.324240097548762041e-01,-3.752224007606727030e-01,-2.916419863518445732e-01,-1.741022808358901441e+00,-7.803044065015394271e-01,2.711127964467148765e-01,1.045023375502690532e+00,5.990395263761840727e-01,-3.406923438779304592e-01,-1.263172912085154254e+00,-2.777359145427433340e+00,1.151733974780799086e+00,-5.892289865101497659e-01,-4.484650062040592688e-01,1.315739679080687174e-01,-1.405560047391889889e+00,-3.497821801115368889e-01,2.023471949769974021e+00,5.053869385773427370e-01,3.592491565134564024e-01,-1.582494477981758463e+00,2.243601894582640366e+00,-1.422794908626342725e+00,1.922324755444398514e+00,-2.115056015187807503e+00,1.405365438724420324e+00,1.618054269000225531e+00,-8.244091213278346153e-01,4.225803722728827538e-01,5.474805721046650531e-01,-8.137944832313058763e-01,-1.449117610736930351e+00,-1.317717343140765385e+00,5.410082199598076347e-01 +5.200000000000000178e+00,4.099999999999999645e+00,1.500000000000000000e+00,1.000000000000000056e-01,-8.511560251940573918e-02,-5.643010333021604152e-01,9.667680111664601617e-01,5.080679093914777233e-01,-7.554627263656333858e-01,-1.201201519017389252e+00,5.232617386880769050e-01,-5.375833685580618804e-01,9.920486253150243017e-02,1.576298972627717676e+00,5.023282400747796084e-01,-8.622669997532367292e-01,1.606611898197728150e-01,-9.526449528153877466e-01,1.608522155948723720e+00,-5.615787496032208503e-01,2.072707469736186359e-01,3.077325746794319916e-01,1.592504683737024362e-01,-1.958548955136538705e+00,-1.446421063983328592e+00,-4.523502755690916866e-01,3.194318333315306346e-01,-1.377792142857706681e-01,-9.571474731510167810e-01,-1.348424319121700909e+00,-4.015575444993436105e-01,-4.684760446797231470e-01,5.128364575927566449e-01,-3.263184621583181122e-01,6.027076564293295524e-01,-5.946497697204053967e-01,-2.559576692142683241e-01,-3.480463796426194190e-01,-7.823669669020897333e-01,6.251186564337302132e-01,-8.135959970945070285e-01,-5.216415099706189773e-01,-7.311964594819723995e-02,-1.297379655956739875e+00 +5.500000000000000000e+00,4.200000000000000178e+00,1.399999999999999911e+00,2.000000000000000111e-01,-3.249349583204991232e-01,-7.113063597427885520e-01,-3.881541924822495826e-01,-5.992800267109062162e-02,-7.999136231406647202e-01,-2.200757798203555882e-01,1.308668752352179165e+00,-2.579855825448711115e-02,1.145262173019224727e+00,3.464944420067607167e-01,7.741606098188164031e-01,-7.744589687708258730e-01,1.049071650855127186e-01,1.339129226154759100e-01,-6.126257388749356547e-01,-8.228283242942817655e-01,-1.490265387907298233e+00,1.496139636951631990e+00,-9.724028893524976347e-01,1.346221073222300113e+00,-4.674931736578534780e-01,-8.624932997247338751e-01,6.225191403049976646e-01,-6.311919417468571103e-01,5.684589189242769125e-01,-3.328117648522095906e-01,4.804244961177867590e-01,-9.681860639071049324e-01,8.313510579847682713e-01,4.879726826630045866e-01,-9.196506900626617576e-01,2.642935721014741723e+00,5.401230264004940329e-01,2.290467070530538773e+00,1.600267818748759119e+00,-1.888347802177837986e-01,-4.122717546045429060e-01,-4.034591834208012262e-01,-1.830028550427810208e+00,-6.958351193495473375e-01 +4.900000000000000355e+00,3.100000000000000089e+00,1.500000000000000000e+00,1.000000000000000056e-01,2.467660239799705779e-01,1.525957560884808384e+00,-7.727718829782020959e-01,8.820565993630106183e-01,-1.252593341503319024e+00,-5.863200252111323563e-01,-4.576405942895259704e-01,3.718110814974934786e-01,4.573096467208112581e-01,9.623417448143452013e-01,7.708369604049366552e-01,2.431682154024917275e-01,3.903649435086223862e-01,1.588530691097532532e+00,-5.109261812322630769e-01,7.747283190671621078e-01,-1.808143926498251508e+00,4.113342428976086151e-01,-4.832495424791073968e-01,2.571182431510025176e-03,1.040086245053703173e+00,1.646438095263976220e-01,8.851875412089272865e-01,1.473764815138404849e+00,3.890939688657205631e-01,1.171041064620488292e+00,-3.265609776792077201e-01,-8.209882269614044575e-03,-5.226194163984779761e-01,1.042977594646375961e+00,4.140913537935950739e-01,-5.072344618949226058e-01,1.546688336463321878e-01,1.041568388818581825e+00,-3.926799103795318435e-02,-9.489328108497634418e-01,1.319117557874122104e-01,-1.980565591068939701e+00,7.687706443994749561e-01,-4.213275873246805081e-01 +5.000000000000000000e+00,3.200000000000000178e+00,1.199999999999999956e+00,2.000000000000000111e-01,-4.693107362791067438e-01,8.756956787795067143e-01,-1.365162877225168714e+00,1.947098642820357828e+00,-4.802420417382233242e-01,-5.232509433848950842e-01,1.021224743167163052e+00,7.086952731104265713e-01,2.451229719075076030e+00,-2.112059836315199890e-01,-1.204066386644097320e-01,-1.479315979963253591e+00,-3.321022773488251367e-01,-7.214312955717557818e-01,-4.487670131054991574e-01,-1.744187756553955193e+00,1.660607559894514029e+00,-1.416603482425640603e+00,-2.802202798391713046e+00,-1.188424421583019308e+00,-6.038395527961509801e-01,-1.149554063257118175e+00,1.098303540732512351e+00,-1.378391785960938476e-01,2.538560440645898711e-02,6.103917643054127540e-01,2.860125269781179647e-01,9.785672974460429829e-01,-1.109477553636145197e+00,-5.475181006794317407e-01,6.659671460695377743e-01,-2.534554462084229964e+00,-1.375184479317240749e+00,5.009922321799465950e-01,-4.802490349949254389e-01,9.361075501096975948e-01,8.091802968531627283e-01,-1.198092880191038212e+00,4.066570874668811730e-01,1.201697855667506420e+00 +5.500000000000000000e+00,3.500000000000000000e+00,1.300000000000000044e+00,2.000000000000000111e-01,1.474344016509719080e-01,-9.774648772458691681e-01,8.793899419133700546e-01,6.354245265539955057e-01,5.426107834987963230e-01,7.159388934369916857e-01,-2.994612860227618967e+00,8.809375610809715429e-01,1.808131810578975429e+00,4.366384746292930052e-01,1.927289964997268290e-01,6.964386733914392780e-01,3.382254736851152965e-01,6.517812617006160103e-01,1.471000245410806345e-03,-7.667048545369002932e-01,-1.004322712214613444e+00,-9.981917282318640838e-01,-1.373042550950895224e+00,-1.067742011019106485e+00,1.761266127419863103e+00,7.540956636562426985e-01,-6.250273906846712801e-01,-3.903926939855080769e-01,1.125575309064542895e-01,-6.555450294843581105e-01,6.751685717432485967e-02,7.776041379029120515e-01,-3.574273354817348453e-02,3.360157426619921339e-01,8.864915393596158877e-01,-2.721317560182082151e-01,2.847905991343631649e-01,-3.093775928833613631e-01,-2.852886983441639893e-02,-3.247302650829599902e-01,-5.288698535561152658e-01,1.737118529870234351e-01,5.665453158182124360e-01,1.463044460010442527e-01 +4.900000000000000355e+00,3.100000000000000089e+00,1.500000000000000000e+00,1.000000000000000056e-01,4.987269583119319782e-01,-7.379317802412298510e-01,-1.203735192199779425e+00,4.170435029676035632e-01,6.878813911747545529e-01,4.985726659982264719e-02,1.348035780424718721e+00,9.076987979878986534e-01,2.680570840769000540e+00,-2.008085139956655718e-01,-9.988487960953681410e-01,-7.401367907395135504e-01,-5.654978063746562977e-01,4.760313834381145193e-01,-2.158068563961256903e+00,1.318551018090836635e+00,-2.392965911423441394e-01,-2.467935577887517828e-01,-1.079343166024995249e+00,-1.142255514501802072e-01,1.323976766753355225e-02,-1.219449276002772670e-01,3.390592559424304153e-01,-5.896320419510298061e-01,-8.958157604108271110e-01,5.483281304979799042e-01,9.866745381579566931e-02,1.971810551973673942e-01,1.059027254441966326e+00,-1.022564391260685657e+00,-8.552404572508641722e-01,1.257219650828994117e+00,-1.482883357574042549e+00,-1.309412146331014215e+00,8.178618311849957800e-01,2.382001920220386260e-01,1.052321370592758515e-01,-9.165940810038318565e-02,3.126754702756948112e-02,-9.211211469195591806e-02 +4.400000000000000355e+00,3.000000000000000000e+00,1.300000000000000044e+00,2.000000000000000111e-01,1.355442702594418236e+00,-3.981481287500751032e-01,-1.613735362777791726e-01,1.794448805225073551e+00,2.750970202983580096e-02,2.232016389525177669e+00,-1.049797010189535557e-01,1.367414982460158468e+00,-1.655344038309677801e+00,1.536444608156663783e-01,-1.584473563150935460e+00,8.444543066045863133e-01,-1.212867816209024729e+00,2.837695543833455014e-01,-2.821958766904351101e-01,-1.158203185184028872e+00,-1.619359982897542460e+00,-5.110404635801097939e-01,1.740629445895330862e+00,-2.934850548893774835e-01,9.172215421158560478e-01,-5.704286766218814864e-02,8.767267736904523767e-01,-1.826911378304517664e+00,-4.031883068495333289e-01,9.494055237932187419e-01,-1.632549488331787313e-01,-8.645528271104713225e-02,-4.304619118857929694e-01,1.149379383367123975e+00,2.975143539549459093e-01,4.402227617534797133e-02,6.430545453392927380e-01,5.882249291179366679e-01,2.125870464375365920e-01,1.547031496990844524e+00,-6.028753363911903973e-02,2.780810479679439728e-01,-6.429525533528904768e-01,1.501152270061291982e-01 +5.099999999999999645e+00,3.399999999999999911e+00,1.500000000000000000e+00,2.000000000000000111e-01,1.587761523745367498e+00,-6.432576017887388087e-01,-1.133592825638458867e+00,9.967596428198155500e-01,-1.487661522336792552e-01,9.600420496977001006e-02,-4.511330369333481360e-02,7.912172392953507882e-02,8.505306835234381913e-01,-8.391241905992736783e-01,-1.011774084105488525e+00,8.496813703770766946e-02,-1.606439689449832731e+00,-1.373053536041928480e+00,1.866683148331627073e+00,7.574683300614039050e-01,-1.005647186901453827e-02,1.238006935958439803e+00,-1.040599230085144988e+00,-3.156031233858582197e-01,6.234536094243824378e-01,8.906716814313947461e-01,5.129168468277763848e-01,-2.541238807688224632e+00,-9.680821176645779680e-01,4.770680923568652587e-01,-3.559514930468063443e-01,2.540231620759171527e+00,9.265583009670964598e-01,5.580818806186658154e-01,-1.116949553746723556e+00,-3.529673960291555834e-02,2.412039642189525157e-01,1.127783630127802361e+00,8.811310970996323322e-01,1.032989194519945642e+00,-9.239120158100020408e-01,1.412151698298630853e+00,-1.380430752307269193e+00,-5.359145616661618039e-01 +5.000000000000000000e+00,3.500000000000000000e+00,1.300000000000000044e+00,2.999999999999999889e-01,4.307711349456414540e-01,-1.498915917331393177e-01,-1.006036857920391547e+00,-8.215498256031326108e-01,-1.548254322849042408e+00,5.319746390071913300e-01,1.260568845042149277e+00,-1.003935034013660188e-01,-4.003488150134233980e-01,-1.472322928466489600e+00,9.132019242521776103e-01,2.211304333239493047e+00,-1.797455804366897558e+00,-1.063432938154606822e+00,-6.795930425441440992e-01,-5.643179096824889607e-01,2.273459501434809960e-01,1.614249547280227404e+00,1.008597286860103637e+00,5.275973827743158928e-01,-7.239287040586021016e-01,-1.119628233680454388e+00,-7.967753063063008900e-01,1.548066801378738644e+00,-6.174330145790107166e-02,-4.468362536626211967e-01,-1.837557302499922551e-01,8.246182196384677088e-01,-1.312849674549791734e+00,1.414874135922422393e+00,1.564762569462989639e-01,-2.163439782957261026e-01,4.428461137467389896e-01,2.183970731299370305e-01,-3.441964564673812288e-01,-2.527106720416066876e-01,-8.688625468659522122e-01,6.563907508593024298e-01,-5.319938094111618110e-01,-9.562584224322827620e-01 +4.500000000000000000e+00,2.299999999999999822e+00,1.300000000000000044e+00,2.999999999999999889e-01,1.658635226535373208e-01,1.329141282745553321e+00,-4.834462377981961489e-02,-6.081012569516899280e-01,4.038960208359738124e-01,1.936712462402552015e+00,-1.451905529431747333e+00,3.822027877852935962e-01,2.050866252318538085e-01,1.161533803559117173e+00,9.909091736848452125e-01,-1.867091118097792268e-01,-1.684517255424882842e+00,8.065637678962596091e-01,-8.351926901914831225e-01,-9.467404109571895265e-01,1.148350580691126277e+00,-9.108503776386525086e-01,1.402844740100243293e+00,3.358447214053130181e-01,3.191184000862823944e-01,3.072647805055910286e-01,-1.638423625741792122e+00,-1.776388616346575855e+00,2.155530537886848064e-01,5.680073592264200943e-01,8.261103215620101137e-02,-8.215345170195275104e-01,1.892210388219473655e-02,-8.203415314548415105e-02,-9.571580982754103184e-01,1.013972154112161350e+00,-1.730276061550085842e+00,5.887424068075064465e-01,3.843234052112453059e-01,1.009711854811714327e+00,-1.005311872348858770e+00,1.014071466682110040e-01,2.171164949318165949e+00,6.620742889997063285e-01 +4.400000000000000355e+00,3.200000000000000178e+00,1.300000000000000044e+00,2.000000000000000111e-01,1.005812087289631868e-01,5.391612741141965648e-01,8.617684238012002229e-02,2.190898013239840125e+00,9.836361957891794905e-01,-8.561495423049708675e-02,2.523314313845212431e-01,-3.907979960810135656e-01,1.209850126410304982e+00,-1.406104771391010866e+00,-1.604738529860987084e+00,1.458714749675993572e+00,2.153119792570582725e+00,4.683049076895917096e-01,1.127379412357372573e-01,6.572676903047772745e-01,-6.470535263827592587e-01,1.712435451522124896e-01,3.890870585621503119e-02,6.265642507453605958e-01,-1.557998528183396347e+00,-5.070347697653374563e-01,8.449956030008372032e-01,-6.755938276300630374e-01,-9.933613754231354065e-01,2.042072149826954064e+00,3.811800017940036173e-02,-5.789181399432078434e-01,-1.692370437474108424e+00,7.293463462804261610e-01,6.991361537186937536e-01,-2.987596005699359458e-01,-1.102230190907090623e+00,-2.454942364237903615e-02,-8.358560674816213343e-01,-9.420935888731158947e-01,-1.032127514617075803e-01,-1.051390398660064562e+00,2.466489552524461781e-01,6.079925094063972635e-01 +5.000000000000000000e+00,3.500000000000000000e+00,1.600000000000000089e+00,5.999999999999999778e-01,-8.396324471731914096e-01,-1.368245095338390671e+00,1.561279598955807035e+00,-9.402702359572048252e-01,-6.599427051023376567e-01,2.130171674298873552e-01,5.993693725222970503e-01,-2.563168936896427774e-01,4.607943277012555572e-01,-4.009861578964010187e-01,-9.711706648243907392e-01,1.426316860787027352e+00,2.488441614331128093e+00,1.695969533014169306e+00,1.418066391534544557e-01,1.833435361815678455e+00,3.557035157239844536e-01,-4.772862704032293513e-01,4.663795743819788564e-01,-9.439250641118496210e-02,-9.831181837457076966e-01,-8.983219714320159754e-01,8.020517387405159404e-01,-1.846531981664673028e+00,6.041367404426841725e-01,-1.629583602748438276e+00,-2.121176444902435954e+00,-1.838846603758498510e+00,1.966763971934739841e+00,-1.962339649435420053e-01,8.658318016541909079e-02,1.419255045910951196e+00,9.341797484997248491e-01,-1.391505269404219591e+00,8.690063428187611017e-01,1.841812647035462880e-01,-3.416780975958805810e-01,2.429091413778038805e-02,1.279812020628021907e+00,-8.859664820409528518e-01 +5.099999999999999645e+00,3.799999999999999822e+00,1.899999999999999911e+00,4.000000000000000222e-01,4.008856791041211509e-01,-9.657236532908345522e-03,-1.797164615395618448e+00,-8.022531717308107879e-01,1.932135532336964612e-01,1.297342089092890616e+00,1.001331017346729579e+00,5.972125044034249930e-01,-8.152756611364585515e-01,1.801213990808534948e+00,2.152404676396114658e-01,-1.006365521678550312e+00,-1.829049808569510049e-01,8.962484253561593395e-01,7.617498318158106956e-03,8.868646865827609638e-01,1.103693957462150266e+00,4.005306845987061659e-01,-8.577026230468940415e-01,1.354546631899805342e-01,4.516585593883100380e-02,1.859346333851628286e+00,-1.626321937826830100e+00,-1.348224510943540622e-01,-5.840935467949193161e-01,3.351056201959988767e-01,-2.437564359199356101e+00,1.114924559490279909e+00,1.374848733553365662e-02,-1.844701163628046148e+00,-3.611131347398661151e-01,6.089623416545242307e-01,-1.591447875458031458e+00,3.222216443155699172e-03,-1.057473647801530081e+00,-5.559850318789673063e-01,2.673838267463693116e-02,1.834502535815762947e-01,-4.707424981827272314e-01,2.727963895302641384e-01 +4.799999999999999822e+00,3.000000000000000000e+00,1.399999999999999911e+00,2.999999999999999889e-01,8.179776072548057275e-01,-2.789142751032397949e-01,1.431567757449290879e+00,1.462214170780419487e+00,-4.287020655858288509e-01,-6.378405564735842859e-01,-1.664172985166173513e+00,-1.265693316393898538e-01,-3.634377801160513788e-01,7.790512201329915509e-01,-1.509661606068298800e+00,-2.773913917431098386e-01,9.687443931111453521e-01,-7.303570955579599122e-01,-7.623615367276093124e-01,-1.446940334755808522e+00,2.620573846018239283e+00,-7.474731780653793844e-01,-1.300346832218339133e+00,-8.038504040315199717e-01,-7.742950804868045100e-01,-2.693897784512402915e-01,8.253722320875147567e-01,-2.983231689958337207e-01,-9.228233149968279037e-01,-1.451338498191025117e+00,2.185735821987137145e-02,4.253907402979072161e-02,1.530932351028824634e+00,9.244773546980858403e-02,-9.900831128407737436e-02,-1.050653836587489565e+00,-3.059525750983919101e-01,-4.384744580346060516e-01,-3.701641645137025427e-01,-9.592553926405882336e-01,5.383296032761768490e-01,-1.424454175093693709e-01,-2.003534800049873998e-01,-1.714046116048996371e+00 +5.099999999999999645e+00,3.799999999999999822e+00,1.600000000000000089e+00,2.000000000000000111e-01,4.936440875248638838e-01,4.870153259803794432e-01,-8.391294028422137119e-01,9.901213838791936839e-01,-1.364758230082432355e+00,-2.186990878907987476e-02,-2.712073398901638788e-01,-1.317174788805794305e+00,1.897026120799957527e-01,1.702570152241791313e+00,6.763423006691976491e-02,-4.630217541090509425e-01,4.470241568856782588e-01,1.057199954671549369e-01,2.776213162550148633e-02,-4.255422127714480474e-01,1.421975559292464775e+00,4.563633634807853778e-01,-5.286706589354885910e-01,-1.080038367809579292e-01,-7.408667042040726347e-01,-6.082911500814950356e-01,-6.407257241901990197e-01,-1.134311593722227451e+00,7.772769637679554089e-01,-2.910414632730257689e-01,5.541275783267697319e-01,-6.701258977272964712e-01,-6.036249439233865033e-02,-7.110405967911112013e-01,7.196681705373316751e-01,-2.484193067050382286e-01,-7.308735859513858513e-01,-1.641703228809784143e+00,2.756665493407743917e-01,-7.083850523381071129e-01,-1.577921712099517385e-02,-4.917301080135276226e-01,9.541895808987649330e-01,5.441447523580079659e-01 +4.599999999999999645e+00,3.200000000000000178e+00,1.399999999999999911e+00,2.000000000000000111e-01,4.472120874548314862e-01,-6.161211233234792362e-01,4.662900435501894925e-01,1.714831608676042896e+00,-8.321860341500619818e-01,1.723391392291887814e-01,-1.649216974417132109e+00,1.398562092125535505e+00,-3.979120985908414232e-01,7.825788808419774645e-01,-1.723228250716323018e+00,1.797539387125904664e+00,-3.568715280255984612e-01,5.456573234700274888e-01,1.508182063325937960e-01,-2.554707861877694164e-01,1.685792302659303576e+00,-1.648046206366179822e+00,2.987136599920089397e-01,9.106456722299702822e-01,-2.985612163636626459e-02,-1.181707843665917995e-01,-1.426877120734650339e-01,-1.227636420410407991e+00,3.812738409493465069e-02,5.127175234723987396e-01,6.859922748066052400e-02,-2.722761011450806068e-01,-4.897250223730267304e-01,-2.792966692783721561e-01,1.257744217496038264e+00,-2.086634979420542546e+00,4.007145654777545529e-02,-3.277549172964167590e-01,1.455807951836843417e+00,5.549222544380277150e-02,1.484925598699954108e+00,-2.123890018045559103e+00,4.595849048340561738e-01,2.800578600376801286e-01 +5.299999999999999822e+00,3.700000000000000178e+00,1.500000000000000000e+00,2.000000000000000111e-01,1.390533967073938060e+00,-1.641348608823029132e+00,-1.550358081183257908e-01,6.606026178649258840e-02,-4.957954945452093254e-01,1.216577713742940325e+00,-3.386821854453975766e-01,2.034762544021153641e+00,1.054177908938922714e+00,9.508336970037996050e-01,5.592989813908842978e-01,-1.063695591025547893e+00,-4.310963375107570994e-01,5.727513668572158378e-01,6.775570335877171280e-01,1.307183845081257401e+00,-4.674410096259063452e-01,-8.601533849246632002e-01,8.591041927855306293e-01,-8.096265760401126776e-01,8.733118360704121841e-01,1.199736176415037825e+00,4.561530358270553531e-01,-3.575790319685979157e-01,4.108222614387956745e-02,5.934659196032391337e-01,1.018551871207346374e-02,2.198296338670492567e+00,-9.906709306271491711e-01,-1.002668587369790920e+00,-9.768953867353251663e-01,-5.895799225452156289e-01,-2.178931520194909321e+00,-6.296504269401812515e-01,-6.532847019278890111e-01,7.851402517417628568e-02,4.178005832060814329e-01,-1.240216336407770292e+00,9.000542427640723098e-01,1.802242229790547157e+00 +5.000000000000000000e+00,3.299999999999999822e+00,1.399999999999999911e+00,2.000000000000000111e-01,-2.082851030949963433e-01,1.574371237475571617e+00,1.989894944051877335e-01,1.988731918595391113e+00,1.117283465688190258e+00,-1.563904634839766272e+00,1.862737066135545724e-02,1.054324974904077727e+00,3.054658104061688806e-02,-3.688353084506694468e-02,1.269764750314303914e+00,-7.098541821461039625e-01,1.751561327821833658e-02,3.236257646091186824e-01,-3.337909603535641478e-01,-2.012910387753747560e-02,7.750232632241702557e-01,4.328376214999939409e-01,-8.087175319795336659e-01,-1.104123985799261742e+00,-7.891021802566502430e-01,1.248455788486605312e-03,-1.599397877570428173e-01,-8.319574932171247550e-01,-5.981504525164857977e-01,-1.520039285192063661e+00,4.178537032173259558e-01,-4.001872535163292222e-02,-1.259787343405270210e+00,2.862050418778281854e-02,1.342622010510353237e+00,-7.399358529652596550e-01,1.315137665720972349e+00,-3.234574724834238246e-01,1.978281678498678142e-01,9.775080242218528448e-02,1.401523416005245437e+00,1.584338467855317123e-01,-1.141901419203846579e+00,-1.310970370441212340e+00 +7.000000000000000000e+00,3.200000000000000178e+00,4.700000000000000178e+00,1.399999999999999911e+00,-1.532921053430127856e+00,-1.711970164094221314e+00,4.613505895568492665e-02,-9.583744802265614648e-01,-8.081161294374096526e-02,-7.038590359904466354e-01,-7.707843007065652285e-01,-4.808453408727291212e-01,7.035855546433883445e-01,9.291451477686910598e-01,3.711725526490392002e-01,-9.898225495471192348e-01,6.436312754533384251e-01,6.888966666079322509e-01,2.746472036124445459e-01,-6.036204360190906559e-01,7.088595753671402822e-01,4.228185746766614517e-01,-3.116856591599125981e+00,6.444520334110422910e-01,-1.913742670861507067e+00,6.635615765913814856e-01,-1.540723984248353051e-01,1.193611680749198101e+00,-9.816121120593053473e-02,-8.866142600561124354e-01,-1.473536645828436575e-01,1.059806294933774540e+00,2.624661786158738463e-02,-1.143351598723767876e-01,7.435535155083369263e-01,2.103593666298129161e-01,-5.927405833231805775e-03,1.366060068403331496e+00,1.555114032059067730e+00,6.133262263287011518e-01,-2.859591514851729244e-01,1.496910993520827127e+00,1.183119557331707039e+00,7.188971655282916373e-01 +6.400000000000000355e+00,3.200000000000000178e+00,4.500000000000000000e+00,1.500000000000000000e+00,-1.216076580745860891e+00,1.406719033079609216e-01,-7.436721747008731009e-01,-1.590122515543593296e-01,2.400569292967187074e-01,1.001594080906234863e-01,-4.751751058292484897e-01,1.272953748919910755e+00,-1.696131266831543138e+00,7.301835311296144271e-01,-1.857483271594537966e+00,3.825981367234628783e-01,-8.869043262838756103e-01,8.783037577325304435e-01,8.645252400759345646e-02,2.477063784668243063e-01,-1.018279325566851412e+00,-6.545701349975838745e-01,2.072173934109533544e-01,5.835699269093039820e-01,2.929096241763861297e+00,2.228583231034867163e-01,9.760375253689257402e-01,-1.556933932509260599e+00,-1.329891861334062897e+00,-3.554947746084520244e-01,-1.197427695638566325e+00,1.486399253466384573e+00,-4.102186927803287420e-01,1.382181888393138491e+00,1.486782474085630801e+00,4.277971988356689403e-02,5.017997538076389707e-01,-5.609947334090290005e-02,5.384370003545386751e-01,4.833418517805717629e-01,-1.236496258920307123e-01,5.049699814628403338e-01,1.723696275667261801e+00,7.130162297109376990e-01 +6.900000000000000355e+00,3.100000000000000089e+00,4.900000000000000355e+00,1.500000000000000000e+00,3.257996136406255405e-01,1.247695210432124141e-01,-1.012673123768591088e+00,-1.027296877075462467e+00,3.233565314802586133e-01,-1.369391124047157238e+00,-7.663275989635831564e-01,1.281511340364133167e+00,1.914229697062814095e+00,-1.665956076797718399e+00,1.626649562301581975e+00,-2.114382908455566257e-01,-1.500508703136480514e-02,-1.134116306427339627e-01,1.080544127025487189e+00,-1.607676579043177068e+00,4.561636113551333915e-01,-9.448701973880109239e-01,5.707885293815737615e-01,1.542796338293051850e+00,-4.173264126201667486e-04,3.741550859708025478e-01,4.095517782376913440e-01,-7.995934996704900932e-01,1.511639349884318362e+00,1.706468247260988891e+00,7.017833721170290140e-01,7.328543200764546517e-02,-4.618938153542846425e-01,-6.264902231490875328e-01,1.710836582546655604e+00,1.414415042729023630e+00,-6.366148878954942802e-02,-1.579930529671123685e+00,-2.832011869908987123e+00,-1.083426660264279695e+00,-1.306203959951194038e-01,1.400689034443001413e+00,-6.516562090577807664e-01,5.048154563405017337e-01 +5.500000000000000000e+00,2.299999999999999822e+00,4.000000000000000000e+00,1.300000000000000044e+00,1.303180961648432445e+00,1.285363168560481606e-01,-1.424478687888413309e-01,-1.308763514238608039e+00,-1.202475308204432825e+00,4.160996344158233162e-01,-2.009075332009267190e-01,1.225313176533015386e-01,-4.727771569624714121e-02,6.641440493586504568e-01,-7.846874114294452029e-01,-3.355806435831669154e-01,1.896182228633144007e+00,-7.997861383857707285e-01,-2.815754308001021111e-01,-5.893867019785693495e-01,4.447813624072501915e-01,1.022392322442069457e+00,-4.982116185861096280e-01,-4.314143411046852394e-01,-2.789816053030302889e-01,5.298337834749576869e-01,-7.393953025101953624e-01,-3.759599659712591357e-01,-2.372193871513015306e+00,-1.381745009494985243e+00,-1.124437560192882157e-01,8.978641732031213962e-01,2.950757833018624043e-01,-1.098768456667299498e+00,-1.400256208127941937e+00,1.746800928981687429e-01,-1.652803642252843597e+00,1.065926818716888880e+00,6.389619165017826341e-02,-1.607320159234058021e+00,-9.659538588418696836e-01,-7.243113192311227966e-01,-7.731925102234387115e-01,-1.489933008221492328e+00 +6.500000000000000000e+00,2.799999999999999822e+00,4.599999999999999645e+00,1.500000000000000000e+00,-8.746625219888451985e-01,-6.844015561404261927e-01,-7.112857556104382750e-01,1.127956624933380558e+00,1.048278028272145723e-01,-9.932572174375523533e-01,-3.346216059541220478e-01,-8.795570973113842062e-01,-3.000066590117569931e-01,8.755091531413832229e-01,2.522707806121253782e-01,2.285601181528066572e+00,3.759274257674801722e-01,-9.135945099771070055e-01,8.097407308144474181e-01,1.079931217142535704e+00,1.094166991443943804e+00,-1.094240953035091390e+00,-1.476374145148375006e-01,1.131811956828452592e+00,-1.684728958873941140e+00,-4.994167610220383025e-01,-1.426937685426991509e+00,-9.325702298970132142e-01,-1.012457152743806210e+00,1.250569832543434901e+00,-2.345380349087503868e-01,-8.633555813417825853e-01,-1.035605731384494632e+00,1.416671648715303045e-01,-1.113562734066710774e-02,1.344074374673426941e+00,5.000166958573025733e-01,-1.431797778065037496e+00,-6.289807075912683398e-01,1.070072512070977089e+00,-6.210826977013773620e-01,1.734572174923709076e+00,-1.098289431324746657e+00,5.726133530407901961e-01 +5.700000000000000178e+00,2.799999999999999822e+00,4.500000000000000000e+00,1.300000000000000044e+00,-8.612155533986415312e-01,-5.095951329463573876e-01,1.098581648231146568e+00,-1.270671628385169338e-01,8.134522451141070754e-01,4.732905949147994673e-01,7.538656835623007701e-01,-8.881882110855132684e-01,-2.215743982040006832e-01,4.242526181008702268e-01,-8.490728726936603854e-01,1.629500043232328554e+00,-7.772280421551344132e-01,-3.000035769377952244e-01,-1.006559064794237512e+00,-2.143308065238688442e+00,1.796918522574928012e+00,-2.043389369030472469e-01,-4.479148384155402507e-01,-1.987150616707986650e-01,1.419863972196435675e+00,-9.651066080644172818e-01,6.795678657650824350e-01,-4.237882485494763318e-01,-5.966708555383097856e-01,5.670582125201824031e-01,9.882405737426969150e-01,-5.139029502799155047e-01,-7.688491596748099344e-01,-1.169095747322027146e+00,1.103503766728375579e+00,-5.752559948061179984e-01,-1.849130727275451136e+00,1.409952138396146193e+00,-1.369859501952942260e+00,7.794605312590614510e-01,1.834286466675247307e-01,2.879154322152783774e-01,-5.843752753113219400e-01,3.655914602246360667e-01 +6.299999999999999822e+00,3.299999999999999822e+00,4.700000000000000178e+00,1.600000000000000089e+00,-1.667779892884237336e+00,5.880377487398128489e-01,1.557010041532160161e+00,8.840271974263261834e-01,-2.019540085386721362e+00,-9.842090022728482435e-01,-1.877949219748069054e-01,4.869373049399326470e-01,-1.066526736602251002e-01,-4.932143871104978095e-01,5.953003076922928072e-01,1.164151766224966300e+00,-2.322940071865973455e-01,7.289298673852393495e-01,-2.579050745189474636e+00,-9.375093861087292479e-01,-3.212589370580095083e-01,-4.885662207546257463e-01,3.327982174044547548e-01,1.013750547498260657e+00,5.066690260283884806e-01,-6.222254717550558256e-01,-1.522768090504186045e+00,5.569641205788870009e-01,-1.838176739670012161e+00,6.530372834064285259e-01,-1.884490821300682517e-01,-1.175834987938228826e+00,2.872573124667927580e-01,-2.876102659000990668e-03,-3.659729291624690128e-02,-8.422329652739403427e-02,4.195241084261415176e-01,9.244340219585094331e-01,4.966151984838515498e-01,1.012133189822309598e+00,-4.413971884780624327e-02,1.618459324231974472e+00,5.711098221298226418e-01,-5.436940296827768027e-01 +4.900000000000000355e+00,2.399999999999999911e+00,3.299999999999999822e+00,1.000000000000000000e+00,-1.093895056734405014e+00,2.057968037340799639e-01,-1.306521522922600820e+00,-9.733759675567484893e-01,2.390870803735992423e-01,-6.078874462819541247e-01,-9.333162402269222779e-01,-3.447504608839825624e-02,7.267789910378988361e-02,-2.058340252187376151e-01,-3.775469190592885549e-01,8.546427287124486183e-01,3.424273512868276081e-01,-2.234261121946960194e-01,2.464321933515365437e+00,1.938317369284130731e-01,1.132005133677329800e+00,-5.609810031317564727e-01,-1.362940947208009623e+00,-7.917565156434643869e-01,-2.680097833981119337e-01,-4.966082097295170250e-01,1.336386182322793603e+00,-1.200411220961080244e-01,4.614688774411399019e-01,-4.648115603289031811e-02,-4.335543327331675689e-01,3.799601345351499848e-02,1.714051469770731861e+00,-7.679485917368150671e-01,7.669904505595511734e-01,-1.026007251625781880e+00,-4.596264422694389395e-01,3.583205954583646834e-03,3.263750897269906970e-01,1.483128627973814062e+00,-5.008264146453541427e-02,-8.436156065359264877e-01,6.500419730507697169e-01,-3.641698089157559548e-01 +6.599999999999999645e+00,2.899999999999999911e+00,4.599999999999999645e+00,1.300000000000000044e+00,2.386815709318353684e-01,-1.162224395377518538e-01,-1.943456851286822662e+00,5.082991855939731352e-01,5.833680068212987457e-01,9.266047683086053866e-01,1.800462762460227628e+00,-1.195103773463475738e+00,5.165074442817594313e-01,4.092949966409553664e-01,-4.190819928078221013e-01,3.971062364497787711e-01,4.996469551119659958e-01,-1.218683829977196931e+00,2.462227612764321949e-01,-9.179843060046155578e-01,-6.518564999305904717e-01,-1.774744815188650016e+00,-4.733609255024787688e-01,-2.035706714734769607e-01,5.498568672963908277e-01,8.999266711071546602e-04,-1.542288150799678625e+00,8.621480568842673220e-01,-1.185866235500923072e-01,4.883705904296574141e-01,9.659361184597011762e-01,1.422604748969034771e+00,1.961226989365015383e+00,-7.223875867166795750e-02,3.111244460936535283e-01,-1.078361090816779777e+00,1.061600170035261081e+00,-1.184887444571769644e+00,-1.805251688630421070e+00,8.303860053403917529e-01,-5.216965249478153765e-01,7.776072813422404417e-01,4.080746493461687163e-01,-1.630002651023708671e+00 +5.200000000000000178e+00,2.700000000000000178e+00,3.899999999999999911e+00,1.399999999999999911e+00,-2.719679364322614479e+00,-1.096601747092719181e+00,1.649148698086453854e-02,-1.221776334694771871e+00,-6.527614493487129410e-01,-1.458940730597325430e+00,1.698779597969244382e-01,9.082592703632520748e-02,-4.813926240476332774e-01,1.397065301313742625e+00,1.497715027319563408e+00,5.652672025364510189e-01,-1.799771181466744530e+00,-1.104690147205609430e+00,4.071303310832481426e-01,-6.285575802445897420e-01,-4.870914317118235082e-01,8.989673945880599648e-01,5.108748218924175077e-01,1.314154433813948808e+00,-4.292092966464773340e-01,1.375225420446897218e+00,-5.541312470844856897e-01,1.499491490138763039e+00,1.058346436167786758e-01,-8.605097471096080364e-01,-1.631219507653532963e+00,-3.014723148616931803e-01,-2.562326979954389072e-01,8.576619101224520758e-01,-1.105905028082072861e-01,-4.324319785784446757e-01,1.077037472947536489e+00,-2.248265612701514649e-01,-5.762418162269031807e-01,5.746089172925727961e-01,-4.898282188472668497e-01,6.588021416915129658e-01,-5.969171117831943985e-01,-2.229591829703794215e-01 +5.000000000000000000e+00,2.000000000000000000e+00,3.500000000000000000e+00,1.000000000000000000e+00,1.521769755882663444e-01,-3.741263202643058672e-01,-1.345146935738967924e-02,8.154719692400600461e-01,4.106017913200476488e-01,4.809698500346235028e-01,-6.354304386192671794e-01,8.528297682743679609e-01,6.695623405090825875e-01,1.004419192261624794e+00,-7.263658321861021783e-01,-1.724585966814570492e-01,6.335339024604004221e-01,-6.088151174171313462e-01,-2.261224697639562242e-01,1.925805737459526989e+00,1.951761012267813733e+00,1.239940549827360128e+00,9.385851362497682482e-01,-1.019251149505129517e+00,5.125622314261223389e-01,-3.591165950658852246e-01,-1.058571897605367740e+00,-5.090058385913199812e-01,1.156650740463465721e-01,-5.473555742986664363e-01,-5.507994257068401511e-01,7.920414984229742217e-01,1.441064851232318200e-01,2.334580796623180188e-01,1.118723968962983539e-01,-6.757031433716509383e-01,-1.370571917960688335e+00,3.105647104204784514e-01,-5.070366321254438091e-01,-2.010782268585877830e+00,-3.925672579651524607e-01,-1.092217941340623444e+00,6.986502343077553023e-01,5.216252272403399948e-01 +5.900000000000000355e+00,3.000000000000000000e+00,4.200000000000000178e+00,1.500000000000000000e+00,4.968931448384695804e-01,-6.650416181586910058e-01,7.315515818621539657e-01,3.196497831340729956e-01,-4.098545384398195046e-01,-4.533374321385169048e-01,8.927081528737002003e-01,-4.736040569636580932e-01,3.036564735262782810e-01,1.033956986812783585e+00,1.909342625557108653e+00,1.663873124437729611e+00,9.008227642090298470e-01,-1.505911351571387113e+00,-6.890484294179712865e-01,-5.480871874725355974e-01,1.653149832565320887e+00,-6.993179409720908790e-01,3.861663770983691513e-01,1.008670632573117898e-01,-9.351272094375440158e-01,3.818240096193838418e-01,3.982960861974925160e-01,-1.255774881741501536e+00,1.222877447053409838e+00,-2.086510028855187660e+00,-5.907571529099620022e-01,9.719702938655755409e-01,-1.193257833474039131e+00,3.502659195620300148e-01,-1.296360388275429987e+00,-9.302414444422328621e-02,-2.313773113172200357e+00,-8.425717017130081032e-01,-1.542921447154290249e+00,-4.017637421265006226e-01,-4.152313958216570788e-01,-6.736641713091396921e-01,7.979131965667455306e-01,-8.868796038714377161e-01 +6.000000000000000000e+00,2.200000000000000178e+00,4.000000000000000000e+00,1.000000000000000000e+00,6.343866731890511756e-01,1.629275769958861586e+00,1.390641503046825544e-01,-8.576702045753996639e-01,-1.249338514861542349e+00,-7.097851001194992460e-01,7.046427207498909828e-01,1.555907349688974983e-01,9.367952162539888716e-01,7.703308793272120036e-01,1.408106518782359096e-01,4.734882616664621846e-01,1.855246209420479131e+00,1.415656226174680121e+00,-3.027460169042532345e-01,9.896794419358903028e-01,5.858508058179355826e-01,1.136388077539739472e+00,6.716165720359097424e-01,-9.741674350429900819e-01,-1.619684565372700558e+00,5.726270172050856866e-01,1.902618198369831148e+00,-7.756641079399706484e-01,-1.880897380496502069e-01,-1.035747726195212826e+00,1.177829504705659946e+00,-2.305166855043520702e+00,-2.263660301035808509e+00,3.750199198201532580e-01,-8.234364679135211529e-02,-4.796230150738065023e-01,-3.010947865234137044e-01,5.369879144563616258e-01,-4.138039890496650886e-01,-1.096924971733113541e+00,-9.273629280729662749e-01,8.883388619968426436e-01,-5.247419549622203139e-01,-1.385277583767198228e+00 +6.099999999999999645e+00,2.899999999999999911e+00,4.700000000000000178e+00,1.399999999999999911e+00,1.021783269439707348e-01,5.049947217800111465e-01,1.328960747553223465e+00,2.179033871216689844e-01,-6.597112472096701152e-01,4.740078672770297041e-01,7.271748700204364591e-01,-3.890530666380676017e-02,-4.459939272557342932e-02,2.601329049387676728e-01,-6.985649825618424347e-02,2.501139068831255696e-01,-1.021913324426928282e+00,-1.150437769818509537e+00,-8.361113795007689697e-01,6.422109433294258540e-01,2.587975673406087140e-01,1.040238964249558640e+00,-1.866909221146099418e-01,-1.143641395841849651e+00,1.144553535284557944e+00,-1.876705553989292327e-02,1.283455036266525351e+00,5.979464913921805902e-01,2.188618678822837005e+00,-2.197729857133623455e-01,9.007239050891806542e-01,8.913641063529440522e-01,-5.551263454944499465e-01,-1.724823171069609085e-01,-1.461738342216722941e+00,-1.548796137002665718e+00,1.265688015307749603e-01,7.930070706974273742e-01,6.380240334954548898e-01,3.400245982596526440e-01,8.630171531510913985e-01,-5.896977956993247894e-01,-2.725327484877594908e-01,7.375215134138817241e-01 +5.599999999999999645e+00,2.899999999999999911e+00,3.600000000000000089e+00,1.300000000000000044e+00,4.331187294489333151e-01,-2.101888137967623249e-01,1.320794386127914555e+00,-1.292001251047127486e+00,-5.186786872885924549e-01,-2.833977744562524159e-01,8.165348797737703723e-01,2.385197915235162322e-03,-1.261491746790615043e+00,5.140041798160635000e-01,1.087546315466894509e+00,7.393045331330262426e-01,6.191549216054889060e-01,-1.874313496741068175e+00,-8.998864767434843204e-01,4.820806086722010941e-01,-5.488818475438848876e-02,5.225576019988119603e-01,-1.266342676962954217e+00,-6.149476428488614282e-02,-1.389781018896206755e+00,-1.953678562619406422e+00,2.957790885068872222e-01,8.425887964569803712e-01,2.456164279017757912e-01,-3.299648026466609624e-02,-1.562014341829266240e+00,1.006107067097547159e+00,-4.404489737594127069e-02,1.959562005205767843e+00,9.423143082769667167e-01,-2.005125426652148324e+00,7.550496802558879228e-01,-1.396535237573157229e+00,-7.594954904290640574e-01,-2.507566767601495106e-01,-9.406245036260366121e-02,3.975652156174661611e-01,-1.022855040804214077e+00,-1.150692004256646861e+00 +6.700000000000000178e+00,3.100000000000000089e+00,4.400000000000000355e+00,1.399999999999999911e+00,6.006052017330760773e-01,-1.325026793402665944e-02,1.743730487015256181e-01,-2.193683351694660111e+00,-1.771373833153235544e-01,-8.907291830614958439e-01,-9.206263730168693371e-01,9.219348042245775199e-01,-1.095671228972512345e+00,-1.092896606326030140e+00,-3.310106034017458732e-01,4.502888306473442070e-01,-8.840147297480861477e-01,1.234144035780061488e+00,1.449847525361218858e+00,-8.814470664684638246e-01,-2.450817555768555756e-01,-7.786754726576129437e-01,-1.685382104871227193e+00,3.030110504561573936e-01,7.335948682293695899e-01,2.011864263126561525e+00,-8.974095036313369800e-01,1.336235090812621040e+00,1.342353691257953230e+00,1.978533095671530795e-01,6.021634895760638040e-01,8.732730483007036248e-01,1.974099948241899494e+00,4.778085626164694233e-01,-6.013788550368521363e-02,-8.661687990074722343e-01,3.053207550124980574e-01,1.024164932773069969e+00,2.446103613294719481e-01,-7.799232489250029765e-01,8.907620249656333922e-02,-1.291534824601138776e-01,2.647387577557072658e-01,-1.661848367218250022e+00 +5.599999999999999645e+00,3.000000000000000000e+00,4.500000000000000000e+00,1.500000000000000000e+00,5.507886141027313887e-01,5.954231567637230382e-01,4.448534381865085763e-01,-3.762817145024025239e-03,-1.805936262603421660e+00,-1.932279197126340886e-02,1.060714999342169618e+00,-8.601288762924613751e-01,-1.989269466161283750e+00,-1.540557971870693654e+00,3.140256918206031367e-01,3.728760088524375460e-01,8.862931946214680501e-01,-5.525899572965248252e-02,-1.500328375978570605e+00,-8.185041405936757108e-01,8.188393725993478034e-01,1.404959074394759033e-01,6.498296346799786738e-01,4.347888054610397068e-01,-2.049605517302959257e-01,-1.740068375080336960e-01,1.857102269755859680e+00,4.146742666092209095e-01,-1.285875503163605993e-01,4.554199909368095156e-01,2.229058196242733325e-01,-2.157356373494461188e+00,6.500845143723144037e-01,1.820939274089675486e+00,-7.802798683900640242e-01,1.454035748839167086e+00,-2.568696973319169463e-01,2.934713976498222743e-01,1.070360016973173956e+00,-7.200014312908091796e-01,1.242493912818471324e+00,-1.214217281359339262e+00,-8.751547489139164249e-01,-5.935203173475258609e-01 +5.799999999999999822e+00,2.700000000000000178e+00,4.099999999999999645e+00,1.000000000000000000e+00,6.620053664519022218e-01,-3.408744105694707649e-01,-1.519974459585867965e+00,-2.165328718498284177e-01,-7.842213825343838929e-01,7.312936208403685301e-01,-3.432350544551032723e-01,7.077407590065136478e-02,-4.054724571406713163e-01,4.339389682302889351e-01,-1.835907634705541969e-01,3.251987146870652934e-01,-2.593388564741710312e+00,9.725087697778614371e-02,4.139136701102331117e-01,-1.992800549145920253e-01,6.693924713925414327e-01,7.386070289928207133e-01,1.304213891849502982e+00,1.048116080722816534e-01,-1.913800704669981201e+00,-2.285499448789645172e+00,-1.601840952074517599e+00,-3.790706118413619818e-02,-1.573052882805656694e-01,2.762398520199737528e-01,-6.252459225571738166e-01,-7.364911715057482766e-01,5.550479424104340920e-01,6.559244113725019032e-01,-2.566501354804808233e-01,-3.847665823895329851e-02,4.043143433289911326e-01,5.043435751629945507e-01,-1.143980699598740269e+00,-7.195738559179507554e-01,-1.230546045645386721e+00,-5.069066148368306379e-01,8.123335893418310860e-01,5.462718669437655050e-01 +6.200000000000000178e+00,2.200000000000000178e+00,4.500000000000000000e+00,1.500000000000000000e+00,-1.098097960362558689e+00,5.122667268259818441e-01,8.584310534245198632e-02,-4.939267070859206799e-01,-1.406459655103631246e+00,-1.748233716177669539e-01,6.799440061159555126e-01,-2.163097648396125727e+00,-3.961231977514494962e-01,2.254283698804962377e+00,6.726367185680938166e-01,2.598324950034759939e-01,-7.371851695709140673e-01,-6.783298378739697210e-01,-8.328839569996336623e-02,1.602863629377135890e+00,4.655891908949305047e-01,-8.721583977708226021e-01,1.176786962383863822e+00,-2.925942071580907022e-01,1.697346481013949138e+00,-5.666030246377040669e-01,-1.003265756903888972e+00,1.746295778135699972e-01,9.823269838002980370e-01,1.037444796730910168e+00,1.591917666688115185e-01,-9.880966879686111648e-01,-5.053407218978849258e-01,-2.018281868354216524e+00,-9.131215375688201963e-01,-1.784568148972631163e-01,3.890021406534791559e-01,-3.394543214647791074e-01,-5.697905497773966821e-02,-3.961854447498169285e-01,7.510253041897702042e-01,-8.991129384265388325e-01,8.375479141463264554e-01,1.960880812513910554e+00 +5.599999999999999645e+00,2.500000000000000000e+00,3.899999999999999911e+00,1.100000000000000089e+00,4.727896560219311262e-01,-5.270916102240418288e-01,-5.362701440867850833e-01,1.209837222184097616e+00,-1.126589425871997507e+00,-9.538044202725639575e-01,-1.164448453870464473e+00,-1.278513840520686173e+00,-1.044816319379856973e+00,7.899049417854930866e-01,1.102282564588024316e+00,-6.970730723601831214e-01,2.073340460456898626e-01,7.591566751082341469e-01,1.005642030971629630e-01,-9.549427576172389021e-01,-1.470401735138081367e+00,1.010427553125508693e+00,4.961794122883804725e-01,5.769558933986538296e-01,-1.107646900901030129e+00,2.349771928890519168e-01,6.289995874568216072e-01,3.140338436471455386e-01,-7.450232168076890149e-01,1.012260510065335684e+00,-1.527631948178773902e+00,9.287419248069415101e-01,1.081055944087073284e+00,1.572330317535224786e+00,-3.424921902504429183e-01,-9.994300165615205289e-01,7.938803623083801053e-01,-6.992152790869743395e-01,4.399551144398878427e-02,-3.174622171600719467e-01,-9.020719714130848166e-01,3.209994661848916131e-01,-1.392015916558035693e+00,5.922056816440394167e-01 +5.900000000000000355e+00,3.200000000000000178e+00,4.799999999999999822e+00,1.800000000000000044e+00,-9.669310884567345887e-01,-1.731731346467926258e+00,-5.010745879029283867e-02,4.316338528112232398e-01,5.769345970532243628e-01,8.183537308271613409e-01,-2.353640399690413609e+00,-1.005144430956671497e+00,1.066522945030321246e-01,1.519003279936145479e+00,7.837444936747277602e-01,1.901340051848112500e+00,-5.249394229139989765e-01,2.744169952820086356e-01,-1.099970807569307096e+00,-4.043522196239997535e-01,-7.352957182829735761e-01,-6.339886593167213258e-01,-3.934491211856632753e-01,2.717539890680890739e-03,2.221266451648408816e-02,5.434534395827254061e-01,1.399884673868593554e-01,-3.440456288496253623e-01,-5.225785415319466054e-01,-3.071317201586840628e-01,-4.490371414469655487e-01,4.909710551819796431e-01,8.655251906712624343e-01,1.274044537947084610e+00,-7.977027599404172831e-01,4.693722253387500598e-01,-1.394679641592675656e+00,3.731747182525781414e-01,1.082672282091064586e+00,-1.495895016669949729e-01,1.072636047258873182e+00,-1.138567870315476682e+00,-8.886452830916367063e-01,-1.358098426436865347e-01 +6.099999999999999645e+00,2.799999999999999822e+00,4.000000000000000000e+00,1.300000000000000044e+00,1.022210354585824321e+00,-4.174294563419881920e-01,-4.535531009087745979e-01,-9.916283583780206579e-01,2.028810444426215887e-01,1.246695140894435561e+00,7.006801090936923826e-01,6.966506543362647186e-01,-2.069744749236640258e-01,-5.633093592639144553e-01,6.772459164163702194e-01,-3.191107563414086884e-02,-1.736082357193817483e-01,8.982406224036155740e-01,-1.977874516727299026e-01,-8.377762593852057238e-01,9.091884953309661288e-01,8.071989043386668117e-02,-1.037029343848691942e+00,-1.112905894871616175e+00,9.541187582686681823e-02,2.337409661478275780e+00,-3.928206035462084578e-01,-3.362738590855784970e-01,1.523771197617053375e+00,-5.728119979051538718e-02,-1.448466863247988234e+00,-1.572796452548173241e+00,1.226663973787480266e+00,6.663545422501888638e-01,8.261257084311929288e-01,-5.775655837871274817e-02,-7.267120259827976048e-01,-2.171631157241669663e-01,1.360312173743767616e-01,-8.383111556987010715e-01,5.614499095511267246e-01,-1.259596168799721472e+00,-3.327587645752237422e-01,-2.040078724765028995e-01 +6.299999999999999822e+00,2.500000000000000000e+00,4.900000000000000355e+00,1.500000000000000000e+00,-6.910198131753685358e-01,-2.205505355019822034e+00,4.478696641112525634e-01,-7.557507604402671220e-01,1.325707959324371465e+00,-3.419822776840522605e-01,-5.413595884312205619e-01,9.152194677887708074e-02,1.053439748630448092e+00,-5.634076631181696992e-01,1.014737694829776826e+00,1.440303641017622649e+00,9.903228106559455179e-01,1.626431490992257256e+00,1.292646021012468838e+00,1.514882293893005771e+00,1.604326319415641189e+00,2.080695296299638064e-01,-4.292238995721983086e-01,-2.262243635243805784e+00,-1.322733119521795730e+00,-4.482827991587955974e-01,-3.817350872405659845e-01,-1.527944634020866055e-01,-1.000760490248750134e+00,-1.595777611441314026e+00,-1.302231664667262145e-01,-1.894179288117905924e-01,-8.075540415498659863e-01,-7.421521616503845564e-01,-9.401565918724067439e-01,-3.965237390163177666e-01,-8.563028269952512872e-01,1.259875331517015473e+00,2.409967320451210648e-01,-9.723179180265172361e-01,-2.804477814674541380e-01,-1.180285606351190619e+00,1.012168295174787902e+00,1.384186724580820149e+00 +6.099999999999999645e+00,2.799999999999999822e+00,4.700000000000000178e+00,1.199999999999999956e+00,1.252001982753031317e+00,-1.144692631242597569e+00,-9.126701972617591585e-02,-4.015706755129159200e-01,5.620131059141816321e-01,-1.007909803283898009e+00,-6.758916940010165630e-01,-4.132170283518080689e-01,1.532884691324238879e-01,6.941287081378864077e-01,-3.287276927366077905e-01,6.639650755262218595e-01,8.220763567971377528e-01,-2.132152368718210345e-01,-1.245658132865596901e+00,-1.171190335434140417e+00,5.917269751515682463e-01,-4.762244363146694304e-01,-1.712629322682455157e+00,6.129523681830005843e-01,1.295545205462189653e-01,-1.405967081142628361e+00,1.179419981202645795e+00,8.366359871577494500e-01,1.387452512901793111e-01,-1.274319367734416897e+00,-1.402330532885283088e+00,-3.070684868414365054e-01,-1.713915389550289436e+00,4.050802731844854176e-01,-1.410823313380336508e+00,1.649127292546986034e-01,-2.881314527267264114e-01,7.117852680970441215e-01,-9.379475952614881873e-01,2.737294495247240000e-01,-1.394840192834643444e+00,7.955495517694070040e-01,-1.149617662774946869e-01,4.958506689654303967e-01 +6.400000000000000355e+00,2.899999999999999911e+00,4.299999999999999822e+00,1.300000000000000044e+00,-1.320525346828032243e+00,4.990842756717665529e-01,3.062033963037085194e-01,3.636978927133631134e-01,3.126339630139859938e-01,-1.934638827903477354e-01,1.241299220315990937e+00,-1.558979857657035728e-01,-7.391692003908286734e-01,-5.872619336893859093e-02,-9.505179454445302767e-01,-4.639964233308440100e-01,-1.772466161893988812e-01,-3.795541206458599159e-01,1.993970728054857422e-01,1.945761391306326749e+00,5.709498398461204660e-01,1.072300647288091380e+00,-5.037094373682365900e-01,-5.870162885051485313e-01,-3.781780468929897276e-01,8.528890972688772942e-01,-2.148118478230897743e+00,-1.033164775291367299e+00,1.023358468342198818e-01,-2.240923670629287046e-01,1.967729682143045888e+00,4.476832157426563485e-01,-6.621914435304807611e-01,-1.577607068539347290e+00,-3.405600349378622993e-01,-1.303220082678414604e+00,4.667506504184351646e-01,1.611063222416784513e-01,3.200319320927312861e-01,2.079176664795037155e+00,-9.074659814202976627e-01,-1.924042077959067509e-01,-1.212515744488908975e+00,-8.059851615012544879e-02 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/adls_gen1.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/adls_gen1.yml new file mode 100644 index 000000000000..65a8fb7a7043 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/adls_gen1.yml @@ -0,0 +1,7 @@ +type: azure_data_lake_gen1 +name: adls_datastore +store_name: cliv2testdatalake +credentials: + tenant_id: 72f988bf-86f1-41af-91ab-2d7cd011db47 + client_id: f7152bb4-cfa5-4cc9-9516-c34b65a10d04 + client_secret: -8BJ_7K1~J2BtbK8-z1oZ-28B2.1mH5ZGg diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/adls_gen2.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/adls_gen2.yml new file mode 100644 index 000000000000..a4e0a18965c9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/adls_gen2.yml @@ -0,0 +1,8 @@ +type: azure_data_lake_gen2 +name: adls_gen2_datastore +account_name: cliv2testblob +credentials: + tenant_id: 72f988bf-86f1-41af-91ab-2d7cd011db47 + client_id: f7152bb4-cfa5-4cc9-9516-c34b65a10d04 + client_secret: -8BJ_7K1~J2BtbK8-z1oZ-28B2.1mH5ZGg +filesystem: a-file-system diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/blob_store.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/blob_store.yml new file mode 100644 index 000000000000..cedf8afa73f4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/blob_store.yml @@ -0,0 +1,6 @@ +type: azure_blob +name: azure_blob_datastore +account_name: sdkvnextclidcdnrc7zb7xyy +credentials: + account_key: +container_name: testblob diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_adls_gen1.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_adls_gen1.yml new file mode 100644 index 000000000000..21df06078c9a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_adls_gen1.yml @@ -0,0 +1,3 @@ +type: azure_data_lake_gen1 +name: adls_datastore +store_name: mytestdatalakegen1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_adls_gen2.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_adls_gen2.yml new file mode 100644 index 000000000000..27786d55826e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_adls_gen2.yml @@ -0,0 +1,4 @@ +type: azure_data_lake_gen2 +name: adls_gen2_datastore +account_name: mytestdatalakegen2 +filesystem: my-gen2-container diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_blob_store.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_blob_store.yml new file mode 100644 index 000000000000..9dfa5a69ecb4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/credential_less_blob_store.yml @@ -0,0 +1,4 @@ +type: azure_blob +name: azure_blob_datastore +account_name: sdkvnextcli902348975 +container_name: testblob diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/file_store.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/file_store.yml new file mode 100644 index 000000000000..df771ec1e7d3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/file_store.yml @@ -0,0 +1,6 @@ +type: azure_file +name: azure_file_datastore +account_name: sdkvnextclidcdnrc7zb7xyy +credentials: + account_key: +file_share_name: testfileshare diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_keytab.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_keytab.yml new file mode 100644 index 000000000000..8ddcecb917e4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_keytab.yml @@ -0,0 +1,10 @@ +name: hdfs_keytab_example +type: hdfs +hdfs_server_certificate: ./tests/test_configs/datastore/hdfs_kerberos_keytab.yml +name_node_address: name_node_address +protocol: https +credentials: + kerberos_realm: testrealm + kerberos_kdc_address: test kdc address + kerberos_principal: test-principal + kerberos_keytab: ./tests/test_configs/datastore/hdfs_kerberos_keytab.yml diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_keytab2.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_keytab2.yml new file mode 100644 index 000000000000..afee3c7cd3cf --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_keytab2.yml @@ -0,0 +1,10 @@ +name: hdfs_keytab_example +type: hdfs +hdfs_server_certificate: ./tests/test_configs/datastore/hdfs_kerberos_keytab2.yml +name_node_address: name_node_address +protocol: https +credentials: + kerberos_realm: testrealm + kerberos_kdc_address: test kdc address + kerberos_principal: test-principal + kerberos_keytab: ./tests/test_configs/datastore/hdfs_kerberos_keytab2.yml diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_minimal.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_minimal.yml new file mode 100644 index 000000000000..2fc2146858c9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_minimal.yml @@ -0,0 +1,9 @@ +name: hdfs_minimal_example +type: hdfs +description: HDFS example with required fields only. Defaults will apply +name_node_address: name_node_address +credentials: + kerberos_realm: testrealm + kerberos_kdc_address: test kdc address + kerberos_principal: test-principal + kerberos_password: test-password diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_pw.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_pw.yml new file mode 100644 index 000000000000..34a2329e65ac --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_pw.yml @@ -0,0 +1,10 @@ +name: hdfs_pw_example +type: hdfs +hdfs_server_certificate: ./tests/test_configs/datastore/hdfs_kerberos_pw.yml +name_node_address: name_node_address +protocol: https +credentials: + kerberos_realm: testrealm + kerberos_kdc_address: test kdc address + kerberos_principal: test-principal + kerberos_password: test-password diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_pw2.yml b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_pw2.yml new file mode 100644 index 000000000000..c215f3b1493d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/datastore/hdfs_kerberos_pw2.yml @@ -0,0 +1,10 @@ +name: hdfs_pw_example +type: hdfs +hdfs_server_certificate: ./tests/test_configs/datastore/hdfs_kerberos_pw.yml +name_node_address: name_node_address +protocol: https +credentials: + kerberos_realm: testrealm + kerberos_kdc_address: test kdc address + kerberos_principal: test-principal + kerberos_password: test-password2 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_1.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_1.yaml new file mode 100644 index 000000000000..21c862db2b0e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_1.yaml @@ -0,0 +1,24 @@ +name: blue +endpoint_name: myBatchEndpoint +model: + name: model-1 + version: 5 + path: ../model-1/model/sklearn_regression_model.pkl +code_configuration: + code: ../endpoint_scoring + scoring_script: ./main.py +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +retry_settings: #optional + max_retries: 3 + timeout: 30 +mini_batch_size: 5 +logging_level: info #optional, default is info +error_threshold: 10 #optional, default is -1 +output_action: append_row #optional, Allowed Values: append_row, summary_only +output_file_name: append_row.txt #optional +max_concurrency_per_instance: 5 +compute: "azureml:cpu-cluster" +resources: + instance_count: 2 +environment_variables: + AZUREML_BE: bla \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_2.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_2.yaml new file mode 100644 index 000000000000..7b4fd8895f48 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_2.yaml @@ -0,0 +1,20 @@ +name: blue +endpoint_name: myBatchEndpoint +model: azureml:sklearn_regression_model:1 # required +code_configuration: + code: ../endpoint + scoring_script: ./main.py +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +retry_settings: #optional + max_retries: 3 + timeout: 30 +mini_batch_size: 5 +logging_level: info #optional, default is info +output_action: append_row #optional, Allowed Values: append_row, summary_only +output_file_name: append_row.txt #optional +max_concurrency_per_instance: 5 +compute: "azureml:cpucluster" +resources: + instance_count: 2 +environment_variables: + AZUREML_BE: bla \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_conda.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_conda.yaml new file mode 100644 index 000000000000..6b41c8abcdfc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_conda.yaml @@ -0,0 +1,26 @@ +name: blue +endpoint_name: myBatchEndpoint +model: + name: model-1 + version: 5 + path: ../model-1/model/sklearn_regression_model.pkl +code_configuration: + code: ../endpoint_scoring + scoring_script: ./main.py +environment: + conda_file: environment_files/environment.yml + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 +retry_settings: #optional + max_retries: 3 + timeout: 30 +mini_batch_size: 5 +logging_level: info #optional, default is info +error_threshold: 10 #optional, default is -1 +output_action: append_row #optional, Allowed Values: append_row, summary_only +output_file_name: append_row.txt #optional +max_concurrency_per_instance: 5 +compute: "azureml:cpu-cluster" +resources: + instance_count: 2 +environment_variables: + AZUREML_BE: bla \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_docker.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_docker.yaml new file mode 100644 index 000000000000..e053b1e2249e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_docker.yaml @@ -0,0 +1,27 @@ +name: blue +endpoint_name: myBatchEndpoint +model: + name: model-1 + version: 5 + path: ../model-1/model/sklearn_regression_model.pkl +code_configuration: + code: ../endpoint_scoring + scoring_script: ./main.py +environment: + build: + path: ./environment_files + dockerfile_path: DockerfileNonDefault +retry_settings: #optional + max_retries: 3 + timeout: 30 +mini_batch_size: 5 +logging_level: info #optional, default is info +error_threshold: 10 #optional, default is -1 +output_action: append_row #optional, Allowed Values: append_row, summary_only +output_file_name: append_row.txt #optional +max_concurrency_per_instance: 5 +compute: "azureml:cpu-cluster" +resources: + instance_count: 2 +environment_variables: + AZUREML_BE: bla \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_image.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_image.yaml new file mode 100644 index 000000000000..4a79d425c1f9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_env_with_image.yaml @@ -0,0 +1,25 @@ +name: blue +endpoint_name: myBatchEndpoint +model: + name: model-1 + version: 5 + path: ../model-1/model/sklearn_regression_model.pkl +code_configuration: + code: ../endpoint_scoring + scoring_script: ./main.py +environment: + image: library/python:latest +retry_settings: #optional + max_retries: 3 + timeout: 30 +mini_batch_size: 5 +logging_level: info #optional, default is info +error_threshold: 10 #optional, default is -1 +output_action: append_row #optional, Allowed Values: append_row, summary_only +output_file_name: append_row.txt #optional +max_concurrency_per_instance: 5 +compute: "azureml:cpu-cluster" +resources: + instance_count: 2 +environment_variables: + AZUREML_BE: bla \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_model.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_model.yaml new file mode 100644 index 000000000000..b564d5b07c10 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_anon_model.yaml @@ -0,0 +1,22 @@ +name: blue +endpoint_name: myBatchEndpoint +model: + path: ../model-1/model/sklearn_regression_model.pkl +code_configuration: + code: ../endpoint_scoring + scoring_script: ./main.py +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +retry_settings: #optional + max_retries: 3 + timeout: 30 +mini_batch_size: 5 +logging_level: info #optional, default is info +error_threshold: 10 #optional, default is -1 +output_action: append_row #optional, Allowed Values: append_row, summary_only +output_file_name: append_row.txt #optional +max_concurrency_per_instance: 5 +compute: "azureml:cpu-cluster" +resources: + instance_count: 2 +environment_variables: + AZUREML_BE: bla \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_mlflow.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_mlflow.yaml new file mode 100644 index 000000000000..8fa1cadc0624 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_mlflow.yaml @@ -0,0 +1,16 @@ +name: blue +endpoint_name: batch-ept +description: description for my batch deployment +model: azureml:lightgbm_predict:1 # required +output_action: append_row #optional, Allowed Values: append_row, summary_only +output_file_name: append_row.txt #optional +mini_batch_size: 11 +retry_settings: #optional + max_retries: 3 + timeout: 30 +error_threshold: 11 #optional, default is -1 +logging_level: info #optional, default is info +max_concurrency_per_instance: 5 +compute: "azureml:testCompute" +resources: + instance_count: 2 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_mlflow_new.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_mlflow_new.yaml new file mode 100644 index 000000000000..35c103493d10 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_mlflow_new.yaml @@ -0,0 +1,19 @@ +name: blue +endpoint_name: myBatchEndpoint2 +model: azureml:lightgbm_predict:1 +retry_settings: #optional + max_retries: 3 + timeout: 30 +output_action: append_row #optional, Allowed Values: append_row, summary_only +output_file_name: append_row.txt #optional +mini_batch_size: 5 +logging_level: info #optional, default is info +error_threshold: 10 #optional, default is -1 +max_concurrency_per_instance: 5 +compute: "azureml:testCompute" +resources: + instance_count: 2 +code_configuration: + code: ../endpoint_scoring + scoring_script: ./main.py +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_no_action.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_no_action.yaml new file mode 100644 index 000000000000..2f2e0df05b4f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_no_action.yaml @@ -0,0 +1,23 @@ +name: blue +endpoint_name: myBatchEndpoint +model: + name: model-1 + version: 5 + path: ../model-1/model/sklearn_regression_model.pkl +code_configuration: + code: ../endpoint_scoring + scoring_script: ./main.py +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +retry_settings: #optional + max_retries: 3 + timeout: 30 +mini_batch_size: 5 +logging_level: info #optional, default is info +error_threshold: 10 #optional, default is -1 +output_file_name: append_row.txt #optional +max_concurrency_per_instance: 5 +compute: "azureml:cpu-cluster" +resources: + instance_count: 2 +environment_variables: + AZUREML_BE: bla \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_no_file.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_no_file.yaml new file mode 100644 index 000000000000..85a24029c1c9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_no_file.yaml @@ -0,0 +1,23 @@ +name: blue +endpoint_name: myBatchEndpoint +model: + name: model-1 + version: 5 + path: ../model-1/model/sklearn_regression_model.pkl +code_configuration: + code: ../endpoint_scoring + scoring_script: ./main.py +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +retry_settings: #optional + max_retries: 3 + timeout: 30 +mini_batch_size: 5 +logging_level: info #optional, default is info +error_threshold: 10 #optional, default is -1 +output_action: append_row #optional, Allowed Values: append_row, summary_only +max_concurrency_per_instance: 5 +compute: "azureml:cpu-cluster" +resources: + instance_count: 2 +environment_variables: + AZUREML_BE: bla \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_quick.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_quick.yaml new file mode 100644 index 000000000000..2ab3b8a3a617 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/batch_deployment_quick.yaml @@ -0,0 +1,13 @@ +name: blue +endpoint_name: myBatchEndpoint +model: + name: model-1 + version: 5 + path: ../model-1/model/sklearn_regression_model.pkl +code_configuration: + code: ../endpoint_scoring + scoring_script: do_nothing.py +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:cpu-cluster +resources: + instance_count: 1 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/Dockerfile b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/Dockerfile new file mode 100644 index 000000000000..8ff0616ec329 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/Dockerfile @@ -0,0 +1,3 @@ +FROM paledgeruseeacr.azurecr.io/azureml/azureml_0d501feced865646087d1b823b8c3c35 + +CMD ["runsvdir", "/var/runit"] diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/online_deployment_byoc_sklearn.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/online_deployment_byoc_sklearn.yaml new file mode 100644 index 000000000000..605e60fa1650 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/online_deployment_byoc_sklearn.yaml @@ -0,0 +1,23 @@ +name: blue +endpoint_name: my-new-endpoint +model: + name: model-1 + version: 1 + path: ../../model-1/model/sklearn_regression_model.pkl +code_configuration: + code: ../../model-1/onlinescoring/ + scoring_script: score.py +environment: + image: paledgeruseeacr.azurecr.io/byoc-sklearn + inference_config: + liveness_route: + port: "5001" + path: / + readiness_route: + port: "5001" + path: / + scoring_route: + port: "5001" + path: / +instance_type: Standard_F2s_v2 +instance_count: 1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/score.py b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/score.py new file mode 100644 index 000000000000..734ee7673f87 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/sklearn/score.py @@ -0,0 +1,32 @@ +import os +import logging +import pickle +import json +import numpy +from sklearn.externals import joblib +from sklearn.linear_model import Ridge + + +def init(): + global model + # AZUREML_MODEL_DIR is an environment variable created during deployment. + # It is the path to the model folder (./azureml-models/$MODEL_NAME/$VERSION) + # For multiple models, it points to the folder containing all deployed models (./azureml-models) + model_path = os.path.join(os.getenv("AZUREML_MODEL_DIR"), "sklearn_regression_model.pkl") + # deserialize the model file back into a sklearn model + model = joblib.load(model_path) + logging.info("Init complete") + + +# note you can pass in multiple rows for scoring +def run(raw_data): + try: + logging.info("Request received") + data = json.loads(raw_data)["data"] + data = numpy.array(data) + result = model.predict(data) + logging.info("Request processed") + return result.tolist() + except Exception as e: + error = str(e) + return error diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/assets/foo.txt b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/assets/foo.txt new file mode 100644 index 000000000000..f9ff03668800 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/assets/foo.txt @@ -0,0 +1 @@ +asset-file-contents \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/assets/license.txt b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/assets/license.txt new file mode 100644 index 000000000000..6485d5964108 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/assets/license.txt @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2016, The TensorFlow Serving Authors. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/saved_model.pb b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/saved_model.pb new file mode 100644 index 0000000000000000000000000000000000000000..8aca300f0f7c330aa4695a1a4beacfb3876769ff GIT binary patch literal 12107 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 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/variables/variables.data-00000-of-00001 b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/variables/variables.data-00000-of-00001 new file mode 100644 index 0000000000000000000000000000000000000000..a378d172b66af3595a20b49a506ef16b03d8d017 GIT binary patch literal 20 TcmZQzV6bO^UU2QUTz4K@M4 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/variables/variables.index b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/byoc/tfserving/model/half_plus_two/00000123/variables/variables.index new file mode 100644 index 0000000000000000000000000000000000000000..5ae2cc0f2d45a17b3b86dbac99d1b2a64e2be29a GIT binary patch literal 172 zcmYevVPIh6V3cCwU}RwAPUK(|V$fhQWwTJ1XJq6xV&rF0VBr||jah6A4#ZeU None: + pass + +def run(raw_data: list) -> list: + return [{"result": "Hello World"}] diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/endpoint_scoring/main.py b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/endpoint_scoring/main.py new file mode 100644 index 000000000000..16fc65101ff6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/endpoint_scoring/main.py @@ -0,0 +1,29 @@ +import os +import pickle +import json +import numpy +from sklearn.externals import joblib +from sklearn.linear_model import Ridge + + +def init(): + global model + # AZUREML_MODEL_DIR is an environment variable created during deployment. + # It is the path to the model folder (./azureml-models/$MODEL_NAME/$VERSION) + # For multiple models, it points to the folder containing all deployed models (./azureml-models) + model_path = os.path.join(os.getenv("AZUREML_MODEL_DIR"), "sklearn_regression_model.pkl") + # deserialize the model file back into a sklearn model + model = joblib.load(model_path) + + +# note you can pass in multiple rows for scoring +def run(raw_data): + try: + data = json.loads(raw_data)["data"] + data = numpy.array(data) + result = model.predict(data) + # you can return any data type as long as it is JSON-serializable + return result.tolist() + except Exception as e: + error = str(e) + return error diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/endpoint_scoring/sample-request.json b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/endpoint_scoring/sample-request.json new file mode 100644 index 000000000000..39e6b2132789 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/endpoint_scoring/sample-request.json @@ -0,0 +1,4 @@ +{"data": [ + [1,2,3,4,5,6,7,8,9,10], + [10,9,8,7,6,5,4,3,2,1] +]} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-1/model/sklearn_regression_model.pkl b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-1/model/sklearn_regression_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..d10309b6cf4c8e87846850edfe8b8d54a1aa64f2 GIT binary patch literal 658 zcmX|<&rcLF6vt=T1%{DT5XE00;?FfP6EJauKjMzrgOLdnGx0~`rRmHRcC<6?n;*&= zN%R0L{srpQlL>dP>%oH_y>T~@%bJ)Nz2J{-A-uzD`+a?Vub=jL(N7;SN|M-QVJt@+ z@qjWj34;Y{xXOce{sk14pr?X*HBBQ-Gzb*^IFCfr^m#(fC}&wnl7uvk)F+H229&nr zMvyfHHJ}&u$kh26=(9DuunPSy=oPz&3R1lW1CHa&{*$Jhtz}?%b^Xoju5Hv{&k78> zP)6nM5n+bIIHQSAMFx9YXh4cFPa?v?rxf!-0Au_Kjv^vpvXy(kXKN2W-78z0 z>vNZ`Pm(rkKN~H7ZCY%7rZV=8Sr`9mTen_aZBJFl-Q~M?+P^-#owpkc?F;ts_YsV( zD-%xj=Voq+)eoJuDzZ?&tPv}u7*0B>dP>%oH_y>T~@%bJ)Nz2J{-A-uzD`+a?Vub=jL(N7;SN|M-QVJt@+ z@qjWj34;Y{xXOce{sk14pr?X*HBBQ-Gzb*^IFCfr^m#(fC}&wnl7uvk)F+H229&nr zMvyfHHJ}&u$kh26=(9DuunPSy=oPz&3R1lW1CHa&{*$Jhtz}?%b^Xoju5Hv{&k78> zP)6nM5n+bIIHQSAMFx9YXh4cFPa?v?rxf!-0Au_Kjv^vpvXy(kXKN2W-78z0 z>vNZ`Pm(rkKN~H7ZCY%7rZV=8Sr`9mTen_aZBJFl-Q~M?+P^-#owpkc?F;ts_YsV( zD-%xj=Voq+)eoJuDzZ?&tPv}u7*0B>dP>%oH_y>T~@%bJ)Nz2J{-A-uzD`+a?Vub=jL(N7;SN|M-QVJt@+ z@qjWj34;Y{xXOce{sk14pr?X*HBBQ-Gzb*^IFCfr^m#(fC}&wnl7uvk)F+H229&nr zMvyfHHJ}&u$kh26=(9DuunPSy=oPz&3R1lW1CHa&{*$Jhtz}?%b^Xoju5Hv{&k78> zP)6nM5n+bIIHQSAMFx9YXh4cFPa?v?rxf!-0Au_Kjv^vpvXy(kXKN2W-78z0 z>vNZ`Pm(rkKN~H7ZCY%7rZV=8Sr`9mTen_aZBJFl-Q~M?+P^-#owpkc?F;ts_YsV( zD-%xj=Voq+)eoJuDzZ?&tPv}u7*0B> PipelineJob: + # Construct pipeline + @dsl.pipeline( + default_compute="cpu-cluster", + description="Example of using automl function inside pipeline", + ) + def automl_node_in_pipeline( + automl_train_data, + automl_validate_data, + automl_test_data + ): + hello_automl_regression = regression( + training_data=automl_train_data, + validation_data=automl_validate_data, + test_data=automl_test_data, + target_column_name="SalePrice", + primary_metric="r2_score", + featurization=TabularFeaturizationSettings(mode="Off"), + outputs={"best_model": Output(type="mlflow_model")} + ) + hello_automl_regression.set_limits(max_trials=1, max_concurrent_trials=1) + hello_automl_regression.set_training( + enable_stack_ensemble=False, + enable_vote_ensemble=False + ) + + command_func = command( + inputs=dict( + automl_output=Input(type="mlflow_model") + ), + command="ls ${{inputs.automl_output}}", + environment="azureml:AzureML-Minimal:1" + ) + show_output = command_func(automl_output=hello_automl_regression.outputs.best_model) + return hello_automl_regression.outputs + + pipeline = automl_node_in_pipeline( + automl_train_data=Input(path=input_data_dir + "/train", type="mltable"), + automl_validate_data=Input(path=input_data_dir + "/valid", type="mltable"), + automl_test_data=Input(path=input_data_dir + "/test", type="mltable") + ) + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/automl_job_in_pipeline/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/automl_job_in_pipeline/pipeline.yml new file mode 100644 index 000000000000..0d846a7e16f9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/automl_job_in_pipeline/pipeline.yml @@ -0,0 +1,52 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: automl_node_in_pipeline +description: Example of using automl function inside pipeline + +experiment_name: sdk-cli-v2 + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + automl_train_data: + type: mltable + path: ../../automl_job/test_datasets/house_pricing/train + automl_validate_data: + type: mltable + path: ../../automl_job/test_datasets/house_pricing/validate + automl_test_data: + type: mltable + path: ../../automl_job/test_datasets/house_pricing/test + +outputs: + best_model: + type: uri_folder + +jobs: + hello_automl_regression: + type: automl + task: regression + primary_metric: r2_score + limits: + max_trials: 1 + max_concurrent_trials: 1 + target_column_name: SalePrice + training_data: ${{parent.inputs.automl_train_data}} + validation_data: ${{parent.inputs.automl_validate_data}} + test_data: ${{parent.inputs.automl_test_data}} + featurization: + mode: "off" # In YAML 1.1, literal off equals boolean false, ref: https://yaml.org/type/bool.html + training: + enable_stack_ensemble: false + enable_vote_ensemble: false + enable_model_explainability: true + outputs: + best_model: ${{parent.outputs.best_model}} + show_output: + type: command + inputs: + automl_output: ${{parent.jobs.hello_automl_regression.outputs.best_model}} + command: ls ${{inputs.automl_output}} + environment: azureml:AzureML-Minimal:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/component.yml new file mode 100644 index 000000000000..089c47998b44 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/component.yml @@ -0,0 +1,12 @@ +type: command + +name: hello__python__world +display_name: Hello_Python_World +version: 1 + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/pipeline.py new file mode 100644 index 000000000000..ae9b62fdbf1b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/pipeline.py @@ -0,0 +1,24 @@ +from azure.ai.ml import dsl +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component( + yaml_file=parent_dir + "/component.yml" + ) + + # 2. Construct pipeline + @dsl.pipeline( + description="Hello World component example", + ) + def basic_component(): + hello_python_world_job = basic_func() + hello_python_world_job.compute = "cpu-cluster" + + pipeline = basic_component() + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/pipeline.yml new file mode 100644 index 000000000000..48e26a045f47 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/pipeline.yml @@ -0,0 +1,9 @@ +type: pipeline +description: "Hello World component example" + +jobs: + hello_python_world_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/src/hello.py new file mode 100644 index 000000000000..a45ad4cb4527 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component/src/hello.py @@ -0,0 +1,3 @@ + +print ("Hello Python World") + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/components/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/components/component.yml new file mode 100644 index 000000000000..089c47998b44 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/components/component.yml @@ -0,0 +1,12 @@ +type: command + +name: hello__python__world +display_name: Hello_Python_World +version: 1 + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/components/src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/components/src/hello.py new file mode 100644 index 000000000000..a45ad4cb4527 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/components/src/hello.py @@ -0,0 +1,3 @@ + +print ("Hello Python World") + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/pipeline.py new file mode 100644 index 000000000000..a73ca9e16d02 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/pipeline.py @@ -0,0 +1,24 @@ +from azure.ai.ml import dsl +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component( + yaml_file=parent_dir + "/components/component.yml" + ) + + # 2. Construct pipeline + @dsl.pipeline( + description="Hello World component example", + ) + def basic_component(): + hello_python_world_job = basic_func() + hello_python_world_job.compute = "cpu-cluster" + + pipeline = basic_component() + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/pipeline.yml new file mode 100644 index 000000000000..81fe5c6918c5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_component_with_component_in_folder/pipeline.yml @@ -0,0 +1,14 @@ +type: pipeline +description: "Hello World component example" + +jobs: + hello_python_world_job: + type: command + component: file:./components/component.yml + compute: azureml:cpu-cluster + + hello_python_world_job_duplicate: + type: command + component: file:./components/component.yml + compute: azureml:cpu-cluster + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentA.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentA.yml new file mode 100644 index 000000000000..14d9f31e34f3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentA.yml @@ -0,0 +1,12 @@ +type: command + +name: component_a +display_name: componentA +version: 1 + +code: ./componentA_src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentA_src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentA_src/hello.py new file mode 100644 index 000000000000..b864f1a3c6ba --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentA_src/hello.py @@ -0,0 +1,3 @@ + +print ("Hello Python World...\nI'm component A :-)") + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentB.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentB.yml new file mode 100644 index 000000000000..3504318bf112 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentB.yml @@ -0,0 +1,12 @@ +type: command + +name: component_b +display_name: componentB +version: 1 + +code: ./componentB_src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentB_src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentB_src/hello.py new file mode 100644 index 000000000000..045360698843 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentB_src/hello.py @@ -0,0 +1,2 @@ + +print ("Hello Python World...\nI'm component B :-)") diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentC.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentC.yml new file mode 100644 index 000000000000..a2e733ee0777 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentC.yml @@ -0,0 +1,12 @@ +type: command + +name: component_c +display_name: componentC +version: 1 + +code: ./componentC_src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentC_src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentC_src/hello.py new file mode 100644 index 000000000000..1ff20d426f4c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/componentC_src/hello.py @@ -0,0 +1,3 @@ + +print ("Hello Python World...\nI'm component C :-)") + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/pipeline.py new file mode 100644 index 000000000000..fc6500a0e76a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/pipeline.py @@ -0,0 +1,26 @@ +from azure.ai.ml import dsl +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + a_func = load_component(yaml_file=parent_dir + "/componentA.yml") + b_func = load_component(yaml_file=parent_dir + "/componentB.yml") + c_func = load_component(yaml_file=parent_dir + "/componentC.yml") + + # 2. Construct pipeline + @dsl.pipeline( + compute="cpu-cluster", + description="Basic Pipeline Job with 3 Hello World components", + ) + def basic_pipeline(): + component_a_job = a_func() + component_b_job = b_func() + component_c_job = c_func() + + pipeline = basic_pipeline() + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/pipeline.yml new file mode 100644 index 000000000000..eea0d129f656 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/basic_pipeline/pipeline.yml @@ -0,0 +1,16 @@ +type: pipeline +description: "Basic Pipeline Job with 3 Hello World components" + +compute: azureml:cpu-cluster + +jobs: + component_a_job: + type: command + component: file:./componentA.yml + component_b_job: + type: command + component: file:./componentB.yml + component_c_job: + type: command + component: file:./componentC.yml + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/data/sample1.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/data/sample1.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/data/sample1.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/eval_src/eval.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/eval_src/eval.py new file mode 100644 index 000000000000..43b415e161cc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/eval_src/eval.py @@ -0,0 +1,25 @@ +import argparse +from pathlib import Path +from datetime import datetime + +parser = argparse.ArgumentParser("score") +parser.add_argument("--scoring_result", type=str, help="Path of scoring result") +parser.add_argument("--eval_output", type=str, help="Path of output evaluation result") + +args = parser.parse_args() + +print ("hello evaluation world...") + +lines = [ + f'Scoring result path: {args.scoring_result}', + f'Evaluation output path: {args.eval_output}', +] + +for line in lines: + print(line) + +# Evaluate the incoming scoring result and output evaluation result. +# Here only output a dummy file for demo. +curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") +eval_msg = f"Eval done at {curtime}\n" +(Path(args.eval_output) / 'eval_result.txt').write_text(eval_msg) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/hello-world-data-dependency.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/hello-world-data-dependency.yml new file mode 100644 index 000000000000..ac503d363ce6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/hello-world-data-dependency.yml @@ -0,0 +1,18 @@ +type: pipeline +compute: azureml:cpu-cluster +jobs: + hello: + type: command + outputs: + hello_output: + mode: upload + command: echo "hello world at $(date)" | tee ${{outputs.hello_output}}/file.txt + environment: + image: python + world: + type: command + inputs: + world_input: ${{parent.jobs.hello.outputs.hello_output}} + command: cat ${{inputs.world_input}}/file.txt + environment: + image: python diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/hello-world.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/hello-world.yml new file mode 100644 index 000000000000..08f98a793172 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/hello-world.yml @@ -0,0 +1,14 @@ +type: pipeline +jobs: + hello: + type: command + command: echo "hello" + environment: + image: python + compute: azureml:cpu-cluster + world: + type: command + command: echo "world" + environment: + image: python + compute: azureml:cpu-cluster diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/pipeline.py new file mode 100644 index 000000000000..fb0857590b67 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/pipeline.py @@ -0,0 +1,98 @@ +from azure.ai.ml import dsl, command, Input +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + environment = "AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5" + + # 1. Construct command job + train_func = command( + inputs=dict( + training_data=Input(path=parent_dir + "/data/"), + max_epocs=20, + learning_rate=1.8, + learning_rate_schedule='time-based', + ), + outputs=dict( + model_output=None + ), + display_name="my-train-job", + code=parent_dir + "/train_src", + environment=environment, + command="python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} " + "--learning_rate ${{inputs.learning_rate}} --learning_rate_schedule " + "${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}" + ) + + score_func = command( + inputs=dict( + model_input=Input(path=parent_dir + "/data/"), + test_data=Input(path=parent_dir + "/data/"), + ), + outputs=dict( + score_output=None + ), + display_name="my-score-job", + code=parent_dir + "/train_src", + environment=environment, + command="python score.py --model_input ${{inputs.model_input}} " + "--test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}" + ) + + eval_func = command( + inputs=dict( + scoring_result=Input(path=parent_dir + "/data/"), + ), + outputs=dict( + eval_output=None + ), + display_name="my-evaluate-job", + environment=environment, + command='echo "hello world"' + ) + + # 2. Construct pipeline + @dsl.pipeline( + compute="cpu-cluster", + ) + def command_job_in_pipeline( + pipeline_job_training_input, + pipeline_job_test_input, + pipeline_job_training_max_epocs, + pipeline_job_training_learning_rate, + pipeline_job_learning_rate_schedule, + ): + # TODO: the target of this test changed as Input binding is not supported now? + train_job = train_func( + training_data=Input(path=parent_dir + "/data/"), + max_epocs=20, + learning_rate=1.8, + learning_rate_schedule='time-based', + ) + + score_job = score_func( + model_input=train_job.outputs.model_output, + test_data=pipeline_job_test_input, + ) + score_job.compute = "gpu-cluster" + + evaluate_job = eval_func(scoring_result=Input(path=parent_dir + "/data/")) + evaluate_job.compute = "cpu-cluster" + # return { + # "pipeline_job_trained_model": train_job.outputs.model_output, + # "pipeline_job_scored_data": score_job.outputs.score_output, + # "pipeline_job_evaluation_report": evaluate_job.outputs.eval_output, + # } + + pipeline = command_job_in_pipeline( + Input(path=parent_dir + "/data/"), + Input(path=parent_dir + "/data/"), + 20, + 1.8, + "time-based", + ) + + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/pipeline.yml new file mode 100644 index 000000000000..053f85245688 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/pipeline.yml @@ -0,0 +1,72 @@ + +type: pipeline + +inputs: + pipeline_job_training_input: + path: ./data + pipeline_job_test_input: + path: ./data + pipeline_job_training_max_epocs: 20 + pipeline_job_training_learning_rate: 1.8 + pipeline_job_learning_rate_schedule: 'time-based' + + +#specify a different store than the workspace default datastore +#settings: +# datastore: azureml:testepstorageyzmrkcbu_azureml + +compute: azureml:cpu-cluster + +jobs: + train_job: + display_name: "my-train-job" + type: command + #this job will use the default compute specified at pipeline job level. + #compute: azureml:cpu-cluster + inputs: + training_data: + path: ./data + max_epocs: 20 + learning_rate: 1.8 + learning_rate_schedule: 'time-based' + code: ./train_src + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + command: >- + python train.py + --training_data ${{inputs.training_data}} + --max_epocs ${{inputs.max_epocs}} + --learning_rate ${{inputs.learning_rate}} + --learning_rate_schedule ${{inputs.learning_rate_schedule}} + + score_job: + display_name: "my-score-job" + type: command + # this job will use a different compute than the default specified at pipeline job level. + compute: azureml:gpu-cluster + inputs: + model_input: + path: ./data + test_data: + path: ./data + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + code: ./score_src + command: >- + python score.py + --model_input ${{inputs.model_input}} + --test_data ${{inputs.test_data}} + + evaluate_job: + display_name: "my-evaluate-job" + type: command + compute: azureml:cpu-cluster + inputs: + scoring_result: + path: ./data + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + #code: ./eval_src + command: echo "hello world" + #command: >- + # python eval.py + # --scoring_result ${{inputs.scoring_result}} + # --eval_output ${{outputs.eval_output}} + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/score_src/score.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/score_src/score.py new file mode 100644 index 000000000000..bdce02c7ef6a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/score_src/score.py @@ -0,0 +1,29 @@ +import argparse +from pathlib import Path + +parser = argparse.ArgumentParser("score") +parser.add_argument("--model_input", type=str, help="Path of input model") +parser.add_argument("--test_data", type=str, help="Path to test data") +parser.add_argument("--score_output", type=str, help="Path of scoring output") + +args = parser.parse_args() + +print ("hello scoring world...") + +lines = [ + f'Model path: {args.model_input}', + f'Test data path: {args.test_data}', + f'Scoring output path: {args.score_output}', +] + +for line in lines: + print(line) + +# Load the model from input port +# Here only print the model as text since it is a dummy one +model = (Path(args.model_input) / 'model.txt').read_text() +print('Model: ', model) + +# Do scoring with the input model +# Here only print text to output file as demo +(Path(args.score_output) / 'score.txt').write_text('Scored with the following mode:\n{}'.format(model)) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_command_job.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_command_job.yml new file mode 100644 index 000000000000..d811e3570f83 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_command_job.yml @@ -0,0 +1,28 @@ +$schema: https://azuremlschemas.azureedge.net/latest/commandJob.schema.json +# this command job does not work. +# It is to illustrate literal inputs and named output support required in command job for parity with command component job. +type: command +environment_variables: + AZUREML_COMPUTE_USE_COMMON_RUNTIME: "false" +inputs: + training_input: + path: ./data + max_epocs: 20 + learning_rate: 1.8 +outputs: + trained_model: + mode: upload + reports: + mode: upload +code: ./train_src +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 +#compute: azureml:cpu-cluster +command: >- + python train1.py + --training_data "${{inputs.training_input}}" + --max_epocs ${{inputs.max_epocs}} + --learning_rate ${{inputs.learning_rate}} + --learning_rate_schedule 'time-based' + --model_output ${{outputs.trained_model}} + --reports ${{outputs.reports}} + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_src/train.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_src/train.py new file mode 100644 index 000000000000..b7e393067306 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_src/train.py @@ -0,0 +1,43 @@ +import argparse +from pathlib import Path +from uuid import uuid4 +from datetime import datetime +import os + +parser = argparse.ArgumentParser("train") +parser.add_argument("--training_data", type=str, help="Path to training data") +parser.add_argument("--max_epocs", type=int, help="Max # of epocs for the training") +parser.add_argument("--learning_rate", type=float, help="Learning rate") +parser.add_argument("--learning_rate_schedule", type=str, help="Learning rate schedule") +parser.add_argument("--model_output", type=str, help="Path of output model") + +args = parser.parse_args() + +print ("hello training world...") + +lines = [ + f'Training data path: {args.training_data}', + f'Max epocs: {args.max_epocs}', + f'Learning rate: {args.learning_rate}', + f'Learning rate: {args.learning_rate_schedule}', + f'Model output path: {args.model_output}', +] + +for line in lines: + print(line) + +print("mounted_path files: ") +arr = os.listdir(args.training_data) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.training_data, filename), 'r') as handle: + print (handle.read()) + + +# Do the train and save the trained model as a file into the output folder. +# Here only output a dummy data for demo. +curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") +model = f"This is a dummy model with id: {str(uuid4())} generated at: {curtime}\n" +(Path(args.model_output) / 'model.txt').write_text(model) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_src/train1.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_src/train1.py new file mode 100644 index 000000000000..074f7251aaca --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/command_job_in_pipeline/train_src/train1.py @@ -0,0 +1,49 @@ +import argparse +from pathlib import Path +from uuid import uuid4 +from datetime import datetime +import os + +parser = argparse.ArgumentParser("train") +parser.add_argument("--training_data", type=str, help="Path to training data") +parser.add_argument("--max_epocs", type=int, help="Max # of epocs for the training") +parser.add_argument("--learning_rate", type=float, help="Learning rate") +parser.add_argument("--learning_rate_schedule", type=str, help="Learning rate schedule") +parser.add_argument("--model_output", type=str, help="Path of output model") +parser.add_argument("--reports", type=str, help="Path of reports") + +args = parser.parse_args() + +print ("hello training world...") + +lines = [ + f'Training data path: {args.training_data}', + f'Max epocs: {args.max_epocs}', + f'Learning rate: {args.learning_rate}', + f'Learning rate: {args.learning_rate_schedule}', + f'Model output path: {args.model_output}', + f'Model output path: {args.reports}' +] + +for line in lines: + print(line) + +print("mounted_path files: ") +arr = os.listdir(args.training_data) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.training_data, filename), 'r') as handle: + print (handle.read()) + + +# Do the train and save the trained model as a file into the output folder. +# Here only output a dummy data for demo. +curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") +model = f"This is a dummy model with id: {str(uuid4())} generated at: {curtime}\n" +(Path(args.model_output) / 'model.txt').write_text(model) + +curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") +model = f"This is a dummy report with id: {str(uuid4())} generated at: {curtime}\n" +(Path(args.reports) / 'report.txt').write_text(model) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/component.yml new file mode 100644 index 000000000000..b9ec694c1dd4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/component.yml @@ -0,0 +1,25 @@ +type: command + +name: hello__python__world +display_name: Hello_Python_World +version: 1 + +inputs: + sample_input_data: + type: uri_folder + sample_input_string: + type: string + default: "hello_python_world_default" +outputs: + sample_output_data: + type: uri_folder + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py + --input_data ${{inputs.sample_input_data}} + --input_string ${{inputs.sample_input_string}} + --output_data ${{outputs.sample_output_data}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/data/sample.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/data/sample.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/data/sample.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/pipeline.py new file mode 100644 index 000000000000..f134e874efc7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/pipeline.py @@ -0,0 +1,34 @@ +from azure.ai.ml import dsl, Input +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component( + yaml_file=parent_dir + "/component.yml" + ) + + # 2. Construct pipeline + @dsl.pipeline( + description="Component with inputs and outputs", + ) + def component_with_input_output( + pipeline_sample_input_data, + pipeline_sample_input_string, + ): + hello_python_world_job = basic_func( + sample_input_data=pipeline_sample_input_data, sample_input_string=pipeline_sample_input_string + ) + hello_python_world_job.compute = "cpu-cluster" + return {"pipeline_sample_output_data": hello_python_world_job.outputs.sample_output_data} + + pipeline = component_with_input_output( + Input(type='uri_file', path="https://dprepdata.blob.core.windows.net/demo/Titanic.csv"), + "Hello_Pipeline_World", + ) + pipeline.outputs.pipeline_sample_output_data.mode = "upload" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/pipeline.yml new file mode 100644 index 000000000000..cf921c599151 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/pipeline.yml @@ -0,0 +1,24 @@ +type: pipeline +description: "Component with inputs and outputs" + +inputs: + pipeline_sample_input_data: + path: https://dprepdata.blob.core.windows.net/demo/Titanic.csv + type: uri_file + pipeline_sample_input_string: 'Hello_Pipeline_World' + +outputs: + pipeline_sample_output_data: + mode: upload + +jobs: + hello_python_world_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + inputs: + sample_input_data: ${{parent.inputs.pipeline_sample_input_data}} + # This input has a default value in the component so can skip it. + sample_input_string: ${{parent.inputs.pipeline_sample_input_string}} + outputs: + sample_output_data: ${{parent.outputs.pipeline_sample_output_data}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/src/hello.py new file mode 100644 index 000000000000..c7e6ee07678d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/component_with_input_output/src/hello.py @@ -0,0 +1,33 @@ + +import argparse +import os +from datetime import datetime + +print ("Hello Python World") + +parser = argparse.ArgumentParser() +parser.add_argument("--input_data", type=str) +parser.add_argument("--input_string", type=str) +parser.add_argument("--output_data", type=str) + +args = parser.parse_args() + +print("sample_input_string: %s" % args.input_string) +print("sample_input_data path: %s" % args.input_data) +print("sample_output_data path: %s" % args.output_data) + +print("files in input_data path: ") +arr = os.listdir(args.input_data) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.input_data, filename), 'r') as handle: + print (handle.read()) + +cur_time_str = datetime.now().strftime("%b-%d-%Y-%H-%M-%S") + +print("Writing file: %s" % os.path.join(args.output_data,"file-" + cur_time_str + ".txt")) +with open(os.path.join(args.output_data,"file-" + cur_time_str + ".txt"), "wt") as text_file: + print(f"Logging date time: {cur_time_str}", file=text_file) + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/__init__.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/__init__.py new file mode 100644 index 000000000000..c8ac465152f2 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/__init__.py @@ -0,0 +1,12 @@ +from .input_basic import generate_dsl_pipeline as input_basic +from .input_literal_cross_type import generate_dsl_pipeline as input_literal_cross_type +from .input_literal_meta import generate_dsl_pipeline as input_literal_meta +from .input_path_concatenate import generate_dsl_pipeline as input_path_concatenate +from .input_reason_expression import generate_dsl_pipeline as input_reason_expression +from .input_string_concatenate import generate_dsl_pipeline as input_string_concatenate +from .run_settings_compute import generate_dsl_pipeline as run_settings_compute +from .run_settings_literal import generate_dsl_pipeline as run_settings_literal +from .run_settings_sweep_choice import generate_dsl_pipeline as run_settings_sweep_choice +from .run_settings_sweep_limits import generate_dsl_pipeline as run_settings_sweep_limits +from .run_settings_sweep_literal import generate_dsl_pipeline as run_settings_sweep_literal +from .input_path import generate_dsl_pipeline as input_path diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/component.yml new file mode 100644 index 000000000000..909dd03c7a7b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/component.yml @@ -0,0 +1,54 @@ +$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json +type: command + +name: microsoftsamples_command_component_basic +display_name: CommandComponentBasic +description: This is the basic command component +tags: + tag: tagvalue + owner: sdkteam + +version: 0.0.1 + +inputs: + component_in_number: + description: A number + type: number + default: 10.99 + component_in_integer: + description: A number + type: integer + default: 3 + component_in_string: + description: A string + type: string + default: "Hello World" + component_in_other_string: + description: A string + type: string + default: "Hello World" + component_in_folder: + description: A folder + type: uri_folder + optional: True + component_in_file: + description: A file + type: uri_file + optional: True + +outputs: + component_out_folder: + type: uri_folder + +# Write some output to work around a bug when pipeline node failed to run with empty dataset as input +command: >- + echo Hello World & + echo ${{inputs.component_in_integer}} & + echo ${{inputs.component_in_number}} & + echo ${{inputs.component_in_string}} & + echo ${{inputs.component_in_other_string}} & + [echo ${{inputs.component_in_file}} &] + [echo ${{inputs.component_in_folder}} &] + echo ${{outputs.component_out_folder}} > ${{outputs.component_out_folder}}/sample1.csv + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_basic.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_basic.py new file mode 100644 index 000000000000..813f839fcdc3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_basic.py @@ -0,0 +1,41 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/component.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + job_input_binding = basic_func( + component_in_string=job_in_string, + component_in_number=job_in_number, + component_in_folder=job_in_folder + ) + job_input_binding.distribution = MpiDistribution(process_count_per_instance=1) + + node_output_binding = basic_func(component_in_folder=job_input_binding.outputs.component_out_folder) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_basic.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_basic.yml new file mode 100644 index 000000000000..1a75bed117e4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_basic.yml @@ -0,0 +1,42 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + job_input_binding: + type: command + component: file:./component.yml + inputs: + component_in_string: ${{parent.inputs.job_in_string}} + component_in_number: ${{parent.inputs.job_in_number}} + component_in_folder: ${{parent.inputs.job_in_folder}} + distribution: + type: "mpi" + process_count_per_instance: 1 + + node_output_binding: + type: command + component: file:./component.yml + inputs: + component_in_folder: ${{parent.jobs.job_input_binding.outputs.component_out_folder}} + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_cross_type.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_cross_type.py new file mode 100644 index 000000000000..39dccb8bcc4e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_cross_type.py @@ -0,0 +1,36 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/component.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func( + component_in_string=job_in_number, + ) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_cross_type.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_cross_type.yml new file mode 100644 index 000000000000..11fa071e965b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_cross_type.yml @@ -0,0 +1,30 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world: + type: command + component: file:./component.yml + inputs: + component_in_string: ${{parent.inputs.job_in_number}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_meta.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_meta.py new file mode 100644 index 000000000000..a2c158c4d2aa --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_meta.py @@ -0,0 +1,36 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/component.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func( + component_in_string="${{parent.name}}", + ) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_meta.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_meta.yml new file mode 100644 index 000000000000..f3a4faf09fac --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_meta.yml @@ -0,0 +1,30 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world: + type: command + component: file:./component.yml + inputs: + component_in_string: ${{parent.name}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path.py new file mode 100644 index 000000000000..66b148d4bcd0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path.py @@ -0,0 +1,36 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/component.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func( + component_in_folder=Input(path=job_in_folder, mode="direct"), + ) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path.yml new file mode 100644 index 000000000000..3c8edc886f9d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path.yml @@ -0,0 +1,32 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world: + type: command + component: file:./component.yml + inputs: + component_in_folder: + path: ${{parent.inputs.job_in_folder}} + mode: direct diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path_concatenate.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path_concatenate.py new file mode 100644 index 000000000000..7e9588df19d0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path_concatenate.py @@ -0,0 +1,36 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/component.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func( + component_in_file=f"{job_in_folder}/sample1.csv", + ) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path_concatenate.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path_concatenate.yml new file mode 100644 index 000000000000..f0c03250ce64 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_path_concatenate.yml @@ -0,0 +1,30 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world: + type: command + component: file:./component.yml + inputs: + component_in_file: ${{parent.inputs.job_in_folder}}/sample1.csv diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_reason_expression.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_reason_expression.py new file mode 100644 index 000000000000..195f26a0170b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_reason_expression.py @@ -0,0 +1,37 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/component.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func( + component_in_string=f"{job_in_string}_{job_in_string}", + component_in_file=f"{job_in_folder}/{output_file_name}", + ) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_reason_expression.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_reason_expression.yml new file mode 100644 index 000000000000..303f5957c065 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_reason_expression.yml @@ -0,0 +1,34 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world: + type: command + component: file:./component.yml + inputs: + component_in_string: ${{parent.inputs.job_in_string}}_${{parent.inputs.job_in_string}} + component_in_file: ${{parent.inputs.job_in_folder}}/${{parent.inputs.output_file_name}} +# # not planned +# component_in_number: ${{parent.inputs.job_in_number}} + 1 +# component_in_integer: ${{parent.inputs.job_in_number}} + ${{parent.inputs.job_in_number}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_string_concatenate.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_string_concatenate.py new file mode 100644 index 000000000000..dcc84f72df3e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_string_concatenate.py @@ -0,0 +1,36 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/component.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func( + component_in_string=f"extra_{job_in_string}_extra", + ) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_string_concatenate.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_string_concatenate.yml new file mode 100644 index 000000000000..f29db3dda3a1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/input_string_concatenate.yml @@ -0,0 +1,30 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world: + type: command + component: file:./component.yml + inputs: + component_in_string: extra_${{parent.inputs.job_in_string}}_extra diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_compute.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_compute.py new file mode 100644 index 000000000000..94021c895be0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_compute.py @@ -0,0 +1,35 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/component.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func() + hello_world.compute = target_compute + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_compute.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_compute.yml new file mode 100644 index 000000000000..9cddc30787b4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_compute.yml @@ -0,0 +1,29 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world: + type: command + component: file:./component.yml + compute: ${{parent.inputs.target_compute}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_literal.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_literal.py new file mode 100644 index 000000000000..f18ed2fd65b4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_literal.py @@ -0,0 +1,35 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/component.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func() + hello_world.distribution = MpiDistribution(process_count_per_instance=job_in_number) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_literal.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_literal.yml new file mode 100644 index 000000000000..5c305184f928 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_literal.yml @@ -0,0 +1,31 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world: + type: command + component: file:./component.yml + distribution: + type: "mpi" + process_count_per_instance: ${{parent.inputs.job_in_number}} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_choice.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_choice.py new file mode 100644 index 000000000000..6b3bb6b19e75 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_choice.py @@ -0,0 +1,55 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +from azure.ai.ml.entities._job.sweep.search_space import Choice + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/../../components/helloworld_component_for_sweep.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func( + batch_size=Choice([25, 35, job_in_number]), + data_folder=job_in_folder, + first_layer_neurons=32, + second_layer_neurons=32, + third_layer_neurons=5, + epochs=1, + momentum=10, + weight_decay=0.01, + learning_rate=0.001, + f1=0.5, + f2=15, + random_seed=42 + ) + hello_world_sweep = hello_world.sweep( + primary_metric="accuracy", + max_total_trials=1, + goal="maximize", + sampling_algorithm="random", + ) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_choice.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_choice.yml new file mode 100644 index 000000000000..50ee6b8f3558 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_choice.yml @@ -0,0 +1,51 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world_sweep: + type: sweep + search_space: + batch_size: + type: choice + values: [25, 35, "${{parent.inputs.job_in_number}}"] + inputs: + data_folder: ${{parent.inputs.job_in_folder}} + first_layer_neurons: 32 + second_layer_neurons: 32 + third_layer_neurons: 5 + epochs: 1 + momentum: 10 + weight_decay: 0.01 + learning_rate: 0.001 + f1: 0.5 + f2: 15 + random_seed: 42 + limits: + max_total_trials: 1 + sampling_algorithm: random + objective: + goal: maximize + primary_metric: "accuracy" + + trial: file:../../components/helloworld_component_for_sweep.yml diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_limits.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_limits.py new file mode 100644 index 000000000000..18822dc61c8a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_limits.py @@ -0,0 +1,55 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +from azure.ai.ml.entities._job.sweep.search_space import Choice + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/../../components/helloworld_component_for_sweep.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "hello", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func( + batch_size=Choice([25, 35]), + data_folder=job_in_folder, + first_layer_neurons=32, + second_layer_neurons=32, + third_layer_neurons=5, + epochs=1, + momentum=10, + weight_decay=0.01, + learning_rate=0.001, + f1=0.5, + f2=15, + random_seed=42 + ) + hello_world_sweep = hello_world.sweep( + primary_metric="accuracy", + max_total_trials=job_in_number, + goal="maximize", + sampling_algorithm="random", + ) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_limits.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_limits.yml new file mode 100644 index 000000000000..5172d9606106 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_limits.yml @@ -0,0 +1,51 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "hello" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world_sweep: + type: sweep + search_space: + batch_size: + type: choice + values: [25, 35] + inputs: + data_folder: ${{parent.inputs.job_in_folder}} + first_layer_neurons: 32 + second_layer_neurons: 32 + third_layer_neurons: 5 + epochs: 1 + momentum: 10 + weight_decay: 0.01 + learning_rate: 0.001 + f1: 0.5 + f2: 15 + random_seed: 42 + limits: + max_total_trials: ${{parent.inputs.job_in_number}} + sampling_algorithm: random + objective: + goal: maximize + primary_metric: "accuracy" + + trial: file:../../components/helloworld_component_for_sweep.yml diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_literal.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_literal.py new file mode 100644 index 000000000000..af85efe6b08f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_literal.py @@ -0,0 +1,55 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input, MpiDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +from azure.ai.ml.entities._job.sweep.search_space import Choice + +base_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=base_dir + "/../../components/helloworld_component_for_sweep.yml") + uri_file_input = Input(type='uri_file', path="../../data/sample1.csv") + uri_folder_input = Input(type='uri_folder', path="../../data") + + # 2. Construct pipeline + @dsl.pipeline( + description="The hello world pipeline job with data binding", + compute="cpu-cluster", + tags={"owner": "sdkteam", "tag": "tagvalue"}, + ) + def pipeline_with_data_binding( + job_in_folder, + job_in_file, + job_in_number: int = 1, + job_in_string: str = "accuracy", + target_compute: str = "cpu-cluster", + output_file_name: str = "sample1.csv", + ): + hello_world = basic_func( + batch_size=Choice([25, 35]), + data_folder=job_in_folder, + first_layer_neurons=32, + second_layer_neurons=32, + third_layer_neurons=5, + epochs=job_in_number, + momentum=10, + weight_decay=0.01, + learning_rate=0.001, + f1=0.5, + f2=15, + random_seed=42 + ) + hello_world_sweep = hello_world.sweep( + primary_metric=job_in_string, + max_total_trials=1, + goal="maximize", + sampling_algorithm="random", + ) + + pipeline_obj = pipeline_with_data_binding(job_in_folder=uri_folder_input, job_in_file=uri_file_input) + return pipeline_obj diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_literal.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_literal.yml new file mode 100644 index 000000000000..bc655ee1eb29 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_literal.yml @@ -0,0 +1,52 @@ +type: pipeline + +display_name: pipeline_with_data_binding +description: The hello world pipeline job with data binding +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 1 + job_in_string: "accuracy" + job_in_folder: + path: ../../data + type: uri_folder + mode: ro_mount + job_in_file: + path: ../../data/sample1.csv + type: uri_file + mode: ro_mount + target_compute: "cpu-cluster" + output_file_name: "sample1.csv" + +jobs: + hello_world_sweep: + type: sweep + search_space: + batch_size: + type: choice + values: [25, 35] # not supported for now: "${{parent.inputs.job_in_number}}" + inputs: + data_folder: ${{parent.inputs.job_in_folder}} + first_layer_neurons: 32 + second_layer_neurons: 32 + third_layer_neurons: 5 + epochs: ${{parent.inputs.job_in_number}} + momentum: 10 + weight_decay: 0.01 + learning_rate: 0.001 + f1: 0.5 + f2: 15 + random_seed: 42 + limits: + max_total_trials: 1 # ${{parent.inputs.job_in_number}} + sampling_algorithm: random + objective: + goal: maximize + primary_metric: ${{parent.inputs.job_in_string}} + + trial: file:../../components/helloworld_component_for_sweep.yml + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/component.yml new file mode 100644 index 000000000000..eb668c4052e8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/component.yml @@ -0,0 +1,28 @@ + +type: command + + +name: hello__python__world +display_name: Hello_Python_World +version: 1 + +inputs: + sample_input_data: + type: uri_folder + + sample_input_string: + type: string + default: "hello_python_world" +outputs: + sample_output_data: + type: uri_folder + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py + --input_data ${{inputs.sample_input_data}} + --input_string ${{inputs.sample_input_string}} + --output_data ${{outputs.sample_output_data}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/data.yml new file mode 100644 index 000000000000..5637a5227b5e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/data.yml @@ -0,0 +1,4 @@ +name: sampledata1235 +version: 2 +description: sample dataset +path: ./data diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/data/sample.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/data/sample.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/data/sample.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/pipeline.py new file mode 100644 index 000000000000..732cb537cc12 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/pipeline.py @@ -0,0 +1,54 @@ +from azure.core.exceptions import ResourceNotFoundError +from azure.ai.ml import dsl, MLClient, Input +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Data +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline(client: MLClient) -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=parent_dir + "/component.yml") + + try: + dataset = client.data.get(name="sampledata1235", version="2") + except ResourceNotFoundError: + # Create the data version if not exits + data = Data.load(path=parent_dir + "/data.yml") + dataset = client.data.create_or_update(data) + + data_input = Input(type='uri_file', path='azureml:sampledata1235:2') + mltable_input = Input(type='mltable', path='azureml:sampledata1235:2', mode='eval_mount') + + # 2. Construct pipeline + @dsl.pipeline( + description="Example of using data from a Dataset as pipeline input", + ) + def dataset_input( + pipeline_sample_input_data, + pipeline_sample_input_string, + ): + hello_python_world_job = basic_func( + sample_input_data=pipeline_sample_input_data, + sample_input_string=pipeline_sample_input_string, + ) + hello_python_world_job.compute = "cpu-cluster" + + mltable_job = basic_func( + sample_input_data=mltable_input, + sample_input_string=pipeline_sample_input_string, + ) + mltable_job.compute = "cpu-cluster" + + return { + "pipeline_sample_output_data": hello_python_world_job.outputs.sample_output_data, + } + + pipeline = dataset_input( + data_input, + "Hello_Pipeline_World" + ) + pipeline.outputs.pipeline_sample_output_data.mode = "upload" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/pipeline.yml new file mode 100644 index 000000000000..b0c43f0061af --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/pipeline.yml @@ -0,0 +1,35 @@ +type: pipeline +description: "Example of using data from a Dataset as pipeline input" +inputs: + pipeline_sample_input_data: + path: azureml:sampledata1235:2 + type: uri_file + pipeline_sample_input_string: 'Hello_Pipeline_World' + +outputs: + pipeline_sample_output_data: + mode: upload + +jobs: + hello_python_world_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + inputs: + sample_input_data: ${{parent.inputs.pipeline_sample_input_data}} + sample_input_string: ${{parent.inputs.pipeline_sample_input_string}} + outputs: + sample_output_data: ${{parent.outputs.pipeline_sample_output_data}} + + mltable_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + inputs: + sample_input_data: + path: azureml:sampledata1235:2 + type: mltable + mode: eval_mount + sample_input_string: ${{parent.inputs.pipeline_sample_input_string}} + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/src/hello.py new file mode 100644 index 000000000000..c7e6ee07678d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/dataset_input/src/hello.py @@ -0,0 +1,33 @@ + +import argparse +import os +from datetime import datetime + +print ("Hello Python World") + +parser = argparse.ArgumentParser() +parser.add_argument("--input_data", type=str) +parser.add_argument("--input_string", type=str) +parser.add_argument("--output_data", type=str) + +args = parser.parse_args() + +print("sample_input_string: %s" % args.input_string) +print("sample_input_data path: %s" % args.input_data) +print("sample_output_data path: %s" % args.output_data) + +print("files in input_data path: ") +arr = os.listdir(args.input_data) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.input_data, filename), 'r') as handle: + print (handle.read()) + +cur_time_str = datetime.now().strftime("%b-%d-%Y-%H-%M-%S") + +print("Writing file: %s" % os.path.join(args.output_data,"file-" + cur_time_str + ".txt")) +with open(os.path.join(args.output_data,"file-" + cur_time_str + ".txt"), "wt") as text_file: + print(f"Logging date time: {cur_time_str}", file=text_file) + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/component.yml new file mode 100644 index 000000000000..e0ec96ed6a04 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/component.yml @@ -0,0 +1,25 @@ +type: command + +name: hello__python__world +display_name: Hello_Python_World +version: 1 + +inputs: + sample_input_data: + type: uri_file + sample_input_string: + type: string + default: "hello_python_world" +outputs: + sample_output_data: + type: uri_file + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py + --input_data ${{inputs.sample_input_data}} + --input_string ${{inputs.sample_input_string}} + --output_data ${{outputs.sample_output_data}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/data.yml new file mode 100644 index 000000000000..85e927b4a66c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/data.yml @@ -0,0 +1,3 @@ +name: sampledata1234 +description: sample dataset +local_path: ./data diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/data/sample.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/data/sample.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/data/sample.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/pipeline.py new file mode 100644 index 000000000000..f1e37cf838ff --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/pipeline.py @@ -0,0 +1,41 @@ +from azure.ai.ml import dsl, Input +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component( + yaml_file=parent_dir + "/component.yml" + ) + + # 3. Construct pipeline + @dsl.pipeline( + compute="cpu-cluster", + description="Example of using data file from a Workspace Datastore as pipeline input", + ) + def datastore_datapath_uri_file( + pipeline_sample_input_data, + pipeline_sample_input_string, + ): + hello_python_world_job = basic_func( + sample_input_data=pipeline_sample_input_data, + sample_input_string=pipeline_sample_input_string, + ) + return { + "pipeline_sample_output_data": hello_python_world_job.outputs.sample_output_data, + } + + pipeline = datastore_datapath_uri_file( + Input( + type="uri_file", + path="azureml://datastores/workspaceblobstore/paths/LocalUpload" + "/cec6841f346975cde1ee7d5289c5559f/data/sample.csv", + mode="download" + ), + "Hello_Pipeline_World") + pipeline.outputs.pipeline_sample_output_data.mode = "upload" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/pipeline.yml new file mode 100644 index 000000000000..078d253b88ca --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/pipeline.yml @@ -0,0 +1,25 @@ +type: pipeline +description: "Example of using data file from a Workspace Datastore as pipeline input" +inputs: + pipeline_sample_input_data: + path: azureml://datastores/workspaceblobstore/paths/LocalUpload/cec6841f346975cde1ee7d5289c5559f/data/sample.csv + type: uri_file + mode: download + pipeline_sample_input_string: 'Hello_Pipeline_World' + +outputs: + pipeline_sample_output_data: + mode: upload + +compute: azureml:cpu-cluster + +jobs: + hello_python_world_job: + type: command + component: file:./component.yml + inputs: + sample_input_data: ${{parent.inputs.pipeline_sample_input_data}} + sample_input_string: ${{parent.inputs.pipeline_sample_input_string}} + outputs: + sample_output_data: ${{parent.outputs.pipeline_sample_output_data}} + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/src/hello.py new file mode 100644 index 000000000000..fd0c3c3aeb6f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_file/src/hello.py @@ -0,0 +1,40 @@ + +import argparse +import os +from datetime import datetime +from pathlib import Path + +print ("Hello Python World") + +parser = argparse.ArgumentParser() +parser.add_argument("--input_data", type=str) +parser.add_argument("--input_string", type=str) +parser.add_argument("--output_data", type=str) + +args = parser.parse_args() + +print("sample_input_string: %s" % args.input_string) +print("sample_input_data path: %s" % args.input_data) +print("sample_output_data path: %s" % args.output_data) + +fpath = args.input_data +if not os.path.isdir(fpath): + fpath = Path(fpath).parent.absolute() + +print("files in input_data: ") +arr = os.listdir(fpath) +print(arr) + +for filename in arr: + print("########### Reading file: %s ..." % filename) + fp = os.path.join(fpath, filename) + if os.path.isfile(fp): + with open(fp, 'r') as handle: + print(handle.read()) + +if args.output_data: + cur_time_str = datetime.now().strftime("%b-%d-%Y-%H-%M-%S") + print("########### Writing file: %s" % os.path.join(args.output_data,"file-" + cur_time_str + ".txt")) + with open(os.path.join(args.output_data, "file-" + cur_time_str + ".txt"), "wt") as text_file: + print(f"Logging date time: {cur_time_str}", file=text_file) + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/component.yml new file mode 100644 index 000000000000..12256e36bf75 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/component.yml @@ -0,0 +1,25 @@ +type: command + +name: hello__python__world +display_name: Hello_Python_World +version: 1 + +inputs: + sample_input_data: + type: uri_folder + sample_input_string: + type: string + default: "hello_python_world" +outputs: + sample_output_data: + type: uri_folder + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py + --input_data ${{inputs.sample_input_data}} + --input_string ${{inputs.sample_input_string}} + --output_data ${{outputs.sample_output_data}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/data.yml new file mode 100644 index 000000000000..85e927b4a66c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/data.yml @@ -0,0 +1,3 @@ +name: sampledata1234 +description: sample dataset +local_path: ./data diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/data/sample.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/data/sample.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/data/sample.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/pipeline.py new file mode 100644 index 000000000000..757929e9a81c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/pipeline.py @@ -0,0 +1,42 @@ +from azure.ai.ml import dsl, Input +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component( + yaml_file=parent_dir + "/component.yml" + ) + + # 2. Construct pipeline + @dsl.pipeline( + compute="cpu-cluster", + description="Example of using data folder from a Workspace Datastore as pipeline input", + ) + def datastore_datapath_uri_folder( + pipeline_sample_input_data, + pipeline_sample_input_string, + ): + hello_python_world_job = basic_func( + sample_input_data=pipeline_sample_input_data, + sample_input_string=pipeline_sample_input_string, + ) + return { + "pipeline_sample_output_data": hello_python_world_job.outputs.sample_output_data, + } + + pipeline = datastore_datapath_uri_folder( + Input( + type="uri_folder", + path="azureml://datastores/workspaceblobstore/paths/LocalUpload" + "/cec6841f346975cde1ee7d5289c5559f/data", + mode="download" + ), + "Hello_Pipeline_World") + pipeline.inputs.pipeline_sample_input_data.mode = "download" + pipeline.outputs.pipeline_sample_output_data.mode = "upload" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/pipeline.yml new file mode 100644 index 000000000000..9c858c654513 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/pipeline.yml @@ -0,0 +1,25 @@ +type: pipeline +description: "Example of using data folder from a Workspace Datastore as pipeline input" +inputs: + pipeline_sample_input_data: + path: azureml://datastores/workspaceblobstore/paths/LocalUpload/cec6841f346975cde1ee7d5289c5559f/data + type: uri_folder + mode: download + pipeline_sample_input_string: 'Hello_Pipeline_World' + +outputs: + pipeline_sample_output_data: + mode: upload + +compute: azureml:cpu-cluster + +jobs: + hello_python_world_job: + type: command + component: file:./component.yml + inputs: + sample_input_data: ${{parent.inputs.pipeline_sample_input_data}} + sample_input_string: ${{parent.inputs.pipeline_sample_input_string}} + outputs: + sample_output_data: ${{parent.outputs.pipeline_sample_output_data}} + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/src/hello.py new file mode 100644 index 000000000000..c7e6ee07678d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/datastore_datapath_uri_folder/src/hello.py @@ -0,0 +1,33 @@ + +import argparse +import os +from datetime import datetime + +print ("Hello Python World") + +parser = argparse.ArgumentParser() +parser.add_argument("--input_data", type=str) +parser.add_argument("--input_string", type=str) +parser.add_argument("--output_data", type=str) + +args = parser.parse_args() + +print("sample_input_string: %s" % args.input_string) +print("sample_input_data path: %s" % args.input_data) +print("sample_output_data path: %s" % args.output_data) + +print("files in input_data path: ") +arr = os.listdir(args.input_data) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.input_data, filename), 'r') as handle: + print (handle.read()) + +cur_time_str = datetime.now().strftime("%b-%d-%Y-%H-%M-%S") + +print("Writing file: %s" % os.path.join(args.output_data,"file-" + cur_time_str + ".txt")) +with open(os.path.join(args.output_data,"file-" + cur_time_str + ".txt"), "wt") as text_file: + print(f"Logging date time: {cur_time_str}", file=text_file) + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/data/sample1.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/data/sample1.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/data/sample1.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/eval_src/eval.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/eval_src/eval.py new file mode 100644 index 000000000000..43b415e161cc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/eval_src/eval.py @@ -0,0 +1,25 @@ +import argparse +from pathlib import Path +from datetime import datetime + +parser = argparse.ArgumentParser("score") +parser.add_argument("--scoring_result", type=str, help="Path of scoring result") +parser.add_argument("--eval_output", type=str, help="Path of output evaluation result") + +args = parser.parse_args() + +print ("hello evaluation world...") + +lines = [ + f'Scoring result path: {args.scoring_result}', + f'Evaluation output path: {args.eval_output}', +] + +for line in lines: + print(line) + +# Evaluate the incoming scoring result and output evaluation result. +# Here only output a dummy file for demo. +curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") +eval_msg = f"Eval done at {curtime}\n" +(Path(args.eval_output) / 'eval_result.txt').write_text(eval_msg) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline.py new file mode 100644 index 000000000000..53148429910c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline.py @@ -0,0 +1,95 @@ +from pathlib import Path + +from azure.ai.ml import dsl, Input +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import CommandComponent + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + environment = "AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5" + + # 1. Construct pipeline + @dsl.pipeline( + compute="cpu-cluster", + description="E2E dummy train-score-eval pipeline with components defined inline in pipeline job", + ) + def e2e_inline_components( + pipeline_job_training_input, + pipeline_job_test_input, + pipeline_job_training_max_epocs, + pipeline_job_training_learning_rate, + pipeline_job_learning_rate_schedule, + ): + # create anonymous component here to avoid code conflict + train_func = CommandComponent( + inputs=dict( + training_data=dict(type="path"), + max_epocs=dict(type="integer"), + learning_rate=dict(type="number", default=0.01), + learning_rate_schedule=dict(type="string", default="time-based") + ), + outputs=dict( + model_output=dict(type="path") + ), + code=parent_dir + "/train_src", + environment=environment, + command="python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} " + "--learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{" + "inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}} " + ) + train_job = train_func( + training_data=pipeline_job_training_input, + max_epocs=pipeline_job_training_max_epocs, + learning_rate=pipeline_job_training_learning_rate, + learning_rate_schedule=pipeline_job_learning_rate_schedule, + ) + + score_func = CommandComponent( + inputs=dict( + model_input=dict(type="path"), + test_data=dict(type="path"), + ), + outputs=dict( + score_output=dict(type="path") + ), + code=parent_dir + "/score_src", + environment=environment, + command="python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} " + "--score_output ${{outputs.score_output}} " + ) + score_job = score_func( + model_input=train_job.outputs.model_output, + test_data=pipeline_job_test_input, + ) + + eval_func = CommandComponent( + inputs=dict( + scoring_result=dict(type="path"), + ), + outputs=dict( + eval_output=dict(type="path") + ), + code=parent_dir + "/eval_src", + environment=environment, + command="python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}" + ) + evaluate_job = eval_func(scoring_result=score_job.outputs.score_output) + return { + "pipeline_job_trained_model": train_job.outputs.model_output, + "pipeline_job_scored_data": score_job.outputs.score_output, + "pipeline_job_evaluation_report": evaluate_job.outputs.eval_output, + } + + pipeline = e2e_inline_components( + Input(path=parent_dir + "/data/"), + Input(path=parent_dir + "/data/"), + 20, + 1.8, + "time-based", + ) + pipeline.outputs.pipeline_job_trained_model.mode = "rw_mount" + pipeline.outputs.pipeline_job_scored_data.mode = "rw_mount" + pipeline.outputs.pipeline_job_evaluation_report.mode = "rw_mount" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline.yml new file mode 100644 index 000000000000..68a5dc17db04 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline.yml @@ -0,0 +1,115 @@ +type: pipeline +description: "E2E dummy train-score-eval pipeline with components defined inline in pipeline job" + +inputs: + pipeline_job_training_input: + path: ./data + pipeline_job_test_input: + path: ./data + pipeline_job_training_max_epocs: 20 + pipeline_job_training_learning_rate: 1.8 + pipeline_job_learning_rate_schedule: 'time-based' + +outputs: + pipeline_job_trained_model: + mode: rw_mount + pipeline_job_scored_data: + mode: rw_mount + pipeline_job_evaluation_report: + mode: rw_mount + +#settings: +# datastore: azureml:workspaceblobstore + +compute: azureml:cpu-cluster + +jobs: + train_job: + type: command + component: + name: Train + version: 10 + type: command + inputs: + training_data: + type: uri_folder + max_epocs: + type: integer + learning_rate: + type: number + default: 0.01 + learning_rate_schedule: + type: string + default: time-based + outputs: + model_output: + type: uri_folder + code: ./train_src + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + command: >- + python train.py + --training_data ${{inputs.training_data}} + --max_epocs ${{inputs.max_epocs}} + --learning_rate ${{inputs.learning_rate}} + --learning_rate_schedule ${{inputs.learning_rate_schedule}} + --model_output ${{outputs.model_output}} + + inputs: + training_data: ${{parent.inputs.pipeline_job_training_input}} + max_epocs: ${{parent.inputs.pipeline_job_training_max_epocs}} + learning_rate: ${{parent.inputs.pipeline_job_training_learning_rate}} + learning_rate_schedule: ${{parent.inputs.pipeline_job_learning_rate_schedule}} + outputs: + model_output: ${{parent.outputs.pipeline_job_trained_model}} + + score_job: + type: command + component: + name: Score + version: 10 + type: command + inputs: + model_input: + type: uri_folder + test_data: + type: uri_folder + outputs: + score_output: + type: uri_folder + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + code: ./score_src + command: >- + python score.py + --model_input ${{inputs.model_input}} + --test_data ${{inputs.test_data}} + --score_output ${{outputs.score_output}} + + inputs: + model_input: ${{parent.jobs.train_job.outputs.model_output}} + test_data: ${{parent.inputs.pipeline_job_test_input}} + outputs: + score_output: ${{parent.outputs.pipeline_job_scored_data}} + + evaluate_job: + type: command + component: + name: Eval + version: 10 + type: command + inputs: + scoring_result: + type: uri_folder + outputs: + eval_output: + type: uri_folder + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + code: ./eval_src + command: >- + python eval.py + --scoring_result ${{inputs.scoring_result}} + --eval_output ${{outputs.eval_output}} + + inputs: + scoring_result: ${{parent.jobs.score_job.outputs.score_output}} + outputs: + eval_output: ${{parent.outputs.pipeline_job_evaluation_report}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline_dsl_component.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline_dsl_component.py new file mode 100644 index 000000000000..2ab67061e6cb --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/pipeline_dsl_component.py @@ -0,0 +1,147 @@ +from pathlib import Path +from uuid import uuid4 +from datetime import datetime +import os + +from mldesigner import command_component + +from azure.ai.ml import dsl, Input, Output +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob + + +# We propose using command_component to support inline component in dsl.pipeline. +# Which allows user define a pipeline job without YAML. +# TODO: add this to test when we supports command_component + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Construct components + environment = "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5" + + @command_component( + display_name="my-train-job", + environment=environment, + ) + def train_func( + training_data: Input, + model_output: Output = None, + max_epocs=20, + learning_rate=1.8, + learning_rate_schedule="time-based", + ): + """train component""" + print("hello training world...") + + lines = [ + f'Training data path: {training_data}', + f'Max epocs: {max_epocs}', + f'Learning rate: {learning_rate}', + f'Learning rate: {learning_rate_schedule}', + f'Model output path: {model_output}', + ] + + for line in lines: + print(line) + + print("mounted_path files: ") + arr = os.listdir(training_data) + print(arr) + + for filename in arr: + print("reading file: %s ..." % filename) + with open(os.path.join(training_data, filename), 'r') as handle: + print(handle.read()) + + # Do the train and save the trained model as a file into the output folder. + # Here only output a dummy data for demo. + curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") + model = f"This is a dummy model with id: {str(uuid4())} generated at: {curtime}\n" + (Path(model_output) / 'model.txt').write_text(model) + + @command_component( + display_name="my-score-job", + environment=environment, + ) + def score_func(model_input: Input, test_data: Input, score_output: Output = None): + """score component""" + print("hello scoring world...") + + lines = [ + f'Model path: {model_input}', + f'Test data path: {test_data}', + f'Scoring output path: {score_output}', + ] + + for line in lines: + print(line) + + # Load the model from input port + # Here only print the model as text since it is a dummy one + model = (Path(model_input) / 'model.txt').read_text() + print('Model: ', model) + + # Do scoring with the input model + # Here only print text to output file as demo + (Path(score_output) / 'score.txt').write_text('Scored with the following mode:\n{}'.format(model)) + + @command_component( + display_name="my-evaluate-job", + environment=environment, + ) + def eval_func(scoring_result: Input, eval_output: Output = None): + """eval component""" + print("hello evaluation world...") + + lines = [ + f'Scoring result path: {scoring_result}', + f'Evaluation output path: {eval_output}', + ] + + for line in lines: + print(line) + + # Evaluate the incoming scoring result and output evaluation result. + # Here only output a dummy file for demo. + curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") + eval_msg = f"Eval done at {curtime}\n" + (Path(eval_output) / 'eval_result.txt').write_text(eval_msg) + + # 2. Construct pipeline + @dsl.pipeline( + compute="cpu-cluster", + description="E2E dummy train-score-eval pipeline with components defined inline in pipeline job", + ) + def sample_pipeline( + pipeline_job_training_input, + pipeline_job_test_input, + pipeline_job_training_max_epocs, + pipeline_job_training_learning_rate, + pipeline_job_learning_rate_schedule, + ): + train_job = train_func( + training_data=pipeline_job_training_input, + max_epocs=pipeline_job_training_max_epocs, + learning_rate=pipeline_job_training_learning_rate, + learning_rate_schedule=pipeline_job_learning_rate_schedule, + ) + score_job = score_func( + model_input=train_job.outputs.model_output, + test_data=pipeline_job_test_input, + ) + evaluate_job = eval_func(scoring_result=score_job.outputs.score_output) + return { + "pipeline_job_trained_model": train_job.outputs.model_output, + "pipeline_job_scored_data": score_job.outputs.score_output, + "pipeline_job_evaluation_report": evaluate_job.outputs.eval_output, + } + + pipeline = sample_pipeline( + Input(path="tests/test_configs/pipeline_samples/1c_e2e_inline_components/data/"), + Input(path="tests/test_configs/pipeline_samples/1c_e2e_inline_components/data/"), + 20, + 1.8, + "time-based", + ) + + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/score_src/score.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/score_src/score.py new file mode 100644 index 000000000000..bdce02c7ef6a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/score_src/score.py @@ -0,0 +1,29 @@ +import argparse +from pathlib import Path + +parser = argparse.ArgumentParser("score") +parser.add_argument("--model_input", type=str, help="Path of input model") +parser.add_argument("--test_data", type=str, help="Path to test data") +parser.add_argument("--score_output", type=str, help="Path of scoring output") + +args = parser.parse_args() + +print ("hello scoring world...") + +lines = [ + f'Model path: {args.model_input}', + f'Test data path: {args.test_data}', + f'Scoring output path: {args.score_output}', +] + +for line in lines: + print(line) + +# Load the model from input port +# Here only print the model as text since it is a dummy one +model = (Path(args.model_input) / 'model.txt').read_text() +print('Model: ', model) + +# Do scoring with the input model +# Here only print text to output file as demo +(Path(args.score_output) / 'score.txt').write_text('Scored with the following mode:\n{}'.format(model)) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/train_src/train.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/train_src/train.py new file mode 100644 index 000000000000..b7e393067306 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_inline_components/train_src/train.py @@ -0,0 +1,43 @@ +import argparse +from pathlib import Path +from uuid import uuid4 +from datetime import datetime +import os + +parser = argparse.ArgumentParser("train") +parser.add_argument("--training_data", type=str, help="Path to training data") +parser.add_argument("--max_epocs", type=int, help="Max # of epocs for the training") +parser.add_argument("--learning_rate", type=float, help="Learning rate") +parser.add_argument("--learning_rate_schedule", type=str, help="Learning rate schedule") +parser.add_argument("--model_output", type=str, help="Path of output model") + +args = parser.parse_args() + +print ("hello training world...") + +lines = [ + f'Training data path: {args.training_data}', + f'Max epocs: {args.max_epocs}', + f'Learning rate: {args.learning_rate}', + f'Learning rate: {args.learning_rate_schedule}', + f'Model output path: {args.model_output}', +] + +for line in lines: + print(line) + +print("mounted_path files: ") +arr = os.listdir(args.training_data) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.training_data, filename), 'r') as handle: + print (handle.read()) + + +# Do the train and save the trained model as a file into the output folder. +# Here only output a dummy data for demo. +curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") +model = f"This is a dummy model with id: {str(uuid4())} generated at: {curtime}\n" +(Path(args.model_output) / 'model.txt').write_text(model) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/data.yml new file mode 100644 index 000000000000..cb700d004924 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/data.yml @@ -0,0 +1,7 @@ +$schema: https://azuremlsdk2.blob.core.windows.net/latest/asset.schema.json +name: sampledata1 +version: 3 +description: sample dataset +datastore: azureml:workspaceblobstore +local_path: ./data +path: /sample/data/path diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/data/sample1.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/data/sample1.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/data/sample1.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/eval.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/eval.yml new file mode 100644 index 000000000000..ce116e773d43 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/eval.yml @@ -0,0 +1,16 @@ +name: eval +version: 10 +display_name: Eval +type: command +inputs: + scoring_result: + type: uri_folder +outputs: + eval_output: + type: uri_folder +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 +code: ./eval_src +command: >- + python eval.py + --scoring_result ${{inputs.scoring_result}} + --eval_output ${{outputs.eval_output}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/eval_src/eval.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/eval_src/eval.py new file mode 100644 index 000000000000..43b415e161cc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/eval_src/eval.py @@ -0,0 +1,25 @@ +import argparse +from pathlib import Path +from datetime import datetime + +parser = argparse.ArgumentParser("score") +parser.add_argument("--scoring_result", type=str, help="Path of scoring result") +parser.add_argument("--eval_output", type=str, help="Path of output evaluation result") + +args = parser.parse_args() + +print ("hello evaluation world...") + +lines = [ + f'Scoring result path: {args.scoring_result}', + f'Evaluation output path: {args.eval_output}', +] + +for line in lines: + print(line) + +# Evaluate the incoming scoring result and output evaluation result. +# Here only output a dummy file for demo. +curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") +eval_msg = f"Eval done at {curtime}\n" +(Path(args.eval_output) / 'eval_result.txt').write_text(eval_msg) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/pipeline.py new file mode 100644 index 000000000000..80ffae6cd163 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/pipeline.py @@ -0,0 +1,58 @@ +from azure.ai.ml import dsl, Input +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + train_func = load_component( + yaml_file=parent_dir + "/train.yml" + ) + score_func = load_component( + yaml_file=parent_dir + "/score.yml" + ) + eval_func = load_component(yaml_file=parent_dir + "/eval.yml") + + # 2. Construct pipeline + @dsl.pipeline( + compute="cpu-cluster", + description="Dummy train-score-eval pipeline with local components", + ) + def e2e_local_components( + pipeline_job_training_input, + pipeline_job_training_max_epocs, + pipeline_job_training_learning_rate, + pipeline_job_learning_rate_schedule, + ): + train_job = train_func( + training_data=pipeline_job_training_input, + max_epocs=pipeline_job_training_max_epocs, + learning_rate=pipeline_job_training_learning_rate, + learning_rate_schedule=pipeline_job_learning_rate_schedule, + ) + train_job.compute = "cpu-cluster" + score_job = score_func( + model_input=train_job.outputs.model_output, + test_data=Input(path=parent_dir + "/data/"), + ) + score_job.outputs.score_output.mode = "upload" + score_job.compute = "cpu-cluster" + evaluate_job = eval_func(scoring_result=score_job.outputs.score_output) + evaluate_job.compute = "cpu-cluster" + return { + "pipeline_job_trained_model": train_job.outputs.model_output, + "pipeline_job_evaluation_report": evaluate_job.outputs.eval_output, + } + + pipeline = e2e_local_components( + Input(path=parent_dir + "/data/"), + 20, + 1.8, + "time-based", + ) + pipeline.outputs.pipeline_job_trained_model.mode = "upload" + # pipeline.outputs.pipeline_job_evaluation_report.mode = "upload" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/pipeline.yml new file mode 100644 index 000000000000..d2840af9c380 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/pipeline.yml @@ -0,0 +1,61 @@ + +type: pipeline + +description: "Dummy train-score-eval pipeline with local components" +display_name: "e2e_registered_components" + +inputs: + pipeline_job_training_input: + path: ./data +# pipeline_job_test_input: +# path: ./data + pipeline_job_training_max_epocs: 20 + pipeline_job_training_learning_rate: 1.8 + pipeline_job_learning_rate_schedule: 'time-based' + +outputs: + pipeline_job_trained_model: + mode: upload +# pipeline_job_scored_data: +# mode: upload + pipeline_job_evaluation_report: +# mode: upload + +#settings: +# datastore: azureml:workspaceblobstore + +compute: azureml:cpu-cluster + +jobs: + train_job: + type: command + compute: azureml:cpu-cluster + component: file:./train.yml + inputs: + training_data: ${{parent.inputs.pipeline_job_training_input}} + max_epocs: ${{parent.inputs.pipeline_job_training_max_epocs}} + learning_rate: ${{parent.inputs.pipeline_job_training_learning_rate}} + learning_rate_schedule: ${{parent.inputs.pipeline_job_learning_rate_schedule}} + outputs: + model_output: ${{parent.outputs.pipeline_job_trained_model}} + + score_job: + type: command + component: file:./score.yml + compute: azureml:cpu-cluster + inputs: + model_input: ${{parent.jobs.train_job.outputs.model_output}} + test_data: + path: ./data + outputs: + score_output: + mode: upload + + evaluate_job: + type: command + component: file:./eval.yml + compute: azureml:cpu-cluster + inputs: + scoring_result: ${{parent.jobs.score_job.outputs.score_output}} + outputs: + eval_output: ${{parent.outputs.pipeline_job_evaluation_report}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/score.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/score.yml new file mode 100644 index 000000000000..c9a22509467d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/score.yml @@ -0,0 +1,19 @@ +name: score +version: 10 +display_name: Score +type: command +inputs: + model_input: + type: uri_folder + test_data: + type: uri_folder +outputs: + score_output: + type: uri_folder +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 +code: ./score_src +command: >- + python score.py + --model_input ${{inputs.model_input}} + --test_data ${{inputs.test_data}} + --score_output ${{outputs.score_output}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/score_src/score.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/score_src/score.py new file mode 100644 index 000000000000..bdce02c7ef6a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/score_src/score.py @@ -0,0 +1,29 @@ +import argparse +from pathlib import Path + +parser = argparse.ArgumentParser("score") +parser.add_argument("--model_input", type=str, help="Path of input model") +parser.add_argument("--test_data", type=str, help="Path to test data") +parser.add_argument("--score_output", type=str, help="Path of scoring output") + +args = parser.parse_args() + +print ("hello scoring world...") + +lines = [ + f'Model path: {args.model_input}', + f'Test data path: {args.test_data}', + f'Scoring output path: {args.score_output}', +] + +for line in lines: + print(line) + +# Load the model from input port +# Here only print the model as text since it is a dummy one +model = (Path(args.model_input) / 'model.txt').read_text() +print('Model: ', model) + +# Do scoring with the input model +# Here only print text to output file as demo +(Path(args.score_output) / 'score.txt').write_text('Scored with the following mode:\n{}'.format(model)) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train.yml new file mode 100644 index 000000000000..8df905f28f98 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train.yml @@ -0,0 +1,27 @@ +name: train +display_name: Train +version: 10 +type: command +inputs: + training_data: + type: uri_folder + max_epocs: + type: integer + learning_rate: + type: number + default: 0.01 + learning_rate_schedule: + type: string + default: time-based +outputs: + model_output: + type: uri_folder +code: ./train_src +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 +command: >- + python train.py + --training_data ${{inputs.training_data}} + --max_epocs ${{inputs.max_epocs}} + --learning_rate ${{inputs.learning_rate}} + --learning_rate_schedule ${{inputs.learning_rate_schedule}} + --model_output ${{outputs.model_output}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train_command_job.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train_command_job.yml new file mode 100644 index 000000000000..edb47ee0c7bd --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train_command_job.yml @@ -0,0 +1,32 @@ +$schema: https://azuremlschemas.azureedge.net/latest/commandJob.schema.json +# this command job does not work. +# It is to illustrate literal inputs and named output support required in command job for parity with command component job. +type: command +name: awesome_job_24234 +display_name: awesome_job +inputs: + training_input: + data: + path: azureml:iris-data + max_epocs: 20 + learning_rate: 1.8 +outputs: + trained_model: + data: + path: /irs-model-folder + reports: + data: + path: /iris-training-reports +code: ./train_src +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 +compute: + target: azureml:cpu-cluster +command: >- + python train.py + --training_data {inputs.training_data} + --max_epocs {inputs.max_epocs} + --learning_rate {inputs.learning_rate} + --learning_rate_schedule 'time-based' + --model_output {outputs.trained_model} + --reports {outputs.reports} + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train_src/train.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train_src/train.py new file mode 100644 index 000000000000..b7e393067306 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_local_components/train_src/train.py @@ -0,0 +1,43 @@ +import argparse +from pathlib import Path +from uuid import uuid4 +from datetime import datetime +import os + +parser = argparse.ArgumentParser("train") +parser.add_argument("--training_data", type=str, help="Path to training data") +parser.add_argument("--max_epocs", type=int, help="Max # of epocs for the training") +parser.add_argument("--learning_rate", type=float, help="Learning rate") +parser.add_argument("--learning_rate_schedule", type=str, help="Learning rate schedule") +parser.add_argument("--model_output", type=str, help="Path of output model") + +args = parser.parse_args() + +print ("hello training world...") + +lines = [ + f'Training data path: {args.training_data}', + f'Max epocs: {args.max_epocs}', + f'Learning rate: {args.learning_rate}', + f'Learning rate: {args.learning_rate_schedule}', + f'Model output path: {args.model_output}', +] + +for line in lines: + print(line) + +print("mounted_path files: ") +arr = os.listdir(args.training_data) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.training_data, filename), 'r') as handle: + print (handle.read()) + + +# Do the train and save the trained model as a file into the output folder. +# Here only output a dummy data for demo. +curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") +model = f"This is a dummy model with id: {str(uuid4())} generated at: {curtime}\n" +(Path(args.model_output) / 'model.txt').write_text(model) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/data.yml new file mode 100644 index 000000000000..cb700d004924 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/data.yml @@ -0,0 +1,7 @@ +$schema: https://azuremlsdk2.blob.core.windows.net/latest/asset.schema.json +name: sampledata1 +version: 3 +description: sample dataset +datastore: azureml:workspaceblobstore +local_path: ./data +path: /sample/data/path diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/data/sample1.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/data/sample1.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/data/sample1.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/eval.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/eval.yml new file mode 100644 index 000000000000..cbee761b9aac --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/eval.yml @@ -0,0 +1,16 @@ +name: eval +version: 31 +display_name: Eval +type: command +inputs: + scoring_result: + type: uri_folder +outputs: + eval_output: + type: uri_folder +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 +code: ./eval_src +command: >- + python eval.py + --scoring_result ${{inputs.scoring_result}} + --eval_output ${{outputs.eval_output}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/eval_src/eval.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/eval_src/eval.py new file mode 100644 index 000000000000..43b415e161cc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/eval_src/eval.py @@ -0,0 +1,25 @@ +import argparse +from pathlib import Path +from datetime import datetime + +parser = argparse.ArgumentParser("score") +parser.add_argument("--scoring_result", type=str, help="Path of scoring result") +parser.add_argument("--eval_output", type=str, help="Path of output evaluation result") + +args = parser.parse_args() + +print ("hello evaluation world...") + +lines = [ + f'Scoring result path: {args.scoring_result}', + f'Evaluation output path: {args.eval_output}', +] + +for line in lines: + print(line) + +# Evaluate the incoming scoring result and output evaluation result. +# Here only output a dummy file for demo. +curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") +eval_msg = f"Eval done at {curtime}\n" +(Path(args.eval_output) / 'eval_result.txt').write_text(eval_msg) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/pipeline.py new file mode 100644 index 000000000000..1d07568e1971 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/pipeline.py @@ -0,0 +1,70 @@ +from azure.ai.ml import dsl, MLClient, Input +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Component as ComponentEntity +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline( + client: MLClient, + pipeline_samples_e2e_registered_train_components: ComponentEntity, + pipeline_samples_e2e_registered_score_components: ComponentEntity, + pipeline_samples_e2e_registered_eval_components: ComponentEntity, + ) -> PipelineJob: + # 1. Load component funcs + train_func = load_component( + client=client, + name=pipeline_samples_e2e_registered_train_components.name, + version=pipeline_samples_e2e_registered_train_components.version, + ) + score_func = load_component( + client=client, + name=pipeline_samples_e2e_registered_score_components.name, + version=pipeline_samples_e2e_registered_score_components.version, + ) + eval_func = load_component( + client=client, + name=pipeline_samples_e2e_registered_eval_components.name, + version=pipeline_samples_e2e_registered_eval_components.version, + ) + + # 2. Construct pipeline + @dsl.pipeline( + compute="cpu-cluster", + description="E2E dummy train-score-eval pipeline with registered components", + ) + def e2e_registered_components( + pipeline_job_training_input, + pipeline_job_test_input, + pipeline_job_training_max_epocs, + pipeline_job_training_learning_rate, + pipeline_job_learning_rate_schedule, + ): + train_job = train_func( + training_data=pipeline_job_training_input, + max_epocs=pipeline_job_training_max_epocs, + learning_rate=pipeline_job_training_learning_rate, + learning_rate_schedule=pipeline_job_learning_rate_schedule, + ) + score_job = score_func(model_input=train_job.outputs.model_output, test_data=pipeline_job_test_input) + score_job.outputs.score_output.mode = "upload" + evaluate_job = eval_func(scoring_result=score_job.outputs.score_output) + return { + "pipeline_job_trained_model": train_job.outputs.model_output, + "pipeline_job_scored_data": score_job.outputs.score_output, + "pipeline_job_evaluation_report": evaluate_job.outputs.eval_output, + } + + pipeline = e2e_registered_components( + Input(path=parent_dir + "/data/"), + Input(path=parent_dir + "/data/"), + 20, + 1.8, + "time-based", + ) + pipeline.outputs.pipeline_job_trained_model.mode = "upload" + pipeline.outputs.pipeline_job_scored_data.mode = "upload" + pipeline.outputs.pipeline_job_evaluation_report.mode = "upload" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/pipeline.yml new file mode 100644 index 000000000000..9916dfdda38c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/pipeline.yml @@ -0,0 +1,53 @@ +type: pipeline +description: "E2E dummy train-score-eval pipeline with registered components" +display_name: "e2e_registered_components" +inputs: + pipeline_job_training_input: + path: ./data + pipeline_job_test_input: + path: ./data + pipeline_job_training_max_epocs: 20 + pipeline_job_training_learning_rate: 1.8 + pipeline_job_learning_rate_schedule: 'time-based' + +outputs: + pipeline_job_trained_model: + mode: upload + pipeline_job_scored_data: + mode: upload + pipeline_job_evaluation_report: + mode: upload + +#settings: +# datastore: azureml:workspaceblobstore + +compute: azureml:cpu-cluster + +jobs: + train_job: + type: command + component: azureml:Train:31 + inputs: + training_data: ${{parent.inputs.pipeline_job_training_input}} + max_epocs: ${{parent.inputs.pipeline_job_training_max_epocs}} + learning_rate: ${{parent.inputs.pipeline_job_training_learning_rate}} + learning_rate_schedule: ${{parent.inputs.pipeline_job_learning_rate_schedule}} + outputs: + model_output: ${{parent.outputs.pipeline_job_trained_model}} + + score_job: + type: command + component: azureml:Score:31 + inputs: + model_input: ${{parent.jobs.train_job.outputs.model_output}} + test_data: ${{parent.inputs.pipeline_job_test_input}} + outputs: + score_output: ${{parent.outputs.pipeline_job_scored_data}} + + evaluate_job: + type: command + component: azureml:Eval:31 + inputs: + scoring_result: ${{parent.jobs.score_job.outputs.score_output}} + outputs: + eval_output: ${{parent.outputs.pipeline_job_evaluation_report}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/score.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/score.yml new file mode 100644 index 000000000000..0431bb5c9d7a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/score.yml @@ -0,0 +1,19 @@ +name: score +version: 31 +display_name: Score +type: command +inputs: + model_input: + type: uri_folder + test_data: + type: uri_folder +outputs: + score_output: + type: uri_folder +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 +code: ./score_src +command: >- + python score.py + --model_input ${{inputs.model_input}} + --test_data ${{inputs.test_data}} + --score_output ${{outputs.score_output}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/score_src/score.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/score_src/score.py new file mode 100644 index 000000000000..bdce02c7ef6a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/score_src/score.py @@ -0,0 +1,29 @@ +import argparse +from pathlib import Path + +parser = argparse.ArgumentParser("score") +parser.add_argument("--model_input", type=str, help="Path of input model") +parser.add_argument("--test_data", type=str, help="Path to test data") +parser.add_argument("--score_output", type=str, help="Path of scoring output") + +args = parser.parse_args() + +print ("hello scoring world...") + +lines = [ + f'Model path: {args.model_input}', + f'Test data path: {args.test_data}', + f'Scoring output path: {args.score_output}', +] + +for line in lines: + print(line) + +# Load the model from input port +# Here only print the model as text since it is a dummy one +model = (Path(args.model_input) / 'model.txt').read_text() +print('Model: ', model) + +# Do scoring with the input model +# Here only print text to output file as demo +(Path(args.score_output) / 'score.txt').write_text('Scored with the following mode:\n{}'.format(model)) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/train.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/train.yml new file mode 100644 index 000000000000..d411658180d8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/train.yml @@ -0,0 +1,27 @@ +name: train +display_name: Train +version: 31 +type: command +inputs: + training_data: + type: uri_folder + max_epocs: + type: integer + learning_rate: + type: number + default: 0.01 + learning_rate_schedule: + type: string + default: time-based +outputs: + model_output: + type: uri_folder +code: ./train_src +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 +command: >- + python train.py + --training_data ${{inputs.training_data}} + --max_epocs ${{inputs.max_epocs}} + --learning_rate ${{inputs.learning_rate}} + --learning_rate_schedule ${{inputs.learning_rate_schedule}} + --model_output ${{outputs.model_output}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/train_src/train.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/train_src/train.py new file mode 100644 index 000000000000..b7e393067306 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/e2e_registered_components/train_src/train.py @@ -0,0 +1,43 @@ +import argparse +from pathlib import Path +from uuid import uuid4 +from datetime import datetime +import os + +parser = argparse.ArgumentParser("train") +parser.add_argument("--training_data", type=str, help="Path to training data") +parser.add_argument("--max_epocs", type=int, help="Max # of epocs for the training") +parser.add_argument("--learning_rate", type=float, help="Learning rate") +parser.add_argument("--learning_rate_schedule", type=str, help="Learning rate schedule") +parser.add_argument("--model_output", type=str, help="Path of output model") + +args = parser.parse_args() + +print ("hello training world...") + +lines = [ + f'Training data path: {args.training_data}', + f'Max epocs: {args.max_epocs}', + f'Learning rate: {args.learning_rate}', + f'Learning rate: {args.learning_rate_schedule}', + f'Model output path: {args.model_output}', +] + +for line in lines: + print(line) + +print("mounted_path files: ") +arr = os.listdir(args.training_data) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.training_data, filename), 'r') as handle: + print (handle.read()) + + +# Do the train and save the trained model as a file into the output folder. +# Here only output a dummy data for demo. +curtime = datetime.now().strftime("%b-%d-%Y %H:%M:%S") +model = f"This is a dummy model with id: {str(uuid4())} generated at: {curtime}\n" +(Path(args.model_output) / 'model.txt').write_text(model) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/component.yml new file mode 100644 index 000000000000..12256e36bf75 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/component.yml @@ -0,0 +1,25 @@ +type: command + +name: hello__python__world +display_name: Hello_Python_World +version: 1 + +inputs: + sample_input_data: + type: uri_folder + sample_input_string: + type: string + default: "hello_python_world" +outputs: + sample_output_data: + type: uri_folder + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py + --input_data ${{inputs.sample_input_data}} + --input_string ${{inputs.sample_input_string}} + --output_data ${{outputs.sample_output_data}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/data/sample.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/data/sample.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/data/sample.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/pipeline.py new file mode 100644 index 000000000000..8660f94a41f9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/pipeline.py @@ -0,0 +1,34 @@ +from azure.ai.ml import dsl, Input +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component( + yaml_file=parent_dir + "/component.yml" + ) + + # 2. Construct pipeline + @dsl.pipeline( + description="Example of using data in a local folder as pipeline input", + ) + def local_data_input( + pipeline_sample_input_data, + pipeline_sample_input_string, + ): + hello_python_world_job = basic_func( + sample_input_data=pipeline_sample_input_data, + sample_input_string=pipeline_sample_input_string, + ) + hello_python_world_job.compute = "cpu-cluster" + return {"pipeline_sample_output_data": hello_python_world_job.outputs.sample_output_data} + + pipeline = local_data_input( + Input(path=parent_dir + "/data/"), "Hello_Pipeline_World" + ) + pipeline.outputs.pipeline_sample_output_data.mode = "upload" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/pipeline.yml new file mode 100644 index 000000000000..5c1ff5dfd80d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/pipeline.yml @@ -0,0 +1,22 @@ +type: pipeline +description: "Example of using data in a local folder as pipeline input" +inputs: + pipeline_sample_input_data: + path: ./data + pipeline_sample_input_string: 'Hello_Pipeline_World' + +outputs: + pipeline_sample_output_data: + mode: upload + +jobs: + hello_python_world_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + inputs: + sample_input_data: ${{parent.inputs.pipeline_sample_input_data}} + sample_input_string: ${{parent.inputs.pipeline_sample_input_string}} + outputs: + sample_output_data: ${{parent.outputs.pipeline_sample_output_data}} + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/src/hello.py new file mode 100644 index 000000000000..c7e6ee07678d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/local_data_input/src/hello.py @@ -0,0 +1,33 @@ + +import argparse +import os +from datetime import datetime + +print ("Hello Python World") + +parser = argparse.ArgumentParser() +parser.add_argument("--input_data", type=str) +parser.add_argument("--input_string", type=str) +parser.add_argument("--output_data", type=str) + +args = parser.parse_args() + +print("sample_input_string: %s" % args.input_string) +print("sample_input_data path: %s" % args.input_data) +print("sample_output_data path: %s" % args.output_data) + +print("files in input_data path: ") +arr = os.listdir(args.input_data) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.input_data, filename), 'r') as handle: + print (handle.read()) + +cur_time_str = datetime.now().strftime("%b-%d-%Y-%H-%M-%S") + +print("Writing file: %s" % os.path.join(args.output_data,"file-" + cur_time_str + ".txt")) +with open(os.path.join(args.output_data,"file-" + cur_time_str + ".txt"), "wt") as text_file: + print(f"Logging date time: {cur_time_str}", file=text_file) + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/component.yml new file mode 100644 index 000000000000..20f4f5dda8af --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/component.yml @@ -0,0 +1,19 @@ +type: command + +description: "Show the MPI training environment" +name: mpi_hello_world +display_name: MPI-hello-world +version: 1 +compute: azureml:gpu-cluster +environment: azureml:AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu:15 +command: >- + printenv +resources: + instance_count: 2 +distribution: + type: mpi + process_count_per_instance: 2 + +## TODO: remove +#environment_variables: +# AZUREML_COMPUTE_USE_COMMON_RUNTIME: "true" \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/pipeline.py new file mode 100644 index 000000000000..b6f37868380e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/pipeline.py @@ -0,0 +1,27 @@ +from azure.ai.ml import dsl +from azure.ai.ml.entities import load_component +from azure.ai.ml import MpiDistribution +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +from azure.ai.ml.entities import ResourceConfiguration + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + mpi_func = load_component(yaml_file=parent_dir + "/component.yml") + + # 2. Construct pipeline + @dsl.pipeline(description="Show the MPI training environment") + def mpi_hello_world(): + tf_job = mpi_func() + tf_job.compute = "cpu-cluster" + tf_job.distribution = MpiDistribution() + tf_job.distribution.process_count_per_instance = 1 + tf_job.resources = ResourceConfiguration() + tf_job.resources.instance_count = 2 + + pipeline = mpi_hello_world() + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/pipeline.yml new file mode 100644 index 000000000000..1172e14c4b62 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/mpi_hello_world/pipeline.yml @@ -0,0 +1,15 @@ +type: pipeline +description: "Show the MPI training environment" + +jobs: + tf_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + resources: + instance_count: 2 + distribution: + type: mpi + process_count_per_instance: 1 + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/data/greenTaxiData.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/data/greenTaxiData.csv new file mode 100644 index 000000000000..a186c328a9e6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/data/greenTaxiData.csv @@ -0,0 +1,5001 @@ +vendorID,lpepPickupDatetime,lpepDropoffDatetime,passengerCount,tripDistance,puLocationId,doLocationId,pickupLongitude,pickupLatitude,dropoffLongitude,dropoffLatitude,rateCodeID,storeAndFwdFlag,paymentType,fareAmount,extra,mtaTax,improvementSurcharge,tipAmount,tollsAmount,ehailFee,totalAmount,tripType +2,2016-01-03 21:02:35,2016-01-03 21:05:52,1,0.83,,,-73.98726654052734,40.6938362121582,-73.97611236572266,40.69454574584961,1,N,1,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-19 21:49:17,2016-01-19 21:54:37,1,1.27,,,-73.94845581054688,40.80146789550781,-73.95975494384766,40.81214904785156,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-05 09:46:18,2016-01-05 09:57:28,1,1.8,,,-73.9554443359375,40.6797981262207,-73.98030853271484,40.678741455078125,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +1,2016-01-08 17:49:12,2016-01-08 17:52:20,1,0.5,,,-73.92293548583984,40.76081848144531,-73.92549896240234,40.75471496582031,1,N,1,4.0,1.0,0.5,0.3,1.15,0.0,,6.95,1.0 +1,2016-01-29 10:28:21,2016-01-29 10:34:59,1,0.9,,,-73.92304229736328,40.664939880371094,-73.91104125976562,40.66966247558594,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-30 13:08:46,2016-01-30 13:20:20,1,2.72,,,-73.8973159790039,40.746253967285156,-73.89237213134766,40.77496337890625,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-26 19:59:15,2016-01-26 20:10:07,1,2.43,,,-73.90950775146484,40.87456130981445,-73.90647888183594,40.90352249145508,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-08 16:32:18,2016-01-08 17:05:38,1,6.83,,,-73.9500503540039,40.80010223388672,-73.94535064697266,40.75603103637695,1,N,1,25.0,1.0,0.5,0.3,5.36,0.0,,32.16,1.0 +2,2016-01-04 10:06:22,2016-01-04 10:08:52,1,0.45,,,-74.0144271850586,40.67601776123047,-74.01203918457031,40.67219161987305,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-09 02:34:05,2016-01-09 02:37:43,1,0.77,,,-73.98458099365234,40.67120361328125,-73.97817993164062,40.66605758666992,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-14 01:14:45,2016-01-14 01:27:24,1,2.2,,,-73.96582794189453,40.68327331542969,-73.99366760253906,40.699737548828125,1,N,1,11.0,0.5,0.5,0.3,1.5,0.0,,13.8,1.0 +1,2016-01-12 16:14:12,2016-01-12 16:21:59,1,1.5,,,-73.94767761230469,40.6324462890625,-73.94902801513672,40.612159729003906,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-09 17:35:52,2016-01-09 18:05:29,1,6.27,,,-73.96052551269531,40.715213775634766,-73.98792266845703,40.745811462402344,1,N,1,24.5,0.0,0.5,0.3,5.06,0.0,,30.36,1.0 +1,2016-01-14 20:17:20,2016-01-14 20:26:58,1,2.0,,,-73.96453094482422,40.80733871459961,-73.95561218261719,40.78779602050781,1,N,1,9.5,0.5,0.5,0.3,1.0,0.0,,11.8,1.0 +2,2016-01-17 20:38:08,2016-01-17 20:46:11,1,1.54,,,-73.88248443603516,40.750484466552734,-73.8807601928711,40.76130676269531,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-10 01:20:28,2016-01-10 01:25:03,1,1.24,,,-73.92410278320312,40.7398796081543,-73.9117202758789,40.729801177978516,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-09 16:56:54,2016-01-09 17:01:04,1,0.75,,,-73.95661163330078,40.71691131591797,-73.96553039550781,40.71107864379883,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,,6.8,1.0 +1,2016-01-08 20:56:41,2016-01-08 21:05:34,1,2.2,,,-73.92512512207031,40.773414611816406,-73.9442138671875,40.747501373291016,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-02 15:49:53,2016-01-02 16:20:21,2,7.0,,,-73.94800567626953,40.79001235961914,-73.97544860839844,40.752384185791016,1,N,2,25.5,0.0,0.5,0.3,0.0,0.0,,26.3,1.0 +2,2016-01-15 04:23:43,2016-01-15 04:41:06,1,5.1,,,-73.95987701416016,40.660118103027344,-73.87281036376953,40.66606140136719,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-21 10:18:02,2016-01-21 10:46:36,1,18.51,,,-73.94915771484375,40.78546905517578,-73.77632141113281,40.645477294921875,2,N,1,52.0,0.0,0.5,0.3,14.58,5.54,,72.92,1.0 +1,2016-01-30 12:45:11,2016-01-30 12:51:11,1,1.1,,,-73.88922119140625,40.747074127197266,-73.9033203125,40.74262619018555,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-23 03:51:20,2016-01-23 03:56:36,2,0.63,,,-73.89102935791016,40.74678421020508,-73.88086700439453,40.745330810546875,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-10 20:32:15,2016-01-10 20:49:16,1,3.28,,,-73.88433074951172,40.747703552246094,-73.9351806640625,40.752708435058594,1,N,1,14.5,0.5,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-30 20:27:03,2016-01-30 20:50:25,3,2.51,,,-73.87657165527344,40.748321533203125,-73.87213897705078,40.75114440917969,1,N,1,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-03 15:16:58,2016-01-03 15:26:27,1,2.04,,,-73.86207580566406,40.733821868896484,-73.84219360351562,40.71920394897461,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-27 21:09:20,2016-01-27 21:24:00,1,3.42,,,-73.93920135498047,40.79081344604492,-73.90558624267578,40.82627868652344,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-27 06:31:55,2016-01-27 07:06:28,1,6.57,,,-73.9471435546875,40.68547821044922,-73.93574523925781,40.75715255737305,1,N,1,27.0,0.0,0.5,0.3,0.0,0.0,,27.8,1.0 +1,2016-01-20 23:40:11,2016-01-20 23:51:46,1,7.4,,,-73.9559097290039,40.71403503417969,-73.97982025146484,40.65130615234375,1,N,2,21.5,0.5,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-07 10:10:37,2016-01-07 10:26:26,2,2.78,,,-73.96597290039062,40.808616638183594,-73.9569320678711,40.78090286254883,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-02 20:49:50,2016-01-02 20:54:30,1,1.6,,,-73.95325469970703,40.7885856628418,-73.94995880126953,40.80547332763672,1,N,1,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-09 21:36:48,2016-01-09 21:47:44,1,1.78,,,-73.98467254638672,40.66327667236328,-73.98686981201172,40.67889404296875,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-22 18:57:36,2016-01-22 19:03:36,1,0.97,,,-73.95282745361328,40.79841613769531,-73.94450378417969,40.7948112487793,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-07 12:07:55,2016-01-07 12:15:22,1,1.5,,,-73.95414733886719,40.5871696472168,-73.93515014648438,40.595401763916016,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-01 00:43:15,2016-01-01 00:52:15,1,1.5,,,-73.93572998046875,40.821956634521484,-73.95130920410156,40.80854797363281,1,N,1,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-02 23:45:50,2016-01-02 23:56:41,1,1.29,,,-73.91263580322266,40.77446746826172,-73.92195892333984,40.76032257080078,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-27 19:44:28,2016-01-27 20:01:47,1,2.7,,,-73.87421417236328,40.73504638671875,-73.8763427734375,40.70232009887695,1,N,1,13.5,1.0,0.5,0.3,2.0,0.0,,17.3,1.0 +2,2016-01-25 20:00:05,2016-01-25 20:04:15,1,0.55,,,-73.91510009765625,40.763816833496094,-73.92115020751953,40.756343841552734,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-08 20:22:11,2016-01-08 20:30:59,1,1.32,,,-73.90750885009766,40.773921966552734,-73.91443634033203,40.76045608520508,1,N,1,7.0,0.5,0.5,0.3,2.49,0.0,,10.79,1.0 +2,2016-01-08 19:51:38,2016-01-08 19:55:07,1,0.62,,,-73.95433807373047,40.730377197265625,-73.95500946044922,40.73464584350586,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-01 22:21:13,2016-01-01 22:31:07,1,1.17,,,-73.95972442626953,40.7159538269043,-73.9571304321289,40.720947265625,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-12 19:48:41,2016-01-12 19:55:05,3,2.08,,,-73.97664642333984,40.69636154174805,-73.94133758544922,40.698482513427734,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-29 11:06:29,2016-01-29 11:18:10,1,2.7,,,-73.93203735351562,40.85089874267578,-73.94969940185547,40.8260612487793,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-22 17:32:40,2016-01-22 17:46:59,1,2.25,,,-73.89421844482422,40.866580963134766,-73.88619995117188,40.84292984008789,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +2,2016-01-04 10:54:22,2016-01-04 11:13:06,1,5.11,,,-73.90695190429688,40.745792388916016,-73.8288345336914,40.71327209472656,1,N,2,18.5,0.0,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-07 16:46:50,2016-01-07 16:51:46,1,0.78,,,-73.8900146484375,40.74700927734375,-73.89563751220703,40.74251937866211,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-29 19:19:56,2016-01-29 19:56:37,1,6.13,,,-73.89350128173828,40.746639251708984,-73.83353424072266,40.697532653808594,1,N,1,26.0,1.0,0.5,0.3,5.56,0.0,,33.36,1.0 +2,2016-01-01 00:43:18,2016-01-01 01:04:03,3,5.77,,,-73.93875885009766,40.79650115966797,-73.89451599121094,40.84245681762695,1,N,2,20.0,0.5,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-22 09:04:09,2016-01-22 09:06:16,1,0.67,,,-73.85063171386719,40.710838317871094,-73.84514617919922,40.719520568847656,1,N,1,4.0,0.0,0.5,0.3,5.0,0.0,,9.8,1.0 +2,2016-01-04 22:45:57,2016-01-04 22:53:04,1,1.59,,,-73.93618774414062,40.820316314697266,-73.92536163330078,40.83454132080078,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-22 20:13:12,2016-01-22 20:32:56,2,4.2,,,-73.91714477539062,40.743160247802734,-73.95184326171875,40.71489715576172,1,N,1,17.5,0.5,0.5,0.3,4.7,0.0,,23.5,1.0 +2,2016-01-27 03:27:16,2016-01-27 03:38:12,1,3.2,,,-73.96611785888672,40.69356155395508,-74.00548553466797,40.71122360229492,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-20 22:26:07,2016-01-20 22:30:17,1,0.79,,,-73.94733428955078,40.71139144897461,-73.94295501708984,40.705596923828125,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-13 01:33:27,2016-01-13 01:37:01,1,0.91,,,-73.95095825195312,40.72408676147461,-73.95523834228516,40.73667526245117,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-12 10:22:59,2016-01-12 10:32:25,5,1.28,,,-73.94917297363281,40.79656219482422,-73.96593475341797,40.79517364501953,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-19 18:17:50,2016-01-19 18:37:33,1,3.91,,,-73.84427642822266,40.72153091430664,-73.79993438720703,40.68461227416992,1,N,2,15.5,1.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-29 23:32:57,2016-01-29 23:48:29,1,6.58,,,-73.92225646972656,40.74335479736328,-73.83277893066406,40.753814697265625,1,N,2,20.0,0.5,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-10 22:39:54,2016-01-10 22:44:31,1,1.5,,,-73.95148468017578,40.7430305480957,-73.94673919677734,40.72232437133789,1,N,1,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-12 09:32:08,2016-01-12 09:36:28,1,0.47,,,-73.95209503173828,40.79807662963867,-73.94942474365234,40.793548583984375,1,N,1,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-01 00:42:24,2016-01-01 01:08:08,1,6.21,,,-73.92894744873047,40.69097137451172,-74.00169372558594,40.678035736083984,1,N,1,22.0,0.5,0.5,0.3,4.66,0.0,,27.96,1.0 +1,2016-01-19 20:09:26,2016-01-19 20:31:15,1,2.9,,,-73.87206268310547,40.653587341308594,-73.91075134277344,40.66389846801758,1,N,1,13.5,0.5,0.5,0.3,2.0,0.0,,16.8,1.0 +1,2016-01-20 14:11:01,2016-01-20 14:28:23,3,2.5,,,-73.96930694580078,40.695472717285156,-73.96943664550781,40.693115234375,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-13 23:56:33,2016-01-13 23:56:37,1,0.12,,,-73.91903686523438,40.85008239746094,-73.9172592163086,40.851318359375,5,N,1,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +2,2016-01-22 10:25:43,2016-01-22 10:37:50,1,2.1,,,-73.8563461303711,40.74604034423828,-73.84168243408203,40.718910217285156,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-14 21:40:29,2016-01-14 21:44:33,5,0.71,,,-73.95166778564453,40.71492385864258,-73.94313049316406,40.71687698364258,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-19 20:33:44,2016-01-19 20:35:38,1,0.7,,,-73.94973754882812,40.79612350463867,-73.9561538696289,40.78734588623047,1,N,1,4.0,0.5,0.5,0.3,1.05,0.0,,6.35,1.0 +2,2016-01-21 08:58:12,2016-01-21 09:02:28,1,1.13,,,-73.91207885742188,40.77537536621094,-73.8966064453125,40.77295684814453,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-19 17:13:28,2016-01-19 17:29:11,1,2.99,,,-73.95365142822266,40.787071228027344,-73.98760986328125,40.773765563964844,1,N,1,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-02 02:21:45,2016-01-02 02:24:12,1,0.8,,,-73.98068237304688,40.6763801574707,-73.98150634765625,40.667236328125,1,Y,1,4.5,0.5,0.5,0.3,1.15,0.0,,6.95,1.0 +2,2016-01-27 19:24:26,2016-01-27 19:35:27,1,1.98,,,-73.96411895751953,40.80796813964844,-73.98088073730469,40.782630920410156,1,N,1,10.0,1.0,0.5,0.3,1.1,0.0,,12.9,1.0 +2,2016-01-03 20:25:35,2016-01-03 20:46:12,1,8.72,,,-73.9544448852539,40.789764404296875,-73.96366119384766,40.7095947265625,1,N,2,26.0,0.5,0.5,0.3,0.0,0.0,,27.3,1.0 +2,2016-01-22 16:31:31,2016-01-22 16:42:07,1,2.85,,,-73.80670166015625,40.70096969604492,-73.79900360107422,40.66718673706055,1,N,1,11.0,1.0,0.5,0.3,2.2,0.0,,15.0,1.0 +1,2016-01-03 01:53:31,2016-01-03 02:13:49,1,3.8,,,-73.90458679199219,40.74531555175781,-73.85304260253906,40.7219123840332,1,Y,2,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-12 14:18:33,2016-01-12 14:30:42,6,2.74,,,-73.92434692382812,40.76826858520508,-73.8869857788086,40.75398254394531,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-22 18:49:23,2016-01-22 19:15:00,1,7.58,,,-73.93301391601562,40.855953216552734,-73.98658752441406,40.76847839355469,1,N,1,26.5,1.0,0.5,0.3,5.66,0.0,,33.96,1.0 +2,2016-01-08 09:27:16,2016-01-08 09:46:23,1,3.44,,,-73.9801254272461,40.687767028808594,-74.00267028808594,40.71623611450195,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-09 04:48:19,2016-01-09 05:13:44,1,9.43,,,-73.95817565917969,40.72163009643555,-73.96357727050781,40.64177322387695,1,N,2,30.5,0.5,0.5,0.3,0.0,0.0,,31.8,1.0 +2,2016-01-27 22:39:28,2016-01-27 22:44:55,5,1.2,,,-73.9033432006836,40.74586868286133,-73.921142578125,40.74533462524414,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-26 16:34:07,2016-01-26 16:38:04,1,0.85,,,-73.97655487060547,40.6822624206543,-73.9725341796875,40.67416763305664,1,N,1,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-26 10:36:18,2016-01-26 10:49:56,1,1.48,,,-73.94928741455078,40.7971305847168,-73.96231842041016,40.810638427734375,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,,11.8,1.0 +1,2016-01-12 17:43:41,2016-01-12 17:48:54,1,0.7,,,-73.9538803100586,40.587318420410156,-73.95709991455078,40.58353805541992,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-02 13:53:52,2016-01-02 14:02:58,5,1.56,,,-73.94174194335938,40.798736572265625,-73.94412994384766,40.814762115478516,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-29 19:34:40,2016-01-29 19:41:42,1,1.1,,,-73.98994445800781,40.69140625,-73.99620819091797,40.696136474609375,1,N,1,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-11 22:17:53,2016-01-11 22:31:22,2,1.77,,,-73.89142608642578,40.74659729003906,-73.90349578857422,40.752098083496094,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-24 23:49:56,2016-01-24 23:51:02,1,0.1,,,-73.92121124267578,40.76680374145508,-73.91929626464844,40.76585006713867,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-08 19:41:54,2016-01-08 19:49:00,5,1.52,,,-73.96586608886719,40.693275451660156,-73.94278717041016,40.692081451416016,1,N,1,7.0,1.0,0.5,0.3,1.0,0.0,,9.8,1.0 +2,2016-01-14 07:38:49,2016-01-14 08:02:21,1,3.58,,,-73.97615814208984,40.69343185424805,-73.97478485107422,40.69590377807617,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-05 12:59:14,2016-01-05 13:03:48,2,0.63,,,-73.96112823486328,40.71892547607422,-73.96235656738281,40.712486267089844,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,,6.96,1.0 +1,2016-01-28 14:03:49,2016-01-28 14:09:43,2,0.5,,,-73.9429702758789,40.836605072021484,-73.9427261352539,40.83217239379883,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-03 02:49:51,2016-01-03 03:12:38,1,3.64,,,-73.9432144165039,40.71474075317383,-73.95936584472656,40.71644973754883,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-07 17:47:25,2016-01-07 17:58:12,1,2.07,,,-73.96153259277344,40.80609130859375,-73.98027038574219,40.78304672241211,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-10 05:29:22,2016-01-10 05:53:41,1,9.52,,,-73.91970825195312,40.758052825927734,-73.94446563720703,40.70486831665039,1,N,1,28.5,0.5,0.5,0.3,5.96,0.0,,35.76,1.0 +2,2016-01-29 12:56:47,2016-01-29 13:15:58,1,3.84,,,-73.80976104736328,40.70585632324219,-73.83352661132812,40.67288589477539,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-28 16:07:00,2016-01-28 17:44:46,1,10.56,,,-74.00019073486328,40.57874298095703,-73.94194793701172,40.67996597290039,1,N,1,62.5,1.0,0.5,0.3,12.86,0.0,,77.16,1.0 +2,2016-01-27 14:25:54,2016-01-27 14:35:14,1,0.74,,,-73.98727416992188,40.6939582824707,-73.9825439453125,40.68610763549805,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-05 09:07:16,2016-01-05 09:12:01,1,1.11,,,-73.83930206298828,40.71962356567383,-73.85798645019531,40.72325134277344,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-04 14:45:13,2016-01-04 14:54:56,1,1.3,,,-73.87525177001953,40.76245880126953,-73.86295318603516,40.7498893737793,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-21 11:21:52,2016-01-21 11:33:32,1,1.84,,,-73.94157409667969,40.787353515625,-73.95526123046875,40.8045654296875,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-15 12:00:27,2016-01-15 12:12:58,1,2.0,,,-73.95394134521484,40.79084014892578,-73.965087890625,40.80645751953125,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,,12.3,1.0 +1,2016-01-14 21:20:28,2016-01-14 21:32:04,1,2.3,,,-73.89490509033203,40.74813461303711,-73.90293884277344,40.72085189819336,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-09 22:44:57,2016-01-09 22:53:26,1,2.17,,,-73.95557403564453,40.804508209228516,-73.94070434570312,40.83302307128906,1,N,1,9.0,0.5,0.5,0.3,2.58,0.0,,12.88,1.0 +2,2016-01-25 08:39:29,2016-01-25 08:49:13,1,1.27,,,-73.97002410888672,40.69420623779297,-73.986572265625,40.701541900634766,1,N,1,8.0,0.0,0.5,0.3,1.32,0.0,,10.12,1.0 +2,2016-01-15 07:23:50,2016-01-15 07:33:39,1,1.64,,,-73.90108489990234,40.74602127075195,-73.8954849243164,40.726646423339844,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-25 16:30:47,2016-01-25 16:37:40,1,0.71,,,-73.94625854492188,40.82119369506836,-73.94585418701172,40.81467056274414,1,N,1,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-29 14:31:59,2016-01-29 14:41:07,1,0.9,,,-73.95340728759766,40.788482666015625,-73.9425277709961,40.78741455078125,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-06 16:52:06,2016-01-06 16:56:50,1,0.7,,,-73.9469223022461,40.800933837890625,-73.94322204589844,40.81073760986328,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-28 23:52:50,2016-01-29 00:00:24,1,1.49,,,-73.87962341308594,40.8401985168457,-73.88282775878906,40.85753631591797,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-24 11:20:43,2016-01-24 11:34:21,1,1.64,,,-73.95276641845703,40.810611724853516,-73.96598052978516,40.79509353637695,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,,11.8,1.0 +2,2016-01-26 19:37:20,2016-01-26 20:02:47,1,2.63,,,-73.9522705078125,40.78990936279297,-73.96334075927734,40.761962890625,1,N,1,17.0,1.0,0.5,0.3,3.76,0.0,,22.56,1.0 +2,2016-01-29 15:26:50,2016-01-29 15:58:31,1,7.32,,,-73.83975982666016,40.71985626220703,-73.92926025390625,40.702674865722656,1,N,1,27.0,0.0,0.5,0.3,0.0,0.0,,27.8,1.0 +1,2016-01-18 08:25:51,2016-01-18 08:33:24,1,2.8,,,-73.9455337524414,40.83339309692383,-73.96550750732422,40.80207824707031,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-15 18:14:28,2016-01-15 18:20:32,2,1.0,,,-73.94513702392578,40.71902084350586,-73.9389419555664,40.72618865966797,1,N,1,6.0,1.0,0.5,0.3,1.55,0.0,,9.35,1.0 +2,2016-01-17 09:00:33,2016-01-17 09:02:31,1,0.51,,,-73.94141387939453,40.798622131347656,-73.94810485839844,40.80399703979492,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-19 12:18:58,2016-01-19 12:42:36,1,4.26,,,-73.97953033447266,40.66944885253906,-73.93274688720703,40.68825149536133,1,N,1,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-14 17:38:02,2016-01-14 17:41:33,1,0.54,,,-73.9193344116211,40.832481384277344,-73.91320037841797,40.83845520019531,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-01 00:11:10,2016-01-01 00:13:21,1,0.25,,,-73.87283325195312,40.74905014038086,-73.87454986572266,40.74734115600586,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-15 00:50:15,2016-01-15 00:56:41,1,1.3,,,-73.97881317138672,40.68387222290039,-73.9869613647461,40.66849136352539,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-22 12:42:44,2016-01-22 12:59:00,1,1.87,,,-73.98859405517578,40.675453186035156,-73.96453857421875,40.68202590942383,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,,15.38,1.0 +2,2016-01-01 19:14:23,2016-01-01 19:32:23,1,3.99,,,-73.9905014038086,40.68659210205078,-73.99588012695312,40.73214340209961,1,N,1,16.0,0.0,0.5,0.3,4.2,0.0,,21.0,1.0 +2,2016-01-02 16:59:32,2016-01-02 17:14:02,5,2.25,,,-73.9956283569336,40.67918014526367,-74.01536560058594,40.677040100097656,1,N,1,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-12 17:34:31,2016-01-12 17:38:35,2,0.76,,,-73.94686126708984,40.65568542480469,-73.94196319580078,40.6628532409668,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-28 14:48:18,2016-01-28 15:28:30,1,8.43,,,-73.92692565917969,40.807682037353516,-73.83924102783203,40.852203369140625,1,N,2,33.0,0.0,0.5,0.3,0.0,0.0,,33.8,1.0 +2,2016-01-08 17:47:10,2016-01-08 17:53:09,1,0.87,,,-73.91930389404297,40.80763626098633,-73.92312622070312,40.81657028198242,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-30 12:12:57,2016-01-30 12:40:48,5,3.45,,,-73.95890045166016,40.72777557373047,-73.99103546142578,40.718318939208984,1,N,1,18.5,0.0,0.5,0.3,5.79,0.0,,25.09,1.0 +2,2016-01-30 00:43:00,2016-01-30 00:45:14,1,0.47,,,-73.95785522460938,40.67085647583008,-73.95365905761719,40.674346923828125,1,N,1,3.5,0.5,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-06 14:07:05,2016-01-06 14:13:52,1,2.01,,,-73.86914825439453,40.7337760925293,-73.8935546875,40.7264404296875,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-13 08:40:48,2016-01-13 09:00:42,1,5.3,,,-73.94222259521484,40.84199142456055,-73.98271942138672,40.78338623046875,1,N,1,19.0,0.0,0.5,0.3,0.0,0.0,,19.8,1.0 +1,2016-01-29 14:20:07,2016-01-29 14:51:04,1,3.2,,,-73.95845794677734,40.71719741821289,-73.9444351196289,40.68922424316406,1,N,1,19.5,0.0,0.5,0.3,4.05,0.0,,24.35,1.0 +2,2016-01-02 02:37:32,2016-01-02 02:48:42,5,3.35,,,-73.9404296875,40.79338836669922,-73.94100189208984,40.825931549072266,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-10 01:01:28,2016-01-10 01:19:40,1,9.65,,,-73.9444580078125,40.81442642211914,-73.99060821533203,40.71333312988281,1,N,1,28.5,0.5,0.5,0.3,4.0,0.0,,33.8,1.0 +2,2016-01-11 14:41:58,2016-01-11 15:00:23,1,2.87,,,-73.93830108642578,40.79636764526367,-73.9415054321289,40.8046760559082,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-25 19:48:48,2016-01-25 19:50:19,1,0.29,,,-73.94036102294922,40.81467819213867,-73.93682861328125,40.81575012207031,1,N,1,3.0,1.0,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-17 04:44:03,2016-01-17 05:04:44,1,4.36,,,-73.95752716064453,40.722286224365234,-73.9221420288086,40.7619743347168,1,N,1,18.0,0.5,0.5,0.3,2.0,0.0,,21.3,1.0 +1,2016-01-18 03:26:21,2016-01-18 03:34:07,1,0.9,,,-73.8834228515625,40.74760055541992,-73.88288116455078,40.75749969482422,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-06 17:34:45,2016-01-06 18:02:21,1,8.3,,,-73.94022369384766,40.8407096862793,-73.98052215576172,40.7518424987793,1,N,1,27.0,1.0,0.5,0.3,8.6,0.0,,37.4,1.0 +2,2016-01-20 00:29:43,2016-01-20 00:32:49,1,0.53,,,-73.96602630615234,40.804805755615234,-73.95965576171875,40.808555603027344,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-23 00:23:44,2016-01-23 00:28:02,1,1.04,,,-73.83036804199219,40.71358871459961,-73.84022521972656,40.702125549316406,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-02 18:44:56,2016-01-02 18:49:02,1,0.78,,,-73.9405288696289,40.80586624145508,-73.93871307373047,40.81573486328125,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-28 23:14:00,2016-01-28 23:20:07,1,0.94,,,-73.93094635009766,40.755165100097656,-73.944580078125,40.75669479370117,1,N,1,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-22 23:46:07,2016-01-23 00:01:04,1,5.01,,,-73.9403305053711,40.840599060058594,-73.9655532836914,40.79055404663086,1,N,1,17.5,0.5,0.5,0.3,3.76,0.0,,22.56,1.0 +2,2016-01-22 21:57:32,2016-01-22 22:06:48,1,1.89,,,-73.9366455078125,40.82059097290039,-73.90312194824219,40.8127555847168,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-25 14:51:20,2016-01-25 15:46:03,1,4.44,,,-73.89085388183594,40.746429443359375,-73.83248138427734,40.76104736328125,1,N,2,31.5,0.0,0.5,0.3,0.0,0.0,,32.3,1.0 +2,2016-01-15 09:18:27,2016-01-16 08:40:35,1,1.83,,,-73.94149017333984,40.699462890625,-73.92320251464844,40.68519592285156,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-10 18:11:09,2016-01-10 18:17:55,1,1.69,,,-73.94775390625,40.825103759765625,-73.95336151123047,40.80209732055664,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 22:39:18,2016-01-09 22:56:06,1,6.15,,,-73.95821380615234,40.71932601928711,-73.86329650878906,40.72557830810547,1,N,1,20.0,0.5,0.5,0.3,4.26,0.0,,25.56,1.0 +2,2016-01-16 23:58:34,2016-01-17 00:06:44,1,1.98,,,-73.9540023803711,40.665592193603516,-73.95832824707031,40.69057083129883,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-15 17:36:24,2016-01-15 17:49:20,1,2.16,,,-73.95501708984375,40.80259323120117,-73.95269775390625,40.8256721496582,1,N,1,10.5,1.0,0.5,0.3,3.69,0.0,,15.99,1.0 +2,2016-01-12 14:50:02,2016-01-12 15:24:29,1,6.67,,,-73.86172485351562,40.730525970458984,-73.96125793457031,40.765010833740234,1,N,2,27.0,0.0,0.5,0.3,0.0,0.0,,27.8,1.0 +1,2016-01-03 14:15:31,2016-01-03 14:37:53,1,8.4,,,-73.94078063964844,40.679954528808594,-74.0086441040039,40.65576171875,1,N,2,26.5,0.0,0.5,0.3,0.0,0.0,,27.3,1.0 +1,2016-01-26 14:59:05,2016-01-26 15:16:33,1,3.8,,,-73.95976257324219,40.720191955566406,-73.97476959228516,40.74937057495117,1,N,2,15.5,0.0,0.5,0.3,0.0,5.54,,21.84,1.0 +2,2016-01-13 12:20:42,2016-01-13 12:26:59,1,1.18,,,-73.94879913330078,40.80338668823242,-73.9458999633789,40.7902946472168,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-29 20:41:45,2016-01-29 20:46:50,1,0.65,,,-73.83032989501953,40.71354293823242,-73.83638763427734,40.70729064941406,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,,7.3,1.0 +2,2016-01-21 18:26:39,2016-01-21 18:34:32,1,0.85,,,-73.88542938232422,40.747615814208984,-73.88695526123047,40.759033203125,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-29 12:19:12,2016-01-29 12:37:24,3,7.79,,,-73.94393920898438,40.7467041015625,-73.87345123291016,40.77418899536133,1,N,1,24.0,0.0,0.5,0.3,4.96,0.0,,29.76,1.0 +2,2016-01-23 02:30:47,2016-01-23 02:52:25,2,4.01,,,-73.86941528320312,40.749168395996094,-73.90074920654297,40.777198791503906,1,N,1,16.0,0.5,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-16 18:02:30,2016-01-16 18:22:28,2,3.37,,,-73.95452880859375,40.718841552734375,-73.919189453125,40.70053482055664,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-15 23:22:06,2016-01-15 23:25:56,1,0.65,,,-73.95547485351562,40.681068420410156,-73.94308471679688,40.68000411987305,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-25 16:01:09,2016-01-25 16:08:58,1,0.79,,,-73.92448425292969,40.76833724975586,-73.91830444335938,40.7598762512207,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-07 13:38:19,2016-01-07 13:48:34,1,1.84,,,-73.94859313964844,40.82887268066406,-73.94891357421875,40.80929183959961,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-30 00:07:24,2016-01-30 00:16:43,1,2.68,,,-73.93907165527344,40.8050651550293,-73.9566879272461,40.77152633666992,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-02 18:55:02,2016-01-02 19:20:02,1,5.94,,,-73.91870880126953,40.75879669189453,-73.98403930664062,40.72578430175781,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-02 21:50:08,2016-01-02 21:57:36,1,0.85,,,-73.95004272460938,40.71709442138672,-73.96178436279297,40.71383285522461,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-09 06:51:04,2016-01-09 07:03:23,1,2.85,,,-73.91654968261719,40.81903076171875,-73.93718719482422,40.80099868774414,5,N,2,12.0,0.0,0.0,0,0.0,0.0,,12.0,2.0 +2,2016-01-17 10:23:33,2016-01-17 10:29:49,1,1.03,,,-73.9544448852539,40.80585861206055,-73.93914031982422,40.80495071411133,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,,7.8,1.0 +1,2016-01-25 10:01:04,2016-01-25 10:06:47,1,0.7,,,-73.93885803222656,40.84468460083008,-73.93266296386719,40.852996826171875,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-21 19:39:54,2016-01-21 19:46:02,1,1.0,,,-73.99439239501953,40.69038772583008,-73.98979949951172,40.681678771972656,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-05 21:40:29,2016-01-05 21:47:13,1,1.1,,,-73.95428466796875,40.80596923828125,-73.94122314453125,40.80686569213867,1,N,1,6.5,0.5,0.5,0.3,1.55,0.0,,9.35,1.0 +2,2016-01-09 10:39:07,2016-01-09 10:46:14,1,1.53,,,-73.95491027832031,40.733577728271484,-73.96022033691406,40.71526336669922,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-24 12:49:56,2016-01-24 13:09:14,1,6.8,,,-73.93853759765625,40.85100555419922,-73.98048400878906,40.77011489868164,1,N,1,22.0,0.0,0.5,0.3,5.7,0.0,,28.5,1.0 +1,2016-01-13 20:35:00,2016-01-13 20:39:59,1,0.9,,,-73.80777740478516,40.70045471191406,-73.80122375488281,40.704978942871094,1,N,1,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-13 17:33:40,2016-01-13 17:37:33,1,0.47,,,-73.95092010498047,40.8260498046875,-73.95539855957031,40.82022476196289,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-01 03:36:43,2016-01-01 03:36:48,1,0.12,,,-73.95541381835938,40.71610641479492,-73.95674896240234,40.71482849121094,5,N,2,20.0,0.0,0.0,0,0.0,0.0,,20.0,2.0 +1,2016-01-01 00:36:39,2016-01-01 00:50:32,1,2.9,,,-73.9591293334961,40.6775016784668,-73.93603515625,40.69734191894531,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-10 22:44:29,2016-01-10 22:55:53,1,2.41,,,-73.91629791259766,40.82335662841797,-73.91685485839844,40.83837890625,5,N,2,8.0,0.0,0.0,0,0.0,0.0,,8.0,2.0 +2,2016-01-09 22:21:40,2016-01-09 22:45:16,1,7.97,,,-73.91173553466797,40.75307083129883,-73.95014190673828,40.6877555847168,1,N,2,26.5,0.5,0.5,0.3,0.0,0.0,,27.8,1.0 +1,2016-01-05 14:48:58,2016-01-05 15:14:47,2,9.9,,,-73.93091583251953,40.865264892578125,-73.97840881347656,40.75252914428711,1,N,1,31.0,0.5,0.5,0.3,6.46,0.0,,38.76,1.0 +1,2016-01-06 19:48:43,2016-01-06 19:55:55,2,1.2,,,-73.8690185546875,40.73432159423828,-73.88948059082031,40.73931121826172,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-05 08:04:07,2016-01-05 08:07:53,1,0.6,,,-73.94691467285156,40.81041717529297,-73.94041442871094,40.814430236816406,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-05 18:11:36,2016-01-05 18:19:52,1,0.75,,,-73.84518432617188,40.71950912475586,-73.83406829833984,40.717796325683594,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-11 12:29:05,2016-01-11 12:46:38,6,2.79,,,-73.8836669921875,40.74766159057617,-73.93512725830078,40.74496841430664,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-13 23:40:34,2016-01-13 23:46:26,1,1.47,,,-73.9332504272461,40.68599319458008,-73.94889831542969,40.67681121826172,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-01 01:50:45,2016-01-01 01:55:30,1,0.77,,,-73.9033432006836,40.745723724365234,-73.90633392333984,40.75303649902344,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-01 20:37:03,2016-01-01 20:42:53,1,1.52,,,-73.93904876708984,40.80526351928711,-73.95024871826172,40.786895751953125,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-08 14:46:42,2016-01-08 14:49:25,1,0.88,,,-73.96216583251953,40.710201263427734,-73.96379852294922,40.71638488769531,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +1,2016-01-16 12:04:53,2016-01-16 12:11:46,1,1.5,,,-73.93726348876953,40.802711486816406,-73.95246887207031,40.78955078125,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-25 02:50:30,2016-01-25 03:05:36,1,7.2,,,-73.9878158569336,40.702484130859375,-73.9490966796875,40.773521423339844,1,N,1,21.5,0.5,0.5,0.3,5.7,0.0,,28.5,1.0 +2,2016-01-20 16:27:56,2016-01-20 16:43:27,1,2.57,,,-73.9433364868164,40.83595275878906,-73.91191864013672,40.854148864746094,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-08 14:11:10,2016-01-08 14:30:02,1,2.77,,,-73.9480209350586,40.80934143066406,-73.93911743164062,40.841617584228516,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-13 22:51:09,2016-01-13 23:01:44,1,1.8,,,-73.92566680908203,40.827972412109375,-73.94029998779297,40.84070587158203,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-04 18:24:49,2016-01-04 18:40:52,1,2.5,,,-73.96744537353516,40.691776275634766,-73.95767211914062,40.71452331542969,1,N,2,12.0,1.0,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-21 03:59:25,2016-01-21 04:05:54,3,1.2,,,-73.9229965209961,40.7064323425293,-73.9238052368164,40.69416427612305,1,N,1,6.5,0.5,0.5,0.3,1.95,0.0,,9.75,1.0 +2,2016-01-27 20:57:29,2016-01-27 21:08:49,1,3.29,,,-73.95101165771484,40.72370529174805,-73.98977661132812,40.71921157836914,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-02 20:39:04,2016-01-02 20:53:53,1,1.97,,,-73.91569519042969,40.74262619018555,-73.92937469482422,40.756752014160156,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-14 16:34:31,2016-01-14 16:48:09,1,1.94,,,-73.9403076171875,40.84060287475586,-73.93655395507812,40.82051467895508,1,N,2,11.0,1.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-01 00:19:08,2016-01-01 00:27:48,1,2.5,,,-73.93009185791016,40.67936325073242,-73.96773529052734,40.67544937133789,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-22 23:10:43,2016-01-23 00:00:00,1,0.72,,,-73.89956665039062,40.741310119628906,-73.9021224975586,40.73188400268555,1,N,1,4.5,0.5,0.5,0.3,2.9,0.0,,8.7,1.0 +2,2016-01-15 18:10:48,2016-01-15 18:21:29,1,2.85,,,-73.91763305664062,40.769996643066406,-73.87287139892578,40.77410125732422,1,N,1,11.0,1.0,0.5,0.3,2.56,0.0,,15.36,1.0 +2,2016-01-03 22:07:22,2016-01-03 22:17:26,1,2.17,,,-73.94511413574219,40.80757522583008,-73.9181900024414,40.82291793823242,1,N,1,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-09 09:11:23,2016-01-09 09:25:48,1,6.0,,,-73.90467071533203,40.879024505615234,-73.9371109008789,40.80476379394531,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-26 23:24:09,2016-01-26 23:29:26,1,1.12,,,-73.84405517578125,40.7210578918457,-73.85116577148438,40.73579406738281,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-27 20:09:02,2016-01-27 20:12:08,1,0.8,,,-73.97624969482422,40.683528900146484,-73.96304321289062,40.679195404052734,1,N,1,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-24 20:28:53,2016-01-24 20:41:47,2,2.25,,,-73.97765350341797,40.68410110473633,-73.95984649658203,40.65576171875,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,,14.76,1.0 +1,2016-01-27 17:45:23,2016-01-27 17:59:19,1,2.2,,,-73.91178131103516,40.775123596191406,-73.88978576660156,40.75508499145508,1,N,1,11.5,1.0,0.5,0.3,2.65,0.0,,15.95,1.0 +2,2016-01-10 11:09:50,2016-01-10 11:21:07,1,2.64,,,-73.9377212524414,40.812591552734375,-73.95508575439453,40.78037643432617,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +1,2016-01-14 16:11:32,2016-01-14 17:32:12,1,13.9,,,-73.99507141113281,40.679283142089844,-73.77632904052734,40.64550018310547,1,N,1,59.0,1.0,0.5,0.3,12.16,0.0,,72.96,1.0 +2,2016-01-07 11:06:37,2016-01-07 11:12:38,5,1.07,,,-73.96656799316406,40.80481719970703,-73.97442626953125,40.791011810302734,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-16 16:11:42,2016-01-16 16:30:46,1,5.39,,,-73.99046325683594,40.686676025390625,-73.95777130126953,40.722049713134766,1,N,1,19.5,0.0,0.5,0.3,5.08,0.0,,25.38,1.0 +2,2016-01-20 21:47:29,2016-01-20 21:51:54,1,1.13,,,-73.94065856933594,40.7972412109375,-73.95208740234375,40.790122985839844,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-04 19:12:48,2016-01-04 19:19:18,4,1.6,,,-73.75574493408203,40.67573165893555,-73.74652862548828,40.69702911376953,5,N,1,0.0,0.0,0.0,0,100.0,0.0,,100.0,2.0 +2,2016-01-09 14:39:10,2016-01-09 14:41:41,1,0.47,,,-73.96179962158203,40.810367584228516,-73.96038818359375,40.815731048583984,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-15 21:02:57,2016-01-15 21:11:21,2,1.75,,,-73.86357879638672,40.73270797729492,-73.84044647216797,40.71860885620117,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-29 14:25:20,2016-01-29 14:34:44,1,0.0,,,-73.94076538085938,40.814231872558594,-73.95344543457031,40.80618667602539,1,Y,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-22 22:43:39,2016-01-22 22:49:12,1,0.75,,,-73.94499206542969,40.79987716674805,-73.93778991699219,40.79952621459961,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-16 20:54:12,2016-01-16 21:06:07,1,2.74,,,-73.99286651611328,40.68684005737305,-73.99295043945312,40.71974563598633,1,N,1,11.5,0.5,0.5,0.3,3.2,0.0,,16.0,1.0 +2,2016-01-18 00:11:35,2016-01-18 00:14:07,1,0.56,,,-73.8441162109375,40.721126556396484,-73.84867858886719,40.71408462524414,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-01 00:45:19,2016-01-01 00:58:08,1,4.04,,,-73.92353820800781,40.74351501464844,-73.85218048095703,40.732852935791016,1,N,1,14.5,0.5,0.5,0.3,4.74,0.0,,20.54,1.0 +2,2016-01-11 15:31:36,2016-01-11 15:40:12,2,0.86,,,-73.98323059082031,40.6936149597168,-73.99263000488281,40.6927604675293,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,,8.8,1.0 +2,2016-01-01 22:51:13,2016-01-01 23:12:47,2,9.96,,,-73.92021179199219,40.76642990112305,-74.00048828125,40.727325439453125,1,N,1,30.0,0.5,0.5,0.3,6.26,0.0,,37.56,1.0 +1,2016-01-13 09:11:20,2016-01-13 09:15:33,1,0.6,,,-73.99153137207031,40.69999694824219,-73.9917984008789,40.692630767822266,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-02 10:42:37,2016-01-02 10:44:47,1,0.5,,,-73.95503997802734,40.79946517944336,-73.9562759399414,40.804901123046875,1,N,1,4.0,0.0,0.5,0.3,0.95,0.0,,5.75,1.0 +2,2016-01-30 02:43:50,2016-01-30 02:55:44,1,2.45,,,-73.95590209960938,40.71951675415039,-73.94381713867188,40.69827651977539,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-03 15:58:38,2016-01-03 16:06:51,1,1.72,,,-73.9453125,40.80793380737305,-73.96492767333984,40.79604721069336,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-09 10:47:29,2016-01-09 10:52:29,2,0.8,,,-73.9553451538086,40.81993103027344,-73.95899200439453,40.811038970947266,1,N,1,5.5,0.0,0.5,0.3,1.55,0.0,,7.85,1.0 +2,2016-01-09 04:20:19,2016-01-09 04:28:45,6,1.84,,,-73.8988037109375,40.74599838256836,-73.86856842041016,40.74919891357422,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-28 18:26:25,2016-01-28 18:31:19,1,0.77,,,-73.96221160888672,40.810237884521484,-73.9693603515625,40.80058670043945,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-02 19:46:19,2016-01-02 20:05:13,1,2.94,,,-73.94803619384766,40.808773040771484,-73.90560150146484,40.823246002197266,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-16 11:43:02,2016-01-16 11:50:43,1,1.44,,,-73.98567962646484,40.67383575439453,-73.96391296386719,40.67183303833008,1,N,1,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-29 18:06:58,2016-01-29 18:40:26,5,8.07,,,-73.9757080078125,40.68708801269531,-73.9644775390625,40.76006317138672,1,N,1,28.0,1.0,0.5,0.3,5.96,0.0,,35.76,1.0 +1,2016-01-27 21:35:40,2016-01-27 22:02:13,1,0.4,,,-73.85855102539062,40.71125030517578,-73.85993194580078,40.71128463745117,1,Y,1,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-20 18:39:11,2016-01-20 18:49:00,1,1.36,,,-73.98625946044922,40.70383071899414,-73.995849609375,40.691707611083984,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-27 19:54:13,2016-01-27 20:06:17,1,3.22,,,-73.94019317626953,40.840728759765625,-73.92235565185547,40.85981369018555,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-02 21:53:20,2016-01-02 21:59:46,1,1.77,,,-73.8077163696289,40.7004508972168,-73.8050308227539,40.6803092956543,1,N,1,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-13 15:37:02,2016-01-13 16:02:36,1,6.63,,,-73.94964599609375,40.826087951660156,-73.8624267578125,40.81273651123047,1,N,2,22.5,0.0,0.5,0.3,0.0,0.0,,23.3,1.0 +2,2016-01-16 22:33:13,2016-01-16 22:48:35,1,2.72,,,-73.95699310302734,40.71440124511719,-73.96664428710938,40.68809127807617,1,N,1,12.5,0.5,0.5,0.3,3.45,0.0,,17.25,1.0 +2,2016-01-19 00:25:22,2016-01-19 00:30:40,1,0.6,,,-73.94515991210938,40.80803680419922,-73.94573211669922,40.8145751953125,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-03 18:18:58,2016-01-03 18:24:59,1,0.77,,,-73.97697448730469,40.681678771972656,-73.96849060058594,40.6861457824707,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-08 17:07:52,2016-01-08 17:14:21,1,2.84,,,-73.91779327392578,40.770042419433594,-73.87238311767578,40.774471282958984,1,N,1,10.0,1.0,0.5,0.3,2.95,0.0,,14.75,1.0 +2,2016-01-29 23:55:55,2016-01-29 23:59:50,1,1.13,,,-73.94819641113281,40.789772033691406,-73.93800354003906,40.79707717895508,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-03 19:46:23,2016-01-03 19:52:13,1,0.85,,,-73.8966293334961,40.748111724853516,-73.8849868774414,40.74456024169922,1,N,1,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-03 10:32:10,2016-01-03 10:48:04,1,4.58,,,-73.96410369873047,40.80484390258789,-73.99224853515625,40.749202728271484,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,,19.56,1.0 +2,2016-01-09 20:32:59,2016-01-09 20:42:55,1,1.0,,,-73.96125030517578,40.7145881652832,-73.9489974975586,40.726158142089844,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-21 11:15:39,2016-01-21 11:38:18,1,4.48,,,-73.8760986328125,40.74837875366211,-73.94255065917969,40.73904800415039,1,N,2,19.0,0.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-17 18:48:52,2016-01-17 18:54:17,1,1.36,,,-73.8442153930664,40.72154235839844,-73.82299041748047,40.71350860595703,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-02 01:44:08,2016-01-02 01:48:38,1,0.63,,,-73.92329406738281,40.74346923828125,-73.910400390625,40.74451446533203,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-17 05:12:27,2016-01-17 05:22:35,1,2.59,,,-73.93745422363281,40.80141067504883,-73.9367904663086,40.80215835571289,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-17 04:25:48,2016-01-17 05:01:20,1,3.14,,,-73.90713500976562,40.876224517822266,-73.91007232666016,40.87470626831055,1,N,1,23.5,0.5,0.5,0.3,7.44,0.0,,32.24,1.0 +2,2016-01-22 22:43:49,2016-01-22 22:48:49,1,1.04,,,-73.95756530761719,40.71794891357422,-73.94178771972656,40.72587585449219,1,N,1,5.5,0.5,0.5,0.3,1.7,0.0,,8.5,1.0 +2,2016-01-17 11:37:03,2016-01-17 11:57:40,1,7.07,,,-73.94430541992188,40.83491897583008,-73.97583770751953,40.758216857910156,5,N,1,25.0,0.0,0.0,0,5.0,0.0,,30.0,2.0 +2,2016-01-30 00:22:23,2016-01-30 00:42:13,1,3.94,,,-73.95758056640625,40.721412658691406,-73.94496154785156,40.6758918762207,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-17 22:05:40,2016-01-17 22:12:05,1,1.36,,,-73.9625244140625,40.717628479003906,-73.94192504882812,40.716590881347656,1,N,1,7.0,0.5,0.5,0.3,2.49,0.0,,10.79,1.0 +1,2016-01-12 09:40:17,2016-01-12 10:12:46,1,6.3,,,-73.93354034423828,40.8543701171875,-73.95278930664062,40.81071090698242,1,N,2,26.0,0.0,0.5,0.3,0.0,0.0,,26.8,1.0 +2,2016-01-11 11:38:54,2016-01-11 11:49:34,1,1.86,,,-73.9178695678711,40.74650573730469,-73.92276000976562,40.765052795410156,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-01 03:17:42,2016-01-01 03:20:49,1,0.86,,,-73.9260482788086,40.74431228637695,-73.9214096069336,40.75596618652344,1,N,1,5.0,0.5,0.5,0.3,1.58,0.0,,7.88,1.0 +2,2016-01-11 10:16:56,2016-01-11 10:49:29,1,6.56,,,-73.88776397705078,40.747230529785156,-73.98421478271484,40.749366760253906,1,N,1,27.5,0.0,0.5,0.3,6.77,5.54,,40.61,1.0 +2,2016-01-09 01:52:55,2016-01-09 01:59:04,1,0.98,,,-73.97350311279297,40.68596267700195,-73.95506286621094,40.6879768371582,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-09 23:45:51,2016-01-09 23:54:20,1,1.59,,,-73.95845794677734,40.71712875366211,-73.94309997558594,40.7064323425293,1,N,1,8.0,0.5,0.5,0.3,1.4,0.0,,10.7,1.0 +2,2016-01-11 07:59:38,2016-01-11 08:09:03,1,2.29,,,-73.9546890258789,40.68088150024414,-73.93025970458984,40.6938591003418,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-01 00:15:25,2016-01-01 00:23:18,1,1.55,,,-73.92546081542969,40.69131851196289,-73.92599487304688,40.70100402832031,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-20 09:35:30,2016-01-20 10:00:24,1,8.32,,,-73.95996856689453,40.80824661254883,-73.86475372314453,40.77033233642578,1,N,1,27.5,0.0,0.5,0.3,8.46,5.54,,42.3,1.0 +1,2016-01-14 18:37:08,2016-01-14 19:07:14,1,5.1,,,-73.98970794677734,40.68569564819336,-73.90937042236328,40.700340270996094,1,N,1,21.0,1.0,0.5,0.3,2.0,0.0,,24.8,1.0 +2,2016-01-12 20:35:57,2016-01-12 20:42:52,1,1.29,,,-73.97937774658203,40.68669128417969,-73.98454284667969,40.70147705078125,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-16 18:02:19,2016-01-16 18:07:44,1,2.83,,,-73.91778564453125,40.770076751708984,-73.87164306640625,40.77428436279297,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +1,2016-01-21 19:08:55,2016-01-21 19:29:49,1,3.6,,,-73.93789672851562,40.81840515136719,-73.97520446777344,40.79018020629883,1,N,1,16.0,1.0,0.5,0.3,0.0,0.0,,17.8,1.0 +1,2016-01-04 08:40:49,2016-01-04 09:15:47,1,5.5,,,-73.94482421875,40.81904220581055,-73.97840881347656,40.75714874267578,1,N,1,25.0,0.0,0.5,0.3,0.0,0.0,,25.8,1.0 +2,2016-01-22 00:48:10,2016-01-22 00:56:20,1,1.53,,,-73.97759246826172,40.680686950683594,-73.9843521118164,40.69127655029297,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +1,2016-01-20 08:43:03,2016-01-20 08:54:09,1,2.7,,,-73.85125732421875,40.743072509765625,-73.82653045654297,40.764163970947266,1,N,1,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-14 10:17:40,2016-01-14 10:44:50,1,4.5,,,-73.97654724121094,40.68510818481445,-73.8908462524414,40.67795944213867,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,,20.3,1.0 +1,2016-01-04 17:56:39,2016-01-04 18:27:35,1,6.0,,,-73.91044616699219,40.77620315551758,-73.99129486083984,40.76020812988281,1,N,1,24.0,1.0,0.5,0.3,5.15,0.0,,30.95,1.0 +2,2016-01-16 21:41:27,2016-01-16 21:48:46,1,1.03,,,-73.94629669189453,40.80820083618164,-73.96050262451172,40.817405700683594,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-12 21:12:15,2016-01-12 21:24:55,1,2.89,,,-73.96346282958984,40.71038055419922,-73.95649719238281,40.67502212524414,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,,15.36,1.0 +2,2016-01-16 02:18:44,2016-01-16 02:22:08,1,0.8,,,-73.95368194580078,40.80670166015625,-73.94499206542969,40.81330871582031,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-02 21:03:48,2016-01-02 21:06:02,1,0.91,,,-73.93889617919922,40.80243682861328,-73.94711303710938,40.79108428955078,1,N,1,4.5,0.5,0.5,0.3,1.74,0.0,,7.54,1.0 +2,2016-01-16 21:25:48,2016-01-16 21:34:48,1,1.54,,,-73.99349975585938,40.687339782714844,-73.96812438964844,40.6795768737793,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +1,2016-01-02 10:51:26,2016-01-02 11:23:49,1,7.1,,,-73.90373229980469,40.74561309814453,-73.98777770996094,40.74394226074219,1,N,1,27.5,0.0,0.5,0.3,5.65,0.0,,33.95,1.0 +2,2016-01-01 18:30:41,2016-01-01 18:40:23,2,1.66,,,-73.8692855834961,40.73391342163086,-73.85839080810547,40.7468376159668,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-28 09:59:35,2016-01-28 10:15:46,1,1.98,,,-73.9515609741211,40.727596282958984,-73.95560455322266,40.71236038208008,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,,15.36,1.0 +2,2016-01-02 13:14:43,2016-01-02 13:22:16,5,1.47,,,-73.95632934570312,40.81317138671875,-73.96564483642578,40.80544662475586,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-10 02:16:42,2016-01-10 02:23:28,1,1.63,,,-73.97825622558594,40.684417724609375,-73.95314025878906,40.68812561035156,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-25 19:23:36,2016-01-25 19:34:18,1,1.22,,,-73.82489776611328,40.760902404785156,-73.81058502197266,40.75419616699219,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-19 07:57:22,2016-01-19 07:57:24,2,0.0,,,-73.95807647705078,40.6945915222168,-73.95808410644531,40.69457244873047,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +2,2016-01-29 20:39:19,2016-01-29 20:42:28,1,0.46,,,-73.8322525024414,40.71487045288086,-73.82886505126953,40.71175765991211,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-02 02:59:20,2016-01-02 03:15:36,1,5.1,,,-73.95770263671875,40.72997283935547,-73.958251953125,40.67029571533203,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-02 19:43:09,2016-01-02 19:50:42,1,1.41,,,-73.9537353515625,40.806636810302734,-73.93562316894531,40.8120002746582,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-19 18:06:21,2016-01-19 18:11:08,1,0.56,,,-73.88372039794922,40.75567626953125,-73.88528442382812,40.75028610229492,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-20 20:45:47,2016-01-20 20:52:46,1,1.51,,,-73.80718994140625,40.69923400878906,-73.81494903564453,40.68385696411133,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,,9.3,1.0 +1,2016-01-12 17:23:47,2016-01-12 17:34:24,1,1.0,,,-73.9300308227539,40.669029235839844,-73.91777801513672,40.666748046875,1,N,1,8.5,1.0,0.5,0.3,2.0,0.0,,12.3,1.0 +1,2016-01-05 07:54:38,2016-01-05 07:59:50,2,0.5,,,-73.94889831542969,40.79426574707031,-73.9439697265625,40.795528411865234,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-28 17:37:33,2016-01-28 17:48:47,6,1.82,,,-73.90045166015625,40.884193420410156,-73.9195327758789,40.88048553466797,1,N,1,9.5,1.0,0.5,0.3,2.0,0.0,,13.3,1.0 +2,2016-01-08 22:50:39,2016-01-08 22:54:05,1,0.72,,,-73.93096923828125,40.77391815185547,-73.91835021972656,40.77012634277344,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-10 19:04:56,2016-01-10 19:12:05,1,1.22,,,-73.97975158691406,40.67738723754883,-73.99226379394531,40.66257095336914,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-27 17:38:56,2016-01-27 17:48:34,1,1.02,,,-73.9908218383789,40.69223403930664,-74.00048828125,40.68573760986328,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-14 07:55:52,2016-01-14 08:06:05,1,1.18,,,-73.94447326660156,40.824005126953125,-73.92720794677734,40.81625747680664,1,N,1,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-03 20:54:05,2016-01-03 20:57:34,1,0.9,,,-73.8886947631836,40.74554443359375,-73.89964294433594,40.741371154785156,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-20 09:59:06,2016-01-20 10:19:47,4,2.37,,,-73.9557113647461,40.78804397583008,-73.97062683105469,40.75882339477539,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,,17.76,1.0 +2,2016-01-27 06:14:53,2016-01-27 06:23:53,2,2.52,,,-73.94818115234375,40.74585723876953,-73.97200012207031,40.76348876953125,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,,12.96,1.0 +1,2016-01-07 08:36:27,2016-01-07 08:41:23,1,0.9,,,-73.95643615722656,40.74797058105469,-73.94277954101562,40.74693298339844,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-14 05:37:28,2016-01-14 05:50:30,1,6.96,,,-73.91693115234375,40.77096176147461,-73.9570083618164,40.70810317993164,1,N,1,21.5,0.5,0.5,0.3,4.56,0.0,,27.36,1.0 +2,2016-01-16 02:14:50,2016-01-16 02:21:17,2,1.62,,,-73.92475891113281,40.7564697265625,-73.94854736328125,40.76347732543945,1,N,1,7.5,0.5,0.5,0.3,2.64,0.0,,11.44,1.0 +2,2016-01-30 00:21:56,2016-01-30 00:44:51,1,4.49,,,-73.98138427734375,40.675071716308594,-73.92157745361328,40.69955062866211,1,N,1,18.0,0.5,0.5,0.3,3.86,0.0,,23.16,1.0 +2,2016-01-04 19:32:43,2016-01-04 19:40:51,1,1.53,,,-73.84394073486328,40.72235870361328,-73.85090637207031,40.74211120605469,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-19 08:41:56,2016-01-19 08:47:55,1,0.95,,,-73.8854751586914,40.75564193725586,-73.89091491699219,40.74705505371094,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-21 01:43:05,2016-01-21 01:46:46,1,1.28,,,-73.98271179199219,40.6777458190918,-73.99732971191406,40.68362045288086,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-10 16:22:46,2016-01-10 16:28:55,6,1.77,,,-73.849609375,40.732810974121094,-73.83318328857422,40.71646499633789,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-08 12:04:57,2016-01-08 12:30:34,1,4.1,,,-73.95612335205078,40.675865173339844,-73.94522857666016,40.71806716918945,1,N,1,18.5,0.0,0.5,0.3,2.0,0.0,,21.3,1.0 +2,2016-01-12 12:22:46,2016-01-12 12:27:32,1,0.79,,,-73.93614196777344,40.79635238647461,-73.9498519897461,40.802207946777344,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,,6.8,1.0 +1,2016-01-02 08:30:25,2016-01-02 08:45:48,1,3.0,,,-73.95230865478516,40.68055725097656,-73.9911880493164,40.67250442504883,1,N,1,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-29 21:12:32,2016-01-29 21:18:46,1,1.34,,,-73.9379653930664,40.80475616455078,-73.93803405761719,40.79216766357422,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-16 23:38:46,2016-01-16 23:42:59,1,1.4,,,-73.93923950195312,40.80527877807617,-73.95211029052734,40.787322998046875,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-05 19:57:42,2016-01-05 20:10:42,1,2.75,,,-73.95584106445312,40.68124008178711,-73.9262924194336,40.66413879394531,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-22 12:34:06,2016-01-22 12:49:48,1,2.85,,,-73.95538330078125,40.81990051269531,-73.9747085571289,40.78776168823242,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-05 14:23:28,2016-01-05 14:29:01,1,0.93,,,-73.928955078125,40.85935592651367,-73.923095703125,40.865882873535156,5,N,2,7.0,0.0,0.0,0,0.0,0.0,,7.0,2.0 +2,2016-01-13 17:16:33,2016-01-13 17:22:17,1,1.0,,,-73.95887756347656,40.80978012084961,-73.96977233886719,40.80127716064453,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-14 22:18:50,2016-01-14 22:34:34,1,4.26,,,-73.92550659179688,40.76201248168945,-73.87528991699219,40.73358917236328,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-04 11:28:43,2016-01-04 11:45:18,1,3.92,,,-73.85359954833984,40.726741790771484,-73.843994140625,40.68056106567383,1,N,1,15.5,0.0,0.5,0.3,1.0,0.0,,17.3,1.0 +1,2016-01-30 07:37:44,2016-01-30 07:43:39,1,1.8,,,-73.95906066894531,40.70888900756836,-73.98756408691406,40.71847915649414,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,,10.55,1.0 +1,2016-01-05 00:36:05,2016-01-05 00:39:37,1,1.0,,,-73.95425415039062,40.587345123291016,-73.95030975341797,40.57822799682617,1,N,1,5.5,0.5,0.5,0.3,1.7,0.0,,8.5,1.0 +2,2016-01-26 17:06:20,2016-01-26 17:25:29,5,2.44,,,-73.97879028320312,40.691200256347656,-73.96096801757812,40.69401931762695,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-26 16:26:49,2016-01-26 16:30:49,1,0.55,,,-73.96687316894531,40.80442810058594,-73.97013854980469,40.79690933227539,1,N,1,4.5,1.0,0.5,0.3,1.58,0.0,,7.88,1.0 +2,2016-01-15 07:05:31,2016-01-15 07:28:32,1,4.56,,,-73.96414947509766,40.69401550292969,-73.94416046142578,40.746421813964844,1,N,1,19.0,0.0,0.5,0.3,2.97,0.0,,22.77,1.0 +2,2016-01-01 21:11:26,2016-01-01 21:21:54,1,2.98,,,-73.96588134765625,40.688350677490234,-73.9587173461914,40.72214126586914,1,N,1,11.0,0.5,0.5,0.3,1.8,0.0,,14.1,1.0 +2,2016-01-30 12:58:56,2016-01-30 13:12:23,1,2.29,,,-73.99028778076172,40.68671417236328,-73.95603942871094,40.676082611083984,1,N,1,11.0,0.0,0.5,0.3,2.0,0.0,,13.8,1.0 +1,2016-01-15 17:48:06,2016-01-15 17:56:59,1,0.5,,,-73.94569396972656,40.80707550048828,-73.94203186035156,40.80217742919922,1,N,1,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-06 15:21:40,2016-01-06 15:43:33,5,3.38,,,-73.9660415649414,40.804840087890625,-73.92444610595703,40.810943603515625,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +1,2016-01-21 13:01:04,2016-01-21 13:27:14,1,7.1,,,-73.98975372314453,40.6962890625,-73.99482727050781,40.75044631958008,1,N,2,24.5,0.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-08 22:11:55,2016-01-08 22:20:19,1,1.38,,,-73.9271469116211,40.86541748046875,-73.93054962158203,40.852020263671875,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-18 20:35:28,2016-01-18 20:45:23,1,1.95,,,-73.8442153930664,40.72102737426758,-73.85520935058594,40.74321365356445,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-14 21:15:18,2016-01-14 21:24:38,1,1.85,,,-73.964599609375,40.80337905883789,-73.94342041015625,40.81515121459961,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-27 13:45:12,2016-01-27 13:57:44,1,1.31,,,-73.96075439453125,40.80186462402344,-73.97163391113281,40.784488677978516,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-14 17:32:09,2016-01-14 17:42:55,1,1.46,,,-73.95366668701172,40.790740966796875,-73.96800231933594,40.80162048339844,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-28 11:35:54,2016-01-28 11:46:21,2,2.0,,,-73.96465301513672,40.674903869628906,-73.9881362915039,40.66698455810547,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-04 18:04:19,2016-01-04 18:12:30,1,1.45,,,-73.90333557128906,40.745811462402344,-73.90287017822266,40.738285064697266,1,N,1,7.5,1.0,0.5,0.3,0.46,0.0,,9.76,1.0 +2,2016-01-22 09:07:47,2016-01-22 09:24:14,1,1.77,,,-73.93888854980469,40.80494689941406,-73.95491027832031,40.821895599365234,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-25 01:57:41,2016-01-25 01:58:17,1,0.1,,,-73.94911193847656,40.807838439941406,-73.9483871459961,40.80883026123047,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-21 15:49:47,2016-01-21 15:56:03,5,1.05,,,-73.89077758789062,40.74643325805664,-73.89322662353516,40.73467254638672,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-13 11:45:14,2016-01-13 11:56:28,1,2.38,,,-73.89397430419922,40.86200714111328,-73.9093246459961,40.876243591308594,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-15 17:42:30,2016-01-15 17:49:50,1,0.96,,,-73.89122772216797,40.74690628051758,-73.88554382324219,40.75545883178711,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-17 19:03:30,2016-01-17 19:22:49,1,7.07,,,-73.89253234863281,40.747779846191406,-73.84587097167969,40.78409194946289,1,N,2,22.5,0.0,0.5,0.3,0.0,0.0,,23.3,1.0 +2,2016-01-13 21:23:37,2016-01-13 21:27:08,1,0.62,,,-73.9117431640625,40.7755126953125,-73.91983795166016,40.77925109863281,1,N,1,4.5,0.5,0.5,0.3,4.0,0.0,,9.8,1.0 +2,2016-01-04 13:26:10,2016-01-04 13:38:23,1,1.1,,,-73.9875259399414,40.69099044799805,0.0,0.0,1,N,1,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-30 05:14:31,2016-01-30 05:19:19,1,1.23,,,-73.98822021484375,40.66685485839844,-73.9802474975586,40.68143844604492,1,N,1,6.0,0.5,0.5,0.3,1.5,0.0,,8.8,1.0 +2,2016-01-05 07:38:23,2016-01-05 07:41:33,1,0.43,,,-73.95272827148438,40.82323455810547,-73.9507827758789,40.82855224609375,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-07 14:57:28,2016-01-07 15:00:35,1,0.6,,,-73.95663452148438,40.71689987182617,-73.96220397949219,40.71017837524414,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-02 12:32:47,2016-01-02 12:42:46,1,3.14,,,-73.91984558105469,40.74310302734375,-73.88671875,40.75783157348633,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-28 08:59:43,2016-01-28 09:06:35,1,0.93,,,-73.98284912109375,40.702186584472656,-73.98893737792969,40.69316101074219,1,N,1,6.5,0.0,0.5,0.3,2.19,0.0,,9.49,1.0 +2,2016-01-06 15:58:49,2016-01-06 16:12:10,1,3.68,,,-73.92156219482422,40.8264274597168,-73.92138671875,40.86427688598633,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,,17.76,1.0 +2,2016-01-26 19:38:43,2016-01-26 19:42:46,4,0.48,,,-73.92542266845703,40.7617301940918,-73.92411804199219,40.767356872558594,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-05 06:01:34,2016-01-05 06:18:46,1,7.46,,,-73.99958038330078,40.674766540527344,-73.95913696289062,40.73473358154297,1,N,1,22.5,0.0,0.5,0.3,3.0,0.0,,26.3,1.0 +1,2016-01-14 21:03:12,2016-01-14 21:03:29,1,0.1,,,-73.84199523925781,40.668212890625,-73.84228515625,40.669189453125,5,N,1,0.0,0.0,0.0,0,25.0,0.0,,25.0,2.0 +2,2016-01-06 17:12:05,2016-01-06 17:17:56,1,0.77,,,-73.99818420410156,40.68239212036133,-73.9935302734375,40.69206619262695,1,N,1,5.5,1.0,0.5,0.3,1.82,0.0,,9.12,1.0 +2,2016-01-11 07:51:33,2016-01-11 08:00:23,1,1.86,,,-73.95677947998047,40.81287384033203,-73.97442626953125,40.794986724853516,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-16 22:04:54,2016-01-16 22:22:27,3,4.91,,,-73.97803497314453,40.68507766723633,-73.9332504272461,40.70292282104492,1,N,1,17.5,0.5,0.5,0.3,3.76,0.0,,22.56,1.0 +2,2016-01-27 13:25:37,2016-01-27 13:37:01,1,1.72,,,-73.9581298828125,40.800785064697266,-73.95297241210938,40.7889518737793,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-11 17:45:55,2016-01-11 18:07:03,5,2.17,,,-73.995361328125,40.683258056640625,-73.98969268798828,40.665748596191406,1,N,1,14.5,1.0,0.5,0.3,3.26,0.0,,19.56,1.0 +2,2016-01-08 20:14:18,2016-01-08 20:18:12,6,1.05,,,-73.98707580566406,40.69392776489258,-73.96954345703125,40.69571304321289,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-15 13:29:03,2016-01-15 13:45:54,1,2.76,,,-73.92587280273438,40.671260833740234,-73.9385757446289,40.70411682128906,1,N,1,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-30 02:03:09,2016-01-30 02:27:56,1,4.06,,,-73.95780944824219,40.714603424072266,-73.9945297241211,40.740234375,1,N,1,18.5,0.5,0.5,0.3,3.96,0.0,,23.76,1.0 +2,2016-01-26 08:14:24,2016-01-26 08:25:00,1,1.35,,,-73.86610412597656,40.84539031982422,-73.8645248413086,40.863033294677734,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-11 23:55:04,2016-01-11 23:56:25,5,0.51,,,-73.94120025634766,40.71194076538086,-73.95046997070312,40.71106719970703,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-06 07:28:15,2016-01-06 07:34:58,1,0.73,,,-73.94939422607422,40.79347229003906,-73.95122528076172,40.785247802734375,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +1,2016-01-09 16:39:10,2016-01-09 16:48:49,1,2.1,,,-74.01580047607422,40.67546081542969,-73.99787139892578,40.67462158203125,1,N,1,9.0,1.0,0.5,0.3,3.2,0.0,,14.0,1.0 +2,2016-01-04 09:55:10,2016-01-04 09:57:55,1,0.7,,,-73.92379760742188,40.76408767700195,-73.9309310913086,40.75520324707031,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-30 18:22:13,2016-01-30 18:36:34,1,2.27,,,-73.96095275878906,40.65022659301758,-73.97457885742188,40.68046188354492,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-18 13:19:54,2016-01-18 13:30:01,1,1.99,,,-73.95278930664062,40.80337142944336,-73.97467803955078,40.78751754760742,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-17 21:57:39,2016-01-17 22:13:37,1,7.45,,,-73.91302490234375,40.766258239746094,-73.85334777832031,40.82789611816406,1,N,2,22.5,0.5,0.5,0.3,0.0,5.54,,29.34,1.0 +2,2016-01-14 01:14:53,2016-01-14 01:17:25,1,0.62,,,-73.80779266357422,40.70074462890625,-73.80558776855469,40.69300079345703,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-28 09:13:38,2016-01-28 09:24:05,1,1.48,,,-73.9546127319336,40.820556640625,-73.9409408569336,40.83920669555664,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-29 18:07:27,2016-01-29 18:07:36,2,0.0,,,-73.97598266601562,40.68385696411133,-73.97598266601562,40.683860778808594,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,,52.8,1.0 +2,2016-01-29 23:22:49,2016-01-29 23:28:01,1,0.96,,,-73.95759582519531,40.717899322509766,-73.95751190185547,40.7295036315918,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +1,2016-01-05 09:01:26,2016-01-05 09:05:05,1,0.7,,,-73.96623229980469,40.68981170654297,-73.9802474975586,40.689842224121094,1,N,1,4.5,0.0,0.5,0.3,0.5,0.0,,5.8,1.0 +2,2016-01-19 20:53:51,2016-01-19 21:00:06,2,2.19,,,-73.980224609375,40.66852569580078,-73.97457122802734,40.64328384399414,1,N,1,8.5,0.5,0.5,0.3,2.94,0.0,,12.74,1.0 +2,2016-01-01 21:05:13,2016-01-01 21:15:15,1,3.22,,,-73.93163299560547,40.80112075805664,-73.94613647460938,40.82731246948242,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-22 14:06:27,2016-01-22 14:12:41,1,1.02,,,-73.96050262451172,40.688865661621094,-73.94831085205078,40.69770050048828,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-19 07:58:41,2016-01-19 08:06:32,1,1.25,,,-73.94244384765625,40.806392669677734,-73.95195007324219,40.79314041137695,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-20 14:57:46,2016-01-20 15:00:59,1,0.7,,,-73.93878936767578,40.79148483276367,-73.94640350341797,40.78502655029297,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-17 06:46:01,2016-01-17 06:57:01,1,1.97,,,-73.94493103027344,40.824180603027344,-73.91952514648438,40.832122802734375,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,,12.88,1.0 +2,2016-01-05 10:16:35,2016-01-05 10:26:44,1,1.43,,,-73.892822265625,40.7473258972168,-73.87195587158203,40.75327682495117,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-20 14:24:05,2016-01-20 14:27:18,1,0.33,,,-73.93690490722656,40.824710845947266,-73.94024658203125,40.824981689453125,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-29 19:44:50,2016-01-29 19:52:26,1,1.41,,,-73.80754089355469,40.70045852661133,-73.81427764892578,40.687137603759766,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-30 18:56:08,2016-01-30 19:06:24,1,1.38,,,-73.98738861083984,40.69141387939453,-73.98664093017578,40.67681121826172,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-02 16:40:50,2016-01-02 16:50:27,1,1.89,,,-73.89615631103516,40.862266540527344,-73.86565399169922,40.85479736328125,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-01 01:38:20,2016-01-01 01:53:26,1,3.14,,,-73.92792510986328,40.697906494140625,-73.9590072631836,40.71662139892578,1,N,2,12.5,0.5,0.5,0.3,0.0,5.54,,19.34,1.0 +2,2016-01-08 00:30:22,2016-01-08 00:35:02,1,0.64,,,-73.84432983398438,40.72136306762695,-73.84085083007812,40.71311950683594,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,,7.3,1.0 +2,2016-01-01 00:12:25,2016-01-01 00:32:28,2,4.06,,,-73.95668029785156,40.729957580566406,-73.90283203125,40.70298385620117,1,N,1,16.0,0.5,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-12 00:02:45,2016-01-12 00:08:50,1,1.18,,,-73.95805358886719,40.81532669067383,-73.95203399658203,40.80372619628906,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-21 23:43:33,2016-01-21 23:51:03,1,2.64,,,-73.95734405517578,40.80423355102539,-73.9840087890625,40.779563903808594,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-24 16:01:00,2016-01-24 16:09:59,2,1.48,,,-73.9439926147461,40.74774169921875,-73.93212890625,40.76195526123047,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-05 20:42:04,2016-01-05 20:47:36,1,1.06,,,-73.94700622558594,40.8157844543457,-73.9568862915039,40.80214309692383,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-29 13:48:53,2016-01-29 13:53:37,1,0.76,,,-73.83021545410156,40.71373748779297,-73.82410430908203,40.70692443847656,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-19 07:56:29,2016-01-19 08:00:09,1,0.51,,,-73.94356536865234,40.81529235839844,-73.93858337402344,40.82210159301758,1,N,1,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-07 13:07:34,2016-01-07 13:09:38,1,0.39,,,-73.98271942138672,40.675743103027344,-73.97679138183594,40.67496109008789,1,N,1,3.5,0.0,0.5,0.3,1.29,0.0,,5.59,1.0 +1,2016-01-27 19:28:15,2016-01-27 19:37:59,1,1.4,,,-73.95295715332031,40.791175842285156,-73.97127532958984,40.797847747802734,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-11 08:51:47,2016-01-11 08:57:39,1,1.0,,,-73.9521255493164,40.823970794677734,-73.94322204589844,40.83613586425781,1,Y,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-29 13:31:30,2016-01-29 13:35:42,1,0.66,,,-73.93531799316406,40.795841217041016,-73.943115234375,40.79386520385742,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-13 05:54:07,2016-01-13 06:11:16,1,3.31,,,-73.97879028320312,40.683937072753906,-73.93061065673828,40.668548583984375,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-29 23:59:35,2016-01-30 00:02:57,1,0.69,,,-73.95794677734375,40.72181701660156,-73.96546173095703,40.713558197021484,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +1,2016-01-16 01:08:44,2016-01-16 01:15:51,1,1.4,,,-73.9399185180664,40.70846176147461,-73.92578125,40.69258117675781,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-30 23:05:13,2016-01-30 23:20:26,1,5.25,,,-73.96211242675781,40.805274963378906,-73.92550659179688,40.86719512939453,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-07 05:52:15,2016-01-07 06:00:29,1,2.51,,,-73.94164276123047,40.67640686035156,-73.95377349853516,40.65244674682617,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-29 20:15:02,2016-01-29 20:34:51,6,2.58,,,-73.97770690917969,40.68701934814453,-73.98143005371094,40.67495346069336,1,N,1,14.0,0.5,0.5,0.3,3.82,0.0,,19.12,1.0 +2,2016-01-14 08:14:40,2016-01-14 08:19:52,1,0.52,,,-73.94383239746094,40.67732620239258,-73.9409408569336,40.682579040527344,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-11 13:42:46,2016-01-11 13:53:24,1,1.03,,,-73.9658203125,40.80521774291992,-73.96278381347656,40.8044548034668,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-06 23:12:45,2016-01-06 23:33:09,1,6.19,,,-73.96305847167969,40.804107666015625,-73.93688201904297,40.846431732177734,1,N,1,21.5,0.5,0.5,0.3,5.7,0.0,,28.5,1.0 +2,2016-01-06 01:37:27,2016-01-06 01:57:06,5,6.9,,,-73.91500854492188,40.757110595703125,-73.95628356933594,40.80305862426758,1,N,2,21.5,0.5,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-23 01:39:18,2016-01-23 01:49:17,1,1.11,,,-73.95054626464844,40.72180938720703,-73.94363403320312,40.70963668823242,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +1,2016-01-15 16:32:20,2016-01-15 16:41:09,1,0.6,,,-73.95245361328125,40.81061935424805,-73.94181823730469,40.806190490722656,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-10 16:00:50,2016-01-10 16:26:44,1,4.09,,,-73.97373962402344,40.682987213134766,-73.94639587402344,40.634037017822266,1,N,1,18.5,0.0,0.5,0.3,3.86,0.0,,23.16,1.0 +1,2016-01-18 19:18:37,2016-01-18 19:38:58,1,5.6,,,-74.0016098022461,40.67290115356445,-73.95027923583984,40.68412399291992,1,N,1,20.0,0.0,0.5,0.3,4.15,0.0,,24.95,1.0 +1,2016-01-27 06:24:39,2016-01-27 06:31:38,1,1.2,,,-73.99397277832031,40.6816291809082,-73.97699737548828,40.68387985229492,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,,9.75,1.0 +2,2016-01-16 18:11:41,2016-01-16 18:24:40,1,1.85,,,-73.95724487304688,40.72495651245117,-73.9542236328125,40.70808029174805,1,N,1,10.0,0.0,0.5,0.3,3.24,0.0,,14.04,1.0 +2,2016-01-27 14:06:41,2016-01-27 14:13:47,1,0.69,,,-73.89229583740234,40.74671173095703,-73.87740325927734,40.746952056884766,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-12 09:53:39,2016-01-12 10:10:40,1,2.86,,,-73.9550552368164,40.78900146484375,-73.98834228515625,40.76746368408203,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-03 01:30:03,2016-01-03 01:40:41,1,2.37,,,-73.95588684082031,40.812740325927734,-73.92656707763672,40.819923400878906,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-06 13:55:17,2016-01-06 13:58:16,1,0.32,,,-73.9887466430664,40.67018508911133,-73.98458862304688,40.67518615722656,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-10 17:21:48,2016-01-10 17:28:17,1,0.68,,,-73.97789001464844,40.68476486206055,-73.98735809326172,40.68946075439453,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-15 08:44:07,2016-01-15 08:51:56,1,0.83,,,-73.94154357910156,40.78744125366211,-73.9509506225586,40.79158020019531,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-21 08:11:45,2016-01-21 08:16:25,5,0.87,,,-73.9178695678711,40.77003479003906,-73.90248107910156,40.76708221435547,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-18 19:49:57,2016-01-18 19:55:06,1,0.86,,,-73.9481430053711,40.81440353393555,-73.95597076416016,40.80353546142578,1,N,1,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-20 08:01:20,2016-01-20 08:45:57,1,6.1,,,-73.985107421875,40.688812255859375,-74.00131225585938,40.75166320800781,1,N,1,31.0,0.0,0.5,0.3,3.2,0.0,,35.0,1.0 +2,2016-01-07 23:55:54,2016-01-08 00:01:28,1,1.08,,,-73.95781707763672,40.71775817871094,-73.95538330078125,40.73014831542969,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-04 17:24:58,2016-01-04 17:45:30,1,1.85,,,-73.85846710205078,40.72889709472656,-73.8397216796875,40.71932601928711,1,N,2,14.0,1.0,0.5,0.3,0.0,0.0,,15.8,1.0 +1,2016-01-18 20:22:35,2016-01-18 20:26:40,1,0.7,,,-73.9564208984375,40.80298614501953,-73.94715118408203,40.8054084777832,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,,7.55,1.0 +2,2016-01-08 16:18:14,2016-01-08 16:29:21,3,2.26,,,-73.98869323730469,40.70054626464844,-73.9972152709961,40.72401809692383,1,N,1,10.5,1.0,0.5,0.3,1.0,0.0,,13.3,1.0 +2,2016-01-08 17:20:54,2016-01-08 17:30:14,1,1.47,,,-73.88802337646484,40.76750183105469,-73.87537384033203,40.752601623535156,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-01 03:36:53,2016-01-01 03:54:22,1,9.3,,,-73.98540496826172,40.66225814819336,-73.97634887695312,40.75186538696289,1,N,1,26.5,0.5,0.5,0.3,8.3,5.54,,41.64,1.0 +1,2016-01-17 17:57:31,2016-01-17 18:20:37,1,3.2,,,-73.9764404296875,40.673099517822266,-73.94347381591797,40.682586669921875,1,N,1,16.0,0.5,0.5,0.3,3.45,0.0,,20.75,1.0 +2,2016-01-30 05:43:57,2016-01-30 06:02:08,2,3.53,,,-73.95527648925781,40.719791412353516,-73.90575408935547,40.704917907714844,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-25 00:50:54,2016-01-25 00:59:29,1,1.26,,,-73.88128662109375,40.74779510498047,-73.8642349243164,40.74610900878906,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-02 03:08:43,2016-01-02 03:14:01,2,1.1,,,-73.84259033203125,40.719459533691406,-73.82572174072266,40.711910247802734,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-12 04:19:27,2016-01-12 04:24:19,1,1.27,,,-73.9550552368164,40.69471740722656,-73.931396484375,40.696773529052734,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 21:22:19,2016-01-01 21:23:51,1,0.58,,,-73.9458236694336,40.79003143310547,-73.94071197509766,40.793087005615234,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-29 03:42:57,2016-01-29 03:48:42,1,0.75,,,-73.87649536132812,40.74838638305664,-73.89046478271484,40.74690628051758,1,N,1,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-28 12:03:57,2016-01-28 12:24:34,1,2.98,,,-73.95047760009766,40.82664108276367,-73.97672271728516,40.78803634643555,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,,19.75,1.0 +2,2016-01-26 23:15:42,2016-01-26 23:34:10,1,3.67,,,-73.95929718017578,40.714927673339844,-73.9209213256836,40.68587875366211,1,N,1,14.5,0.5,0.5,0.3,3.95,0.0,,19.75,1.0 +2,2016-01-29 01:14:19,2016-01-29 01:17:13,1,0.45,,,-73.94025421142578,40.70112228393555,-73.9310531616211,40.7037467956543,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-28 00:34:56,2016-01-28 00:58:44,1,5.06,,,-73.95745849609375,40.718074798583984,-73.89706420898438,40.6783447265625,1,N,1,20.0,0.5,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-16 00:33:36,2016-01-16 01:14:32,1,13.62,,,-73.8827896118164,40.747802734375,-73.91915893554688,40.86421585083008,1,N,2,42.0,0.5,0.5,0.3,0.0,0.0,,43.3,1.0 +1,2016-01-20 09:47:20,2016-01-20 10:29:48,1,7.0,,,-73.98302459716797,40.69635009765625,-73.9685287475586,40.75893783569336,1,N,1,30.5,0.0,0.5,0.3,4.7,0.0,,36.0,1.0 +1,2016-01-10 20:23:45,2016-01-10 20:36:55,1,4.6,,,-73.92154693603516,40.76664733886719,-73.87651824951172,40.74845504760742,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +1,2016-01-30 21:48:55,2016-01-30 21:50:28,1,0.4,,,-73.94124603271484,40.67974853515625,-73.94143676757812,40.685691833496094,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-22 12:40:03,2016-01-22 12:58:54,1,3.57,,,-73.95305633544922,40.6719856262207,-73.9545669555664,40.71674728393555,1,N,1,15.0,0.0,0.5,0.3,2.0,0.0,,17.8,1.0 +2,2016-01-30 16:36:23,2016-01-30 16:43:13,1,1.09,,,-73.9489974975586,40.68040466308594,-73.96027374267578,40.68986129760742,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-21 23:43:29,2016-01-21 23:51:23,1,1.87,,,-73.9407958984375,40.80841827392578,-73.9417724609375,40.82804870605469,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,,11.76,1.0 +1,2016-01-18 10:29:21,2016-01-18 10:31:51,1,0.5,,,-73.99237823486328,40.68974685668945,-73.99543762207031,40.683536529541016,1,N,1,4.0,0.0,0.5,0.3,0.95,0.0,,5.75,1.0 +2,2016-01-21 10:49:46,2016-01-21 10:57:32,1,1.89,,,-73.92594146728516,40.832069396972656,-73.94137573242188,40.84178161621094,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-08 10:42:09,2016-01-08 10:49:09,1,0.94,,,-73.99215698242188,40.69009017944336,-73.99285888671875,40.69820022583008,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-13 20:24:36,2016-01-13 20:29:08,1,1.13,,,-73.96110534667969,40.8118896484375,-73.97016143798828,40.79714584350586,1,N,1,6.0,0.5,0.5,0.3,1.82,0.0,,9.12,1.0 +2,2016-01-03 02:17:11,2016-01-03 02:51:52,2,15.68,,,-73.96295166015625,40.71182632446289,-73.78288269042969,40.751895904541016,1,N,1,43.5,0.5,0.5,0.3,3.0,0.0,,47.8,1.0 +1,2016-01-15 20:12:34,2016-01-15 20:21:43,1,1.5,,,-73.9698257446289,40.69281768798828,-73.9712905883789,40.67721176147461,1,N,1,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-15 16:28:23,2016-01-15 16:35:38,1,0.75,,,-73.94368743896484,40.71055221557617,-73.93860626220703,40.71758270263672,1,N,1,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-01 05:21:29,2016-01-01 05:32:33,1,2.0,,,-73.95709991455078,40.71859359741211,-73.93238830566406,40.70797348022461,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-25 19:16:02,2016-01-25 19:31:09,1,2.19,,,-73.95500946044922,40.82001876831055,-73.9455337524414,40.82045364379883,1,N,1,11.0,1.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-03 19:59:57,2016-01-03 20:04:25,1,0.53,,,-73.89270782470703,40.74894714355469,-73.88280487060547,40.74991226196289,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-29 18:20:02,2016-01-29 18:26:25,1,0.9,,,-73.95021057128906,40.722572326660156,-73.9570541381836,40.72999572753906,1,N,1,6.0,1.0,0.5,0.3,1.55,0.0,,9.35,1.0 +2,2016-01-15 11:52:49,2016-01-15 12:08:02,1,3.23,,,-73.91740417480469,40.800376892089844,-73.93051147460938,40.83082580566406,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-11 09:55:21,2016-01-11 10:05:32,1,2.36,,,-73.9054183959961,40.84749221801758,-73.9360122680664,40.83955383300781,1,N,1,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-19 21:15:56,2016-01-19 21:24:10,2,1.71,,,-73.9458999633789,40.821624755859375,-73.93933868408203,40.80502700805664,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-08 19:18:32,2016-01-08 19:50:39,1,5.62,,,-73.98041534423828,40.676448822021484,-73.93348693847656,40.70493698120117,1,N,1,24.0,1.0,0.5,0.3,5.16,0.0,,30.96,1.0 +2,2016-01-26 09:51:16,2016-01-26 10:12:39,1,4.9,,,-73.8832015991211,40.749908447265625,-73.81707000732422,40.78049850463867,1,N,2,19.0,0.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-04 15:37:26,2016-01-04 15:45:19,2,1.2,,,-73.94474792480469,40.80896759033203,-73.9393310546875,40.79757308959961,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-30 15:45:38,2016-01-30 16:18:16,1,14.2,,,-73.98152160644531,40.576969146728516,-73.99700927734375,40.719356536865234,1,N,2,41.0,0.0,0.5,0.3,0.0,0.0,,41.8,1.0 +2,2016-01-18 02:17:48,2016-01-18 02:24:42,5,1.95,,,-73.9493637084961,40.713905334472656,-73.92491912841797,40.703277587890625,1,N,1,8.0,0.5,0.5,0.3,2.32,0.0,,11.62,1.0 +2,2016-01-06 16:36:00,2016-01-06 16:51:59,1,2.59,,,-73.95523071289062,40.788719177246094,-73.95894622802734,40.81527328491211,1,N,1,13.0,1.0,0.5,0.3,2.96,0.0,,17.76,1.0 +1,2016-01-01 12:33:47,2016-01-01 12:50:14,2,7.3,,,-73.989013671875,40.702571868896484,-73.96104431152344,40.76679611206055,1,N,1,22.0,0.0,0.5,0.3,4.55,0.0,,27.35,1.0 +2,2016-01-06 23:25:39,2016-01-06 23:32:52,1,1.39,,,-73.94731903076172,40.82554626464844,-73.93666076660156,40.84283447265625,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-10 16:17:13,2016-01-10 17:01:29,1,10.94,,,-73.98322296142578,40.57678985595703,-73.99896240234375,40.68885040283203,1,N,1,38.0,0.0,0.5,0.3,0.0,0.0,,38.8,1.0 +2,2016-01-30 17:57:24,2016-01-30 17:59:56,1,0.59,,,-73.83021545410156,40.713523864746094,-73.83489227294922,40.70732879638672,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-11 13:03:32,2016-01-11 13:06:19,1,0.48,,,-73.94798278808594,40.80876159667969,-73.94967651367188,40.80217361450195,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-22 21:29:53,2016-01-22 21:49:21,1,5.98,,,-73.94239044189453,40.841896057128906,-73.9532470703125,40.78533935546875,1,N,1,20.5,0.5,0.5,0.3,4.36,0.0,,26.16,1.0 +2,2016-01-05 21:11:18,2016-01-05 21:17:35,3,1.35,,,-73.9730453491211,40.67517852783203,-73.95626831054688,40.6722297668457,1,N,1,6.5,0.5,0.5,0.3,1.5,0.0,,9.3,1.0 +1,2016-01-24 15:50:25,2016-01-24 16:06:12,1,2.4,,,-73.94839477539062,40.82996368408203,-73.93902587890625,40.805118560791016,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-08 04:29:43,2016-01-08 04:39:26,1,2.1,,,-73.95840454101562,40.71323776245117,-73.93328857421875,40.69492721557617,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-21 07:33:51,2016-01-21 07:50:49,1,3.28,,,-73.99449157714844,40.69001007080078,-74.00981140136719,40.72022247314453,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,,16.56,1.0 +1,2016-01-10 00:02:03,2016-01-10 00:14:57,1,3.4,,,-73.91690826416016,40.780540466308594,-73.90631103515625,40.75705337524414,1,N,1,12.5,0.5,0.5,0.3,2.75,0.0,,16.55,1.0 +2,2016-01-10 02:31:45,2016-01-10 02:31:49,1,0.0,,,-73.92224884033203,40.84202575683594,-73.92224884033203,40.8420295715332,5,N,1,12.0,0.0,0.0,0,0.0,0.0,,12.0,2.0 +1,2016-01-12 10:08:44,2016-01-12 10:26:12,1,2.4,,,-73.97915649414062,40.69330596923828,-73.94271087646484,40.700462341308594,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-15 11:09:38,2016-01-15 11:16:51,1,1.0,,,-73.94338989257812,40.83968734741211,-73.93561553955078,40.84925079345703,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-05 09:51:57,2016-01-05 10:05:25,1,3.45,,,-73.8078384399414,40.700462341308594,-73.76835632324219,40.67132568359375,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-21 22:02:18,2016-01-21 22:04:45,1,0.37,,,-73.96363067626953,40.80819320678711,-73.95964813232422,40.80889892578125,1,N,1,4.0,0.5,0.5,0.3,1.32,0.0,,6.62,1.0 +2,2016-01-17 13:39:54,2016-01-17 13:49:44,1,1.94,,,-73.94065856933594,40.793190002441406,-73.94142150878906,40.81285858154297,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-10 04:05:29,2016-01-10 04:12:38,3,1.3,,,-73.91130065917969,40.84921646118164,-73.92021942138672,40.833621978759766,5,N,2,8.0,0.0,0.0,0,0.0,0.0,,8.0,2.0 +2,2016-01-22 23:30:01,2016-01-22 23:48:56,1,4.12,,,-73.97785186767578,40.68484878540039,-73.91036224365234,40.684814453125,1,N,1,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-19 08:22:31,2016-01-19 08:24:58,1,0.7,,,-73.95486450195312,40.81978225708008,-73.95352172851562,40.812103271484375,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-07 21:05:55,2016-01-07 21:14:43,1,2.04,,,-73.90020751953125,40.745811462402344,-73.89398193359375,40.72329330444336,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-18 18:59:13,2016-01-18 19:12:12,1,1.94,,,-73.90347290039062,40.74540328979492,-73.91826629638672,40.765480041503906,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-12 22:39:42,2016-01-12 22:59:23,1,4.21,,,-73.9589614868164,40.70871353149414,-73.91177368164062,40.68172836303711,1,N,1,16.5,0.5,0.5,0.3,1.0,0.0,,18.8,1.0 +1,2016-01-18 16:31:39,2016-01-18 16:41:37,1,2.7,,,-73.95523071289062,40.826358795166016,-73.96511840820312,40.80107879638672,1,N,1,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-22 08:29:20,2016-01-22 09:28:56,1,8.3,,,-73.92253875732422,40.74706268310547,-74.00593566894531,40.7237663269043,1,N,1,42.0,0.0,0.5,0.3,8.56,0.0,,51.36,1.0 +2,2016-01-09 16:00:04,2016-01-09 16:19:40,1,4.43,,,-73.895263671875,40.74653244018555,-73.9642105102539,40.75680160522461,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-24 18:02:54,2016-01-24 18:20:17,5,1.41,,,-73.9813003540039,40.675052642822266,-73.97228240966797,40.68532943725586,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-30 18:30:27,2016-01-30 18:51:00,1,3.64,,,-73.95767211914062,40.72206115722656,-73.9633560180664,40.67570114135742,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,,19.56,1.0 +2,2016-01-12 01:53:30,2016-01-12 02:01:15,1,1.38,,,-73.85359954833984,40.82050704956055,-73.86156463623047,40.83335876464844,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-30 22:56:34,2016-01-30 23:03:47,1,1.26,,,-73.96990203857422,40.68771743774414,-73.96287536621094,40.673038482666016,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-18 12:10:19,2016-01-18 12:30:27,1,5.46,,,-73.89871978759766,40.746055603027344,-73.85295867919922,40.69053268432617,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-24 09:02:11,2016-01-24 09:13:40,1,2.21,,,-73.98479461669922,40.68688201904297,-73.9844970703125,40.66343688964844,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-09 15:13:59,2016-01-10 15:07:00,1,1.34,,,-73.93930053710938,40.757110595703125,-73.92337799072266,40.76778793334961,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-07 19:16:19,2016-01-07 19:22:41,1,1.56,,,-73.92333221435547,40.809329986572266,-73.93770599365234,40.797271728515625,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-08 10:54:01,2016-01-08 11:14:17,1,3.6,,,-73.96253967285156,40.809791564941406,-73.98014831542969,40.76302719116211,1,N,1,16.0,0.0,0.5,0.3,3.35,0.0,,20.15,1.0 +2,2016-01-05 18:08:16,2016-01-05 18:16:11,1,0.7,,,-73.84432220458984,40.72135543823242,-73.85498046875,40.72102355957031,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-07 10:34:23,2016-01-07 10:44:46,1,1.8,,,-73.94439697265625,40.834564208984375,-73.9277572631836,40.81787109375,1,Y,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-25 23:53:04,2016-01-26 00:00:57,1,1.49,,,-73.85608673095703,40.75161361694336,-73.86699676513672,40.7674446105957,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-11 09:30:00,2016-01-11 09:36:20,1,1.0,,,-73.96047973632812,40.81603240966797,-73.94718170166016,40.810306549072266,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,,8.15,1.0 +2,2016-01-22 21:09:11,2016-01-22 21:22:36,1,2.9,,,-73.9814224243164,40.66697311401367,-73.9466323852539,40.68141174316406,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-03 14:01:22,2016-01-03 14:23:04,1,1.35,,,-73.94588470458984,40.67942810058594,-73.95347595214844,40.672733306884766,1,N,1,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-09 19:57:51,2016-01-09 20:05:48,1,1.47,,,-73.95490264892578,40.733642578125,-73.96319580078125,40.72025680541992,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-09 21:42:56,2016-01-09 21:53:28,1,1.93,,,-73.96189880371094,40.805335998535156,-73.94229125976562,40.80971145629883,1,N,1,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-17 02:59:09,2016-01-17 03:14:43,1,6.1,,,-73.95423889160156,40.73074722290039,-73.8509750366211,40.72532653808594,1,N,1,19.5,0.5,0.5,0.3,5.2,0.0,,26.0,1.0 +1,2016-01-08 16:46:06,2016-01-08 16:46:26,1,0.0,,,-73.86153411865234,40.833213806152344,-73.86245727539062,40.83305358886719,1,N,2,2.5,1.0,0.5,0.3,0.0,0.0,,4.3,1.0 +1,2016-01-29 20:54:41,2016-01-29 21:00:21,1,0.6,,,-73.99236297607422,40.68944549560547,-73.98727416992188,40.69160079956055,1,N,1,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-26 23:05:10,2016-01-26 23:12:20,1,1.16,,,-73.84410095214844,40.721107482910156,-73.8492202758789,40.73622131347656,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-11 20:06:32,2016-01-11 20:14:13,3,2.18,,,-73.86985778808594,40.73362350463867,-73.87776184082031,40.70999526977539,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-11 20:00:25,2016-01-11 20:08:52,1,1.8,,,-73.84439086914062,40.72134780883789,-73.81526184082031,40.709571838378906,1,N,1,8.5,1.0,0.5,0.3,1.0,0.0,,11.3,1.0 +2,2016-01-28 09:40:12,2016-01-28 09:46:46,2,1.04,,,-73.92536926269531,40.67049026489258,-73.9362564086914,40.67344665527344,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-16 15:34:55,2016-01-16 15:44:09,1,1.85,,,-73.93836212158203,40.822837829589844,-73.94574737548828,40.80169677734375,1,N,1,9.0,0.0,0.5,0.3,2.0,0.0,,11.8,1.0 +2,2016-01-07 11:28:33,2016-01-07 11:35:37,1,1.06,,,-73.9712142944336,40.6929817199707,-73.98358917236328,40.68905258178711,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-10 16:16:01,2016-01-10 16:35:39,1,3.1,,,-73.9587173461914,40.71481704711914,-73.99854278564453,40.72865676879883,1,N,1,15.0,0.0,0.5,0.3,4.0,0.0,,19.8,1.0 +1,2016-01-28 07:32:20,2016-01-28 07:47:59,1,8.1,,,-73.95674133300781,40.74457931518555,-73.86483764648438,40.77040481567383,1,N,1,23.5,0.0,0.5,0.3,6.05,0.0,,30.35,1.0 +1,2016-01-27 15:55:27,2016-01-27 16:00:43,3,0.8,,,-73.8552474975586,40.72064208984375,-73.84314727783203,40.720333099365234,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-09 19:31:33,2016-01-09 19:47:45,1,2.6,,,-73.98074340820312,40.68878173828125,-73.9300537109375,40.67932891845703,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-19 07:46:26,2016-01-19 09:01:38,1,10.63,,,-73.86908721923828,40.74928665161133,-74.00447845458984,40.71596145629883,1,N,1,47.0,0.0,0.5,0.3,0.0,0.0,,47.8,1.0 +2,2016-01-19 08:39:05,2016-01-19 09:07:32,1,7.34,,,-73.9927978515625,40.697425842285156,-73.95423889160156,40.763916015625,1,N,1,25.0,0.0,0.5,0.3,6.45,0.0,,32.25,1.0 +2,2016-01-28 19:31:29,2016-01-28 20:05:01,1,3.9,,,-73.95223999023438,40.78984069824219,-73.9857406616211,40.74436569213867,1,N,1,21.0,1.0,0.5,0.3,4.56,0.0,,27.36,1.0 +2,2016-01-30 11:36:28,2016-01-30 11:42:30,1,0.75,,,-73.97611236572266,40.68397521972656,-73.96504211425781,40.67962646484375,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-28 23:56:36,2016-01-29 00:03:10,1,1.75,,,-73.98123931884766,40.689735412597656,-73.95960998535156,40.69559860229492,1,N,1,7.5,0.5,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-21 19:17:22,2016-01-21 19:34:41,1,3.0,,,-73.93913269042969,40.80522155761719,-73.97377014160156,40.784358978271484,1,N,2,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-20 22:58:03,2016-01-20 23:01:59,1,1.43,,,-73.96488189697266,40.71498107910156,-73.95777130126953,40.731170654296875,1,N,1,6.0,0.5,0.5,0.3,1.82,0.0,,9.12,1.0 +1,2016-01-17 05:27:19,2016-01-17 05:33:38,1,1.3,,,-73.9272232055664,40.61405563354492,-73.9339370727539,40.61532974243164,1,N,1,7.0,0.5,0.5,0.3,2.45,0.0,,10.75,1.0 +2,2016-01-03 23:46:37,2016-01-03 23:53:17,1,1.81,,,-73.94808959960938,40.80408477783203,-73.944091796875,40.823814392089844,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-18 13:18:47,2016-01-18 13:27:29,1,1.65,,,-73.9502182006836,40.802268981933594,-73.93683624267578,40.813907623291016,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-02 16:12:31,2016-01-02 16:17:39,1,1.07,,,-73.94313049316406,40.7859001159668,-73.93943786621094,40.798728942871094,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-06 09:14:22,2016-01-06 09:21:48,1,0.92,,,-73.95569610595703,40.73368835449219,-73.95257568359375,40.74266815185547,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-19 19:03:05,2016-01-19 19:28:24,1,0.0,,,-73.98307800292969,40.63892364501953,-73.983154296875,40.638858795166016,1,N,2,2.5,1.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-17 10:57:00,2016-01-17 11:12:22,5,4.02,,,-73.97845458984375,40.684043884277344,-73.95743560791016,40.720115661621094,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +1,2016-01-03 15:07:35,2016-01-03 15:37:09,1,5.8,,,-73.992919921875,40.69389724731445,-73.9900894165039,40.751075744628906,1,N,1,25.5,0.0,0.5,0.3,7.85,0.0,,34.15,1.0 +2,2016-01-04 16:42:28,2016-01-04 16:55:26,1,1.98,,,-73.99056243896484,40.69368362426758,-73.96014404296875,40.68997573852539,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-22 19:54:17,2016-01-22 20:06:14,1,2.09,,,-73.93428039550781,40.803123474121094,-73.94904327392578,40.82318878173828,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-08 01:23:31,2016-01-08 01:40:50,2,5.0,,,-73.9661636352539,40.71302032470703,-73.98279571533203,40.677860260009766,1,N,1,18.0,0.5,0.5,0.3,4.8,0.0,,24.1,1.0 +2,2016-01-04 14:25:35,2016-01-04 15:28:44,1,18.46,,,-73.98379516601562,40.63191604614258,-73.78206634521484,40.64431381225586,1,N,1,60.0,0.0,0.5,0.3,0.0,0.0,,60.8,1.0 +2,2016-01-10 23:21:45,2016-01-10 23:33:09,1,6.95,,,-73.80450439453125,40.69356918334961,-73.72796630859375,40.67173385620117,1,N,1,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-24 13:31:04,2016-01-24 13:38:10,1,2.12,,,-73.9850082397461,40.697811126708984,-73.99615478515625,40.72218704223633,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,,11.62,1.0 +1,2016-01-03 19:01:51,2016-01-03 19:19:39,1,7.0,,,-73.924072265625,40.83094024658203,-73.86222076416016,40.854461669921875,1,N,1,21.0,1.0,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-19 20:25:50,2016-01-19 20:51:00,1,5.17,,,-73.9990463256836,40.675758361816406,-73.92610931396484,40.67638397216797,1,N,2,20.0,0.5,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-27 19:38:31,2016-01-27 19:42:38,1,0.91,,,-73.87284851074219,40.84111785888672,-73.86096954345703,40.84666061401367,1,N,1,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-11 00:50:42,2016-01-11 00:55:53,1,0.91,,,-73.93097686767578,40.669010162353516,-73.93373107910156,40.672508239746094,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-07 20:46:20,2016-01-07 20:53:58,1,1.17,,,-73.91573333740234,40.6859016418457,-73.93584442138672,40.68593215942383,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-09 15:10:14,2016-01-09 15:15:40,1,0.8,,,-73.83351135253906,40.75933074951172,-73.8438491821289,40.75791931152344,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-22 07:54:51,2016-01-22 08:00:09,2,1.14,,,-73.85645294189453,40.72071838378906,-73.8491439819336,40.713253021240234,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-08 13:48:19,2016-01-08 14:05:50,1,3.27,,,-73.8071517944336,40.699161529541016,-73.83489990234375,40.717018127441406,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-24 19:31:11,2016-01-24 19:40:36,1,3.21,,,-73.98002624511719,40.68988037109375,-73.95208740234375,40.71739196777344,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-09 16:19:24,2016-01-09 16:24:48,1,1.07,,,-73.96434783935547,40.69368362426758,-73.97566223144531,40.6873664855957,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +1,2016-01-11 23:03:47,2016-01-11 23:14:09,1,1.9,,,-73.97650146484375,40.682125091552734,-74.00139617919922,40.68787384033203,1,N,1,9.0,0.5,0.5,0.3,1.7,0.0,,12.0,1.0 +2,2016-01-20 00:37:45,2016-01-20 00:47:49,1,1.51,,,-73.91939544677734,40.770389556884766,-73.91389465332031,40.75656509399414,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-15 23:47:25,2016-01-15 23:59:30,1,6.34,,,-73.99970245361328,40.6834831237793,-74.02860260009766,40.615718841552734,1,N,2,19.0,0.5,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-27 08:10:48,2016-01-27 08:17:53,1,0.84,,,-73.96015930175781,40.656700134277344,-73.96588134765625,40.649200439453125,1,N,1,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-26 19:31:33,2016-01-26 19:34:15,1,0.93,,,-73.94215393066406,40.75423049926758,-73.93177795410156,40.765342712402344,1,N,1,4.5,1.0,0.5,0.3,1.58,0.0,,7.88,1.0 +2,2016-01-15 21:37:21,2016-01-15 21:41:00,1,0.63,,,-73.950439453125,40.792293548583984,-73.9417953491211,40.78727340698242,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-04 12:37:13,2016-01-04 12:59:58,1,4.6,,,-73.99090576171875,40.693206787109375,-74.02050018310547,40.63505935668945,1,N,2,18.5,0.0,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-14 22:58:58,2016-01-14 23:11:34,1,3.13,,,-73.9523696899414,40.79816818237305,-73.96265411376953,40.76348114013672,1,N,1,12.5,0.5,0.5,0.3,2.0,0.0,,15.8,1.0 +2,2016-01-11 03:37:53,2016-01-11 03:40:58,1,1.25,,,-73.96135711669922,40.716461181640625,-73.95442199707031,40.730125427246094,1,N,1,5.5,0.5,0.5,0.3,2.04,0.0,,8.84,1.0 +2,2016-01-14 01:51:11,2016-01-14 02:08:56,5,4.55,,,-73.9575424194336,40.71779251098633,-73.89363861083984,40.70094680786133,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-29 14:34:50,2016-01-29 14:41:07,1,1.67,,,-73.85022735595703,40.82809829711914,-73.87837219238281,40.82597351074219,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-28 20:01:04,2016-01-28 20:11:49,1,5.0,,,-73.95621490478516,40.81355285644531,-73.98854064941406,40.7642707824707,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-10 15:57:14,2016-01-10 16:04:03,1,1.49,,,-73.95742797851562,40.73417663574219,-73.94654083251953,40.72331619262695,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-16 17:31:43,2016-01-16 17:54:28,1,5.42,,,-73.87419128417969,40.735076904296875,-73.81707763671875,40.6861457824707,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-30 18:53:56,2016-01-30 19:23:59,1,2.93,,,-73.96369171142578,40.71036148071289,-73.99341583251953,40.7275505065918,1,N,1,18.5,0.0,0.5,0.3,2.0,0.0,,21.3,1.0 +2,2016-01-06 18:00:42,2016-01-06 18:12:56,1,1.94,,,-73.83076477050781,40.7592887878418,-73.79930114746094,40.76292419433594,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-07 16:09:59,2016-01-07 16:13:01,5,1.31,,,-73.82994079589844,40.71403121948242,-73.81696319580078,40.72171401977539,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-20 10:30:14,2016-01-20 10:47:17,2,3.24,,,-73.98737335205078,40.69049835205078,-73.94450378417969,40.66980743408203,1,N,1,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-25 14:36:27,2016-01-25 14:41:58,1,0.78,,,-73.92500305175781,40.76874542236328,-73.91732025146484,40.76142120361328,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-17 01:30:48,2016-01-17 01:36:52,1,0.91,,,-73.94490814208984,40.807472229003906,-73.93588256835938,40.79977035522461,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-05 03:49:46,2016-01-05 04:02:50,1,3.9,,,-73.8709716796875,40.7488899230957,-73.92523193359375,40.76188659667969,1,N,1,14.0,0.5,0.5,0.3,3.8,0.0,,19.1,1.0 +2,2016-01-27 22:52:39,2016-01-27 22:54:42,1,0.44,,,-73.94834899902344,40.808780670166016,-73.94425964355469,40.814369201660156,1,N,1,3.5,0.5,0.5,0.3,0.96,0.0,,5.76,1.0 +1,2016-01-14 17:19:24,2016-01-14 17:39:14,1,3.4,,,-73.80367279052734,40.717552185058594,-73.78390502929688,40.67530059814453,1,N,1,15.0,1.0,0.5,0.3,3.35,0.0,,20.15,1.0 +1,2016-01-08 22:14:59,2016-01-08 22:29:59,2,1.4,,,-73.97344207763672,40.67861557006836,-73.98942565917969,40.69231033325195,1,N,1,10.5,0.5,0.5,0.3,2.0,0.0,,13.8,1.0 +2,2016-01-05 00:08:04,2016-01-05 00:15:43,1,2.86,,,-73.93500518798828,40.79660415649414,-73.93726348876953,40.82931137084961,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-18 00:49:09,2016-01-18 00:58:06,1,2.5,,,-73.82975769042969,40.71364212036133,-73.83026123046875,40.69147491455078,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-04 15:48:43,2016-01-04 15:57:47,1,0.0,,,-73.95535278320312,40.7884407043457,-73.96621704101562,40.77090835571289,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,,9.35,1.0 +2,2016-01-01 15:52:45,2016-01-01 16:23:03,2,9.84,,,-73.88722229003906,40.74732971191406,-73.982666015625,40.664894104003906,1,N,1,32.0,0.0,0.5,0.3,6.56,0.0,,39.36,1.0 +2,2016-01-28 23:51:17,2016-01-28 23:56:43,1,1.28,,,-73.94096374511719,40.8397331237793,-73.9393310546875,40.8537712097168,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-21 16:41:05,2016-01-21 16:53:00,1,2.0,,,-73.89755249023438,40.829612731933594,-73.91798400878906,40.809547424316406,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-26 16:55:02,2016-01-26 17:21:34,1,6.32,,,-73.8895034790039,40.74713134765625,-73.84036254882812,40.76798629760742,1,N,2,22.0,1.0,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-04 17:15:43,2016-01-04 17:38:56,1,3.21,,,-73.95850372314453,40.71713638305664,-73.93372344970703,40.690433502197266,1,N,2,16.0,1.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-20 14:36:59,2016-01-20 14:45:22,1,1.88,,,-73.90338134765625,40.74574661254883,-73.8760757446289,40.75640106201172,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-16 21:56:35,2016-01-16 22:02:54,1,1.47,,,-73.95333099365234,40.68085479736328,-73.94532775878906,40.69581985473633,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-03 02:08:17,2016-01-03 02:13:47,5,1.4,,,-73.90460968017578,40.74534606933594,-73.91962432861328,40.75917053222656,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-26 18:56:55,2016-01-26 19:01:28,6,0.48,,,-73.95195770263672,40.80915832519531,-73.95645141601562,40.80306625366211,1,N,1,5.0,1.0,0.5,0.3,0.5,0.0,,7.3,1.0 +2,2016-01-06 21:52:45,2016-01-06 21:57:09,1,0.98,,,-73.90320587158203,40.74588394165039,-73.91290283203125,40.74811553955078,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-16 13:33:08,2016-01-16 13:48:28,1,2.22,,,-73.96074676513672,40.67299270629883,-73.92198181152344,40.675315856933594,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-01 12:32:42,2016-01-01 12:35:34,1,0.39,,,-73.86200714111328,40.73036193847656,-73.85638427734375,40.730857849121094,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-12 11:38:06,2016-01-12 11:46:04,1,0.93,,,-73.72852325439453,40.707801818847656,-73.72850799560547,40.707801818847656,1,N,1,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-16 09:27:29,2016-01-16 09:43:41,1,4.01,,,-73.93812561035156,40.792335510253906,-73.89826202392578,40.82775115966797,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-29 13:55:49,2016-01-29 14:04:23,1,2.94,,,-73.92168426513672,40.766761779785156,-73.90311431884766,40.74614334106445,1,N,1,11.0,0.0,0.5,0.3,2.0,0.0,,13.8,1.0 +2,2016-01-15 21:44:10,2016-01-15 21:57:35,1,2.92,,,-73.9408950805664,40.83965301513672,-73.96353149414062,40.80354690551758,1,N,1,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-15 09:44:07,2016-01-15 10:14:07,1,3.61,,,-73.99092864990234,40.689178466796875,-74.00348663330078,40.71697998046875,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,,20.8,1.0 +1,2016-01-12 15:51:30,2016-01-12 16:08:34,1,2.4,,,-73.98748016357422,40.6915168762207,-74.01264190673828,40.67713165283203,1,N,1,12.5,1.0,0.5,0.3,1.0,0.0,,15.3,1.0 +2,2016-01-07 16:30:10,2016-01-07 16:45:00,1,2.25,,,-73.93904113769531,40.816497802734375,-73.96701049804688,40.804176330566406,1,N,1,11.5,1.0,0.5,0.3,3.32,0.0,,16.62,1.0 +1,2016-01-30 16:20:32,2016-01-30 16:44:52,1,3.0,,,-73.91181945800781,40.74440383911133,-73.91606903076172,40.77174377441406,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-20 06:12:36,2016-01-20 06:15:56,1,0.82,,,-73.9352035522461,40.8008918762207,-73.93467712402344,40.80583572387695,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-29 22:52:10,2016-01-29 22:55:14,1,0.51,,,-73.86958312988281,40.73348617553711,-73.86389923095703,40.737213134765625,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-05 18:03:34,2016-01-05 18:12:14,1,1.46,,,-73.94540405273438,40.80790710449219,-73.9454345703125,40.82430648803711,1,N,1,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-03 02:41:30,2016-01-03 02:47:44,1,1.2,,,-73.953857421875,40.816871643066406,-73.95685577392578,40.80263900756836,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-05 23:43:37,2016-01-06 00:22:25,1,17.81,,,-73.940185546875,40.6851921081543,-73.72917938232422,40.70653533935547,1,N,1,51.5,0.5,0.5,0.3,10.56,0.0,,63.36,1.0 +1,2016-01-23 03:44:03,2016-01-23 03:54:54,1,3.3,,,-73.91808319091797,40.80702209472656,-73.9437484741211,40.78453063964844,1,N,1,11.5,0.5,0.5,0.3,4.0,0.0,,16.8,1.0 +2,2016-01-01 04:16:06,2016-01-01 04:19:50,1,0.74,,,-73.96543884277344,40.710731506347656,-73.95764923095703,40.71779251098633,1,N,1,4.5,0.5,0.5,0.3,1.74,0.0,,7.54,1.0 +2,2016-01-07 20:29:17,2016-01-07 20:45:38,1,6.66,,,-73.91346740722656,40.81441116333008,-73.86710357666016,40.8689079284668,5,N,2,15.0,0.0,0.0,0,0.0,0.0,,15.0,2.0 +2,2016-01-02 22:02:20,2016-01-02 22:10:45,1,1.82,,,-73.95514678955078,40.78871536254883,-73.95149230957031,40.7700080871582,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-04 23:15:32,2016-01-04 23:19:47,1,0.8,,,-73.94964599609375,40.80180740356445,-73.93910217285156,40.802188873291016,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-20 23:18:02,2016-01-20 23:30:05,1,3.92,,,-73.94782257080078,40.79581069946289,-73.91677856445312,40.83749771118164,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-11 12:41:44,2016-01-11 12:46:11,1,0.82,,,-73.94568634033203,40.807899475097656,-73.95884704589844,40.80989074707031,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-01 12:26:20,2016-01-01 12:28:36,1,0.57,,,-73.93614959716797,40.82583999633789,-73.94176483154297,40.81806564331055,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-01 15:53:03,2016-01-01 15:53:12,1,0.0,,,-73.92225646972656,40.755043029785156,-73.92228698730469,40.75502014160156,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,,52.8,1.0 +2,2016-01-15 20:26:18,2016-01-15 20:36:25,1,1.99,,,-73.91253662109375,40.828033447265625,-73.91568756103516,40.806949615478516,5,N,2,8.0,0.0,0.0,0,0.0,0.0,,8.0,2.0 +1,2016-01-30 23:24:50,2016-01-30 23:46:40,1,7.1,,,-73.9802474975586,40.67639923095703,-73.95553588867188,40.74605941772461,1,N,1,23.0,0.5,0.5,0.3,3.0,0.0,,27.3,1.0 +2,2016-01-07 22:54:56,2016-01-07 23:17:26,1,5.06,,,-73.95128631591797,40.70608139038086,-73.92118072509766,40.76177978515625,1,N,1,19.0,0.5,0.5,0.3,5.0,0.0,,25.3,1.0 +2,2016-01-06 11:47:55,2016-01-06 11:53:47,1,1.23,,,-73.94129943847656,40.8142204284668,-73.92249298095703,40.808876037597656,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-13 08:15:03,2016-01-13 08:18:25,1,0.5,,,-73.939453125,40.810302734375,-73.94833374023438,40.81239700317383,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-19 09:11:59,2016-01-19 09:42:38,1,3.6,,,-73.99114227294922,40.69084167480469,-74.00768280029297,40.72472381591797,1,N,1,20.0,0.0,0.5,0.3,5.2,0.0,,26.0,1.0 +2,2016-01-10 03:40:37,2016-01-10 03:47:41,6,2.06,,,-73.91746520996094,40.7700309753418,-73.94233703613281,40.75841522216797,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-29 23:31:03,2016-01-29 23:49:55,1,8.3,,,-73.949951171875,40.78547286987305,-74.00942993164062,40.715328216552734,1,N,1,25.0,0.5,0.5,0.3,2.0,0.0,,28.3,1.0 +2,2016-01-26 15:59:57,2016-01-26 16:17:16,1,1.73,,,-73.95258331298828,40.78836441040039,-73.96710968017578,40.76693344116211,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-06 20:01:53,2016-01-06 20:22:41,4,2.84,,,-73.98904418945312,40.66587829589844,-73.970703125,40.6926383972168,1,N,1,15.0,1.0,0.5,0.3,5.04,0.0,,21.84,1.0 +2,2016-01-02 14:29:06,2016-01-02 14:38:51,1,2.67,,,-73.95643615722656,40.74739074707031,-73.97583770751953,40.75128936767578,1,N,1,10.0,0.0,0.5,0.3,4.08,5.54,,20.42,1.0 +2,2016-01-15 22:27:23,2016-01-15 22:37:15,1,1.78,,,-73.9189453125,40.765724182128906,-73.92314910888672,40.74553298950195,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-06 16:31:44,2016-01-06 16:34:52,1,0.63,,,-73.95379638671875,40.5872917175293,-73.94396209716797,40.58684158325195,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-16 21:04:40,2016-01-16 21:10:41,1,1.24,,,-73.8685073852539,40.73424530029297,-73.8814926147461,40.730995178222656,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-16 21:34:08,2016-01-16 21:46:53,1,2.79,,,-73.95055389404297,40.7862548828125,-73.98152923583984,40.7646598815918,1,N,1,11.5,0.5,0.5,0.3,1.0,0.0,,13.8,1.0 +2,2016-01-16 04:27:18,2016-01-16 04:36:15,2,1.63,,,-73.88819122314453,40.747222900390625,-73.88899993896484,40.74706268310547,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-16 09:06:08,2016-01-16 09:08:40,1,0.65,,,-73.9617919921875,40.71604919433594,-73.95569610595703,40.72308349609375,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-17 20:29:54,2016-01-17 20:59:28,1,3.43,,,-73.95710754394531,40.646602630615234,-73.9112777709961,40.6370964050293,1,N,1,19.5,0.5,0.5,0.3,5.2,0.0,,26.0,1.0 +2,2016-01-09 12:22:34,2016-01-09 12:24:47,2,0.45,,,-73.89575958251953,40.74637222290039,-73.88993072509766,40.743743896484375,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-30 18:27:12,2016-01-30 18:32:12,6,0.75,,,-73.95962524414062,40.71611022949219,-73.95783996582031,40.710086822509766,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,,7.3,1.0 +2,2016-01-04 14:29:18,2016-01-04 14:36:08,1,1.26,,,-73.95774841308594,40.671356201171875,-73.97559356689453,40.67438507080078,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-11 15:26:40,2016-01-11 15:34:37,1,1.53,,,-73.94551086425781,40.80787658691406,-73.96367645263672,40.79804229736328,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-05 08:47:29,2016-01-05 08:56:24,1,1.2,,,-73.96501922607422,40.693580627441406,-73.9798355102539,40.68854904174805,1,N,1,7.5,0.0,0.5,0.3,2.45,0.0,,10.75,1.0 +2,2016-01-17 13:04:18,2016-01-17 13:18:09,1,3.25,,,-74.01049041748047,40.672027587890625,-74.00139617919922,40.64884948730469,1,N,1,13.0,0.0,0.5,0.3,4.14,0.0,,17.94,1.0 +2,2016-01-11 22:37:14,2016-01-11 22:43:13,1,1.0,,,-73.94117736816406,40.70090103149414,-73.9532470703125,40.71015930175781,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-12 16:58:45,2016-01-12 17:04:32,1,0.87,,,-73.90968322753906,40.87944412231445,-73.9027328491211,40.87043380737305,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-29 20:25:42,2016-01-29 20:38:48,1,2.57,,,-73.95258331298828,40.80338668823242,-73.94396209716797,40.83284378051758,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-16 22:30:06,2016-01-16 22:34:20,1,1.23,,,-73.95306396484375,40.803531646728516,-73.96356964111328,40.8104248046875,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-06 13:40:19,2016-01-06 13:54:51,1,2.3,,,-73.95974731445312,40.71399688720703,-73.95487976074219,40.687618255615234,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-18 23:40:03,2016-01-18 23:45:58,1,1.4,,,-73.95061492919922,40.66951370239258,-73.94222259521484,40.65581130981445,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-30 03:39:47,2016-01-30 03:58:56,1,3.69,,,-73.95159149169922,40.71414566040039,-74.00526428222656,40.72862243652344,1,N,1,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-24 12:20:09,2016-01-24 12:29:29,6,1.8,,,-73.79481506347656,40.71005630493164,-73.80525207519531,40.730411529541016,1,N,1,8.0,0.0,0.5,0.3,2.0,0.0,,10.8,1.0 +2,2016-01-14 17:10:55,2016-01-14 17:38:19,1,5.74,,,-73.96160125732422,40.80616760253906,-73.9886474609375,40.750389099121094,1,N,2,23.5,1.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-27 19:07:36,2016-01-27 19:16:20,1,1.37,,,-73.89353942871094,40.742645263671875,-73.8743667602539,40.73789978027344,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-02 15:46:07,2016-01-02 15:54:54,1,1.03,,,-73.95380401611328,40.80665588378906,-73.9532470703125,40.819297790527344,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-01 11:08:09,2016-01-01 11:15:58,1,1.69,,,-73.95679473876953,40.67703628540039,-73.96859741210938,40.69316101074219,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-07 07:54:51,2016-01-07 08:13:57,1,4.22,,,-73.98286437988281,40.70208740234375,-73.98286437988281,40.7452507019043,1,N,1,17.0,0.0,0.5,0.3,3.56,0.0,,21.36,1.0 +2,2016-01-29 00:00:09,2016-01-29 00:05:26,1,1.35,,,-73.9485092163086,40.80352020263672,-73.93601989746094,40.81699752807617,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-08 22:11:48,2016-01-08 22:26:32,1,3.8,,,-73.96277618408203,40.67351150512695,-73.89649200439453,40.67051315307617,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-15 02:54:27,2016-01-15 03:02:40,1,1.04,,,-73.89105987548828,40.74689865112305,-73.8830337524414,40.755775451660156,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-29 15:21:35,2016-01-29 15:28:20,1,0.81,,,-73.94432830810547,40.80952453613281,-73.95433807373047,40.80594253540039,1,N,1,6.5,0.0,0.5,0.3,1.82,0.0,,9.12,1.0 +1,2016-01-21 22:53:03,2016-01-21 23:10:16,2,3.9,,,-73.9517593383789,40.71490478515625,-73.98371124267578,40.7259521484375,1,N,1,16.0,0.5,0.5,0.3,4.3,0.0,,21.6,1.0 +2,2016-01-25 21:07:18,2016-01-25 21:18:11,1,2.98,,,-73.88505554199219,40.744102478027344,-73.92082214355469,40.77083206176758,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,,15.36,1.0 +2,2016-01-09 18:19:38,2016-01-09 18:53:40,1,6.79,,,-73.96134185791016,40.811973571777344,-73.97712707519531,40.742923736572266,1,N,1,27.0,0.0,0.5,0.3,3.0,0.0,,30.8,1.0 +1,2016-01-13 19:31:20,2016-01-13 19:38:37,1,1.7,,,-73.80777740478516,40.700164794921875,-73.81592559814453,40.68403625488281,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-04 17:29:51,2016-01-04 17:41:18,2,1.53,,,-73.99430847167969,40.70277786254883,-73.99019622802734,40.68718338012695,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-16 17:50:30,2016-01-16 17:54:17,1,0.7,,,-73.94853210449219,40.80891418457031,-73.95457458496094,40.80060577392578,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-02 04:17:31,2016-01-02 04:34:51,1,10.87,,,-73.98139953613281,40.68559265136719,-73.87137603759766,40.774070739746094,1,N,1,31.0,0.5,0.5,0.3,6.46,0.0,,38.76,1.0 +2,2016-01-05 15:55:17,2016-01-05 15:58:05,1,0.22,,,-73.95315551757812,40.680641174316406,-73.95722961425781,40.68153381347656,1,N,1,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +1,2016-01-06 16:16:37,2016-01-06 16:16:50,1,6.5,,,-74.1676254272461,40.577545166015625,-74.1676254272461,40.577545166015625,1,N,1,2.5,1.0,0.5,0.3,7.0,0.0,,11.3,1.0 +2,2016-01-09 09:42:44,2016-01-09 09:46:16,1,0.73,,,-73.95066833496094,40.80056381225586,-73.9517593383789,40.809326171875,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-09 23:41:35,2016-01-09 23:47:40,1,1.29,,,-73.957275390625,40.804325103759766,-73.93596649169922,40.796165466308594,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-22 23:15:33,2016-01-22 23:22:22,1,1.15,,,-73.99301147460938,40.682918548583984,-73.99397277832031,40.69481658935547,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-22 12:36:04,2016-01-22 12:46:31,3,2.37,,,-73.99172973632812,40.70320510864258,-74.00501251220703,40.70906066894531,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-10 15:13:26,2016-01-10 15:44:02,1,8.02,,,-73.94766998291016,40.764217376708984,-73.99583435058594,40.71687316894531,1,N,2,28.5,0.0,0.5,0.3,0.0,0.0,,29.3,1.0 +2,2016-01-08 18:41:00,2016-01-08 19:20:06,1,5.85,,,-73.9736328125,40.655609130859375,-73.98477172851562,40.72434616088867,1,N,1,27.5,1.0,0.5,0.3,0.02,0.0,,29.32,1.0 +2,2016-01-30 08:46:57,2016-01-30 08:50:57,1,0.86,,,-73.95449829101562,40.80564498901367,-73.96508026123047,40.801124572753906,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-13 18:51:12,2016-01-13 18:55:54,1,0.6,,,-73.99766540527344,40.69508743286133,-73.99833679199219,40.68833541870117,1,N,1,5.0,1.0,0.5,0.3,1.35,0.0,,8.15,1.0 +2,2016-01-22 09:03:07,2016-01-22 09:20:14,1,3.46,,,-73.94829559326172,40.80410385131836,-73.98384857177734,40.7706413269043,1,N,1,14.5,0.0,0.5,0.3,3.82,0.0,,19.12,1.0 +2,2016-01-09 18:59:19,2016-01-09 19:02:50,1,0.94,,,-73.98328399658203,40.67670440673828,-73.98562622070312,40.66630554199219,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-08 10:17:41,2016-01-08 10:47:03,1,7.3,,,-73.97781372070312,40.684810638427734,-73.96654510498047,40.7564697265625,1,N,1,26.5,0.0,0.5,0.3,4.5,0.0,,31.8,1.0 +2,2016-01-02 00:36:58,2016-01-02 00:43:57,1,2.18,,,-73.9222412109375,40.743804931640625,-73.94731903076172,40.72691345214844,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-28 10:02:25,2016-01-28 10:17:25,1,2.17,,,-73.95968627929688,40.6908073425293,-73.98622131347656,40.702392578125,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-10 01:31:58,2016-01-10 01:49:06,5,2.55,,,-73.87641143798828,40.748477935791016,-73.9194107055664,40.74345397949219,1,N,1,13.0,0.5,0.5,0.3,1.5,0.0,,15.8,1.0 +2,2016-01-17 00:12:48,2016-01-17 00:22:03,1,1.69,,,-73.9188232421875,40.74308776855469,-73.88735961914062,40.74721145629883,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-08 10:05:38,2016-01-08 10:07:38,1,0.67,,,-73.919189453125,40.759063720703125,-73.9119644165039,40.76758575439453,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-01 13:59:56,2016-01-01 14:11:54,1,2.94,,,-73.96221160888672,40.80537796020508,-73.95976257324219,40.77376174926758,1,N,1,11.5,0.0,0.5,0.3,3.0,0.0,,15.3,1.0 +2,2016-01-25 21:03:58,2016-01-25 21:08:18,1,0.84,,,-73.96380615234375,40.7135124206543,-73.95237731933594,40.718257904052734,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-17 15:47:31,2016-01-17 16:19:16,3,7.33,,,-73.99032592773438,40.70257568359375,-73.97966003417969,40.763851165771484,1,N,1,27.5,0.0,0.5,0.3,5.66,0.0,,33.96,1.0 +1,2016-01-16 01:24:44,2016-01-16 01:38:36,1,3.6,,,-73.96297454833984,40.71188735961914,-73.97471618652344,40.68559646606445,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-21 13:55:23,2016-01-21 14:07:13,3,2.09,,,-73.9906997680664,40.7025032043457,-74.00617980957031,40.71693801879883,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-02 20:58:24,2016-01-02 21:08:40,1,1.88,,,-73.90177154541016,40.74586868286133,-73.87730407714844,40.740726470947266,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-17 15:14:42,2016-01-17 15:37:30,1,6.52,,,-73.9537124633789,40.79076385498047,-73.93167877197266,40.85567855834961,1,N,1,22.5,0.0,0.5,0.3,0.0,0.0,,23.3,1.0 +2,2016-01-03 16:50:31,2016-01-03 16:55:05,1,0.96,,,-73.92109680175781,40.75648880004883,-73.9256820678711,40.74375534057617,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-17 12:22:56,2016-01-17 12:28:14,6,1.23,,,-73.9924087524414,40.689476013183594,-73.97772979736328,40.684566497802734,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +1,2016-01-19 19:31:51,2016-01-19 19:38:06,1,0.6,,,-73.89044952392578,40.74639892578125,-73.88774108886719,40.752647399902344,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-22 06:28:10,2016-01-22 06:34:55,1,0.8,,,-73.94894409179688,40.79705810546875,-73.96051788330078,40.803306579589844,1,N,1,6.5,0.0,0.5,0.3,1.8,0.0,,9.1,1.0 +2,2016-01-17 01:06:14,2016-01-17 01:15:47,1,3.01,,,-73.80711364746094,40.6990966796875,-73.7760238647461,40.67646026611328,1,N,1,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-17 05:58:40,2016-01-17 06:08:37,1,3.08,,,-73.94169616699219,40.798519134521484,-73.94310760498047,40.823036193847656,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-17 11:06:51,2016-01-17 11:12:30,2,1.15,,,-73.94992065429688,40.80221939086914,-73.9629135131836,40.79753875732422,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-05 20:11:20,2016-01-05 20:14:17,1,0.51,,,-73.88992309570312,40.74699401855469,-73.881591796875,40.74981689453125,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-26 07:05:59,2016-01-26 07:06:07,1,0.0,,,-73.91065216064453,40.65772247314453,-73.91065216064453,40.65772247314453,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-26 18:40:56,2016-01-26 18:47:35,1,0.83,,,-73.9494400024414,40.78532028198242,-73.95354461669922,40.775325775146484,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-18 01:18:34,2016-01-18 01:33:38,1,8.23,,,-73.96015167236328,40.69041442871094,-73.89237976074219,40.7750129699707,1,N,2,24.0,0.5,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-15 18:39:51,2016-01-15 18:49:19,1,1.48,,,-73.92137908935547,40.766727447509766,-73.91412353515625,40.77910614013672,1,N,1,8.0,1.0,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-16 23:21:10,2016-01-16 23:25:00,1,0.5,,,-73.95258331298828,40.71409606933594,-73.96171569824219,40.71585464477539,1,N,1,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-04 22:19:01,2016-01-05 22:12:49,1,2.03,,,-73.95856475830078,40.66790771484375,-73.93634033203125,40.67964172363281,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-22 14:08:15,2016-01-22 14:13:50,1,0.92,,,-73.89389038085938,40.746665954589844,-73.9120864868164,40.74723815917969,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-29 10:57:00,2016-01-29 11:05:07,1,0.6,,,-73.95702362060547,40.71150588989258,-73.96065521240234,40.71694564819336,1,N,1,6.5,0.0,0.5,0.3,2.15,0.0,,9.45,1.0 +1,2016-01-11 09:44:50,2016-01-11 10:37:58,1,5.4,,,-73.92153930664062,40.76678466796875,-73.99147033691406,40.754127502441406,1,N,1,32.5,0.0,0.5,0.3,6.65,0.0,,39.95,1.0 +1,2016-01-09 12:42:51,2016-01-09 12:51:12,1,1.0,,,-73.95394897460938,40.82139587402344,-73.93905639648438,40.819068908691406,1,N,1,7.0,0.0,0.5,0.3,0.8,0.0,,8.6,1.0 +2,2016-01-18 16:29:57,2016-01-18 16:45:09,1,3.18,,,-73.98746490478516,40.69272232055664,-74.00621032714844,40.708526611328125,1,N,1,13.0,0.0,0.5,0.3,1.0,0.0,,14.8,1.0 +2,2016-01-22 00:35:56,2016-01-22 00:45:57,2,3.12,,,-73.95987701416016,40.70307540893555,-73.9462890625,40.66508102416992,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-27 21:06:55,2016-01-27 21:14:43,1,2.56,,,-73.8306884765625,40.75950622558594,-73.86461639404297,40.7639274597168,1,N,1,9.5,0.5,0.5,0.3,2.7,0.0,,13.5,1.0 +2,2016-01-05 20:09:54,2016-01-05 20:15:04,1,1.14,,,-73.99452209472656,40.69791030883789,-73.98675537109375,40.68853759765625,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-20 23:47:39,2016-01-20 23:58:33,1,2.21,,,-73.98139190673828,40.69203186035156,-73.98363494873047,40.6652946472168,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,,13.56,1.0 +1,2016-01-21 10:58:32,2016-01-21 11:18:20,1,6.2,,,-73.95374298095703,40.80192184448242,-73.87620544433594,40.82899856567383,1,N,2,21.0,0.0,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-26 09:43:25,2016-01-26 09:45:15,1,0.35,,,-73.9564437866211,40.747413635253906,-73.95854187011719,40.74356460571289,1,N,1,3.5,0.0,0.5,0.3,0.86,0.0,,5.16,1.0 +1,2016-01-14 13:55:56,2016-01-14 14:05:30,1,1.9,,,-73.99544525146484,40.68812942504883,-73.99038696289062,40.66851043701172,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-05 07:56:20,2016-01-05 08:13:56,1,3.7,,,-73.92750549316406,40.86063003540039,-73.91454315185547,40.850128173828125,1,N,1,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +1,2016-01-16 09:31:32,2016-01-16 09:42:06,1,1.7,,,-73.98771667480469,40.69069290161133,-74.00366973876953,40.67567825317383,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,,10.8,1.0 +1,2016-01-02 17:58:52,2016-01-02 18:10:06,1,2.2,,,-73.91360473632812,40.81936264038086,-73.89088439941406,40.840301513671875,1,Y,1,10.0,0.0,0.5,0.3,1.0,0.0,,11.8,1.0 +2,2016-01-16 02:16:07,2016-01-16 02:30:10,1,2.75,,,-73.94994354248047,40.71702575683594,-73.92438507080078,40.691951751708984,1,N,1,12.0,0.5,0.5,0.3,3.99,0.0,,17.29,1.0 +2,2016-01-14 15:55:09,2016-01-14 16:02:00,6,0.75,,,-73.91287994384766,40.87234878540039,-73.91246032714844,40.876983642578125,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-25 20:05:39,2016-01-25 20:24:13,1,3.02,,,-73.92897033691406,40.679378509521484,-73.95641326904297,40.65530014038086,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-14 11:16:16,2016-01-14 11:21:52,1,0.9,,,-73.91431427001953,40.83652877807617,-73.91651916503906,40.8282356262207,5,N,2,7.0,0.0,0.0,0,0.0,0.0,,7.0,2.0 +2,2016-01-05 12:45:14,2016-01-05 12:59:25,1,2.5,,,-73.91365051269531,40.7656135559082,-73.88636016845703,40.74449157714844,1,N,1,11.0,0.0,0.5,0.3,1.5,0.0,,13.3,1.0 +2,2016-01-25 16:49:30,2016-01-25 17:06:17,1,0.96,,,-73.89139556884766,40.74685287475586,-73.88607788085938,40.755531311035156,1,N,2,11.0,1.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-07 08:18:03,2016-01-07 08:30:52,1,2.96,,,-73.88648986816406,40.76148986816406,-73.93180084228516,40.75175857543945,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-29 21:47:33,2016-01-29 21:50:54,1,0.52,,,-73.94606018066406,40.78976058959961,-73.93912506103516,40.791072845458984,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +1,2016-01-07 15:00:51,2016-01-07 15:07:30,1,2.0,,,-73.95050048828125,40.826751708984375,-73.96195983886719,40.805416107177734,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-26 18:32:36,2016-01-26 18:47:51,1,2.28,,,-73.96537017822266,40.71089172363281,-73.9437255859375,40.72682571411133,1,N,1,11.5,1.0,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-01 13:48:53,2016-01-01 14:01:58,3,5.16,,,-73.81770324707031,40.7176513671875,-73.87593078613281,40.75468063354492,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-06 05:01:24,2016-01-06 05:10:58,1,2.88,,,-73.99200439453125,40.68444061279297,-74.00454711914062,40.71944046020508,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-28 16:17:23,2016-01-28 16:25:10,1,0.91,,,-73.99187469482422,40.69093322753906,-73.99798583984375,40.678043365478516,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-14 19:37:06,2016-01-14 19:41:16,1,0.78,,,-73.98731994628906,40.69191360473633,-73.98501586914062,40.70235824584961,1,N,1,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 23:59:57,2016-01-23 00:14:31,2,5.58,,,-73.95106506347656,40.81183624267578,-73.99539947509766,40.759521484375,1,N,1,18.0,0.5,0.5,0.3,2.0,0.0,,21.3,1.0 +2,2016-01-25 23:37:57,2016-01-25 23:46:59,1,3.72,,,-73.9178237915039,40.76996612548828,-73.90142822265625,40.733436584472656,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-20 11:44:58,2016-01-20 11:52:47,1,1.6,,,-73.94975280761719,40.68038558959961,-73.932861328125,40.6706428527832,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-22 21:45:44,2016-01-22 22:06:32,1,11.55,,,-73.86929321289062,40.734066009521484,-73.72852325439453,40.657596588134766,1,N,2,32.5,0.5,0.5,0.3,0.0,0.0,,33.8,1.0 +2,2016-01-27 17:23:43,2016-01-27 17:34:15,1,1.01,,,-73.96617889404297,40.70471954345703,-73.95561218261719,40.6946907043457,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-06 19:15:26,2016-01-06 19:19:28,1,0.69,,,-73.95266723632812,40.81067657470703,-73.96076965332031,40.81791305541992,1,N,1,4.5,1.0,0.5,0.3,2.0,0.0,,8.3,1.0 +2,2016-01-21 20:01:48,2016-01-21 20:04:51,1,0.63,,,-73.96491241455078,40.806636810302734,-73.9692153930664,40.79819869995117,1,N,1,4.5,0.5,0.5,0.3,1.0,0.0,,6.8,1.0 +2,2016-01-29 18:20:50,2016-01-29 18:30:52,2,2.33,,,-73.94590759277344,40.790008544921875,-73.93547821044922,40.814334869384766,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-06 05:27:34,2016-01-06 05:41:18,5,3.6,,,-73.87688446044922,40.74812698364258,-73.93633270263672,40.75000762939453,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-22 15:28:50,2016-01-22 15:40:54,1,2.89,,,-74.0169906616211,40.67466354370117,-73.98968505859375,40.702430725097656,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-05 05:12:48,2016-01-05 05:28:06,1,4.75,,,-73.94450378417969,40.83482360839844,-73.9544906616211,40.784034729003906,1,N,1,16.0,0.5,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-21 07:18:26,2016-01-21 07:49:19,1,5.7,,,-73.91829681396484,40.765628814697266,-73.9863052368164,40.755706787109375,1,N,2,23.5,0.0,0.5,0.3,0.0,0.0,,24.3,1.0 +2,2016-01-22 10:37:01,2016-01-22 11:10:54,1,4.63,,,-73.92559814453125,40.76185989379883,-73.98959350585938,40.756996154785156,1,N,1,23.0,0.0,0.5,0.3,4.28,0.0,,28.08,1.0 +2,2016-01-03 15:15:48,2016-01-03 15:24:39,2,1.59,,,-73.94561004638672,40.8079719543457,-73.95073699951172,40.82490539550781,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-20 14:44:36,2016-01-20 14:57:44,1,2.45,,,-73.95117950439453,40.82051086425781,-73.94910430908203,40.794151306152344,1,N,1,11.0,0.0,0.5,0.3,1.0,0.0,,12.8,1.0 +2,2016-01-01 00:27:16,2016-01-01 00:45:46,1,3.39,,,-73.95256042480469,40.72316360473633,-73.91265869140625,40.69549560546875,1,N,1,15.0,0.5,0.5,0.3,3.26,0.0,,19.56,1.0 +2,2016-01-29 19:05:41,2016-01-29 19:28:28,1,3.53,,,-73.95492553710938,40.789188385009766,-73.9903335571289,40.75137710571289,1,N,1,16.5,1.0,0.5,0.3,3.66,0.0,,21.96,1.0 +2,2016-01-28 15:23:14,2016-01-28 15:37:35,1,2.69,,,-73.81561279296875,40.70014190673828,-73.84473419189453,40.682342529296875,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-30 21:00:25,2016-01-30 21:06:11,1,0.8,,,-73.92201232910156,40.6984748840332,-73.93647766113281,40.69776916503906,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-17 20:00:51,2016-01-17 20:17:48,1,2.19,,,-73.91891479492188,40.742977142333984,-73.91901397705078,40.7351188659668,1,N,1,12.5,0.0,0.5,0.3,2.0,0.0,,15.3,1.0 +2,2016-01-15 13:54:36,2016-01-15 14:01:43,2,1.34,,,-73.88641357421875,40.756160736083984,-73.90701293945312,40.75343704223633,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-18 13:47:07,2016-01-18 14:04:31,1,10.09,,,-73.95223999023438,40.78989028930664,-73.82991790771484,40.854248046875,1,N,1,28.0,0.0,0.5,0.3,0.0,0.0,,28.8,1.0 +2,2016-01-25 16:40:07,2016-01-25 16:47:56,1,1.21,,,-73.92314910888672,40.74354553222656,-73.89801025390625,40.74048614501953,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-06 15:28:42,2016-01-06 15:44:22,1,1.23,,,-73.95284271240234,40.788387298583984,-73.96253967285156,40.77317810058594,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-07 23:41:09,2016-01-07 23:58:28,1,4.54,,,-73.96175384521484,40.71382522583008,-73.98343658447266,40.67702865600586,1,N,1,17.5,0.5,0.5,0.3,3.76,0.0,,22.56,1.0 +2,2016-01-11 13:19:53,2016-01-11 13:47:13,1,6.64,,,-73.98780822753906,40.690128326416016,-73.96570587158203,40.617183685302734,1,N,1,25.5,0.0,0.5,0.3,5.26,0.0,,31.56,1.0 +1,2016-01-11 14:40:27,2016-01-11 14:57:16,1,1.8,,,-73.94966888427734,40.79629135131836,-73.96223449707031,40.77388381958008,1,N,1,12.0,0.0,0.5,0.3,1.5,0.0,,14.3,1.0 +2,2016-01-26 08:08:04,2016-01-26 08:30:44,1,2.81,,,-73.96768188476562,40.687591552734375,-73.95162200927734,40.659305572509766,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +1,2016-01-15 14:35:21,2016-01-15 14:43:10,1,1.2,,,-73.95986938476562,40.813812255859375,-73.94776153564453,40.823612213134766,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-21 16:28:28,2016-01-21 16:30:14,1,0.21,,,-73.9538803100586,40.82149887084961,-73.95099639892578,40.82069396972656,1,N,3,-3.5,-1.0,-0.5,-0.3,0.0,0.0,,-5.3,1.0 +2,2016-01-12 03:21:17,2016-01-12 03:27:47,1,1.8,,,-73.9288101196289,40.81901550292969,-73.91595458984375,40.839561462402344,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-25 19:06:30,2016-01-25 19:09:59,1,0.44,,,-73.86021423339844,40.83745193481445,-73.85539245605469,40.837501525878906,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-01 15:26:56,2016-01-01 15:36:53,1,4.36,,,-73.9420166015625,40.806312561035156,-73.91644287109375,40.85572052001953,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-21 13:21:27,2016-01-21 13:29:08,1,1.76,,,-73.90336608886719,40.745765686035156,-73.9011001586914,40.7309455871582,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-22 18:10:30,2016-01-22 18:21:53,1,1.61,,,-73.80744934082031,40.70021438598633,-73.79109954833984,40.68242645263672,1,N,1,9.0,1.0,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-16 01:47:27,2016-01-16 02:07:05,1,9.29,,,-73.86359405517578,40.730384826660156,-73.93243408203125,40.771484375,1,N,1,27.0,0.5,0.5,0.3,5.66,0.0,,33.96,1.0 +2,2016-01-19 08:31:02,2016-01-19 08:36:52,1,1.23,,,-73.98683166503906,40.701560974121094,-73.97136688232422,40.69925308227539,1,N,1,6.0,0.0,0.5,0.3,1.7,0.0,,8.5,1.0 +2,2016-01-16 09:11:25,2016-01-16 09:14:21,1,0.38,,,-73.84426879882812,40.72181701660156,-73.84732818603516,40.72294235229492,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-29 08:44:00,2016-01-29 08:51:20,1,1.04,,,-73.84375762939453,40.72114562988281,-73.84184265136719,40.72950744628906,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-04 07:52:06,2016-01-04 08:22:29,5,9.96,,,-73.97918701171875,40.665855407714844,-73.97463989257812,40.755577087402344,1,N,1,30.5,0.0,0.5,0.3,7.37,5.54,,44.21,1.0 +2,2016-01-03 09:28:16,2016-01-03 09:33:50,1,1.63,,,-73.9586410522461,40.81003952026367,-73.94181823730469,40.831058502197266,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-23 01:14:18,2016-01-23 01:16:37,1,0.55,,,-73.91087341308594,40.77594757080078,-73.9030990600586,40.770755767822266,1,N,1,4.0,0.5,0.5,0.3,1.32,0.0,,6.62,1.0 +1,2016-01-27 18:03:03,2016-01-27 18:38:22,1,5.8,,,-73.86965942382812,40.748897552490234,-73.91032409667969,40.702552795410156,1,N,2,23.5,1.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-15 17:30:29,2016-01-15 17:47:27,1,2.45,,,-73.98328399658203,40.69002151489258,-73.9421157836914,40.68794631958008,1,N,1,12.5,1.0,0.5,0.3,3.58,0.0,,17.88,1.0 +2,2016-01-03 03:30:15,2016-01-03 03:38:45,2,2.32,,,-73.92534637451172,40.761653900146484,-73.88729858398438,40.7557487487793,1,N,1,9.5,0.5,0.5,0.3,2.0,0.0,,12.8,1.0 +1,2016-01-17 09:08:36,2016-01-17 09:14:20,1,2.0,,,-73.93798828125,40.79666519165039,-73.95801544189453,40.7729377746582,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,,9.8,1.0 +2,2016-01-17 15:00:51,2016-01-17 15:11:17,1,2.27,,,-73.99739837646484,40.67936706542969,-74.01217651367188,40.6796875,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-18 10:30:16,2016-01-18 10:33:39,1,0.65,,,-73.94038391113281,40.845680236816406,-73.93677520751953,40.85541915893555,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-12 19:56:41,2016-01-12 20:09:39,1,2.79,,,-73.93915557861328,40.80487060546875,-73.94931030273438,40.77295684814453,1,N,1,12.0,1.0,0.5,0.3,1.7,0.0,,15.5,1.0 +1,2016-01-24 18:18:35,2016-01-24 19:14:41,1,31.2,,,-73.80692291259766,40.69902801513672,-73.38825225830078,40.83588790893555,4,N,1,137.0,1.0,0.5,0.3,34.7,0.0,,173.5,1.0 +2,2016-01-30 17:35:17,2016-01-30 17:52:52,6,5.07,,,-73.99549102783203,40.698158264160156,-73.93341827392578,40.705711364746094,1,N,1,17.5,0.0,0.5,0.3,4.58,0.0,,22.88,1.0 +2,2016-01-10 17:20:12,2016-01-10 17:26:37,1,0.95,,,-73.89725494384766,40.8626708984375,-73.90727233886719,40.8538703918457,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-14 14:48:36,2016-01-14 14:59:43,1,4.2,,,-73.90327453613281,40.74583435058594,-73.86488342285156,40.7703857421875,1,N,1,14.0,0.0,0.5,0.3,3.7,0.0,,18.5,1.0 +2,2016-01-11 23:18:36,2016-01-11 23:40:18,1,5.84,,,-73.89790344238281,40.74626159667969,-73.97267150878906,40.780635833740234,1,N,1,21.0,0.5,0.5,0.3,1.5,0.0,,23.8,1.0 +2,2016-01-09 04:39:21,2016-01-09 04:44:45,1,1.44,,,-73.93391418457031,40.80284881591797,-73.94098663330078,40.78825378417969,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-25 10:00:50,2016-01-25 10:05:06,1,0.86,,,-73.9128189086914,40.87239456176758,-73.92655944824219,40.86582565307617,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-21 19:29:50,2016-01-21 19:34:44,2,0.64,,,-73.9576416015625,40.717872619628906,-73.9574966430664,40.725135803222656,1,N,1,5.0,1.0,0.5,0.3,1.7,0.0,,8.5,1.0 +2,2016-01-27 15:04:16,2016-01-27 15:36:52,1,6.48,,,-73.92086791992188,40.82622146606445,-73.95166015625,40.77375793457031,1,N,1,26.0,0.0,0.5,0.3,2.68,0.0,,29.48,1.0 +2,2016-01-05 14:49:35,2016-01-05 14:58:49,1,1.28,,,-73.91193389892578,40.77526092529297,-73.91340637207031,40.77802658081055,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-08 09:09:46,2016-01-08 09:23:07,1,2.03,,,-73.91840362548828,40.7596435546875,-73.92681121826172,40.77617645263672,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-20 16:10:14,2016-01-20 16:11:27,1,0.2,,,-73.9659652709961,40.805171966552734,-73.96798706054688,40.8023681640625,1,N,2,3.0,1.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-04 21:50:33,2016-01-04 22:05:23,1,3.12,,,-73.95286560058594,40.78669738769531,-73.98094177246094,40.786041259765625,1,N,1,13.0,0.5,0.5,0.3,1.0,0.0,,15.3,1.0 +2,2016-01-06 19:51:07,2016-01-06 20:01:20,1,1.78,,,-73.91251373291016,40.75590515136719,-73.88058471679688,40.74795913696289,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-23 04:35:50,2016-01-23 04:44:30,1,1.19,,,-73.86259460449219,40.749900817871094,-73.87723541259766,40.75273132324219,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-09 12:32:16,2016-01-09 12:40:35,1,1.6,,,-73.94964599609375,40.80232620239258,-73.95454406738281,40.818206787109375,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-27 12:50:40,2016-01-27 12:58:34,5,0.67,,,-73.9399185180664,40.67718505859375,-73.9419937133789,40.68051528930664,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +1,2016-01-05 08:03:07,2016-01-05 08:13:18,2,1.6,,,-73.98316955566406,40.67664337158203,-73.9794692993164,40.6654052734375,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-30 19:59:24,2016-01-30 20:42:09,1,14.21,,,-73.95551300048828,40.804622650146484,-73.95592498779297,40.7204475402832,1,N,1,44.5,0.0,0.5,0.3,5.0,5.54,,55.84,1.0 +1,2016-01-19 22:36:28,2016-01-19 23:00:16,2,7.0,,,-73.9614028930664,40.71441650390625,-73.9749984741211,40.649295806884766,1,N,2,23.5,0.5,0.5,0.3,0.0,0.0,,24.8,1.0 +1,2016-01-12 15:25:38,2016-01-12 15:30:28,1,0.7,,,-73.98001861572266,40.668853759765625,-73.98038482666016,40.676483154296875,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,,6.95,1.0 +2,2016-01-13 21:52:11,2016-01-13 22:02:36,1,2.75,,,-73.83038330078125,40.75949478149414,-73.79238891601562,40.77387237548828,1,N,1,10.5,0.5,0.5,0.3,3.54,0.0,,15.34,1.0 +2,2016-01-05 14:32:13,2016-01-05 14:43:59,1,2.17,,,-74.02870178222656,40.62284851074219,-74.02125549316406,40.647003173828125,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-16 17:01:01,2016-01-16 17:18:25,1,3.18,,,-73.99478149414062,40.68442916870117,-73.95953369140625,40.68654251098633,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-27 07:59:04,2016-01-27 08:04:58,1,1.14,,,-73.99446105957031,40.68880844116211,-73.98206329345703,40.68025588989258,1,N,1,6.0,0.0,0.5,0.3,1.7,0.0,,8.5,1.0 +1,2016-01-16 22:23:10,2016-01-16 22:33:55,4,2.0,,,-73.94207000732422,40.82270812988281,-73.95694732666016,40.80088806152344,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-16 20:24:40,2016-01-16 20:38:24,1,3.7,,,-73.94474792480469,40.800045013427734,-73.93148040771484,40.84730529785156,1,N,1,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-16 15:01:42,2016-01-16 15:09:33,6,1.29,,,-73.84425354003906,40.721317291259766,-73.85509490966797,40.706153869628906,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-07 22:24:46,2016-01-07 22:35:03,1,2.03,,,-73.94939422607422,40.680423736572266,-73.94050598144531,40.69551467895508,1,N,1,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-08 09:58:41,2016-01-08 10:24:39,1,3.46,,,-73.96704864501953,40.69441223144531,-74.00384521484375,40.726051330566406,1,N,1,19.0,0.0,0.5,0.3,2.75,0.0,,22.55,1.0 +2,2016-01-17 12:58:43,2016-01-17 13:10:17,5,2.02,,,-73.91494750976562,40.764034271240234,-73.90435791015625,40.775390625,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-20 08:56:10,2016-01-20 08:58:16,1,0.6,,,-73.94860076904297,40.825653076171875,-73.9536361694336,40.82350158691406,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-18 18:18:27,2016-01-18 18:21:34,1,0.5,,,-73.9507827758789,40.72370147705078,-73.94390106201172,40.72241973876953,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-11 21:19:25,2016-01-11 21:23:21,1,0.66,,,-73.96217346191406,40.8054084777832,-73.95697784423828,40.80352020263672,1,N,1,4.5,0.5,0.5,0.3,1.45,0.0,,7.25,1.0 +1,2016-01-01 01:30:16,2016-01-01 01:39:09,1,1.1,,,-73.88126373291016,40.74802017211914,-73.86783599853516,40.75240707397461,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-17 11:46:29,2016-01-17 11:51:25,1,0.82,,,-73.94513702392578,40.80818557739258,-73.94694519042969,40.80344009399414,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-29 23:55:19,2016-01-29 23:58:37,1,0.43,,,-73.95275115966797,40.8109016418457,-73.95740509033203,40.81172180175781,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-03 02:29:28,2016-01-03 02:35:22,1,1.28,,,-73.95217895507812,40.8105354309082,-73.96365356445312,40.79798889160156,1,N,1,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-04 19:10:57,2016-01-04 19:28:36,1,2.39,,,-73.99258422851562,40.68922424316406,-73.9563980102539,40.67521667480469,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-13 13:59:00,2016-01-13 14:02:29,1,0.7,,,-74.0286636352539,40.622802734375,-74.0398178100586,40.62383270263672,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-02 23:15:26,2016-01-02 23:15:28,1,0.0,,,-73.89346313476562,40.93013381958008,-73.89352416992188,40.930171966552734,5,N,3,-25.0,0.0,0.0,0,0.0,0.0,,-25.0,2.0 +2,2016-01-30 21:10:28,2016-01-30 21:18:45,1,0.91,,,-73.91905212402344,40.76573181152344,-73.9195556640625,40.75558853149414,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-17 06:55:06,2016-01-17 07:04:06,1,1.9,,,-73.93236541748047,40.679481506347656,-73.95735168457031,40.67229461669922,1,N,1,8.5,0.0,0.5,0.3,2.0,0.0,,11.3,1.0 +1,2016-01-07 17:30:36,2016-01-07 17:43:37,1,2.3,,,-73.95751953125,40.744773864746094,-73.97718048095703,40.74955749511719,1,Y,2,11.0,1.0,0.5,0.3,0.0,5.54,,18.34,1.0 +2,2016-01-26 11:33:10,2016-01-26 11:58:17,1,2.33,,,-73.9561538696289,40.80318069458008,-73.95606994628906,40.779930114746094,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-13 07:41:27,2016-01-13 07:48:05,1,1.2,,,-73.95391845703125,40.801513671875,-73.96766662597656,40.7928581237793,1,N,1,6.5,0.0,0.5,0.3,1.5,0.0,,8.8,1.0 +2,2016-01-25 06:26:32,2016-01-25 06:57:12,1,9.46,,,-73.84408569335938,40.72123718261719,-73.97445678710938,40.757137298583984,1,N,2,31.0,0.0,0.5,0.3,0.0,5.54,,37.34,1.0 +2,2016-01-03 00:14:25,2016-01-03 00:35:02,1,11.83,,,-73.92540740966797,40.76179885864258,-73.99313354492188,40.688194274902344,1,N,2,34.0,0.5,0.5,0.3,0.0,0.0,,35.3,1.0 +2,2016-01-06 17:00:30,2016-01-06 17:07:56,1,1.09,,,-73.90092468261719,40.8385009765625,-73.90896606445312,40.82350158691406,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-24 23:34:20,2016-01-24 23:42:36,1,1.5,,,-73.89769744873047,40.8619384765625,-73.91097259521484,40.84308624267578,1,Y,1,8.0,0.5,0.5,0.3,0.7,0.0,,10.0,1.0 +2,2016-01-14 00:28:49,2016-01-14 00:34:05,1,1.27,,,-73.98018646240234,40.676876068115234,-73.9919204711914,40.666378021240234,1,N,1,6.5,0.5,0.5,0.3,1.0,0.0,,8.8,1.0 +1,2016-01-06 12:56:34,2016-01-06 13:13:58,1,2.3,,,-73.98308563232422,40.69348907470703,-73.9555435180664,40.677242279052734,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,,15.95,1.0 +2,2016-01-10 20:35:21,2016-01-10 20:38:31,1,0.82,,,-73.93157958984375,40.76529312133789,-73.92169189453125,40.771060943603516,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-10 18:20:43,2016-01-10 18:29:05,5,1.23,,,-73.9034423828125,40.74521255493164,-73.8935317993164,40.734580993652344,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-03 00:08:43,2016-01-03 00:20:49,1,3.32,,,-73.91497802734375,40.70964813232422,-73.95731353759766,40.729942321777344,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-05 10:02:25,2016-01-05 10:04:47,1,0.61,,,-73.9574966430664,40.716026306152344,-73.96630859375,40.71459197998047,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,,6.0,1.0 +2,2016-01-11 16:23:07,2016-01-11 16:37:55,1,3.49,,,-73.90857696533203,40.875186920166016,-73.85664367675781,40.89448547363281,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-30 17:51:04,2016-01-30 18:44:53,1,17.44,,,-73.95231628417969,40.789825439453125,-74.00443267822266,40.60904312133789,1,N,1,52.5,0.0,0.5,0.3,15.99,0.0,,69.29,1.0 +1,2016-01-29 16:17:35,2016-01-29 16:24:53,1,0.9,,,-73.9923324584961,40.68976974487305,-73.9942398071289,40.681087493896484,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-03 01:05:42,2016-01-03 01:09:34,1,0.63,,,-73.9118423461914,40.775413513183594,-73.90306091308594,40.77075958251953,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-28 18:06:25,2016-01-28 18:23:49,5,3.19,,,-73.98904418945312,40.70244598388672,-73.95365905761719,40.716251373291016,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-09 21:04:35,2016-01-09 21:08:37,1,0.25,,,-73.97762298583984,40.68061447143555,-73.97982025146484,40.677276611328125,1,N,1,4.5,0.5,0.5,0.3,1.74,0.0,,7.54,1.0 +2,2016-01-18 16:50:00,2016-01-18 17:11:36,1,7.77,,,-73.94068145751953,40.83956527709961,-73.95449829101562,40.76580810546875,1,N,1,23.5,0.0,0.5,0.3,3.0,0.0,,27.3,1.0 +2,2016-01-08 08:17:50,2016-01-08 08:28:32,1,1.84,,,-73.8289794921875,40.83251953125,-73.84571075439453,40.84907150268555,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +2,2016-01-19 19:33:43,2016-01-19 19:35:40,1,0.58,,,-73.83018493652344,40.713714599609375,-73.8226547241211,40.713626861572266,1,N,1,4.0,1.0,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-04 14:30:44,2016-01-04 14:45:28,1,2.99,,,-73.93572998046875,40.7962532043457,-73.95433807373047,40.81983184814453,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-13 19:11:53,2016-01-13 19:28:00,1,7.94,,,-73.84919738769531,40.73616409301758,-73.83672332763672,40.81764221191406,1,N,1,23.5,1.0,0.5,0.3,6.17,5.54,,37.01,1.0 +2,2016-01-25 18:47:45,2016-01-25 19:06:32,1,6.03,,,-73.9095687866211,40.81166076660156,-73.86459350585938,40.858734130859375,1,N,1,19.5,1.0,0.5,0.3,5.32,0.0,,26.62,1.0 +1,2016-01-13 19:24:43,2016-01-13 19:36:35,1,1.7,,,-73.93893432617188,40.805484771728516,-73.9598388671875,40.8199577331543,1,N,1,9.5,1.0,0.5,0.3,3.35,0.0,,14.65,1.0 +2,2016-01-01 17:46:11,2016-01-01 18:03:01,1,7.55,,,-73.86146545410156,40.73229217529297,-73.90300750732422,40.74486541748047,1,N,2,22.5,0.0,0.5,0.3,0.0,0.0,,23.3,1.0 +1,2016-01-07 11:40:22,2016-01-07 11:45:33,1,1.6,,,-73.97297668457031,40.67780685424805,-73.94998168945312,40.67165756225586,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,,9.35,1.0 +2,2016-01-03 22:46:34,2016-01-03 22:57:48,1,2.36,,,-73.9488296508789,40.823631286621094,-73.938232421875,40.79719543457031,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-21 07:21:22,2016-01-21 07:22:34,1,0.13,,,-73.92681884765625,40.85992431640625,-73.92428588867188,40.86082077026367,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +1,2016-01-01 01:13:18,2016-01-01 01:16:12,1,0.4,,,-73.99093627929688,40.69233322143555,-73.99393463134766,40.68646240234375,1,N,1,4.0,0.5,0.5,0.3,1.05,0.0,,6.35,1.0 +2,2016-01-26 07:59:37,2016-01-26 08:18:23,1,2.89,,,-73.93839263916016,40.85075378417969,-73.89421081542969,40.85078811645508,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-01 04:34:07,2016-01-01 04:48:41,1,3.08,,,-73.90364074707031,40.745758056640625,-73.91961669921875,40.7651252746582,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-01 15:19:15,2016-01-01 15:27:00,1,1.33,,,-73.96764373779297,40.68800354003906,-73.98798370361328,40.68964767456055,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-04 12:06:36,2016-01-04 12:07:30,1,0.25,,,-73.94204711914062,40.79530715942383,-73.93930053710938,40.797603607177734,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-30 14:46:48,2016-01-30 15:06:33,1,6.58,,,-73.94245147705078,40.786380767822266,-73.98799133300781,40.72063446044922,1,N,1,22.5,0.0,0.5,0.3,1.0,0.0,,24.3,1.0 +2,2016-01-17 16:58:21,2016-01-17 17:08:12,1,0.73,,,-73.84430694580078,40.721351623535156,-73.85615539550781,40.72443771362305,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-27 18:28:21,2016-01-27 18:42:36,1,2.73,,,-73.98764038085938,40.69096374511719,-74.0140609741211,40.676334381103516,1,N,2,12.0,1.0,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-14 20:46:31,2016-01-14 20:52:46,1,0.7,,,-73.95882415771484,40.704681396484375,-73.95508575439453,40.69700241088867,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-18 06:07:07,2016-01-18 06:11:05,6,0.57,,,-73.89480590820312,40.74655532836914,-73.89649963378906,40.747066497802734,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-12 12:31:12,2016-01-12 12:47:44,1,2.4,,,-73.99373626708984,40.699649810791016,-74.00849914550781,40.72050476074219,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-21 11:07:25,2016-01-21 11:09:30,1,0.4,,,-73.97221374511719,40.68960952758789,-73.98043823242188,40.68995666503906,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-19 19:08:21,2016-01-19 19:15:58,1,1.45,,,-73.83024597167969,40.71369171142578,-73.81070709228516,40.7126579284668,1,N,1,7.5,1.0,0.5,0.3,2.79,0.0,,12.09,1.0 +2,2016-01-11 14:30:19,2016-01-11 15:06:50,1,3.34,,,-73.78985595703125,40.726470947265625,-73.80735778808594,40.72755432128906,5,N,1,8.0,0.0,0.0,0,0.0,0.0,,8.0,2.0 +2,2016-01-12 00:10:52,2016-01-12 00:19:19,1,2.52,,,-73.98137664794922,40.667198181152344,-73.9627456665039,40.65967559814453,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-07 19:39:31,2016-01-07 19:47:51,1,1.1,,,-73.95600891113281,40.6810302734375,-73.93539428710938,40.683387756347656,1,N,1,7.5,1.0,0.5,0.3,2.0,0.0,,11.3,1.0 +2,2016-01-04 20:07:50,2016-01-04 20:35:48,1,6.39,,,-73.82949829101562,40.71355056762695,-73.79664611816406,40.73136901855469,1,N,2,23.5,1.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-20 04:05:19,2016-01-20 04:14:46,1,0.77,,,-73.89664459228516,40.74616622924805,-73.89608001708984,40.74501037597656,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-30 12:13:03,2016-01-30 12:24:54,1,1.71,,,-73.94926452636719,40.82590866088867,-73.91989135742188,40.816558837890625,1,N,1,10.0,0.0,0.5,0.3,2.7,0.0,,13.5,1.0 +2,2016-01-26 21:26:21,2016-01-26 21:30:14,1,0.86,,,-73.95077514648438,40.66213607788086,-73.93970489501953,40.656105041503906,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-11 17:36:09,2016-01-11 17:52:26,1,2.6,,,-73.98670196533203,40.702056884765625,-73.98313903808594,40.671295166015625,1,N,1,12.5,1.0,0.5,0.3,3.55,0.0,,17.85,1.0 +2,2016-01-22 17:19:22,2016-01-22 17:24:44,1,0.81,,,-73.95366668701172,40.80672836303711,-73.95966339111328,40.813926696777344,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 01:19:34,2016-01-01 01:29:33,1,2.12,,,-73.90628051757812,40.745330810546875,-73.8681411743164,40.736907958984375,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-08 15:02:37,2016-01-08 15:12:45,1,1.9,,,-73.93922424316406,40.80529022216797,-73.95668029785156,40.78114318847656,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-05 13:56:26,2016-01-05 14:02:19,2,0.93,,,-73.89152526855469,40.74666213989258,-73.87586975097656,40.746307373046875,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-26 13:50:49,2016-01-26 14:13:54,1,6.39,,,-73.85147857666016,40.8338508605957,-73.94703674316406,40.8084716796875,1,N,2,23.0,0.0,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-15 07:57:16,2016-01-15 08:08:19,1,1.51,,,-73.94503021240234,40.81029510498047,-73.95089721679688,40.79258346557617,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-30 19:44:35,2016-01-30 19:51:24,1,1.7,,,-73.99776458740234,40.69367218017578,-74.01477813720703,40.675819396972656,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,,9.35,1.0 +2,2016-01-14 21:45:12,2016-01-14 21:47:42,2,0.53,,,-73.9423828125,40.8416862487793,-73.94505310058594,40.84079360961914,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-10 23:31:38,2016-01-10 23:37:16,1,1.35,,,-73.94700622558594,40.63225555419922,-73.96333312988281,40.64045333862305,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-18 04:36:15,2016-01-18 04:45:03,6,2.07,,,-73.87657165527344,40.74848556518555,-73.86911010742188,40.731056213378906,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-20 07:44:27,2016-01-20 08:09:09,1,5.4,,,-73.9867935180664,40.70249938964844,-73.98096466064453,40.76091384887695,1,N,1,20.0,0.0,0.5,0.3,5.2,0.0,,26.0,1.0 +2,2016-01-04 23:01:08,2016-01-05 22:56:16,1,0.92,,,-73.92964935302734,40.679344177246094,-73.93905639648438,40.67300796508789,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-17 20:55:19,2016-01-17 21:00:09,1,0.8,,,-73.93425750732422,40.702659606933594,-73.94464874267578,40.70656204223633,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-19 15:51:26,2016-01-19 15:58:49,1,1.4,,,-73.95921325683594,40.80105972290039,-73.97500610351562,40.7904167175293,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,,8.8,1.0 +2,2016-01-01 03:51:16,2016-01-01 04:03:25,5,2.41,,,-73.90347290039062,40.8626823425293,-73.88469696044922,40.845062255859375,1,N,1,11.5,0.5,0.5,0.3,8.0,0.0,,20.8,1.0 +2,2016-01-05 09:02:34,2016-01-05 09:02:36,1,0.0,,,-73.79003143310547,40.64692687988281,-73.79000854492188,40.646915435791016,5,N,1,40.0,0.0,0.0,0,8.0,0.0,,48.0,2.0 +1,2016-01-13 08:57:05,2016-01-13 09:05:15,1,1.4,,,-73.86766052246094,40.74979782104492,-73.87616729736328,40.76808166503906,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,,10.55,1.0 +1,2016-01-25 10:59:26,2016-01-25 11:26:02,1,2.6,,,-73.94892120361328,40.80348205566406,-73.9775390625,40.787193298339844,1,N,1,17.0,0.0,0.5,0.3,3.55,0.0,,21.35,1.0 +1,2016-01-29 21:43:33,2016-01-29 21:53:53,1,1.2,,,-73.92189025878906,40.765567779541016,-73.93608856201172,40.77493667602539,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-30 19:48:33,2016-01-30 19:52:28,1,0.5,,,-73.95665740966797,40.7167854309082,-73.96426391601562,40.7172966003418,1,N,1,4.5,0.0,0.5,0.3,1.32,0.0,,6.62,1.0 +2,2016-01-19 18:35:54,2016-01-19 18:47:42,1,1.81,,,-73.9921875,40.69464111328125,-73.96662902832031,40.689571380615234,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-13 01:44:24,2016-01-13 01:53:12,1,2.12,,,-73.94029998779297,40.8405647277832,-73.95140838623047,40.81356430053711,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +1,2016-01-11 10:54:33,2016-01-11 11:19:27,1,8.1,,,-73.8666763305664,40.69224548339844,-73.78783416748047,40.66523361206055,5,N,2,20.0,0.0,0.0,0,0.0,0.0,,20.0,2.0 +2,2016-01-10 23:59:12,2016-01-11 00:10:23,1,3.73,,,-73.92301940917969,40.74391555786133,-73.95877838134766,40.77494812011719,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-10 10:01:59,2016-01-10 10:14:24,1,9.28,,,-73.80767059326172,40.69933319091797,-73.91822814941406,40.77016067504883,1,N,1,25.5,0.0,0.5,0.3,5.26,0.0,,31.56,1.0 +2,2016-01-04 07:18:30,2016-01-04 07:26:17,1,1.72,,,-73.88919830322266,40.82611083984375,-73.88494873046875,40.84243392944336,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-07 09:39:30,2016-01-07 09:49:33,1,2.31,,,-73.94973754882812,40.67866897583008,-73.97554016113281,40.669952392578125,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-16 14:09:44,2016-01-16 14:20:47,5,2.44,,,-73.93262481689453,40.79584884643555,-73.92488861083984,40.805782318115234,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-09 10:17:55,2016-01-09 10:31:53,1,2.7,,,-73.98966979980469,40.701900482177734,-73.98971557617188,40.71886444091797,1,N,1,12.0,0.0,0.5,0.3,2.0,0.0,,14.8,1.0 +2,2016-01-13 00:09:20,2016-01-13 00:16:25,3,1.92,,,-73.98209381103516,40.67432403564453,-74.00498962402344,40.65376281738281,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-01 09:32:39,2016-01-01 09:35:08,1,1.15,,,-73.95111083984375,40.79435729980469,-73.96676635742188,40.793601989746094,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-25 22:15:28,2016-01-25 22:33:46,1,2.88,,,-73.93185424804688,40.858184814453125,-73.94173431396484,40.82297134399414,1,N,1,14.0,0.5,0.5,0.3,1.0,0.0,,16.3,1.0 +2,2016-01-11 08:15:01,2016-01-11 08:32:50,1,3.17,,,-73.99393463134766,40.69549560546875,-73.99313354492188,40.72773742675781,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,,18.36,1.0 +2,2016-01-16 01:06:43,2016-01-16 01:14:32,1,1.86,,,-73.9450912475586,40.79179382324219,-73.94683074951172,40.81116485595703,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-05 09:26:05,2016-01-05 09:30:44,1,0.76,,,-73.9570541381836,40.682464599609375,-73.94385528564453,40.68314743041992,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-09 02:06:07,2016-01-09 02:29:50,1,6.74,,,-73.9277572631836,40.77005386352539,-73.97159576416016,40.69182205200195,1,N,1,22.5,0.5,0.5,0.3,3.2,0.0,,27.0,1.0 +2,2016-01-15 14:55:52,2016-01-15 15:02:13,1,1.43,,,-73.9531478881836,40.78873062133789,-73.93946075439453,40.8047981262207,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-30 00:53:54,2016-01-30 01:05:28,2,2.65,,,-73.95083618164062,40.723846435546875,-73.95835876464844,40.69063949584961,1,N,1,11.0,0.5,0.5,0.3,3.69,0.0,,15.99,1.0 +1,2016-01-24 16:31:39,2016-01-24 17:44:39,4,9.6,,,-73.93881225585938,40.827178955078125,-73.9747543334961,40.73329544067383,1,N,1,50.0,0.0,0.5,0.3,5.0,0.0,,55.8,1.0 +2,2016-01-09 09:03:31,2016-01-09 09:11:24,1,3.53,,,-73.92140197753906,40.766578674316406,-73.90678405761719,40.74198532104492,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-07 14:24:29,2016-01-07 14:27:32,1,0.44,,,-73.9509506225586,40.687103271484375,-73.94965362548828,40.68090057373047,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,,6.0,1.0 +2,2016-01-30 19:58:00,2016-01-30 20:07:37,1,2.51,,,-73.9866714477539,40.70401382446289,-73.98899841308594,40.718685150146484,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,,11.8,1.0 +1,2016-01-01 20:55:33,2016-01-01 21:05:26,2,1.9,,,-73.9576644897461,40.81138229370117,-73.94624328613281,40.795536041259766,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-17 16:38:48,2016-01-17 17:00:17,1,2.89,,,-73.96344757080078,40.71024703979492,-73.91961669921875,40.68800354003906,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,,19.75,1.0 +1,2016-01-17 21:39:16,2016-01-17 21:52:22,1,2.5,,,-73.91960144042969,40.82355499267578,-73.94488525390625,40.802650451660156,1,N,1,11.0,0.5,0.5,0.3,1.0,0.0,,13.3,1.0 +2,2016-01-24 22:09:30,2016-01-24 22:17:48,1,1.07,,,-73.94934844970703,40.7141227722168,-73.95285034179688,40.72706604003906,1,N,1,7.0,0.5,0.5,0.3,2.49,0.0,,10.79,1.0 +2,2016-01-07 16:22:05,2016-01-07 16:33:13,1,1.34,,,-73.98018646240234,40.68143081665039,-73.99312591552734,40.6928825378418,1,N,1,9.0,1.0,0.5,0.3,2.16,0.0,,12.96,1.0 +1,2016-01-13 15:56:32,2016-01-13 16:01:02,1,1.3,,,-73.94123077392578,40.67970657348633,-73.94389343261719,40.697410583496094,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-01 23:02:07,2016-01-01 23:06:22,1,0.95,,,-73.95059967041016,40.723880767822266,-73.94137573242188,40.724281311035156,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-17 04:09:32,2016-01-17 04:24:24,3,4.1,,,-73.9658203125,40.713565826416016,-74.0106201171875,40.71748352050781,1,N,1,15.0,0.5,0.5,0.3,1.0,0.0,,17.3,1.0 +2,2016-01-18 02:39:57,2016-01-18 02:56:38,1,4.85,,,-73.92990112304688,40.756431579589844,-73.99748229980469,40.76087951660156,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-26 21:13:46,2016-01-26 21:21:29,1,1.6,,,-73.95748901367188,40.71798324584961,-73.95602416992188,40.736541748046875,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-05 19:01:48,2016-01-05 19:11:08,1,2.42,,,-73.9912338256836,40.69127655029297,-74.01053619384766,40.67197799682617,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-22 15:36:41,2016-01-22 15:46:46,1,2.0,,,-73.93787384033203,40.80375671386719,-73.94668579101562,40.82255554199219,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-15 02:20:45,2016-01-15 02:23:39,1,0.83,,,-73.94976806640625,40.705177307128906,-73.95246124267578,40.694976806640625,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-08 15:14:15,2016-01-08 15:22:59,1,0.91,,,-73.94075012207031,40.81907272338867,-73.94647216796875,40.81169128417969,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-26 08:03:31,2016-01-26 08:19:52,1,1.5,,,-73.9505615234375,40.79207229614258,-73.93048095703125,40.79732894897461,1,N,1,11.5,0.0,0.5,0.3,1.0,0.0,,13.3,1.0 +2,2016-01-08 07:58:02,2016-01-08 08:05:04,1,0.82,,,-73.96513366699219,40.677001953125,-73.97671508789062,40.675018310546875,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-03 10:11:52,2016-01-03 10:38:55,1,11.68,,,-73.96308898925781,40.64956283569336,-73.89411163330078,40.71110153198242,1,N,2,34.5,0.0,0.5,0.3,0.0,0.0,,35.3,1.0 +2,2016-01-28 23:01:47,2016-01-28 23:20:13,1,5.73,,,-73.95449829101562,40.73124694824219,-73.93602752685547,40.67594909667969,1,N,2,18.5,0.5,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-14 07:53:59,2016-01-14 07:59:12,1,1.21,,,-73.95448303222656,40.805519104003906,-73.94986724853516,40.817970275878906,1,N,1,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-06 06:44:42,2016-01-06 06:45:31,1,0.2,,,-73.96046447753906,40.65892028808594,-73.96208190917969,40.66065216064453,1,N,1,3.0,0.0,0.5,0.3,2.5,0.0,,6.3,1.0 +2,2016-01-30 23:22:47,2016-01-30 23:28:42,1,0.76,,,-73.92731475830078,40.743961334228516,-73.92481994628906,40.739952087402344,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-19 07:16:24,2016-01-19 07:28:26,1,2.29,,,-73.96623992919922,40.69483184814453,-73.99275207519531,40.695072174072266,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-08 18:18:13,2016-01-08 18:32:40,1,4.48,,,-73.87088012695312,40.733985900878906,-73.881591796875,40.767459869384766,1,N,1,15.0,1.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-12 21:12:27,2016-01-12 21:16:52,1,0.77,,,-73.95096588134766,40.81260681152344,-73.9620590209961,40.8122673034668,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-10 02:53:23,2016-01-10 03:18:38,1,8.03,,,-73.95243835449219,40.6948127746582,-73.8232421875,40.66330337524414,1,N,1,25.5,0.5,0.5,0.3,0.0,0.0,,26.8,1.0 +2,2016-01-14 13:12:17,2016-01-14 13:28:54,1,4.28,,,-73.93792724609375,40.79673767089844,-73.97134399414062,40.7462158203125,1,N,1,15.5,0.0,0.5,0.3,2.44,0.0,,18.74,1.0 +2,2016-01-12 22:25:21,2016-01-12 22:30:52,1,0.78,,,-73.92373657226562,40.76121520996094,-73.91495513916016,40.76936340332031,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-21 07:57:47,2016-01-21 07:59:48,6,0.83,,,-73.94184112548828,40.787235260009766,-73.9369125366211,40.79755783081055,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-16 07:47:18,2016-01-16 08:01:38,1,3.28,,,-73.80294799804688,40.707881927490234,-73.8260498046875,40.7472038269043,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-14 00:22:07,2016-01-14 00:40:53,1,4.48,,,-73.9505615234375,40.72385025024414,-73.95401000976562,40.677223205566406,1,N,1,17.5,0.5,0.5,0.3,1.0,0.0,,19.8,1.0 +2,2016-01-16 00:33:31,2016-01-16 00:51:03,1,3.43,,,-73.98675537109375,40.70231246948242,-73.95014190673828,40.673526763916016,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-09 04:35:38,2016-01-09 04:43:51,1,1.38,,,-73.90711212158203,40.82817840576172,-73.89070892333984,40.820186614990234,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-12 09:44:38,2016-01-12 09:56:01,1,4.28,,,-73.93307495117188,40.79494857788086,-73.9713134765625,40.745330810546875,1,N,1,13.5,0.0,0.5,0.3,1.5,0.0,,15.8,1.0 +2,2016-01-21 16:52:32,2016-01-21 17:02:41,1,0.93,,,-73.92762756347656,40.76997375488281,-73.9175796508789,40.76749038696289,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-06 08:55:45,2016-01-06 08:59:28,1,0.57,,,-73.93740844726562,40.80453109741211,-73.94688415527344,40.808448791503906,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-22 08:48:13,2016-01-22 09:04:52,1,3.6,,,-73.99632263183594,40.68619918823242,-74.00286865234375,40.720027923583984,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-13 15:15:53,2016-01-13 15:21:53,1,1.1,,,-73.99444580078125,40.69479751586914,-73.9966049194336,40.681190490722656,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,,8.15,1.0 +1,2016-01-17 01:37:49,2016-01-17 01:51:43,1,3.1,,,-73.96121215820312,40.716331481933594,-73.9074478149414,40.719051361083984,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-08 19:20:06,2016-01-08 19:29:19,1,1.7,,,-73.96874237060547,40.70920944213867,-73.94873046875,40.72456741333008,1,N,1,8.5,1.0,0.5,0.3,1.0,0.0,,11.3,1.0 +1,2016-01-12 20:37:08,2016-01-12 20:44:56,1,1.3,,,-73.98925018310547,40.69215393066406,-74.0027847290039,40.683528900146484,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-10 22:50:18,2016-01-10 23:03:14,1,2.1,,,-73.82977294921875,40.759517669677734,-73.84573364257812,40.78398132324219,1,N,1,10.5,0.5,0.5,0.3,0.2,0.0,,12.0,1.0 +2,2016-01-14 16:22:21,2016-01-14 16:25:49,1,0.88,,,-73.95484161376953,40.8202018737793,-73.94652557373047,40.831600189208984,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-08 11:26:38,2016-01-08 11:52:32,5,5.93,,,-73.93283081054688,40.79538345336914,-73.98978424072266,40.74005126953125,1,N,1,23.5,0.0,0.5,0.3,3.0,0.0,,27.3,1.0 +2,2016-01-01 21:13:58,2016-01-01 21:18:47,1,0.6,,,-73.90995025634766,40.68483352661133,-73.91283416748047,40.686519622802734,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-24 15:56:47,2016-01-24 15:57:49,1,0.11,,,-73.92052459716797,40.826263427734375,-73.9224624633789,40.82694625854492,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +1,2016-01-17 11:04:57,2016-01-17 11:11:31,1,1.7,,,-73.95468139648438,40.81143569946289,-73.97058868408203,40.79439163208008,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-20 20:46:37,2016-01-20 21:03:55,1,7.12,,,-73.95149993896484,40.79088592529297,-73.98778533935547,40.71067810058594,1,N,1,22.5,0.5,0.5,0.3,4.76,0.0,,28.56,1.0 +2,2016-01-28 07:44:32,2016-01-28 08:07:50,1,3.75,,,-73.9521255493164,40.724185943603516,-73.96333312988281,40.67564010620117,1,N,1,17.5,0.0,0.5,0.3,3.66,0.0,,21.96,1.0 +2,2016-01-15 23:30:03,2016-01-15 23:32:43,2,0.57,,,-73.95182037353516,40.723323822021484,-73.94092559814453,40.7259521484375,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-09 00:57:51,2016-01-09 01:22:06,1,7.12,,,-73.95604705810547,40.71415328979492,-73.985107421875,40.666690826416016,1,N,1,24.0,0.5,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-27 16:43:04,2016-01-27 17:05:23,1,3.83,,,-73.96005249023438,40.81363296508789,-73.96150970458984,40.7728385925293,1,N,1,17.0,1.0,0.5,0.3,1.2,0.0,,20.0,1.0 +2,2016-01-24 21:10:31,2016-01-24 21:20:49,1,2.44,,,-73.95596313476562,40.714111328125,-73.99335479736328,40.72005081176758,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-25 21:32:25,2016-01-25 21:41:37,1,1.33,,,-73.80781555175781,40.69982147216797,-73.81814575195312,40.70661544799805,1,N,1,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-05 18:50:55,2016-01-05 19:04:16,1,2.95,,,-73.93909454345703,40.80784606933594,-73.91053771972656,40.80561065673828,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-06 00:41:48,2016-01-06 00:54:37,1,2.21,,,-73.952880859375,40.82293701171875,-73.93211364746094,40.851444244384766,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-26 10:05:59,2016-01-26 10:20:20,1,2.08,,,-73.95370483398438,40.790714263916016,-73.96513366699219,40.80760955810547,1,N,1,11.5,0.0,0.5,0.3,1.5,0.0,,13.8,1.0 +2,2016-01-22 13:27:31,2016-01-22 13:30:48,1,0.76,,,-73.95265197753906,40.81058120727539,-73.94564819335938,40.820125579833984,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-20 03:49:17,2016-01-20 03:55:59,1,1.17,,,-73.8915023803711,40.74660873413086,-73.89305114746094,40.73222732543945,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-06 20:38:07,2016-01-06 20:43:38,2,1.24,,,-73.95765686035156,40.718204498291016,-73.94208526611328,40.72199249267578,1,N,1,6.0,0.5,0.5,0.3,1.82,0.0,,9.12,1.0 +2,2016-01-08 07:37:48,2016-01-08 07:47:59,3,3.12,,,-73.93363952636719,40.7632942199707,-73.95792388916016,40.765167236328125,1,N,1,11.0,0.0,0.5,0.3,3.54,0.0,,15.34,1.0 +2,2016-01-13 09:24:17,2016-01-13 09:41:51,1,6.88,,,-73.83680725097656,40.68197250366211,-73.92733001708984,40.66202163696289,1,N,2,21.5,0.0,0.5,0.3,0.0,0.0,,22.3,1.0 +2,2016-01-10 02:19:04,2016-01-10 02:35:51,1,3.8,,,-73.91880798339844,40.75887680053711,-73.9004135131836,40.716651916503906,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-11 20:49:26,2016-01-11 20:59:27,1,1.32,,,-73.89175415039062,40.748680114746094,-73.86947631835938,40.74967956542969,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-13 19:07:07,2016-01-13 19:12:12,1,1.15,,,-73.96147155761719,40.67101287841797,-73.9596176147461,40.68732833862305,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-19 15:14:17,2016-01-19 15:22:50,1,3.25,,,-73.89120483398438,40.74696731567383,-73.87278747558594,40.76546859741211,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,,15.38,1.0 +2,2016-01-09 00:46:47,2016-01-09 01:00:17,1,4.98,,,-73.98409271240234,40.691436767578125,-73.95288848876953,40.72704315185547,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-03 13:03:36,2016-01-03 13:09:27,5,1.19,,,-73.95088195800781,40.785884857177734,-73.95945739746094,40.77141189575195,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-30 14:53:46,2016-01-30 15:17:23,2,3.25,,,-73.96257781982422,40.65938186645508,-73.99368286132812,40.683162689208984,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-07 19:08:40,2016-01-07 19:23:11,3,2.11,,,-73.97926330566406,40.67823028564453,-73.99188232421875,40.69493865966797,1,N,1,11.5,1.0,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-20 19:51:14,2016-01-20 19:57:14,1,1.21,,,-73.84431457519531,40.720882415771484,-73.82759094238281,40.729095458984375,1,N,1,6.5,1.0,0.5,0.3,2.08,0.0,,10.38,1.0 +2,2016-01-21 15:49:35,2016-01-21 15:56:05,1,0.77,,,-73.8915023803711,40.74666213989258,-73.8843002319336,40.74955749511719,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-13 19:28:44,2016-01-13 19:35:47,1,1.48,,,-73.94156646728516,40.82270812988281,-73.92231750488281,40.82467269897461,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-26 07:59:36,2016-01-26 08:09:39,1,1.13,,,-73.95313262939453,40.80225372314453,-73.95731353759766,40.81208801269531,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-20 08:03:14,2016-01-20 08:12:58,1,1.75,,,-73.95108032226562,40.825565338134766,-73.9402847290039,40.840476989746094,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-30 19:28:59,2016-01-30 19:37:56,1,1.12,,,-73.99095916748047,40.68597412109375,-73.98025512695312,40.676753997802734,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-09 21:23:16,2016-01-09 21:35:28,1,2.64,,,-73.95861053466797,40.69057846069336,-73.92903137207031,40.68267822265625,1,N,1,10.5,0.5,0.5,0.3,1.0,0.0,,12.8,1.0 +2,2016-01-19 18:32:43,2016-01-19 18:40:22,1,0.98,,,-73.96654510498047,40.804595947265625,-73.95403289794922,40.80623245239258,1,N,1,6.5,1.0,0.5,0.3,2.08,0.0,,10.38,1.0 +2,2016-01-22 21:14:23,2016-01-22 21:20:09,1,1.52,,,-73.93598175048828,40.815513610839844,-73.94813537597656,40.79808044433594,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-14 20:16:31,2016-01-14 20:22:55,5,1.36,,,-73.91201782226562,40.77522659301758,-73.8984603881836,40.76727294921875,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-30 04:04:58,2016-01-30 04:18:14,1,2.6,,,-73.88796997070312,40.746986389160156,-73.92242431640625,40.74393081665039,1,N,1,11.5,0.5,0.5,0.3,2.55,0.0,,15.35,1.0 +2,2016-01-28 09:40:56,2016-01-28 10:04:51,6,2.87,,,-73.9708023071289,40.646568298339844,-73.98701477050781,40.66835021972656,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-22 21:34:56,2016-01-22 21:43:26,1,3.83,,,-73.91697692871094,40.766990661621094,-73.93889617919922,40.80509948730469,1,N,1,13.0,0.5,0.5,0.3,4.96,5.54,,24.8,1.0 +2,2016-01-28 15:15:18,2016-01-28 15:18:36,1,0.32,,,-73.84513854980469,40.83366012573242,-73.84229278564453,40.8359375,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-21 18:59:50,2016-01-21 19:02:17,1,0.43,,,-73.98926544189453,40.688453674316406,-73.9888687133789,40.69477462768555,3,N,2,21.5,1.0,0.0,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-30 09:54:55,2016-01-30 10:01:30,1,1.08,,,-73.94953918457031,40.80193328857422,-73.93250274658203,40.79567337036133,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 03:43:16,2016-01-01 03:51:15,1,1.56,,,-73.91301727294922,40.75611877441406,-73.93482208251953,40.764503479003906,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-10 00:32:18,2016-01-10 00:41:09,1,4.33,,,-73.83207702636719,40.71503829956055,-73.78729248046875,40.73366165161133,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-04 21:32:49,2016-01-04 21:52:23,1,10.85,,,-73.9115219116211,40.76790237426758,-73.76579284667969,40.712440490722656,1,N,1,31.0,0.5,0.5,0.3,2.0,0.0,,34.3,1.0 +2,2016-01-17 21:21:56,2016-01-17 21:25:16,1,0.65,,,-73.94933319091797,40.80266189575195,-73.94515228271484,40.808528900146484,1,N,1,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-13 05:25:07,2016-01-13 05:57:44,1,6.2,,,-73.91938781738281,40.75851821899414,-73.86618041992188,40.75575256347656,1,N,2,25.5,0.5,0.5,0.3,0.0,0.0,,26.8,1.0 +1,2016-01-13 18:53:00,2016-01-13 19:06:03,1,1.9,,,-73.976318359375,40.6848030090332,-73.95596313476562,40.668453216552734,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-13 16:32:54,2016-01-13 16:43:31,1,1.95,,,-73.94403839111328,40.795379638671875,-73.96186065673828,40.770469665527344,1,N,1,9.0,1.0,0.5,0.3,3.24,0.0,,14.04,1.0 +2,2016-01-30 21:00:04,2016-01-30 21:08:12,2,1.14,,,-73.98727416992188,40.691993713378906,-73.99671173095703,40.680641174316406,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +1,2016-01-20 08:12:51,2016-01-20 08:20:59,1,0.9,,,-73.9476318359375,40.814640045166016,-73.93922424316406,40.80769729614258,1,N,1,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-10 01:21:29,2016-01-10 01:24:46,1,0.86,,,-74.00188446044922,40.653167724609375,-73.9917984008789,40.66288757324219,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-21 20:23:27,2016-01-21 20:28:47,1,0.9,,,-73.9459228515625,40.71441650390625,-73.95974731445312,40.71107864379883,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-29 17:15:14,2016-01-29 17:27:35,1,1.42,,,-73.89576721191406,40.846588134765625,-73.87326049804688,40.841068267822266,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-09 04:47:53,2016-01-09 05:08:32,1,7.07,,,-73.84429168701172,40.721351623535156,-73.88499450683594,40.753570556640625,1,N,2,23.5,0.5,0.5,0.3,0.0,0.0,,24.8,1.0 +2,2016-01-20 01:53:52,2016-01-20 01:57:55,1,0.71,,,-73.92375183105469,40.74354934692383,-73.92466735839844,40.73683166503906,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-22 09:27:56,2016-01-22 09:38:56,1,1.31,,,-73.95221710205078,40.811302185058594,-73.94080352783203,40.79819107055664,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-25 12:11:59,2016-01-25 12:16:14,1,0.6,,,-73.95255279541016,40.78668975830078,-73.95580291748047,40.77971267700195,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-06 19:38:49,2016-01-06 19:42:24,1,0.37,,,-73.98748779296875,40.69225311279297,-73.99213409423828,40.6907958984375,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-17 13:09:00,2016-01-17 13:21:44,1,2.7,,,-73.95301818847656,40.80922317504883,-73.95281219482422,40.7796745300293,1,N,1,11.5,0.0,0.5,0.3,1.23,0.0,,13.53,1.0 +2,2016-01-30 10:44:18,2016-01-30 10:48:12,1,0.7,,,-73.94998168945312,40.78555679321289,-73.95580291748047,40.77788162231445,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,,6.3,1.0 +2,2016-01-24 14:29:47,2016-01-24 14:34:43,1,0.7,,,-73.90631103515625,40.66802978515625,-73.90377807617188,40.65730667114258,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-15 06:37:08,2016-01-15 06:44:25,1,0.0,,,-73.9478988647461,40.79682540893555,-73.95645141601562,40.81060791015625,1,N,1,6.0,0.0,0.5,0.3,0.75,0.0,,7.55,1.0 +2,2016-01-30 10:59:24,2016-01-30 11:13:58,5,2.38,,,-73.92997741699219,40.75639343261719,-73.8927230834961,40.74664306640625,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-10 19:00:06,2016-01-10 19:08:03,1,1.89,,,-73.9495849609375,40.68015670776367,-73.94813537597656,40.65431594848633,1,N,1,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-16 23:26:06,2016-01-16 23:47:13,1,6.9,,,-73.94795989990234,40.80105209350586,-73.89038848876953,40.85136795043945,1,N,1,22.5,0.5,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-01 05:22:46,2016-01-01 05:32:41,6,3.97,,,-73.95675659179688,40.627479553222656,-73.96613311767578,40.58554458618164,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-30 03:29:39,2016-01-30 03:39:41,1,3.24,,,-73.95661163330078,40.80282211303711,-73.9619140625,40.767005920410156,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,,15.36,1.0 +2,2016-01-11 10:39:54,2016-01-11 11:26:43,2,7.37,,,-73.96673583984375,40.69339370727539,-73.97718811035156,40.758419036865234,1,N,1,32.0,0.0,0.5,0.3,5.8,0.0,,38.6,1.0 +2,2016-01-24 12:29:39,2016-01-24 12:56:38,1,9.96,,,-73.79487609863281,40.72835922241211,-73.77632141113281,40.6456184387207,1,N,2,30.5,0.0,0.5,0.3,0.0,0.0,,31.3,1.0 +1,2016-01-30 03:45:30,2016-01-30 03:58:38,2,2.5,,,-73.91616821289062,40.65497970581055,-73.89904022216797,40.66519546508789,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-02 18:15:06,2016-01-02 18:40:01,1,4.06,,,-73.89178466796875,40.74842834472656,-73.94945526123047,40.75397872924805,1,N,1,18.5,0.0,0.5,0.3,3.0,0.0,,22.3,1.0 +2,2016-01-04 18:46:18,2016-01-04 18:50:36,1,0.66,,,-73.98049926757812,40.68525314331055,-73.97201538085938,40.689300537109375,1,N,1,5.0,1.0,0.5,0.3,2.04,0.0,,8.84,1.0 +2,2016-01-09 19:36:38,2016-01-09 19:42:18,5,0.71,,,-73.8690185546875,40.73377990722656,-73.86018371582031,40.73979949951172,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-13 22:39:39,2016-01-13 22:39:42,1,0.0,,,-73.86322784423828,40.67098617553711,-73.8632583618164,40.670982360839844,5,N,1,7.0,0.0,0.0,0,0.0,0.0,,7.0,2.0 +1,2016-01-09 13:15:04,2016-01-09 13:37:17,1,3.4,,,-73.9521713256836,40.79276657104492,-73.98385620117188,40.76511764526367,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-12 13:23:32,2016-01-12 13:40:57,1,5.88,,,-73.8694839477539,40.73433303833008,-73.9585952758789,40.74353790283203,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-18 00:03:59,2016-01-18 00:09:14,1,1.76,,,-73.94978332519531,40.802154541015625,-73.94515228271484,40.8231315612793,1,N,1,7.0,0.5,0.5,0.3,2.49,0.0,,10.79,1.0 +2,2016-01-13 20:51:41,2016-01-13 20:56:03,6,0.84,,,-73.92549133300781,40.761741638183594,-73.91470336914062,40.765926361083984,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-05 01:23:17,2016-01-05 01:42:43,3,5.7,,,-73.84420013427734,40.72124099731445,-73.94482421875,40.687870025634766,1,N,2,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-10 10:30:31,2016-01-10 10:53:19,1,7.53,,,-73.984619140625,40.70362854003906,-73.96528625488281,40.76631164550781,5,N,1,31.0,0.0,0.0,0,3.0,0.0,,34.0,2.0 +1,2016-01-13 14:05:41,2016-01-13 14:10:26,1,0.7,,,-73.95142364501953,40.79118347167969,-73.9436264038086,40.796165466308594,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,,6.95,1.0 +2,2016-01-13 22:38:28,2016-01-13 22:52:35,1,2.58,,,-73.98729705810547,40.692020416259766,-73.94457244873047,40.68013000488281,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-29 10:37:41,2016-01-29 10:49:12,1,2.29,,,-73.95317077636719,40.80743408203125,-73.97779846191406,40.78705596923828,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-10 19:03:54,2016-01-10 19:20:25,1,7.55,,,-73.9382095336914,40.84674835205078,-73.99531555175781,40.759639739990234,1,N,1,23.5,0.0,0.5,0.3,4.86,0.0,,29.16,1.0 +2,2016-01-20 08:35:43,2016-01-20 08:46:19,1,2.02,,,-73.93936920166016,40.805091857910156,-73.96391296386719,40.80820846557617,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +1,2016-01-17 15:56:01,2016-01-17 15:58:52,2,0.4,,,-73.94681549072266,40.745426177978516,-73.9495849609375,40.74831771850586,1,N,1,4.0,0.0,0.5,0.3,1.0,0.0,,5.8,1.0 +2,2016-01-15 18:03:17,2016-01-15 18:23:53,1,4.61,,,-73.94503784179688,40.78703689575195,-73.98174285888672,40.74372482299805,1,N,1,18.0,1.0,0.5,0.3,3.96,0.0,,23.76,1.0 +1,2016-01-05 14:40:02,2016-01-05 14:47:40,1,1.1,,,-73.89045715332031,40.746864318847656,-73.88943481445312,40.76203155517578,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-04 13:01:29,2016-01-04 13:16:26,1,3.3,,,-73.96711730957031,40.68351364135742,-73.95765686035156,40.71788024902344,1,N,1,13.0,0.0,0.5,0.3,2.75,0.0,,16.55,1.0 +2,2016-01-25 17:01:24,2016-01-25 17:16:10,1,1.19,,,-73.8839340209961,40.747581481933594,-73.86885070800781,40.737701416015625,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-12 08:38:02,2016-01-12 08:40:39,1,0.6,,,-73.95665740966797,40.74817657470703,-73.95462799072266,40.74287414550781,1,N,1,4.0,0.0,0.5,0.3,0.95,0.0,,5.75,1.0 +2,2016-01-28 23:07:22,2016-01-29 00:06:52,1,21.68,,,-73.90072631835938,40.84832763671875,-73.95709228515625,40.66953659057617,1,N,1,67.5,0.5,0.5,0.3,13.76,0.0,,82.56,1.0 +2,2016-01-01 02:59:49,2016-01-01 03:29:47,1,12.14,,,-73.96028137207031,40.6573486328125,-73.7896499633789,40.64702224731445,1,N,1,36.0,0.5,0.5,0.3,7.46,0.0,,44.76,1.0 +2,2016-01-14 16:29:47,2016-01-14 16:44:52,1,2.91,,,-73.83036041259766,40.75957107543945,-73.87598419189453,40.745201110839844,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-01 08:06:20,2016-01-01 08:19:08,1,3.3,,,-73.943603515625,40.71171951293945,-73.95096588134766,40.67612075805664,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-30 16:42:21,2016-01-30 16:48:39,1,0.88,,,-73.94461822509766,40.81402587890625,-73.95381164550781,40.80657958984375,1,N,1,6.0,0.0,0.5,0.3,1.7,0.0,,8.5,1.0 +1,2016-01-08 11:50:20,2016-01-08 12:05:02,1,3.3,,,-73.87118530273438,40.73417282104492,-73.8546142578125,40.69668960571289,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-16 09:19:03,2016-01-16 09:24:50,1,1.2,,,-73.9867172241211,40.68758010864258,-73.98014831542969,40.67864990234375,1,N,3,6.5,0.0,0.5,0.3,0.0,5.54,,12.84,1.0 +2,2016-01-11 18:43:25,2016-01-11 18:51:42,1,2.13,,,-73.96094512939453,40.806732177734375,-73.97880554199219,40.78336715698242,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-10 17:19:55,2016-01-10 17:30:55,1,1.8,,,-73.96304321289062,40.80949783325195,-73.97174835205078,40.78740310668945,1,N,1,9.0,1.0,0.5,0.3,1.62,0.0,,12.42,1.0 +2,2016-01-15 20:23:58,2016-01-15 20:42:20,1,2.54,,,-73.98278045654297,40.68855667114258,-73.94939422607422,40.6804313659668,1,N,1,14.0,0.5,0.5,0.3,4.59,0.0,,19.89,1.0 +1,2016-01-22 07:37:43,2016-01-22 07:42:57,1,1.1,,,-73.94495391845703,40.8138313293457,-73.95012664794922,40.8015251159668,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-30 17:20:07,2016-01-30 17:32:02,1,2.66,,,-73.95211029052734,40.81147384643555,-73.97771453857422,40.783607482910156,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-20 08:34:19,2016-01-20 08:43:37,1,1.6,,,-73.95428466796875,40.816162109375,-73.96582794189453,40.79519271850586,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-29 20:06:50,2016-01-29 20:12:48,1,0.49,,,-73.95304107666016,40.80836486816406,-73.95188903808594,40.80402374267578,5,N,2,7.0,0.0,0.0,0,0.0,0.0,,7.0,2.0 +2,2016-01-22 23:14:06,2016-01-22 23:22:29,1,1.35,,,-73.94479370117188,40.81892395019531,-73.94515991210938,40.80803680419922,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-06 17:35:19,2016-01-06 17:44:23,1,1.54,,,-73.94586944580078,40.82448959350586,-73.93504333496094,40.80937194824219,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-11 16:44:19,2016-01-11 16:56:20,1,2.0,,,-73.96575164794922,40.80543899536133,-73.94141387939453,40.807674407958984,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-30 11:19:28,2016-01-30 11:24:01,1,0.9,,,-73.84422302246094,40.72133255004883,-73.84571838378906,40.710479736328125,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-19 13:25:58,2016-01-19 13:27:35,1,0.4,,,-73.82992553710938,40.71357345581055,-73.82347106933594,40.713462829589844,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +1,2016-01-29 22:22:15,2016-01-29 22:41:52,1,4.3,,,-73.95995330810547,40.81369400024414,-73.95413208007812,40.76664733886719,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-16 13:50:00,2016-01-16 14:03:01,1,4.82,,,-73.93922424316406,40.82493209838867,-73.95293426513672,40.7830924987793,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-23 04:45:55,2016-01-23 05:33:39,2,8.89,,,-73.89331817626953,40.66217803955078,-73.99006652832031,40.7127571105957,1,N,2,32.5,0.5,0.5,0.3,0.0,0.0,,33.8,1.0 +2,2016-01-02 11:08:54,2016-01-02 11:19:07,1,2.07,,,-73.95271301269531,40.8033561706543,-73.97547149658203,40.78711700439453,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-30 14:00:44,2016-01-30 14:11:21,1,1.5,,,-73.94983673095703,40.67525863647461,-73.9306640625,40.683406829833984,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-20 03:22:45,2016-01-20 03:24:59,1,0.57,,,-73.94979858398438,40.68034744262695,-73.94767761230469,40.68791580200195,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-21 15:38:32,2016-01-21 16:04:08,1,4.06,,,-73.94829559326172,40.803810119628906,-73.98694610595703,40.7612419128418,1,N,2,18.5,0.0,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-17 16:05:04,2016-01-17 16:10:33,1,0.87,,,-73.95616149902344,40.69474411010742,-73.9629898071289,40.7058219909668,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,,7.3,1.0 +2,2016-01-01 17:02:28,2016-01-01 17:05:44,1,0.78,,,-73.994384765625,40.69009780883789,-73.99449157714844,40.69935607910156,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-16 15:59:07,2016-01-16 16:08:35,5,1.19,,,-73.95199584960938,40.69502258300781,-73.9421157836914,40.70125198364258,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-05 07:06:34,2016-01-05 07:06:55,1,0.0,,,-73.96520233154297,40.66706085205078,-73.9652099609375,40.6671028137207,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-13 18:13:27,2016-01-13 18:21:45,1,1.48,,,-73.94015502929688,40.76326370239258,-73.92141723632812,40.768524169921875,1,N,1,7.5,1.0,0.5,0.3,2.79,0.0,,12.09,1.0 +2,2016-01-12 20:22:20,2016-01-12 20:39:49,1,5.22,,,-73.98639678955078,40.7024040222168,-73.92420196533203,40.70637893676758,1,N,1,18.0,0.5,0.5,0.3,3.0,0.0,,22.3,1.0 +2,2016-01-02 21:55:32,2016-01-02 22:01:33,1,1.61,,,-73.94183349609375,40.798622131347656,-73.95378112792969,40.77906036376953,1,N,1,7.0,0.5,0.5,0.3,0.7,0.0,,9.0,1.0 +2,2016-01-27 07:57:24,2016-01-27 08:03:23,1,0.71,,,-73.98106384277344,40.67172622680664,-73.97481536865234,40.680503845214844,1,N,1,6.0,0.0,0.5,0.3,1.2,0.0,,8.0,1.0 +2,2016-01-24 12:34:42,2016-01-24 13:09:15,1,9.69,,,-73.98770904541016,40.70180130004883,-74.02731323242188,40.63905715942383,1,N,1,33.5,0.0,0.5,0.3,0.0,0.0,,34.3,1.0 +1,2016-01-06 17:39:05,2016-01-06 17:47:03,1,0.0,,,-73.93992614746094,40.68522262573242,-73.9500503540039,40.68308639526367,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-04 00:42:02,2016-01-04 00:52:59,1,3.41,,,-73.8073959350586,40.700645446777344,-73.75113677978516,40.71366500854492,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-27 21:41:40,2016-01-27 21:44:51,1,0.67,,,-73.95854949951172,40.716922760009766,-73.95283508300781,40.723880767822266,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +1,2016-01-28 14:11:47,2016-01-28 14:25:59,1,1.8,,,-73.8875961303711,40.747161865234375,-73.85688781738281,40.74974822998047,1,Y,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-01 00:29:05,2016-01-01 00:33:07,1,1.38,,,-73.90403747558594,40.721004486083984,-73.92384338378906,40.70780563354492,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-17 14:51:58,2016-01-17 15:07:48,5,2.68,,,-73.85822296142578,40.7288818359375,-73.89002227783203,40.712249755859375,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-12 09:11:16,2016-01-12 09:20:50,1,2.22,,,-73.99656677246094,40.69342803955078,-74.00403594970703,40.71308517456055,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-16 21:51:38,2016-01-16 21:56:00,1,0.97,,,-73.9524917602539,40.80308151245117,-73.94310760498047,40.81418991088867,1,N,1,5.5,0.5,0.5,0.3,0.08,0.0,,6.88,1.0 +1,2016-01-06 01:11:29,2016-01-06 01:17:24,1,1.2,,,-73.8772201538086,40.737483978271484,-73.87020111083984,40.74335861206055,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-13 15:18:35,2016-01-13 15:45:02,1,6.23,,,-73.95372009277344,40.79071807861328,-74.00292205810547,40.74431228637695,1,N,1,24.0,0.0,0.5,0.3,4.96,0.0,,29.76,1.0 +1,2016-01-02 14:34:42,2016-01-02 14:55:23,1,8.5,,,-73.95824432373047,40.7173957824707,-73.86500549316406,40.77045822143555,1,N,2,25.0,0.0,0.5,0.3,0.0,0.0,,25.8,1.0 +2,2016-01-27 22:31:38,2016-01-27 22:35:25,1,1.26,,,-73.93782806396484,40.80393600463867,-73.9482421875,40.78804397583008,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-12 19:51:47,2016-01-12 19:54:03,1,0.38,,,-73.97986602783203,40.668861389160156,-73.9760513305664,40.67359924316406,1,N,1,3.5,1.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-21 09:13:55,2016-01-21 09:40:42,1,7.07,,,-73.99254608154297,40.69846725463867,-73.97022247314453,40.75981903076172,1,N,1,24.5,0.0,0.5,0.3,3.8,0.0,,29.1,1.0 +1,2016-01-11 20:28:38,2016-01-11 20:40:56,2,1.9,,,-73.94416046142578,40.6796875,-73.97486877441406,40.68649673461914,1,N,1,10.0,0.5,0.5,0.3,1.75,0.0,,13.05,1.0 +1,2016-01-13 02:10:06,2016-01-13 02:15:12,1,0.8,,,-73.8843994140625,40.74721145629883,-73.88623046875,40.75933837890625,1,N,1,5.5,0.5,0.5,0.3,1.7,0.0,,8.5,1.0 +1,2016-01-02 23:09:07,2016-01-02 23:19:43,1,2.5,,,-73.98312377929688,40.69212341308594,-73.95047760009766,40.678470611572266,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-17 16:28:36,2016-01-17 16:53:11,1,7.86,,,-73.95713806152344,40.63700485229492,-74.01472473144531,40.71424102783203,1,N,1,25.5,0.0,0.5,0.3,6.37,5.54,,38.21,1.0 +2,2016-01-05 18:36:49,2016-01-05 18:43:08,1,0.7,,,-73.95558166503906,40.80415725708008,-73.96539306640625,40.80293655395508,1,N,1,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-19 08:43:36,2016-01-19 08:50:25,6,1.5,,,-74.00203704833984,40.684898376464844,-73.99116516113281,40.702491760253906,1,N,1,7.0,0.0,0.5,0.3,2.34,0.0,,10.14,1.0 +2,2016-01-12 23:16:41,2016-01-12 23:26:51,1,2.46,,,-73.95051574707031,40.6761589050293,-73.94356536865234,40.70155715942383,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-12 21:18:52,2016-01-12 21:33:31,6,5.08,,,-73.96348571777344,40.712867736816406,-73.97457122802734,40.75114822387695,1,N,1,17.5,0.5,0.5,0.3,1.2,0.0,,20.0,1.0 +1,2016-01-12 09:46:40,2016-01-12 10:08:58,1,4.6,,,-73.93794250488281,40.82324981689453,-73.96562957763672,40.77180862426758,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-20 22:48:37,2016-01-20 22:59:24,1,2.34,,,-73.94930267333984,40.68045425415039,-73.97716522216797,40.676605224609375,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-22 14:12:54,2016-01-22 14:19:18,1,1.11,,,-73.95409393310547,40.7872314453125,-73.94111633300781,40.79494857788086,1,N,1,6.0,0.0,0.5,0.3,1.7,0.0,,8.5,1.0 +2,2016-01-04 01:44:42,2016-01-04 01:56:09,1,2.67,,,-73.90411376953125,40.75401306152344,-73.86209869384766,40.74995422363281,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-30 18:05:13,2016-01-30 18:32:34,1,2.91,,,-73.95783996582031,40.72205352783203,-73.98780822753906,40.72128677368164,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-06 17:21:04,2016-01-06 17:32:58,1,1.66,,,-73.8587875366211,40.750816345214844,-73.86947631835938,40.73478317260742,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-06 16:45:45,2016-01-06 17:01:34,3,4.99,,,-73.98682403564453,40.70237350463867,-73.99124145507812,40.72980880737305,1,N,1,17.5,1.0,0.5,0.3,3.86,0.0,,23.16,1.0 +1,2016-01-16 18:27:22,2016-01-16 18:42:41,1,2.5,,,-73.95783996582031,40.717716217041016,-73.9328842163086,40.69887924194336,1,N,1,12.0,0.0,0.5,0.3,2.55,0.0,,15.35,1.0 +2,2016-01-05 17:41:59,2016-01-05 17:43:53,5,0.15,,,-73.92762756347656,40.831756591796875,-73.9287338256836,40.829158782958984,1,N,2,3.0,1.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-02 21:31:17,2016-01-02 21:45:56,1,2.01,,,-73.95744323730469,40.67222595214844,-73.99237060546875,40.67391586303711,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-09 17:54:35,2016-01-09 17:59:33,1,0.94,,,-73.93914794921875,40.80552291870117,-73.94837188720703,40.79568099975586,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-24 17:05:06,2016-01-24 17:24:58,5,2.56,,,-73.96726989746094,40.69328689575195,-73.94183349609375,40.673152923583984,1,N,1,13.5,0.0,0.5,0.3,3.0,0.0,,17.3,1.0 +2,2016-01-26 16:48:23,2016-01-26 17:01:55,1,1.3,,,-73.88185119628906,40.747886657714844,-73.90266418457031,40.74463653564453,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-25 12:39:52,2016-01-25 13:02:18,1,4.41,,,-73.89495849609375,40.82672882080078,-73.95043182373047,40.811119079589844,5,N,2,15.0,0.0,0.0,0,0.0,0.0,,15.0,2.0 +2,2016-01-02 18:16:00,2016-01-02 18:39:11,1,4.78,,,-73.94544982910156,40.824466705322266,-73.95649719238281,40.771732330322266,1,N,1,18.5,0.0,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-07 15:01:37,2016-01-07 15:35:52,1,9.19,,,-73.95420837402344,40.78730773925781,-74.01490020751953,40.71135330200195,1,N,1,32.5,0.0,0.5,0.3,2.0,0.0,,35.3,1.0 +2,2016-01-22 07:47:36,2016-01-22 08:16:13,1,5.17,,,-73.94327545166016,40.68928146362305,-74.00578308105469,40.72429656982422,1,N,1,22.0,0.0,0.5,0.3,4.56,0.0,,27.36,1.0 +1,2016-01-16 18:26:18,2016-01-16 18:48:42,2,4.2,,,-73.93206787109375,40.67953872680664,-73.9999008178711,40.688724517822266,1,N,1,18.0,0.0,0.5,0.3,3.75,0.0,,22.55,1.0 +2,2016-01-06 22:41:39,2016-01-06 22:44:33,2,0.61,,,-73.9518814086914,40.71412658691406,-73.95867156982422,40.70884704589844,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-17 03:28:36,2016-01-17 03:37:26,1,3.0,,,-73.9176254272461,40.81624984741211,-73.93965911865234,40.787696838378906,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-19 09:28:15,2016-01-19 09:35:12,1,0.94,,,-73.952880859375,40.7889289855957,-73.95906066894531,40.77775192260742,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-10 00:46:50,2016-01-10 00:47:40,1,0.18,,,-73.95172882080078,40.72538757324219,-73.9504165649414,40.72307586669922,1,N,1,3.0,0.5,0.5,0.3,0.86,0.0,,5.16,1.0 +2,2016-01-08 13:51:46,2016-01-08 14:19:10,1,8.61,,,-73.93834686279297,40.74949645996094,-73.7994613647461,40.705631256103516,1,N,1,28.0,0.0,0.5,0.3,0.0,0.0,,28.8,1.0 +2,2016-01-30 16:38:52,2016-01-30 17:02:43,1,3.11,,,-73.87639617919922,40.748268127441406,-73.92356872558594,40.75377655029297,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-17 00:18:18,2016-01-17 00:40:45,6,4.34,,,-73.9761962890625,40.66764831542969,-73.99988555908203,40.717979431152344,1,N,1,18.5,0.5,0.5,0.3,5.94,0.0,,25.74,1.0 +2,2016-01-18 01:09:26,2016-01-18 01:21:31,5,2.72,,,-73.84420776367188,40.72136306762695,-73.88505554199219,40.712196350097656,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-08 17:47:00,2016-01-08 17:59:39,1,2.4,,,-73.96392059326172,40.80827331542969,-73.97762298583984,40.7792854309082,1,N,1,11.0,1.0,0.5,0.3,2.0,0.0,,14.8,1.0 +2,2016-01-05 15:25:00,2016-01-05 15:28:31,1,0.85,,,-73.94178771972656,40.84230041503906,-73.94689178466797,40.834102630615234,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-08 09:16:56,2016-01-08 09:31:39,1,1.66,,,-73.97806549072266,40.687156677246094,-73.99081420898438,40.69501876831055,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-25 06:41:30,2016-01-25 07:03:53,1,3.05,,,-73.95296478271484,40.823272705078125,-73.94196319580078,40.791412353515625,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-22 19:18:45,2016-01-22 19:54:17,5,12.97,,,-73.95967864990234,40.71800994873047,-73.92436981201172,40.61411666870117,1,N,1,39.0,1.0,0.5,0.3,0.0,0.0,,40.8,1.0 +2,2016-01-09 16:36:20,2016-01-09 16:48:25,1,3.46,,,-73.86394500732422,40.7330207824707,-73.81694793701172,40.72672653198242,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-20 18:05:19,2016-01-20 18:08:37,1,0.79,,,-73.95059204101562,40.791236877441406,-73.94566345214844,40.801414489746094,1,N,1,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-08 14:36:19,2016-01-08 15:16:54,2,15.6,,,-73.95648193359375,40.74760437011719,-73.79009246826172,40.64692687988281,1,Y,1,45.0,0.0,0.5,0.3,9.15,0.0,,54.95,1.0 +2,2016-01-14 16:50:36,2016-01-14 16:55:50,1,1.08,,,-73.84037780761719,40.71963882446289,-73.85626983642578,40.7200813293457,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-10 20:56:16,2016-01-10 21:15:32,1,4.12,,,-73.96463775634766,40.69363021850586,-73.91206359863281,40.68241882324219,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-17 05:06:34,2016-01-17 05:25:09,2,9.01,,,-73.95055389404297,40.792091369628906,-73.86195373535156,40.85526657104492,5,N,2,25.0,0.0,0.0,0,0.0,0.0,,25.0,2.0 +2,2016-01-18 07:40:21,2016-01-18 07:45:22,1,1.68,,,-73.86510467529297,40.85448455810547,-73.89008331298828,40.861148834228516,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-26 08:37:10,2016-01-26 08:50:14,1,1.16,,,-73.88638305664062,40.7611198425293,-73.88524627685547,40.74576187133789,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-19 20:06:09,2016-01-19 20:13:22,1,1.21,,,-73.97975158691406,40.677371978759766,-73.9612045288086,40.671607971191406,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +1,2016-01-21 19:09:38,2016-01-21 19:32:27,1,3.8,,,-73.9326400756836,40.79572677612305,-73.94159698486328,40.83430099487305,1,N,1,17.0,1.0,0.5,0.3,3.75,0.0,,22.55,1.0 +1,2016-01-20 15:27:25,2016-01-20 15:30:03,1,1.1,,,-73.95325469970703,40.78847122192383,-73.94303894042969,40.80238723754883,1,N,1,5.0,0.0,0.5,0.3,0.5,0.0,,6.3,1.0 +2,2016-01-22 20:50:07,2016-01-22 21:07:55,1,3.6,,,-73.9471435546875,40.79099655151367,-73.98634338378906,40.76173782348633,1,N,1,14.5,0.5,0.5,0.3,1.0,0.0,,16.8,1.0 +2,2016-01-26 17:58:38,2016-01-26 18:14:56,1,2.7,,,-73.95474243164062,40.82068634033203,-73.94514465332031,40.79183578491211,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-02 10:10:22,2016-01-02 10:22:01,1,3.39,,,-73.91659545898438,40.74314880371094,-73.95823669433594,40.713478088378906,1,N,1,13.0,0.0,0.5,0.3,3.45,0.0,,17.25,1.0 +1,2016-01-01 04:29:34,2016-01-01 05:11:40,1,11.9,,,-73.92781829833984,40.6927490234375,-73.97046661376953,40.79901123046875,1,N,1,39.0,0.5,0.5,0.3,5.0,0.0,,45.3,1.0 +2,2016-01-07 22:24:00,2016-01-07 22:27:12,1,0.8,,,-73.99242401123047,40.70335388183594,-73.9991683959961,40.69404220581055,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-17 17:30:49,2016-01-17 17:34:36,1,0.8,,,-73.92332458496094,40.76467514038086,-73.93130493164062,40.76925277709961,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-09 01:02:03,2016-01-09 01:08:53,1,1.51,,,-73.93915557861328,40.81644058227539,-73.95486450195312,40.801780700683594,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-30 20:37:43,2016-01-30 20:45:53,1,0.98,,,-73.99066162109375,40.70304870605469,-73.99056243896484,40.70297622680664,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-04 23:03:32,2016-01-04 23:05:20,1,0.64,,,-73.97874450683594,40.684532165527344,-73.9890365600586,40.68876647949219,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-11 05:37:30,2016-01-11 06:00:34,1,10.6,,,-73.91350555419922,40.763240814208984,-73.83660125732422,40.684715270996094,1,N,1,31.5,0.5,0.5,0.3,5.0,0.0,,37.8,1.0 +1,2016-01-08 23:42:11,2016-01-08 23:44:56,3,0.5,,,-73.9453125,40.80839920043945,-73.95252990722656,40.80820846557617,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-27 15:58:48,2016-01-27 16:02:02,1,0.7,,,-73.95215606689453,40.68052673339844,-73.95079040527344,40.686988830566406,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-05 17:13:01,2016-01-05 17:32:43,1,2.3,,,-73.9857177734375,40.703731536865234,-73.97660064697266,40.67825698852539,1,N,2,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-27 16:19:21,2016-01-27 16:38:38,1,1.83,,,-73.89078521728516,40.74688720703125,-73.89328002929688,40.72715377807617,1,N,2,13.0,1.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-07 07:55:57,2016-01-07 08:21:37,1,3.6,,,-73.95256042480469,40.734718322753906,-73.98332214355469,40.73442077636719,1,N,1,18.5,0.0,0.5,0.3,4.97,5.54,,29.81,1.0 +2,2016-01-22 03:08:08,2016-01-22 03:17:20,1,2.27,,,-73.95671081542969,40.72296142578125,-73.93989562988281,40.70777130126953,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-25 15:35:01,2016-01-25 15:40:55,1,0.76,,,-73.84422302246094,40.72138214111328,-73.84972381591797,40.71228790283203,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-09 08:11:53,2016-01-09 08:22:58,1,2.45,,,-73.80683898925781,40.69977569580078,-73.81387329101562,40.7185173034668,1,N,1,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-29 23:42:22,2016-01-29 23:47:00,6,1.06,,,-73.98719024658203,40.69281005859375,-73.97004699707031,40.693111419677734,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,,7.8,1.0 +1,2016-01-06 07:41:01,2016-01-06 07:50:33,1,1.5,,,-73.9214859008789,40.82878875732422,-73.9123764038086,40.84628677368164,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-15 16:27:28,2016-01-15 16:34:38,1,0.79,,,-73.84436798095703,40.72073745727539,-73.83733367919922,40.71889877319336,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-30 15:48:54,2016-01-30 15:55:31,1,1.12,,,-73.95835876464844,40.7171516418457,-73.94097137451172,40.72597885131836,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-16 14:37:31,2016-01-16 14:45:12,1,1.5,,,-73.87218475341797,40.675331115722656,-73.86792755126953,40.656158447265625,1,N,1,7.5,0.5,0.5,0.3,1.0,0.0,,9.8,1.0 +2,2016-01-01 03:17:39,2016-01-01 03:29:41,1,2.21,,,-73.94966125488281,40.71404266357422,-73.92533111572266,40.693504333496094,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,,14.16,1.0 +1,2016-01-26 17:24:06,2016-01-26 17:57:12,1,3.1,,,-73.96748352050781,40.80449295043945,-73.984375,40.76251983642578,1,N,2,21.0,1.0,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-16 10:41:08,2016-01-16 10:52:01,1,1.99,,,-73.94911193847656,40.79720687866211,-73.9744873046875,40.79121780395508,1,N,1,9.5,0.0,0.5,0.3,1.0,0.0,,11.3,1.0 +2,2016-01-09 17:32:29,2016-01-09 17:44:20,1,2.19,,,-73.99244689941406,40.68935012817383,-73.9642333984375,40.673954010009766,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,,12.96,1.0 +1,2016-01-30 09:13:36,2016-01-30 09:22:24,1,2.0,,,-73.95243072509766,40.694820404052734,-73.98342895507812,40.68885040283203,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-02 02:36:48,2016-01-02 02:43:06,1,1.5,,,-73.95575714111328,40.6945686340332,-73.95121765136719,40.71133041381836,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-15 17:56:47,2016-01-15 18:07:25,1,1.5,,,-73.8901596069336,40.74700164794922,-73.87007141113281,40.75520324707031,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-10 20:43:22,2016-01-10 20:54:38,1,1.95,,,-73.86333465576172,40.73073196411133,-73.8899917602539,40.73896408081055,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-05 18:56:16,2016-01-05 19:08:55,1,2.3,,,-73.94921875,40.80274200439453,-73.95440673828125,40.77781677246094,1,N,1,10.5,1.0,0.5,0.3,2.0,0.0,,14.3,1.0 +2,2016-01-19 12:16:33,2016-01-19 12:21:10,1,0.79,,,-73.97998809814453,40.66885757446289,-73.97311401367188,40.67514419555664,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-16 18:33:39,2016-01-16 18:41:49,1,1.0,,,-73.99365234375,40.693878173828125,-73.97821807861328,40.68685531616211,1,N,1,7.0,1.0,0.5,0.3,1.75,0.0,,10.55,1.0 +2,2016-01-10 23:04:24,2016-01-10 23:27:01,1,9.77,,,-73.86970520019531,40.73360824584961,-73.87601470947266,40.80484390258789,1,N,2,29.5,0.5,0.5,0.3,0.0,5.54,,36.34,1.0 +2,2016-01-03 15:11:56,2016-01-03 15:34:36,5,4.9,,,-73.98959350585938,40.70275115966797,-74.0031967163086,40.74417495727539,1,N,1,19.5,0.0,0.5,0.3,4.06,0.0,,24.36,1.0 +1,2016-01-09 01:28:50,2016-01-09 01:31:33,2,0.6,,,-73.9502182006836,40.72227096557617,-73.9518051147461,40.714141845703125,1,N,1,4.0,0.5,0.5,0.3,1.0,0.0,,6.3,1.0 +2,2016-01-05 18:34:39,2016-01-05 18:41:04,1,0.46,,,-73.92539978027344,40.76179122924805,-73.91813659667969,40.75736618041992,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-03 11:34:59,2016-01-03 11:40:52,3,1.49,,,-73.84428405761719,40.721351623535156,-73.83119201660156,40.72732925415039,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-18 22:59:44,2016-01-18 23:09:32,2,2.1,,,-73.97595977783203,40.683841705322266,-73.94792175292969,40.669925689697266,1,N,1,9.5,0.5,0.5,0.3,3.2,0.0,,14.0,1.0 +2,2016-01-21 17:35:43,2016-01-21 17:46:09,1,1.47,,,-73.96381378173828,40.808143615722656,-73.94763946533203,40.81509780883789,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-15 16:24:37,2016-01-15 16:29:22,1,0.79,,,-73.91749572753906,40.758216857910156,-73.926513671875,40.7551383972168,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-26 10:02:10,2016-01-26 10:20:50,6,1.5,,,-73.94998931884766,40.78547286987305,-73.96324157714844,40.768943786621094,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-07 18:16:12,2016-01-07 18:23:53,1,1.76,,,-73.98287963867188,40.702056884765625,-73.995849609375,40.69071960449219,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,,11.76,1.0 +1,2016-01-30 11:10:49,2016-01-30 11:29:03,1,1.8,,,-73.98616790771484,40.68262481689453,-73.97640228271484,40.67035675048828,1,N,1,12.5,0.0,0.5,0.3,3.95,0.0,,17.25,1.0 +2,2016-01-30 20:13:55,2016-01-30 20:26:38,5,1.61,,,-73.8637924194336,40.732723236083984,-73.88490295410156,40.74317932128906,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-27 21:40:27,2016-01-27 21:45:35,1,0.8,,,-73.92212677001953,40.75524139404297,-73.91871643066406,40.74946594238281,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-01 01:43:40,2016-01-01 01:51:47,1,2.43,,,-73.95159149169922,40.797733306884766,-73.9700927734375,40.76798629760742,1,N,1,9.5,0.5,0.5,0.3,3.24,0.0,,14.04,1.0 +1,2016-01-24 22:03:18,2016-01-24 22:44:16,1,9.7,,,-73.95885467529297,40.66804504394531,-74.00493621826172,40.57883071899414,1,N,1,32.5,0.5,0.5,0.3,0.5,0.0,,34.3,1.0 +1,2016-01-03 10:49:05,2016-01-03 11:01:55,4,3.4,,,-73.8685302734375,40.74754333496094,-73.90367126464844,40.771156311035156,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-19 10:38:24,2016-01-19 10:43:31,1,1.08,,,-73.94942474365234,40.784912109375,-73.93681335449219,40.79252243041992,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-15 16:09:48,2016-01-16 15:21:11,3,4.87,,,-73.8944091796875,40.74872589111328,-73.81892395019531,40.76326370239258,1,N,2,19.5,1.0,0.5,0.3,0.0,0.0,,21.3,1.0 +1,2016-01-06 10:01:54,2016-01-06 10:17:40,2,2.6,,,-73.982421875,40.691673278808594,-73.99710083007812,40.72403335571289,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-11 07:29:12,2016-01-11 07:40:40,1,0.69,,,-73.94941711425781,40.793540954589844,-73.95116424560547,40.78563690185547,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,,9.8,1.0 +2,2016-01-26 19:17:08,2016-01-26 20:32:10,1,3.17,,,-73.94612121582031,40.679481506347656,-73.9350357055664,40.679656982421875,1,N,1,41.5,1.0,0.5,0.3,12.99,0.0,,56.29,1.0 +2,2016-01-03 14:01:11,2016-01-03 14:07:31,1,1.12,,,-73.962158203125,40.719871520996094,-73.94735717773438,40.72296142578125,1,N,1,6.5,0.0,0.5,0.3,1.82,0.0,,9.12,1.0 +2,2016-01-17 23:28:25,2016-01-17 23:34:40,1,1.51,,,-73.97865295410156,40.6839599609375,-73.97007751464844,40.6932373046875,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-05 23:37:30,2016-01-05 23:43:08,4,1.25,,,-73.96214294433594,40.6825065612793,-73.9501953125,40.67266082763672,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-08 15:54:18,2016-01-08 16:30:16,1,11.44,,,-73.94164276123047,40.83032989501953,-73.8284912109375,40.866607666015625,1,N,1,36.0,0.0,0.5,0.3,0.0,0.0,,36.8,1.0 +2,2016-01-15 07:40:57,2016-01-15 07:59:06,1,5.87,,,-73.97994232177734,40.696170806884766,-73.97622680664062,40.73966979980469,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-28 04:14:34,2016-01-28 04:23:41,1,1.27,,,-73.8833999633789,40.75571823120117,-73.8704605102539,40.74703598022461,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-13 13:21:54,2016-01-13 13:32:05,1,1.7,,,-73.97474670410156,40.68645477294922,-73.9448471069336,40.687835693359375,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-15 14:34:00,2016-01-15 14:58:27,1,4.02,,,-73.9522933959961,40.789794921875,-73.90568542480469,40.82608413696289,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-30 03:10:22,2016-01-30 03:29:56,1,5.98,,,-73.97774505615234,40.684635162353516,-73.89567565917969,40.67135238647461,1,N,2,20.0,0.5,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-21 16:45:03,2016-01-21 16:51:50,1,0.51,,,-73.84614562988281,40.85652160644531,-73.84302520751953,40.861961364746094,1,N,1,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-16 18:53:18,2016-01-16 19:01:43,1,1.99,,,-73.93942260742188,40.805015563964844,-73.95498657226562,40.7802619934082,1,N,1,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-14 20:14:17,2016-01-14 21:05:23,1,10.99,,,-73.9871597290039,40.693626403808594,-73.92761993408203,40.7662467956543,1,N,1,41.0,0.5,0.5,0.3,8.46,0.0,,50.76,1.0 +1,2016-01-05 09:17:21,2016-01-05 09:21:52,1,0.6,,,-73.88005065917969,40.74810791015625,-73.89044189453125,40.74692916870117,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,,6.95,1.0 +2,2016-01-09 03:33:35,2016-01-09 03:37:59,5,0.74,,,-73.96118927001953,40.66144561767578,-73.95626831054688,40.65048599243164,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-28 03:36:46,2016-01-28 03:47:27,1,1.55,,,-73.88965606689453,40.74703598022461,-73.86399841308594,40.74623107910156,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-30 13:59:59,2016-01-30 14:08:45,1,1.02,,,-73.94082641601562,40.79973602294922,-73.9435043334961,40.787696838378906,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-12 15:59:02,2016-01-12 16:06:16,1,1.3,,,-73.9659423828125,40.80548858642578,-73.97373962402344,40.78937530517578,1,N,1,7.5,0.0,0.5,0.3,2.45,0.0,,10.75,1.0 +2,2016-01-27 21:53:04,2016-01-27 21:59:18,1,0.94,,,-73.99420928955078,40.681217193603516,-73.98131561279297,40.68235397338867,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-27 11:41:27,2016-01-27 11:48:40,1,0.97,,,-73.95543670654297,40.73788833618164,-73.9492416381836,40.726261138916016,1,N,1,6.5,0.0,0.5,0.3,2.0,0.0,,9.3,1.0 +2,2016-01-16 22:33:18,2016-01-16 22:43:51,1,1.76,,,-73.95344543457031,40.68119812011719,-73.9264907836914,40.67738342285156,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-09 01:05:11,2016-01-09 01:18:59,5,2.6,,,-73.96336364746094,40.7101936340332,-73.96697998046875,40.6838264465332,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-22 10:37:51,2016-01-22 10:45:53,1,1.54,,,-73.9246597290039,40.864051818847656,-73.90241241455078,40.86110305786133,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-07 19:21:55,2016-01-07 19:32:28,1,1.85,,,-73.99385070800781,40.68179702758789,-73.99249267578125,40.70100784301758,1,N,1,9.0,1.0,0.5,0.3,2.7,0.0,,13.5,1.0 +2,2016-01-29 11:33:55,2016-01-29 12:02:41,6,4.23,,,-73.89244079589844,40.747283935546875,-73.92764282226562,40.767547607421875,1,N,2,21.0,0.0,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-19 22:46:08,2016-01-19 22:51:28,1,0.79,,,-73.86905670166016,40.74940490722656,-73.87047576904297,40.75751876831055,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-30 14:18:18,2016-01-30 14:30:57,5,2.1,,,-73.96525573730469,40.806358337402344,-73.98104858398438,40.780067443847656,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-30 13:10:55,2016-01-30 13:28:18,1,6.7,,,-73.94346618652344,40.79316329956055,-73.95264434814453,40.73984146118164,1,N,2,21.0,0.0,0.5,0.3,0.0,5.54,,27.34,1.0 +2,2016-01-28 09:30:23,2016-01-28 09:47:22,1,2.88,,,-73.99575805664062,40.69538879394531,-74.0140609741211,40.704959869384766,1,N,1,13.5,0.0,0.5,0.3,4.29,0.0,,18.59,1.0 +1,2016-01-26 05:43:40,2016-01-26 06:34:00,1,8.1,,,-73.96163940429688,40.67437744140625,-73.98170471191406,40.746253967285156,1,N,1,34.5,0.0,0.5,0.3,7.05,0.0,,42.35,1.0 +2,2016-01-08 16:46:13,2016-01-08 17:02:11,1,2.51,,,-73.97872924804688,40.67892837524414,-74.00588989257812,40.65277099609375,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-15 16:27:30,2016-01-15 16:36:12,1,3.65,,,-73.91732788085938,40.76991271972656,-73.8658218383789,40.771018981933594,1,N,1,11.5,1.0,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-29 07:51:16,2016-01-29 07:58:25,6,0.78,,,-73.99104309082031,40.69221496582031,-74.00067901611328,40.68600082397461,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-06 19:35:19,2016-01-06 19:42:37,1,0.86,,,-73.95284271240234,40.72727584838867,-73.95587921142578,40.73514175415039,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-10 18:51:53,2016-01-10 19:16:27,1,9.35,,,-73.89010620117188,40.75004959106445,-73.99226379394531,40.71385192871094,1,N,1,29.5,0.0,0.5,0.3,6.06,0.0,,36.36,1.0 +2,2016-01-27 07:45:18,2016-01-27 07:51:39,1,0.78,,,-73.96448516845703,40.80701446533203,-73.9559555053711,40.81867980957031,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-03 13:45:01,2016-01-03 13:50:58,1,0.9,,,-73.95408630371094,40.80595397949219,-73.94847869873047,40.797733306884766,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,,7.8,1.0 +2,2016-01-12 00:05:56,2016-01-12 00:09:08,1,0.65,,,-73.92752838134766,40.823036193847656,-73.9223861694336,40.82471466064453,1,N,1,4.5,0.5,0.5,0.3,5.0,0.0,,10.8,1.0 +2,2016-01-26 21:47:39,2016-01-26 22:01:28,1,2.47,,,-73.8443603515625,40.721641540527344,-73.87562561035156,40.73565673828125,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-22 17:39:03,2016-01-22 17:43:26,1,0.55,,,-73.95109558105469,40.81025695800781,-73.95625305175781,40.80314254760742,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-01 03:32:57,2016-01-01 03:35:24,1,0.48,,,-73.9266586303711,40.68548583984375,-73.92666625976562,40.67914962768555,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-16 03:43:06,2016-01-16 03:58:32,6,6.41,,,-73.92359924316406,40.764068603515625,-73.93389129638672,40.71521759033203,1,N,1,21.0,0.5,0.5,0.3,2.5,0.0,,24.8,1.0 +2,2016-01-09 09:47:18,2016-01-09 09:55:12,1,1.59,,,-73.95555877685547,40.819637298583984,-73.938232421875,40.80460739135742,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-29 11:27:21,2016-01-29 11:32:59,1,0.87,,,-73.94964599609375,40.80226135253906,-73.94581604003906,40.797088623046875,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-01 02:50:53,2016-01-01 03:08:53,1,3.48,,,-73.98081970214844,40.66773223876953,-73.957275390625,40.69076156616211,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-16 09:09:28,2016-01-16 09:14:35,1,1.0,,,-73.95804595947266,40.68910217285156,-73.96292877197266,40.68407440185547,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-22 13:58:30,2016-01-22 14:08:01,1,1.5,,,-73.97810363769531,40.685142517089844,-73.98665618896484,40.70304489135742,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,,10.55,1.0 +2,2016-01-10 22:04:16,2016-01-10 22:20:26,1,2.8,,,-73.95986938476562,40.71589279174805,-73.92463684082031,40.700111389160156,1,N,1,13.0,0.5,0.5,0.3,3.58,0.0,,17.88,1.0 +2,2016-01-13 03:38:50,2016-01-13 04:20:48,1,16.83,,,-73.91674041748047,40.81842803955078,-73.91592407226562,40.65937042236328,1,N,1,49.5,0.5,0.5,0.3,20.0,0.0,,70.8,1.0 +2,2016-01-30 12:25:49,2016-01-30 12:34:30,1,1.19,,,-73.89595794677734,40.85163879394531,-73.8985366821289,40.86210632324219,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 22:53:11,2016-01-09 23:02:54,2,1.41,,,-73.90338897705078,40.7457160949707,-73.91497802734375,40.76036834716797,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-20 20:34:23,2016-01-20 20:44:01,2,1.96,,,-73.98265075683594,40.66743469238281,-74.01052856445312,40.671974182128906,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-22 23:33:01,2016-01-22 23:52:22,1,6.96,,,-73.94467163085938,40.79977035522461,-73.905029296875,40.878475189208984,1,N,1,22.5,0.5,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-19 14:06:09,2016-01-19 14:21:36,1,3.44,,,-73.82608795166016,40.74666976928711,-73.86788940429688,40.754173278808594,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-10 22:04:03,2016-01-10 22:08:20,2,1.06,,,-73.89994049072266,40.746009826660156,-73.91551208496094,40.74910354614258,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-11 03:11:52,2016-01-11 03:19:18,1,1.71,,,-73.884521484375,40.74766540527344,-73.8799819946289,40.73067855834961,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-09 15:41:41,2016-01-09 15:48:48,1,1.71,,,-74.01654815673828,40.674293518066406,-73.99854278564453,40.68133544921875,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,,9.3,1.0 +2,2016-01-08 22:08:49,2016-01-08 22:26:49,2,5.62,,,-73.92565155029297,40.754638671875,-73.97966766357422,40.73021697998047,1,N,2,19.5,0.5,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-23 05:07:17,2016-01-23 05:32:45,1,6.91,,,-73.84708404541016,40.716583251953125,-73.88921356201172,40.65506362915039,1,N,1,22.0,0.5,0.5,0.3,5.0,0.0,,28.3,1.0 +2,2016-01-12 16:16:19,2016-01-12 16:32:55,5,2.79,,,-73.98680114746094,40.70235824584961,-74.00944519042969,40.724159240722656,1,N,1,13.5,1.0,0.5,0.3,3.06,0.0,,18.36,1.0 +2,2016-01-28 16:34:49,2016-01-28 16:51:53,1,3.65,,,-73.8441162109375,40.721717834472656,-73.90679931640625,40.741966247558594,1,N,2,16.0,1.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-22 19:41:47,2016-01-22 19:57:03,1,3.49,,,-73.97798919677734,40.68454360961914,-73.95382690429688,40.707298278808594,1,N,1,14.5,1.0,0.5,0.3,1.0,0.0,,17.3,1.0 +2,2016-01-27 10:46:53,2016-01-27 11:09:47,1,3.73,,,-73.9974594116211,40.68366241455078,-74.00306701660156,40.72022247314453,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +1,2016-01-17 22:16:09,2016-01-17 22:21:34,1,1.2,,,-73.96052551269531,40.65884017944336,-73.95384216308594,40.67400360107422,1,N,1,6.5,0.5,0.5,0.3,1.55,0.0,,9.35,1.0 +2,2016-01-08 23:31:28,2016-01-08 23:44:01,1,2.92,,,-73.9805908203125,40.688758850097656,-73.94047546386719,40.69981384277344,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-22 14:02:24,2016-01-22 14:30:19,1,10.22,,,-73.86463928222656,40.881141662597656,-73.95488739013672,40.80331802368164,1,N,2,33.0,0.0,0.5,0.3,0.0,0.0,,33.8,1.0 +2,2016-01-30 18:20:20,2016-01-30 18:29:14,1,0.87,,,-73.8692855834961,40.749088287353516,-73.86083984375,40.748538970947266,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-27 20:18:43,2016-01-27 20:25:44,1,1.39,,,-73.9245834350586,40.767608642578125,-73.92369079589844,40.754615783691406,1,N,1,7.0,0.5,0.5,0.3,1.24,0.0,,9.54,1.0 +1,2016-01-09 04:50:58,2016-01-09 04:59:50,4,1.4,,,-73.95768737792969,40.72249984741211,-73.9517593383789,40.71398162841797,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,,11.15,1.0 +2,2016-01-19 20:59:07,2016-01-19 21:03:07,1,1.39,,,-73.9550552368164,40.789039611816406,-73.97087097167969,40.8001708984375,1,N,1,6.0,0.5,0.5,0.3,2.0,0.0,,9.3,1.0 +2,2016-01-20 21:20:47,2016-01-20 21:25:44,1,1.1,,,-73.9398422241211,40.805381774902344,-73.92366027832031,40.80786895751953,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-20 20:14:28,2016-01-20 20:24:08,1,2.4,,,-73.9868392944336,40.702430725097656,-73.95834350585938,40.68907165527344,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-29 08:35:41,2016-01-29 08:44:39,1,2.01,,,-73.94583129882812,40.7896842956543,-73.92294311523438,40.80888748168945,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-17 00:45:21,2016-01-17 00:52:55,1,2.42,,,-73.80770111083984,40.700870513916016,-73.76876068115234,40.703857421875,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-29 17:03:40,2016-01-29 17:15:14,1,1.13,,,-73.94324493408203,40.79343032836914,-73.9416275024414,40.80704879760742,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-05 08:51:53,2016-01-05 09:17:59,1,4.17,,,-73.94249725341797,40.80618667602539,-73.97908020019531,40.755794525146484,1,N,1,19.0,0.0,0.5,0.3,3.96,0.0,,23.76,1.0 +2,2016-01-28 00:15:05,2016-01-28 00:20:17,1,1.22,,,-73.95782470703125,40.717689514160156,-73.95762634277344,40.72968673706055,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-18 00:02:42,2016-01-18 00:16:11,1,2.47,,,-73.96332550048828,40.710304260253906,-73.9260482788086,40.69498825073242,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,,14.76,1.0 +1,2016-01-06 17:42:45,2016-01-06 17:52:22,1,1.7,,,-73.86875915527344,40.73375701904297,-73.84899139404297,40.727272033691406,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-18 18:30:39,2016-01-18 18:36:16,1,1.2,,,-73.94822692871094,40.73091125488281,-73.95308685302734,40.74247360229492,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,,8.75,1.0 +2,2016-01-22 02:52:11,2016-01-22 02:58:23,1,1.13,,,-73.95729064941406,40.726924896240234,-73.96134948730469,40.71450424194336,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-27 23:32:51,2016-01-27 23:47:16,1,3.47,,,-73.96249389648438,40.710105895996094,-73.90486145019531,40.71030807495117,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-16 20:30:09,2016-01-16 20:36:43,1,2.68,,,-73.89090728759766,40.74694061279297,-73.87602996826172,40.76987075805664,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-22 20:37:28,2016-01-22 20:48:09,1,2.33,,,-73.83382415771484,40.716697692871094,-73.86241912841797,40.70787811279297,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-20 15:57:01,2016-01-20 16:15:26,1,2.27,,,-73.90930938720703,40.67899703979492,-73.89258575439453,40.65730667114258,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,,17.16,1.0 +1,2016-01-22 11:01:25,2016-01-22 11:14:26,1,4.2,,,-73.93647003173828,40.79892349243164,-73.96646881103516,40.75351333618164,1,N,1,14.5,0.0,0.5,0.3,0.1,0.0,,15.4,1.0 +2,2016-01-19 08:38:19,2016-01-19 08:47:20,1,1.98,,,-73.9393539428711,40.842350006103516,-73.9538345336914,40.81779098510742,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-01 07:46:58,2016-01-01 07:48:56,1,0.2,,,-73.93800354003906,40.803680419921875,-73.94124603271484,40.802345275878906,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-25 07:47:24,2016-01-25 07:57:00,1,1.4,,,-73.91716003417969,40.743167877197266,-73.93742370605469,40.73951721191406,1,N,1,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-13 07:54:30,2016-01-13 08:08:55,1,1.9,,,-73.95811462402344,40.81535339355469,-73.9576644897461,40.81528091430664,1,N,3,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-19 19:27:47,2016-01-19 19:42:29,1,4.77,,,-73.95220184326172,40.7897834777832,-74.00114440917969,40.762229919433594,1,N,1,17.0,1.0,0.5,0.3,2.0,0.0,,20.8,1.0 +2,2016-01-29 10:00:56,2016-01-29 10:22:29,1,7.51,,,-73.92511749267578,40.86632537841797,-73.95154571533203,40.76960372924805,1,N,1,24.5,0.0,0.5,0.3,5.06,0.0,,30.36,1.0 +2,2016-01-04 16:42:43,2016-01-04 16:52:05,1,2.05,,,-73.80744171142578,40.70018768310547,-73.78368377685547,40.684017181396484,1,N,1,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-28 16:06:18,2016-01-28 16:17:01,1,1.97,,,-73.91963958740234,40.86799621582031,-73.91503143310547,40.879051208496094,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-08 17:49:21,2016-01-08 18:06:52,1,2.66,,,-73.88179016113281,40.6480598449707,-73.90343475341797,40.6789665222168,1,N,1,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-30 18:09:49,2016-01-30 18:23:54,1,1.7,,,-73.95890808105469,40.65079879760742,-73.95329284667969,40.67045211791992,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-12 22:19:53,2016-01-12 22:24:38,1,0.97,,,-73.97806549072266,40.680076599121094,-73.98336791992188,40.668739318847656,1,N,1,5.5,0.5,0.5,0.3,1.2,0.0,,8.0,1.0 +2,2016-01-27 20:37:14,2016-01-27 20:52:00,1,3.35,,,-73.80748748779297,40.70064926147461,-73.76667022705078,40.72077178955078,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-13 03:50:30,2016-01-13 04:10:41,1,5.86,,,-73.96510314941406,40.711063385009766,-73.91101837158203,40.66327667236328,1,N,2,19.5,0.5,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-16 21:18:23,2016-01-16 21:29:13,1,4.77,,,-73.93228149414062,40.79556655883789,-73.91796875,40.84213638305664,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-08 14:31:53,2016-01-08 14:38:20,1,0.83,,,-73.9094467163086,40.77725601196289,-73.91144561767578,40.76834487915039,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-20 22:24:52,2016-01-20 22:36:49,1,5.37,,,-73.94090270996094,40.83987808227539,-73.97681427001953,40.780216217041016,1,N,1,17.0,0.5,0.5,0.3,3.0,0.0,,21.3,1.0 +2,2016-01-12 07:28:08,2016-01-12 07:38:11,1,2.48,,,-73.95665740966797,40.744903564453125,-73.97551727294922,40.741737365722656,1,N,1,10.0,0.0,0.5,0.3,3.27,5.54,,19.61,1.0 +2,2016-01-29 14:27:50,2016-01-29 14:30:37,1,0.26,,,-73.94478607177734,40.74761962890625,-73.94733428955078,40.74653625488281,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-18 17:55:24,2016-01-18 17:59:24,1,0.85,,,-73.97779083251953,40.68474578857422,-73.97380828857422,40.69300842285156,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-02 18:52:51,2016-01-02 19:07:26,1,4.0,,,-73.93302917480469,40.79926681518555,-73.93876647949219,40.84938049316406,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-30 02:49:56,2016-01-30 02:57:54,1,1.63,,,-73.84407043457031,40.721046447753906,-73.85096740722656,40.74201583862305,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +1,2016-01-16 12:07:04,2016-01-16 12:12:35,1,1.1,,,-73.97662353515625,40.686981201171875,-73.96692657470703,40.69570541381836,1,N,2,6.0,0.0,0.5,0,0.0,0.0,,6.5,1.0 +2,2016-01-30 11:49:19,2016-01-30 11:52:29,1,0.8,,,-73.96641540527344,40.71137619018555,-73.96240997314453,40.70518112182617,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-30 02:08:28,2016-01-30 02:13:25,1,0.87,,,-73.95879364013672,40.716861724853516,-73.95081329345703,40.7109260559082,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-29 03:54:17,2016-01-29 04:38:41,1,15.18,,,-73.96147155761719,40.71451187133789,-73.92312622070312,40.86903762817383,1,N,1,47.0,0.5,0.5,0.3,2.0,0.0,,50.3,1.0 +2,2016-01-02 09:08:34,2016-01-02 09:10:20,2,0.56,,,-73.91226196289062,40.7262077331543,-73.9189453125,40.72254180908203,1,N,1,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-22 00:15:32,2016-01-22 00:19:02,1,0.81,,,-73.93213653564453,40.69525146484375,-73.92716217041016,40.70332717895508,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-02 22:12:58,2016-01-02 22:20:33,1,1.18,,,-73.96208190917969,40.71321487426758,-73.95271301269531,40.72706604003906,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-03 10:58:39,2016-01-03 11:12:53,1,3.03,,,-73.9424057006836,40.79904556274414,-73.97997283935547,40.7840576171875,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-09 15:21:03,2016-01-09 15:33:32,2,2.3,,,-73.97607421875,40.68391799926758,-73.94104766845703,40.6748161315918,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,,13.55,1.0 +2,2016-01-18 08:19:38,2016-01-18 08:23:34,1,0.77,,,-73.95303344726562,40.71412658691406,-73.96353912353516,40.71860122680664,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-20 20:44:23,2016-01-20 20:59:52,3,3.1,,,-73.98670196533203,40.702430725097656,-73.95209503173828,40.71103286743164,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-05 06:52:26,2016-01-05 06:53:45,1,0.43,,,-73.95811462402344,40.81535720825195,-73.95281982421875,40.810821533203125,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-18 20:46:52,2016-01-18 20:50:33,1,0.65,,,-73.9640884399414,40.807823181152344,-73.95789337158203,40.80884552001953,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-14 01:32:42,2016-01-14 01:40:31,1,2.24,,,-73.95681762695312,40.68685531616211,-73.97870635986328,40.67819595336914,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +1,2016-01-18 15:46:23,2016-01-18 15:50:12,1,0.6,,,-73.87042236328125,40.74921798706055,-73.87413787841797,40.743408203125,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-03 08:24:07,2016-01-03 08:31:04,1,1.44,,,-73.96089935302734,40.69329833984375,-73.96765899658203,40.68016815185547,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-01 04:57:39,2016-01-01 05:14:39,1,6.49,,,-73.93531799316406,40.795921325683594,-73.98566436767578,40.722930908203125,1,N,1,21.5,0.5,0.5,0.3,5.7,0.0,,28.5,1.0 +2,2016-01-19 07:22:51,2016-01-19 07:25:17,1,0.64,,,-73.97042846679688,40.690914154052734,-73.98056030273438,40.68976593017578,1,N,1,4.0,0.0,0.5,0.3,0.7,0.0,,5.5,1.0 +2,2016-01-19 14:41:55,2016-01-19 14:49:00,1,1.36,,,-73.94895935058594,40.802860260009766,-73.96341705322266,40.810707092285156,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-05 17:08:54,2016-01-05 17:18:08,1,1.9,,,-73.84456634521484,40.72193145751953,-73.81852722167969,40.72835922241211,1,N,1,8.5,1.0,0.5,0.3,2.55,0.0,,12.85,1.0 +2,2016-01-27 02:23:38,2016-01-27 02:26:45,1,0.74,,,-73.94713592529297,40.63230514526367,-73.94208526611328,40.62693786621094,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-08 16:40:29,2016-01-08 16:46:37,1,1.05,,,-73.86907196044922,40.74291229248047,-73.88262176513672,40.74997329711914,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-01 04:54:53,2016-01-01 05:01:05,1,0.99,,,-73.9514389038086,40.8045539855957,-73.9422836303711,40.817108154296875,1,N,1,6.5,0.5,0.5,0.3,5.0,0.0,,12.8,1.0 +2,2016-01-28 20:27:11,2016-01-28 20:35:31,2,1.06,,,-73.86931610107422,40.748958587646484,-73.86267852783203,40.73760223388672,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-08 08:01:07,2016-01-08 08:21:15,1,3.97,,,-73.95979309082031,40.691444396972656,-73.97937774658203,40.66946792602539,1,N,1,16.0,0.0,0.5,0.3,1.0,0.0,,17.8,1.0 +2,2016-01-05 17:31:01,2016-01-05 17:42:01,1,2.04,,,-73.87635803222656,40.756622314453125,-73.91249084472656,40.75480270385742,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-25 07:47:24,2016-01-25 08:08:28,1,3.29,,,-73.94192504882812,40.746402740478516,-73.95340728759766,40.767311096191406,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-27 10:36:12,2016-01-27 10:43:53,1,1.25,,,-73.9596939086914,40.68826675415039,-73.98148345947266,40.69001007080078,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-10 21:39:04,2016-01-10 21:53:38,1,2.9,,,-73.96739959716797,40.68555450439453,-73.9534912109375,40.707706451416016,1,N,1,12.5,0.5,0.5,0.3,1.5,0.0,,15.3,1.0 +2,2016-01-09 13:39:46,2016-01-09 13:51:54,1,1.82,,,-73.99356079101562,40.69622039794922,-73.96565246582031,40.69215393066406,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-10 14:54:34,2016-01-10 15:02:40,2,1.82,,,-73.90154266357422,40.86835861206055,-73.91813659667969,40.8707275390625,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-25 23:30:08,2016-01-25 23:30:35,1,0.09,,,-73.89148712158203,40.85447692871094,-73.89531707763672,40.85508728027344,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-05 00:46:01,2016-01-05 00:51:35,1,1.17,,,-73.95159149169922,40.723358154296875,-73.9579086303711,40.71091079711914,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-05 14:08:55,2016-01-05 14:13:06,1,0.88,,,-74.00037384033203,40.654598236083984,-73.98906707763672,40.6658935546875,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-06 17:49:05,2016-01-06 18:14:02,1,4.0,,,-73.96858978271484,40.68214797973633,-73.95366668701172,40.71419906616211,1,N,1,18.0,1.0,0.5,0.3,2.0,0.0,,21.8,1.0 +2,2016-01-25 12:12:22,2016-01-25 12:20:42,1,1.67,,,-73.88966369628906,40.8607177734375,-73.87808990478516,40.84274673461914,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-27 23:12:14,2016-01-27 23:22:57,1,2.98,,,-73.98363494873047,40.676761627197266,-73.94679260253906,40.66034698486328,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-28 20:31:53,2016-01-28 20:52:43,2,5.9,,,-73.87418365478516,40.73511505126953,-73.79232025146484,40.6994743347168,1,N,1,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-19 19:18:10,2016-01-19 19:25:35,1,1.13,,,-73.84427642822266,40.721656799316406,-73.84454345703125,40.71055603027344,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-02 18:27:08,2016-01-02 18:44:51,1,2.2,,,-73.88544464111328,40.74748611450195,-73.8594741821289,40.74213790893555,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-29 19:33:34,2016-01-29 19:38:39,1,0.88,,,-73.98028564453125,40.668331146240234,-73.98020935058594,40.660701751708984,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-02 13:12:02,2016-01-02 13:20:47,1,1.32,,,-73.96312713623047,40.6937370300293,-73.98739624023438,40.69344711303711,1,N,1,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-09 04:54:10,2016-01-09 05:00:30,1,1.8,,,-73.93794250488281,40.74919891357422,-73.96416473388672,40.761329650878906,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-18 19:11:36,2016-01-18 19:15:37,1,0.63,,,-73.96339416503906,40.711116790771484,-73.95692443847656,40.7186279296875,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-09 19:27:35,2016-01-09 19:34:56,1,0.97,,,-73.9909439086914,40.69235610961914,-73.97401428222656,40.68727111816406,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 04:13:40,2016-01-01 04:18:01,1,1.04,,,-73.95347595214844,40.681068420410156,-73.94248962402344,40.68943786621094,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-05 00:44:10,2016-01-05 00:49:35,1,0.95,,,-73.91780853271484,40.77003860473633,-73.92879486083984,40.77381896972656,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-03 11:56:35,2016-01-03 12:02:59,1,1.11,,,-73.96456909179688,40.807308197021484,-73.9663314819336,40.79443359375,1,N,1,6.5,0.0,0.5,0.3,2.19,0.0,,9.49,1.0 +2,2016-01-22 01:10:02,2016-01-22 01:13:36,5,0.95,,,-73.91145324707031,40.7755126953125,-73.89838409423828,40.77147674560547,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-08 10:52:35,2016-01-08 11:15:55,1,5.06,,,-73.9300537109375,40.81973648071289,-73.96112823486328,40.7723388671875,1,N,1,20.5,0.5,0.5,0.3,6.54,0.0,,28.34,1.0 +2,2016-01-02 02:44:40,2016-01-02 02:54:03,1,3.07,,,-73.94937133789062,40.79408645629883,-73.91526794433594,40.82156753540039,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-11 08:45:06,2016-01-11 08:50:15,5,1.06,,,-73.95122528076172,40.78601837158203,-73.96717834472656,40.793636322021484,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-03 07:36:13,2016-01-03 07:51:23,1,8.16,,,-73.91487121582031,40.77588653564453,-73.97679138183594,40.75217819213867,1,N,1,23.0,0.0,0.5,0.3,5.87,5.54,,35.21,1.0 +2,2016-01-13 23:26:25,2016-01-13 23:48:10,1,4.67,,,-73.91368865966797,40.67928695678711,-73.96673583984375,40.6834831237793,1,N,1,18.0,0.5,0.5,0.3,3.86,0.0,,23.16,1.0 +1,2016-01-26 00:07:59,2016-01-26 00:21:27,2,2.3,,,-73.95903015136719,40.71666717529297,-73.93688201904297,40.705772399902344,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-08 22:38:34,2016-01-08 22:45:14,1,1.34,,,-73.92266845703125,40.68257141113281,-73.91739654541016,40.689510345458984,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-16 03:23:15,2016-01-16 03:36:00,5,3.02,,,-73.9044189453125,40.745033264160156,-73.86954498291016,40.743614196777344,1,N,1,11.5,0.5,0.5,0.3,3.2,0.0,,16.0,1.0 +1,2016-01-30 12:31:36,2016-01-30 12:41:20,1,2.0,,,-73.94247436523438,40.828304290771484,-73.93854522705078,40.80585479736328,1,Y,1,9.0,0.0,0.5,0.3,1.95,0.0,,11.75,1.0 +2,2016-01-25 22:02:38,2016-01-25 22:17:16,1,1.95,,,-73.93101501464844,40.67062759399414,-73.94732666015625,40.652809143066406,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-27 16:57:38,2016-01-27 17:12:10,1,2.32,,,-73.94615173339844,40.81546401977539,-73.94781494140625,40.79025650024414,1,N,1,11.0,1.0,0.5,0.3,2.0,0.0,,14.8,1.0 +2,2016-01-17 00:26:16,2016-01-17 00:34:58,1,2.12,,,-73.890869140625,40.746971130371094,-73.87479400634766,40.727027893066406,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-02 19:20:21,2016-01-02 19:35:34,1,2.07,,,-73.898681640625,40.85997009277344,-73.88551330566406,40.846675872802734,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-01 01:33:08,2016-01-01 01:36:53,1,0.64,,,-73.91397857666016,40.82432556152344,-73.92567443847656,40.82796096801758,1,N,1,4.5,0.5,0.5,0.3,1.74,0.0,,7.54,1.0 +2,2016-01-27 00:05:37,2016-01-27 00:16:50,1,2.03,,,-73.95642852783203,40.68473815917969,-73.93505096435547,40.67088317871094,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-15 00:03:15,2016-01-15 00:10:33,1,3.4,,,-73.954345703125,40.587345123291016,-73.9961929321289,40.596099853515625,1,N,1,11.68,0.5,0.5,0.3,2.0,0.0,,14.98,1.0 +1,2016-01-02 15:54:08,2016-01-02 16:03:02,1,1.8,,,-73.9576187133789,40.80134582519531,-73.9500503540039,40.82198715209961,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-06 18:48:47,2016-01-06 18:51:08,1,0.67,,,-73.9130630493164,40.84999084472656,-73.9224853515625,40.845211029052734,5,N,1,14.0,0.0,0.0,0,0.0,0.0,,14.0,2.0 +2,2016-01-16 23:31:30,2016-01-16 23:49:42,2,4.24,,,-73.94514465332031,40.808189392089844,-73.97250366210938,40.75593566894531,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +1,2016-01-27 20:29:09,2016-01-27 20:36:12,1,1.6,,,-73.82986450195312,40.71345520019531,-73.84812927246094,40.69816207885742,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-20 16:55:23,2016-01-20 17:05:46,3,1.75,,,-73.87418365478516,40.735084533691406,-73.9016342163086,40.743587493896484,1,N,1,9.0,1.0,0.5,0.3,2.7,0.0,,13.5,1.0 +2,2016-01-16 21:30:35,2016-01-16 21:36:18,1,1.24,,,-73.9518051147461,40.81950378417969,-73.93994140625,40.83566665649414,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-02 19:18:19,2016-01-02 19:23:14,1,0.84,,,-73.89149475097656,40.86191177368164,-73.90111541748047,40.86674880981445,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-16 22:31:16,2016-01-16 22:50:05,1,4.38,,,-73.94633483886719,40.795616149902344,-73.98580932617188,40.740638732910156,1,N,1,17.0,0.5,0.5,0.3,1.0,0.0,,19.3,1.0 +2,2016-01-02 05:43:38,2016-01-02 05:49:38,1,0.94,,,-73.88391876220703,40.747581481933594,-73.86817169189453,40.7459831237793,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-30 19:43:43,2016-01-30 19:59:20,1,3.2,,,-73.96158599853516,40.65232849121094,-73.9583969116211,40.60877990722656,1,N,1,13.5,0.5,0.5,0.3,2.95,0.0,,17.75,1.0 +2,2016-01-01 03:56:58,2016-01-01 04:02:27,1,0.87,,,-73.89093017578125,40.74692916870117,-73.88536834716797,40.75548553466797,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-19 23:08:25,2016-01-19 23:17:24,1,2.17,,,-73.9556655883789,40.80404281616211,-73.94686889648438,40.829925537109375,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-16 05:00:52,2016-01-16 05:14:14,1,4.73,,,-73.99381256103516,40.66094207763672,-74.0296859741211,40.627105712890625,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-22 13:40:02,2016-01-22 13:50:24,6,2.71,,,-73.95842742919922,40.810665130615234,-73.94161224365234,40.83932113647461,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-28 22:44:11,2016-01-28 22:49:18,1,1.03,,,-73.95543670654297,40.71998977661133,-73.93791961669922,40.726295471191406,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-26 20:13:47,2016-01-26 20:26:50,1,2.18,,,-73.84430694580078,40.721378326416016,-73.81944274902344,40.701873779296875,1,N,1,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-03 21:50:51,2016-01-03 22:03:58,3,3.27,,,-73.96321105957031,40.71690368652344,-73.95700073242188,40.67341613769531,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-29 19:23:58,2016-01-29 19:27:40,1,0.48,,,-73.94222259521484,40.81238555908203,-73.94751739501953,40.80870819091797,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-04 19:21:55,2016-01-04 19:30:30,1,1.7,,,-73.9366226196289,40.68775939941406,-73.96766662597656,40.68367004394531,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-25 23:47:41,2016-01-25 23:54:59,1,1.01,,,-73.94062805175781,40.80565643310547,-73.93801879882812,40.81216049194336,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-15 17:24:14,2016-01-15 17:36:18,1,1.92,,,-73.9865493774414,40.703895568847656,-73.9695816040039,40.686397552490234,1,N,1,9.5,1.0,0.5,0.3,1.0,0.0,,12.3,1.0 +2,2016-01-21 14:56:33,2016-01-21 15:06:08,1,1.2,,,-73.91780090332031,40.7700309753418,-73.93098449707031,40.76694869995117,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-08 16:39:31,2016-01-08 16:55:10,1,2.6,,,-73.94987487792969,40.675941467285156,-73.95918273925781,40.64751434326172,1,N,1,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-17 16:27:43,2016-01-17 17:34:08,1,13.8,,,-73.98065948486328,40.667964935302734,-73.92543029785156,40.76526641845703,1,N,1,50.0,0.0,0.5,0.3,10.16,0.0,,60.96,1.0 +2,2016-01-08 18:35:39,2016-01-08 18:36:43,1,0.45,,,-73.94246673583984,40.82195281982422,-73.9383316040039,40.82747268676758,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-02 22:14:12,2016-01-02 22:18:15,1,0.66,,,-73.95751953125,40.80141067504883,-73.95140838623047,40.809844970703125,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-19 11:23:00,2016-01-19 11:29:12,1,0.84,,,-73.86910247802734,40.749263763427734,-73.87223052978516,40.760711669921875,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-08 19:32:19,2016-01-08 19:39:41,1,0.83,,,-73.89875030517578,40.7461051940918,-73.89364624023438,40.75083541870117,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-28 16:04:11,2016-01-28 16:18:27,1,2.1,,,-73.93933868408203,40.80522537231445,-73.96585083007812,40.80559158325195,1,N,1,11.0,1.0,0.5,0.3,3.2,0.0,,16.0,1.0 +2,2016-01-08 11:48:44,2016-01-08 11:48:45,1,0.0,,,-73.91520690917969,40.69902038574219,-73.9151611328125,40.6991081237793,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,,52.8,1.0 +1,2016-01-22 17:30:01,2016-01-22 17:47:03,1,3.3,,,-73.99724578857422,40.694969177246094,-73.98873138427734,40.727176666259766,1,N,1,14.5,1.0,0.5,0.3,2.0,0.0,,18.3,1.0 +2,2016-01-01 02:08:55,2016-01-01 02:22:14,1,1.75,,,-73.94685363769531,40.69343185424805,-73.93367767333984,40.70562744140625,1,N,1,10.5,0.5,0.5,0.3,3.54,0.0,,15.34,1.0 +2,2016-01-30 21:21:15,2016-01-30 21:30:01,1,0.72,,,-73.85520935058594,40.74386215209961,-73.86333465576172,40.74987030029297,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-02 18:25:38,2016-01-02 18:33:04,1,1.0,,,-73.97797393798828,40.6934928894043,-73.9918441772461,40.69070053100586,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-29 23:31:42,2016-01-29 23:38:11,1,0.92,,,-73.8910903930664,40.74688720703125,-73.88519287109375,40.755653381347656,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-06 22:13:31,2016-01-06 22:23:34,2,1.8,,,-73.8915023803711,40.74672317504883,-73.86500549316406,40.73466110229492,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-15 16:30:58,2016-01-15 16:41:46,1,1.64,,,-73.86927032470703,40.74924850463867,-73.87799835205078,40.76805114746094,1,N,1,8.5,1.0,0.5,0.3,2.06,0.0,,12.36,1.0 +1,2016-01-10 23:38:13,2016-01-10 23:43:30,1,1.2,,,-73.89080810546875,40.74687576293945,-73.87487030029297,40.75286102294922,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-30 19:50:40,2016-01-30 20:08:19,1,3.26,,,-73.87761688232422,40.74842071533203,-73.83465576171875,40.75942611694336,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-22 22:08:25,2016-01-22 22:10:17,1,0.72,,,-73.91600799560547,40.76271438598633,-73.92359161376953,40.75468826293945,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-30 20:45:20,2016-01-30 21:29:06,1,12.8,,,-73.99076843261719,40.69376754760742,-73.79472351074219,40.668209075927734,1,N,2,41.5,0.5,0.5,0.3,0.0,0.0,,42.8,1.0 +2,2016-01-13 14:01:57,2016-01-13 14:10:57,1,1.95,,,-73.94377899169922,40.825443267822266,-73.91498565673828,40.82219314575195,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,,11.15,1.0 +1,2016-01-16 19:00:43,2016-01-16 19:17:09,1,3.4,,,-73.94131469726562,40.818424224853516,-73.92594909667969,40.86351013183594,1,N,1,14.5,0.0,0.5,0.3,3.05,0.0,,18.35,1.0 +2,2016-01-02 19:55:45,2016-01-02 20:01:34,1,1.56,,,-73.94773864746094,40.79899215698242,-73.94025421142578,40.81483459472656,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 22:26:34,2016-01-09 22:35:29,1,1.81,,,-73.943115234375,40.82328796386719,-73.94932556152344,40.80271530151367,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-06 21:07:30,2016-01-06 21:10:46,3,0.95,,,-73.95231628417969,40.78971862792969,-73.94774627685547,40.79844665527344,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-01 02:01:35,2016-01-01 02:10:40,1,2.86,,,-73.95459747314453,40.691123962402344,-73.9406509399414,40.721675872802734,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-30 17:31:08,2016-01-30 17:50:13,1,3.2,,,-73.94859313964844,40.80931854248047,-73.93431854248047,40.79743194580078,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-19 18:07:30,2016-01-19 18:39:46,1,5.91,,,-73.95834350585938,40.67966842651367,-73.99044036865234,40.73869323730469,1,N,1,25.0,1.0,0.5,0.3,5.36,0.0,,32.16,1.0 +2,2016-01-30 14:02:51,2016-01-30 14:29:27,1,6.88,,,-73.94823455810547,40.82931137084961,-73.8545913696289,40.84059143066406,1,N,2,23.0,0.0,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-30 13:17:02,2016-01-30 13:32:36,4,4.32,,,-73.88065338134766,40.856563568115234,-73.83011627197266,40.86932373046875,5,N,2,15.0,0.0,0.0,0,0.0,0.0,,15.0,2.0 +2,2016-01-29 17:20:27,2016-01-29 17:25:08,6,0.89,,,-73.87432861328125,40.73508071899414,-73.87891387939453,40.72844314575195,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-10 19:42:26,2016-01-10 19:49:07,1,1.41,,,-73.95768737792969,40.71794128417969,-73.95233154296875,40.7344856262207,1,N,1,7.0,0.0,0.5,0.3,2.34,0.0,,10.14,1.0 +2,2016-01-15 17:15:54,2016-01-15 17:22:09,1,0.64,,,-73.96531677246094,40.80590057373047,-73.9577865600586,40.813026428222656,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-10 01:03:23,2016-01-10 01:07:35,1,0.91,,,-73.92786407470703,40.74442672729492,-73.92564392089844,40.74172592163086,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-30 16:31:41,2016-01-30 16:43:47,1,1.41,,,-73.93563079833984,40.795753479003906,-73.95181274414062,40.807865142822266,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-06 13:25:01,2016-01-06 13:25:34,1,0.09,,,-73.94325256347656,40.81082534790039,-73.94183349609375,40.81269836425781,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-06 22:48:51,2016-01-06 22:59:48,6,4.21,,,-73.9138412475586,40.76536560058594,-73.85264587402344,40.752777099609375,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +1,2016-01-12 19:59:59,2016-01-12 20:08:24,1,1.3,,,-73.99073028564453,40.685760498046875,-73.96895599365234,40.67797088623047,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-29 11:33:25,2016-01-29 11:51:32,1,3.2,,,-73.99803924560547,40.63963317871094,-73.98163604736328,40.674644470214844,1,N,1,14.0,0.0,0.5,0.3,4.4,0.0,,19.2,1.0 +1,2016-01-12 15:25:49,2016-01-12 16:02:19,2,6.7,,,-73.9428939819336,40.841636657714844,-73.95848846435547,40.77839279174805,1,N,2,29.0,0.0,0.5,0.3,0.0,0.0,,29.8,1.0 +2,2016-01-11 06:40:06,2016-01-11 06:45:49,1,1.36,,,-73.91438293457031,40.756858825683594,-73.89212799072266,40.74892044067383,1,N,1,6.5,0.0,0.5,0.3,5.0,0.0,,12.3,1.0 +2,2016-01-19 11:12:01,2016-01-19 11:22:13,1,1.04,,,-73.93905639648438,40.805538177490234,-73.94990539550781,40.793697357177734,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-25 15:04:00,2016-01-25 15:47:15,1,4.16,,,-73.9775619506836,40.69344711303711,-73.92726135253906,40.70158767700195,1,N,1,27.0,0.0,0.5,0.3,0.0,0.0,,27.8,1.0 +2,2016-01-30 18:38:54,2016-01-30 19:02:47,1,4.57,,,-73.95161437988281,40.663082122802734,-73.98284149169922,40.701114654541016,1,N,1,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-03 03:01:09,2016-01-03 03:07:46,1,1.21,,,-73.88726806640625,40.74717712402344,-73.87948608398438,40.75985336303711,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-27 19:09:39,2016-01-27 19:19:08,5,1.0,,,-73.9422836303711,40.790809631347656,-73.94841003417969,40.7783088684082,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-15 17:51:24,2016-01-15 18:07:31,1,2.84,,,-73.9903335571289,40.70295333862305,-73.99869537353516,40.725677490234375,1,N,1,13.0,1.0,0.5,0.3,3.7,0.0,,18.5,1.0 +1,2016-01-29 23:25:49,2016-01-29 23:28:11,2,0.4,,,-73.9475326538086,40.711326599121094,-73.95307922363281,40.71147918701172,1,N,1,4.0,0.5,0.5,0.3,1.0,0.0,,6.3,1.0 +2,2016-01-29 02:46:23,2016-01-29 02:47:17,3,0.13,,,-73.9116439819336,40.82835006713867,-73.90972137451172,40.83204650878906,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +1,2016-01-18 18:06:55,2016-01-18 18:15:33,1,1.3,,,-73.9513931274414,40.825347900390625,-73.9515151977539,40.81019973754883,1,N,1,8.0,1.0,0.5,0.3,1.95,0.0,,11.75,1.0 +2,2016-01-09 20:16:29,2016-01-09 21:07:44,2,9.28,,,-73.98694610595703,40.687705993652344,-73.95093536376953,40.774810791015625,1,N,1,39.5,0.5,0.5,0.3,12.24,0.0,,53.04,1.0 +2,2016-01-28 17:09:27,2016-01-28 17:29:37,1,2.73,,,-73.94691467285156,40.8161506652832,-73.97616577148438,40.792388916015625,1,N,1,15.0,1.0,0.5,0.3,3.36,0.0,,20.16,1.0 +2,2016-01-19 19:37:32,2016-01-19 19:47:16,1,2.77,,,-73.86371612548828,40.73283004760742,-73.82392883300781,40.71456527709961,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-26 19:57:08,2016-01-26 20:03:46,1,1.51,,,-73.9590835571289,40.809505462646484,-73.96550750732422,40.79204177856445,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-27 10:27:01,2016-01-27 10:33:45,1,1.23,,,-73.85208892822266,40.85002517700195,-73.87255859375,40.84133529663086,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-08 19:20:18,2016-01-08 19:38:42,1,5.6,,,-73.97135162353516,40.62748718261719,-74.00283813476562,40.57490539550781,1,N,1,19.0,1.0,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-13 23:49:57,2016-01-14 00:05:27,1,2.89,,,-73.94388580322266,40.68403244018555,-73.92623138427734,40.65562057495117,1,N,1,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-14 18:20:12,2016-01-14 18:27:53,2,1.48,,,-73.96601867675781,40.80485534667969,-73.95088958740234,40.8083610534668,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-20 00:30:46,2016-01-20 00:35:27,1,0.87,,,-73.94194793701172,40.798828125,-73.95552062988281,40.8052864074707,1,N,1,5.5,0.5,0.5,0.3,0.8,0.0,,7.6,1.0 +2,2016-01-02 20:37:21,2016-01-02 20:42:30,1,0.91,,,-73.97870635986328,40.68379211425781,-73.97966003417969,40.67534255981445,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-05 07:39:06,2016-01-05 07:44:53,1,1.13,,,-73.90634155273438,40.8297004699707,-73.9170913696289,40.81621551513672,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-04 11:48:32,2016-01-04 11:55:34,1,1.21,,,-73.97410583496094,40.68973159790039,-73.99201965332031,40.69058609008789,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-13 18:12:07,2016-01-13 18:29:31,1,2.5,,,-73.93931579589844,40.805477142333984,-73.94635009765625,40.77699661254883,1,N,1,12.5,1.0,0.5,0.3,2.14,0.0,,16.44,1.0 +2,2016-01-18 17:51:12,2016-01-18 18:23:43,1,12.94,,,-73.9761734008789,40.66688919067383,-73.7763671875,40.64535140991211,1,N,1,38.0,0.0,0.5,0.3,7.76,0.0,,46.56,1.0 +1,2016-01-11 09:29:44,2016-01-11 09:42:56,2,1.8,,,-73.86566162109375,40.73638916015625,-73.87626647949219,40.74827575683594,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-17 11:41:17,2016-01-17 11:41:23,1,0.0,,,-73.94387817382812,40.69792556762695,-73.94395446777344,40.69835662841797,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-26 12:40:46,2016-01-26 12:58:45,1,3.33,,,-73.8797836303711,40.87974548339844,-73.83796691894531,40.86326599121094,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-30 01:45:50,2016-01-30 01:53:37,1,1.14,,,-73.89082336425781,40.74637222290039,-73.87893676757812,40.73618698120117,1,N,1,7.5,0.5,0.5,0.3,1.0,0.0,,9.8,1.0 +2,2016-01-21 18:44:11,2016-01-21 18:47:33,1,0.47,,,-73.9355697631836,40.850093841552734,-73.9297866821289,40.85228729248047,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-09 02:32:48,2016-01-09 02:41:49,1,2.18,,,-73.93852233886719,40.80488967895508,-73.92172241210938,40.82841491699219,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-20 08:44:25,2016-01-20 08:50:10,1,0.71,,,-73.94805908203125,40.804100036621094,-73.93848419189453,40.8055419921875,1,N,1,5.5,0.0,0.5,0.3,1.89,0.0,,8.19,1.0 +2,2016-01-27 17:15:36,2016-01-27 17:22:00,1,0.65,,,-73.8961410522461,40.81652069091797,-73.89910888671875,40.82554626464844,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-10 12:53:36,2016-01-10 12:58:54,1,0.7,,,-73.94273376464844,40.83681869506836,-73.93666076660156,40.84531784057617,1,N,3,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-13 08:04:29,2016-01-13 08:16:57,1,1.78,,,-73.96355438232422,40.80323028564453,-73.94134521484375,40.814300537109375,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-19 20:20:38,2016-01-19 20:23:12,1,0.74,,,-73.95814514160156,40.72165298461914,-73.9501724243164,40.72267532348633,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-08 18:13:48,2016-01-08 18:22:51,1,1.43,,,-73.95482635498047,40.78758239746094,-73.9535140991211,40.77275848388672,1,N,1,8.0,1.0,0.5,0.3,1.0,0.0,,10.8,1.0 +2,2016-01-03 03:05:16,2016-01-03 03:06:09,2,0.17,,,-73.9067153930664,40.74546813964844,-73.90809631347656,40.748451232910156,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-30 02:20:04,2016-01-30 02:24:27,1,0.76,,,-73.95819854736328,40.72182846069336,-73.96626281738281,40.7130012512207,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-02 11:59:34,2016-01-02 12:03:41,5,0.9,,,-73.952392578125,40.803218841552734,-73.95870971679688,40.81016540527344,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-21 09:10:43,2016-01-21 09:43:05,1,8.11,,,-73.86183166503906,40.73017883300781,-73.98645782470703,40.737064361572266,1,N,1,29.5,0.0,0.5,0.3,7.17,5.54,,43.01,1.0 +2,2016-01-04 20:48:08,2016-01-04 20:53:08,1,0.94,,,-73.97789001464844,40.684722900390625,-73.98529815673828,40.69243621826172,1,N,1,5.5,0.5,0.5,0.3,2.04,0.0,,8.84,1.0 +2,2016-01-05 17:00:39,2016-01-05 17:04:22,1,0.79,,,-73.8905258178711,40.74702072143555,-73.88396453857422,40.753231048583984,1,N,1,4.5,1.0,0.5,0.3,2.0,0.0,,8.3,1.0 +2,2016-01-30 21:23:11,2016-01-30 21:36:52,1,1.85,,,-73.8910903930664,40.74680709838867,-73.87469482421875,40.73513412475586,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-16 12:39:24,2016-01-16 13:04:54,1,10.42,,,-73.95301055908203,40.810272216796875,-73.86176300048828,40.9300537109375,1,N,1,32.5,0.0,0.5,0.3,6.66,0.0,,39.96,1.0 +2,2016-01-19 09:34:14,2016-01-19 09:52:44,1,2.43,,,-73.95552825927734,40.744346618652344,-73.91439056396484,40.74372100830078,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-30 11:37:19,2016-01-30 11:47:45,1,1.93,,,-73.9630355834961,40.68854522705078,-73.96142578125,40.714378356933594,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,,11.16,1.0 +1,2016-01-30 11:42:28,2016-01-30 12:02:46,1,2.5,,,-73.95897674560547,40.70874786376953,-73.92259979248047,40.68642044067383,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,,17.15,1.0 +2,2016-01-16 15:06:50,2016-01-16 15:17:27,1,1.38,,,-73.99283599853516,40.68980026245117,-73.97637939453125,40.6778678894043,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-26 08:21:53,2016-01-26 08:25:18,1,0.34,,,-73.9462661743164,40.80814743041992,-73.95214080810547,40.81064224243164,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-08 23:19:58,2016-01-08 23:34:43,2,3.05,,,-73.90060424804688,40.82230758666992,-73.94468688964844,40.80876541137695,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-11 19:11:56,2016-01-11 19:12:09,1,0.0,,,-73.95185852050781,40.73019027709961,-73.95193481445312,40.73033142089844,1,N,2,2.5,1.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-14 21:55:10,2016-01-14 22:05:57,1,2.72,,,-73.98068237304688,40.69000244140625,-73.98880004882812,40.72023391723633,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-21 17:41:56,2016-01-21 17:45:32,1,0.76,,,-73.96295166015625,40.80446243286133,-73.96411895751953,40.8090934753418,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-15 06:38:47,2016-01-15 06:49:24,1,3.04,,,-73.89108276367188,40.74689865112305,-73.92120361328125,40.76682662963867,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-22 00:22:29,2016-01-22 00:47:57,1,4.62,,,-73.97643280029297,40.68272399902344,-73.9798812866211,40.742923736572266,1,N,1,20.5,0.5,0.5,0.3,4.36,0.0,,26.16,1.0 +2,2016-01-21 11:28:16,2016-01-21 13:00:19,1,15.5,,,-73.87195587158203,40.77406311035156,-73.98580169677734,40.76286697387695,1,N,1,62.5,0.0,0.5,0.3,12.66,0.0,,75.96,1.0 +2,2016-01-17 19:20:27,2016-01-17 19:30:08,1,2.29,,,-73.99925231933594,40.68488693237305,-73.98403930664062,40.66404342651367,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-15 17:28:34,2016-01-15 17:41:15,1,2.01,,,-73.92976379394531,40.756351470947266,-73.89368438720703,40.7542839050293,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-03 16:08:30,2016-01-03 16:18:19,1,1.21,,,-73.87411499023438,40.73508834838867,-73.8885726928711,40.746742248535156,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-03 14:42:08,2016-01-03 14:46:18,1,0.5,,,-73.9466552734375,40.800880432128906,-73.93901062011719,40.799293518066406,1,N,1,4.5,0.0,0.5,0.3,1.59,0.0,,6.89,1.0 +1,2016-01-25 23:44:38,2016-01-25 23:48:56,1,0.9,,,-73.9511947631836,40.71404266357422,-73.93830871582031,40.719234466552734,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-28 01:22:55,2016-01-28 01:26:51,1,0.77,,,-73.9659652709961,40.68334197998047,-73.96018981933594,40.6888313293457,1,N,1,5.0,0.5,0.5,0.3,44.0,0.0,,50.3,1.0 +2,2016-01-05 09:45:05,2016-01-05 09:51:04,1,1.5,,,-73.94050598144531,40.82487869262695,-73.95533752441406,40.80441665649414,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-03 00:05:06,2016-01-03 00:10:22,1,0.9,,,-73.84426879882812,40.7214469909668,-73.85771179199219,40.71965408325195,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-29 17:52:59,2016-01-29 18:04:28,1,1.35,,,-73.89144897460938,40.74674606323242,-73.87821197509766,40.75439453125,1,N,1,8.5,1.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-20 18:50:38,2016-01-20 19:00:45,5,2.23,,,-73.91888427734375,40.75899887084961,-73.88004302978516,40.75756072998047,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-30 01:56:44,2016-01-30 02:13:56,1,2.49,,,-73.96646881103516,40.711326599121094,-73.98036193847656,40.721946716308594,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-20 12:48:46,2016-01-20 13:05:19,1,2.91,,,-73.87870025634766,40.880523681640625,-73.90576171875,40.849483489990234,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-15 08:43:19,2016-01-15 08:46:06,1,0.28,,,-73.95409393310547,40.651432037353516,-73.94956970214844,40.650970458984375,1,N,1,3.5,0.0,0.5,0.3,0.86,0.0,,5.16,1.0 +2,2016-01-13 19:08:20,2016-01-13 19:24:53,5,2.95,,,-73.96802520751953,40.634891510009766,-73.9535903930664,40.66621780395508,1,N,1,13.0,1.0,0.5,0.3,0.01,0.0,,14.81,1.0 +1,2016-01-26 20:27:21,2016-01-26 20:39:11,4,3.2,,,-73.99353790283203,40.68718338012695,-73.97870635986328,40.65790939331055,1,N,1,12.0,0.5,0.5,0.3,6.0,0.0,,19.3,1.0 +2,2016-01-01 21:16:18,2016-01-01 21:32:28,1,2.64,,,-73.96910095214844,40.67714309692383,-74.0006332397461,40.654449462890625,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-28 19:03:27,2016-01-28 19:23:38,1,2.98,,,-73.96651458740234,40.804325103759766,-73.9604263305664,40.775352478027344,1,N,2,15.0,1.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-07 16:05:59,2016-01-07 16:59:44,1,7.1,,,-73.8868179321289,40.74736022949219,-73.86563873291016,40.77092361450195,1,N,2,36.0,1.0,0.5,0.3,0.0,0.0,,37.8,1.0 +1,2016-01-15 17:18:48,2016-01-15 17:23:38,2,1.0,,,-73.9105224609375,40.77623748779297,-73.90013122558594,40.773372650146484,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,,7.3,1.0 +2,2016-01-15 19:56:54,2016-01-15 20:08:00,1,2.45,,,-73.95352935791016,40.79109191894531,-73.97675323486328,40.75932693481445,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-19 22:59:01,2016-01-19 23:01:13,1,0.39,,,-73.95401763916016,40.71403884887695,-73.94901275634766,40.71114730834961,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-01 14:37:58,2016-01-01 14:46:35,1,3.0,,,-73.99276733398438,40.69801712036133,-74.01284790039062,40.702274322509766,1,N,1,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-18 17:28:36,2016-01-18 17:34:01,1,0.9,,,-73.99006652832031,40.66304397583008,-73.99092102050781,40.66892623901367,1,N,1,5.5,0.0,0.5,0.3,1.58,0.0,,7.88,1.0 +2,2016-01-06 10:06:50,2016-01-06 10:23:48,2,3.64,,,-73.9984359741211,40.68174362182617,-74.009765625,40.70832443237305,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-02 18:32:41,2016-01-02 18:51:59,1,3.11,,,-73.95176696777344,40.809452056884766,-73.92732238769531,40.8067741394043,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +1,2016-01-13 19:26:37,2016-01-13 19:33:19,1,1.1,,,-73.96366119384766,40.67716979980469,-73.96861267089844,40.692012786865234,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-02 23:34:51,2016-01-02 23:44:41,1,1.88,,,-73.93075561523438,40.6706657409668,-73.96500396728516,40.6732292175293,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-11 07:57:59,2016-01-11 08:33:35,1,5.08,,,-73.95490264892578,40.73457336425781,-74.00436401367188,40.716896057128906,1,N,2,24.0,0.0,0.5,0.3,0.0,0.0,,24.8,1.0 +1,2016-01-29 17:06:16,2016-01-29 17:14:49,3,1.6,,,-73.94959259033203,40.80701446533203,-73.93754577636719,40.82599639892578,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-20 21:32:57,2016-01-20 21:36:17,1,0.5,,,-73.94517517089844,40.80807113647461,-73.93798828125,40.808773040771484,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-30 18:43:42,2016-01-30 19:01:26,1,2.4,,,-73.92963409423828,40.68531799316406,-73.95086669921875,40.66646194458008,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-08 17:10:29,2016-01-08 17:57:01,4,8.7,,,-73.9942398071289,40.703102111816406,-73.95512390136719,40.72752380371094,1,N,2,33.0,1.0,0.5,0.3,0.0,0.0,,34.8,1.0 +2,2016-01-18 15:20:38,2016-01-18 15:26:26,1,0.75,,,-73.9153823852539,40.764060974121094,-73.92269134521484,40.75545883178711,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-08 20:51:02,2016-01-08 20:56:55,1,1.46,,,-73.90547943115234,40.81779861450195,-73.91009521484375,40.833152770996094,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-22 02:51:41,2016-01-22 02:58:29,1,1.3,,,-73.91936492919922,40.76591110229492,-73.91938018798828,40.778343200683594,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-28 23:38:44,2016-01-28 23:47:37,1,1.43,,,-73.9574203491211,40.68150329589844,-73.9694595336914,40.689476013183594,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-30 20:06:29,2016-01-30 20:24:43,1,2.98,,,-73.98736572265625,40.69121551513672,-73.93710327148438,40.69228744506836,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-15 18:36:16,2016-01-15 18:47:24,4,1.34,,,-73.91809844970703,40.76011657714844,-73.9233627319336,40.7436637878418,1,N,1,9.0,1.0,0.5,0.3,1.0,0.0,,11.8,1.0 +2,2016-01-30 22:48:25,2016-01-31 00:00:00,1,6.14,,,-73.94947052001953,40.801856994628906,-73.8936996459961,40.866676330566406,1,N,1,24.0,0.5,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-22 10:29:29,2016-01-22 10:39:07,1,1.76,,,-73.97417449951172,40.65431213378906,-73.9727783203125,40.673728942871094,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-17 03:13:36,2016-01-17 03:21:08,1,1.13,,,-73.88674926757812,40.74745178222656,-73.90849304199219,40.75408172607422,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-13 22:53:13,2016-01-13 23:03:47,1,2.26,,,-73.93356323242188,40.70491409301758,-73.9314956665039,40.683204650878906,1,N,1,10.0,0.5,0.5,0.3,1.58,0.0,,12.88,1.0 +2,2016-01-08 17:09:18,2016-01-08 17:32:13,1,4.12,,,-73.95263671875,40.72700119018555,-73.99629974365234,40.72398376464844,1,N,2,17.5,1.0,0.5,0.3,0.0,0.0,,19.3,1.0 +1,2016-01-19 05:42:45,2016-01-19 05:57:21,1,1.4,,,-73.95272064208984,40.80796813964844,-73.94306182861328,40.79950714111328,5,N,2,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +2,2016-01-15 14:25:53,2016-01-15 14:44:45,1,2.18,,,-73.89997863769531,40.86235046386719,-73.88650512695312,40.841400146484375,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-28 00:20:18,2016-01-28 00:22:44,2,0.6,,,-73.9964370727539,40.66215896606445,-74.00350189208984,40.655433654785156,1,N,1,4.5,0.5,0.5,0.3,1.2,0.0,,7.0,1.0 +2,2016-01-04 08:20:47,2016-01-04 08:23:20,1,0.37,,,-73.90812683105469,40.771183013916016,-73.91241455078125,40.77473831176758,1,N,1,3.5,0.0,0.5,0.3,1.29,0.0,,5.59,1.0 +2,2016-01-30 01:45:11,2016-01-30 01:51:07,5,1.42,,,-73.9172592163086,40.761051177978516,-73.91651916503906,40.74459457397461,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-07 08:26:34,2016-01-07 08:53:40,1,11.51,,,-73.82720184326172,40.711578369140625,-73.92511749267578,40.807498931884766,1,N,1,33.5,0.0,0.5,0.3,11.95,5.54,,51.79,1.0 +1,2016-01-09 03:47:34,2016-01-09 03:53:58,1,1.4,,,-73.91814422607422,40.77015686035156,-73.91779327392578,40.755226135253906,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-08 22:54:59,2016-01-08 23:08:20,1,2.14,,,-73.96240234375,40.710018157958984,-73.98571014404297,40.719783782958984,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-03 07:38:45,2016-01-03 07:41:45,1,0.78,,,-73.9549560546875,40.80503463745117,-73.96250915527344,40.80485153198242,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-11 19:51:13,2016-01-11 20:01:50,1,1.75,,,-73.89095306396484,40.74681854248047,-73.86949920654297,40.757118225097656,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-26 07:31:57,2016-01-26 08:13:43,1,5.9,,,-73.93684387207031,40.812461853027344,-73.97419738769531,40.746952056884766,5,N,2,20.0,0.0,0.0,0,0.0,0.0,,20.0,2.0 +2,2016-01-09 13:28:12,2016-01-09 13:31:45,1,0.64,,,-73.91129302978516,40.7445182800293,-73.92163848876953,40.743743896484375,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-03 12:42:09,2016-01-03 12:47:27,1,1.5,,,-73.96272277832031,40.717403411865234,-73.95143127441406,40.731143951416016,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-29 23:19:16,2016-01-29 23:27:03,1,1.35,,,-73.99760437011719,40.67878723144531,-73.98795318603516,40.686527252197266,1,N,1,7.0,0.5,0.5,0.3,2.49,0.0,,10.79,1.0 +2,2016-01-07 21:24:59,2016-01-07 21:31:07,1,1.05,,,-73.9488296508789,40.813385009765625,-73.95464324951172,40.800533294677734,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-05 00:23:19,2016-01-05 00:28:57,1,0.76,,,-73.95800018310547,40.72174835205078,-73.9611587524414,40.71440124511719,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-13 21:09:32,2016-01-13 21:12:25,1,0.4,,,-73.94551086425781,40.79892349243164,-73.93971252441406,40.79854202270508,1,N,1,4.0,0.5,0.5,0.3,0.01,0.0,,5.31,1.0 +2,2016-01-19 23:33:13,2016-01-19 23:56:13,1,7.13,,,-73.92530822753906,40.76188659667969,-73.90096282958984,40.69856643676758,1,N,1,23.5,0.5,0.5,0.3,4.96,0.0,,29.76,1.0 +1,2016-01-12 22:59:08,2016-01-12 23:01:26,1,0.4,,,-73.87276458740234,40.74903106689453,-73.8802719116211,40.74810028076172,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-30 18:16:56,2016-01-30 18:35:53,1,5.0,,,-73.9944839477539,40.69804382324219,-73.99030303955078,40.72348403930664,1,N,1,18.0,0.0,0.5,0.3,4.7,0.0,,23.5,1.0 +2,2016-01-09 02:12:06,2016-01-09 02:20:51,1,2.39,,,-73.96192169189453,40.71586990356445,-73.92782592773438,40.70188903808594,1,N,1,9.5,0.5,0.5,0.3,3.24,0.0,,14.04,1.0 +2,2016-01-17 09:47:30,2016-01-17 09:52:56,1,1.08,,,-73.94611358642578,40.68025588989258,-73.94538879394531,40.69072723388672,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-12 14:56:33,2016-01-12 15:05:01,1,0.7,,,-73.95391845703125,40.79065704345703,-73.9580078125,40.78225326538086,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-15 21:25:48,2016-01-15 21:42:22,1,7.55,,,-73.987060546875,40.68787384033203,-73.96311950683594,40.7618408203125,1,N,1,22.5,0.5,0.5,0.3,4.76,0.0,,28.56,1.0 +1,2016-01-14 05:45:34,2016-01-14 06:00:25,3,3.1,,,-73.9498062133789,40.80213165283203,-73.98200225830078,40.778770446777344,1,N,1,13.0,0.5,0.5,0.3,1.0,0.0,,15.3,1.0 +2,2016-01-17 07:41:33,2016-01-17 08:01:35,1,6.4,,,-73.94290924072266,40.78998947143555,-74.00096893310547,40.75743865966797,1,N,1,21.0,0.0,0.5,0.3,4.36,0.0,,26.16,1.0 +2,2016-01-21 00:55:23,2016-01-21 01:02:55,1,1.77,,,-73.96630096435547,40.71295928955078,-73.94031524658203,40.71570587158203,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-17 19:15:26,2016-01-17 19:19:14,1,0.66,,,-73.95750427246094,40.71781921386719,-73.96341705322266,40.712181091308594,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,,6.3,1.0 +1,2016-01-26 07:37:12,2016-01-26 07:37:24,1,0.0,,,-73.94371795654297,40.815452575683594,-73.94371795654297,40.815452575683594,1,N,3,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-28 17:04:44,2016-01-28 17:18:24,1,2.5,,,-73.91787719726562,40.659175872802734,-73.95520782470703,40.66836166381836,1,N,1,11.5,1.0,0.5,0.3,1.0,0.0,,14.3,1.0 +2,2016-01-22 21:05:19,2016-01-22 21:09:27,1,0.82,,,-73.95924377441406,40.80867385864258,-73.96046447753906,40.79983139038086,1,N,1,5.0,0.5,0.5,0.3,1.89,0.0,,8.19,1.0 +2,2016-01-15 19:41:28,2016-01-15 20:00:21,1,3.72,,,-73.88189697265625,40.880271911621094,-73.92333984375,40.86381149291992,1,N,2,15.5,1.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-15 15:33:57,2016-01-15 16:03:42,1,3.4,,,-73.99442291259766,40.688777923583984,-73.9422607421875,40.68418884277344,1,N,1,18.5,0.0,0.5,0.3,3.86,0.0,,23.16,1.0 +2,2016-01-17 20:12:20,2016-01-17 20:16:02,6,0.98,,,-73.90538024902344,40.74531555175781,-73.88777923583984,40.74358367919922,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-29 22:44:24,2016-01-29 22:56:48,2,5.57,,,-73.8620376586914,40.73044204711914,-73.88694763183594,40.764278411865234,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-09 12:03:28,2016-01-09 12:20:49,1,4.7,,,-73.98516082763672,40.678218841552734,-73.96159362792969,40.71402359008789,1,N,1,17.0,0.0,0.5,0.3,1.5,0.0,,19.3,1.0 +1,2016-01-22 19:31:35,2016-01-22 19:48:35,1,5.1,,,-73.95538330078125,40.81998062133789,-73.97895812988281,40.76586151123047,1,N,1,18.0,1.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-25 15:14:50,2016-01-25 15:37:35,2,1.77,,,-73.95221710205078,40.78986358642578,-73.96331787109375,40.774593353271484,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-24 20:06:59,2016-01-24 20:15:50,1,1.7,,,-73.98419189453125,40.66814422607422,-73.97816467285156,40.6554069519043,1,N,1,8.0,0.5,0.5,0.3,2.5,0.0,,11.8,1.0 +2,2016-01-06 11:10:27,2016-01-06 11:18:11,1,1.1,,,-73.88555145263672,40.74592971801758,-73.89849090576172,40.749481201171875,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-07 14:34:41,2016-01-07 14:52:28,1,1.31,,,-73.9449691772461,40.749874114990234,-73.93112182617188,40.744388580322266,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-29 22:13:06,2016-01-29 22:22:30,1,2.4,,,-73.98632049560547,40.66932678222656,-73.97418212890625,40.64521408081055,1,N,1,10.0,0.5,0.5,0.3,2.8,0.0,,14.1,1.0 +2,2016-01-02 19:24:14,2016-01-02 19:25:32,1,0.27,,,-73.90752410888672,40.773887634277344,-73.90181732177734,40.7730712890625,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-02 19:09:05,2016-01-02 19:47:35,5,17.78,,,-73.98974609375,40.70232009887695,-73.78974914550781,40.64305114746094,1,N,1,49.5,0.0,0.5,0.3,10.06,0.0,,60.36,1.0 +2,2016-01-17 04:25:14,2016-01-17 04:28:54,1,0.79,,,-73.95707702636719,40.712100982666016,-73.94485473632812,40.71711349487305,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-10 23:51:12,2016-01-11 00:02:02,1,3.47,,,-73.93580627441406,40.678890228271484,-73.977783203125,40.665958404541016,1,N,1,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-13 14:06:41,2016-01-13 14:15:45,1,0.87,,,-73.97557067871094,40.68358612060547,-73.98461151123047,40.6915397644043,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-21 02:06:03,2016-01-21 02:09:47,1,0.71,,,-73.90343475341797,40.74545669555664,-73.89391326904297,40.74338150024414,1,N,1,5.0,0.5,0.5,0.3,1.58,0.0,,7.88,1.0 +2,2016-01-22 15:04:54,2016-01-22 15:10:25,1,0.87,,,-73.93698120117188,40.819576263427734,-73.94770050048828,40.80995559692383,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-07 08:31:40,2016-01-07 08:38:14,1,1.1,,,-73.96475982666016,40.80689239501953,-73.9545669555664,40.805870056152344,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,,8.75,1.0 +1,2016-01-16 19:05:23,2016-01-16 19:13:59,1,1.5,,,-73.97602081298828,40.68400573730469,-73.9715805053711,40.69635772705078,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-03 11:36:56,2016-01-03 11:40:10,2,0.42,,,-73.9320297241211,40.851558685302734,-73.9344253540039,40.8553466796875,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-01 05:28:14,2016-01-01 05:32:34,1,0.8,,,-73.91792297363281,40.74298858642578,-73.91210174560547,40.747249603271484,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-21 12:45:27,2016-01-21 12:48:48,2,1.21,,,-73.93380737304688,40.80257797241211,-73.94351196289062,40.78773880004883,1,N,1,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-10 18:37:22,2016-01-10 18:48:25,1,3.37,,,-73.8438491821289,40.72117233276367,-73.82783508300781,40.75214767456055,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-26 22:04:19,2016-01-26 22:09:13,1,0.66,,,-73.8983383178711,40.74961853027344,-73.89765167236328,40.755271911621094,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-22 07:27:24,2016-01-22 07:34:30,1,1.06,,,-73.93281555175781,40.7601318359375,-73.916748046875,40.76112365722656,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-26 20:38:54,2016-01-26 20:46:24,1,1.18,,,-73.94388580322266,40.815406799316406,-73.95355224609375,40.82036209106445,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-18 04:14:37,2016-01-18 04:16:04,1,0.63,,,-73.94607543945312,40.78973388671875,-73.94010162353516,40.79777526855469,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-11 19:07:30,2016-01-11 19:17:42,1,1.52,,,-73.95723724365234,40.68159103393555,-73.97994232177734,40.6850700378418,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-20 12:30:04,2016-01-20 12:42:38,1,2.14,,,-73.96187591552734,40.805545806884766,-73.93738555908203,40.8016357421875,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-15 23:11:21,2016-01-15 23:15:50,1,0.7,,,-73.89112091064453,40.746883392333984,-73.89073181152344,40.7537841796875,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-06 11:05:00,2016-01-06 11:07:26,1,0.8,,,-73.84428405761719,40.721317291259766,-73.85086822509766,40.71066665649414,1,N,1,4.5,0.0,0.5,0.3,1.59,0.0,,6.89,1.0 +1,2016-01-11 20:15:38,2016-01-11 20:18:51,1,0.7,,,-73.94508361816406,40.80828857421875,-73.93657684326172,40.81226348876953,1,N,4,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-20 07:40:47,2016-01-20 08:07:12,1,6.4,,,-73.93766021728516,40.85537338256836,-73.9827651977539,40.78252029418945,1,N,1,24.0,0.0,0.5,0.3,6.2,0.0,,31.0,1.0 +2,2016-01-18 03:52:30,2016-01-18 04:10:41,1,3.94,,,-73.9574966430664,40.72229766845703,-73.98896026611328,40.72757339477539,1,N,1,13.5,0.5,0.5,0.3,6.0,0.0,,20.8,1.0 +2,2016-01-11 12:58:50,2016-01-11 13:05:52,1,1.22,,,-73.94206237792969,40.84177780151367,-73.93958282470703,40.85349655151367,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,,8.8,1.0 +2,2016-01-19 13:29:50,2016-01-19 14:04:29,1,5.61,,,-73.950439453125,40.70689010620117,-73.97611236572266,40.75110626220703,1,N,1,27.0,0.0,0.5,0.3,3.5,0.0,,31.3,1.0 +2,2016-01-26 23:15:22,2016-01-26 23:18:09,2,0.56,,,-73.95573425292969,40.719703674316406,-73.95378875732422,40.725467681884766,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-22 17:46:10,2016-01-22 18:02:02,1,3.16,,,-73.98716735839844,40.69390869140625,-73.9931640625,40.730003356933594,1,N,2,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-12 20:07:26,2016-01-13 19:49:15,1,4.06,,,-73.96218872070312,40.80546569824219,-73.9376449584961,40.85215759277344,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-01 23:13:45,2016-01-01 23:32:45,1,11.05,,,-73.94043731689453,40.800167083740234,-73.83676147460938,40.88502883911133,1,N,1,31.5,0.5,0.5,0.3,0.0,0.0,,32.8,1.0 +2,2016-01-19 21:49:47,2016-01-19 21:54:32,1,0.8,,,-73.83055114746094,40.713443756103516,-73.83287048339844,40.704402923583984,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-25 14:16:36,2016-01-25 14:33:43,1,3.7,,,-73.8272933959961,40.852760314941406,-73.85057830810547,40.89556121826172,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-14 18:32:59,2016-01-14 19:07:46,1,5.09,,,-73.93997955322266,40.679901123046875,-74.00072479248047,40.7170524597168,1,N,1,25.5,1.0,0.5,0.3,0.0,0.0,,27.3,1.0 +1,2016-01-14 14:30:02,2016-01-14 14:34:36,5,0.7,,,-73.91192626953125,40.76763916015625,-73.91664123535156,40.77130889892578,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-14 15:02:37,2016-01-14 15:32:22,1,10.83,,,-73.98896026611328,40.691932678222656,-73.86511993408203,40.770545959472656,1,N,1,35.5,0.0,0.5,0.3,7.26,0.0,,43.56,1.0 +2,2016-01-02 20:42:52,2016-01-02 20:50:49,1,1.53,,,-73.94886779785156,40.82884216308594,-73.96062469482422,40.809879302978516,1,N,1,8.0,0.5,0.5,0.3,2.79,0.0,,12.09,1.0 +2,2016-01-12 16:53:40,2016-01-12 18:07:47,1,16.89,,,-73.78376770019531,40.776371002197266,-73.88824462890625,40.662635803222656,1,N,1,62.5,1.0,0.5,0.3,5.0,0.0,,69.3,1.0 +2,2016-01-08 16:44:55,2016-01-08 16:51:30,1,1.17,,,-73.99147033691406,40.69145202636719,-74.0006332397461,40.67713928222656,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-06 19:12:17,2016-01-06 19:17:16,1,1.0,,,-73.95182037353516,40.74292755126953,-73.95350646972656,40.73746871948242,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-07 08:45:47,2016-01-07 09:01:53,6,1.78,,,-73.95587158203125,40.68121337890625,-73.98422241210938,40.68993377685547,1,N,1,11.5,0.0,0.5,0.3,3.69,0.0,,15.99,1.0 +1,2016-01-14 15:21:38,2016-01-14 15:34:29,3,0.7,,,-73.95858764648438,40.81505584716797,-73.94902801513672,40.809242248535156,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-29 13:26:25,2016-01-29 13:29:48,1,0.74,,,-73.90550231933594,40.877891540527344,-73.91248321533203,40.870033264160156,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-06 00:30:42,2016-01-06 00:33:25,1,0.61,,,-73.94224548339844,40.754085540771484,-73.93550872802734,40.761138916015625,1,N,1,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-02 03:53:26,2016-01-02 03:53:29,1,0.0,,,-73.94636535644531,40.83495330810547,-73.94636535644531,40.8349609375,5,N,1,18.0,0.0,0.0,0,3.6,0.0,,21.6,2.0 +1,2016-01-12 16:32:09,2016-01-12 16:40:14,1,0.9,,,-73.93700408935547,40.80188751220703,-73.93347930908203,40.79478454589844,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-21 18:46:44,2016-01-21 18:54:27,1,1.18,,,-73.889404296875,40.74708938598633,-73.88351440429688,40.75602340698242,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-06 23:10:19,2016-01-06 23:14:15,1,0.72,,,-73.87186431884766,40.675254821777344,-73.8630599975586,40.670230865478516,1,N,1,5.0,0.5,0.5,0.3,1.88,0.0,,8.18,1.0 +2,2016-01-22 12:36:35,2016-01-22 12:40:23,1,0.78,,,-73.92589569091797,40.761383056640625,-73.92922973632812,40.75230026245117,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-04 22:16:18,2016-01-04 22:22:48,1,1.38,,,-73.89091491699219,40.74653625488281,-73.89822387695312,40.75803756713867,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-20 20:58:38,2016-01-20 21:10:51,1,4.94,,,-73.98677062988281,40.70249557495117,-74.00492095947266,40.65022659301758,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-10 02:51:37,2016-01-10 02:54:17,1,0.55,,,-73.99269104003906,40.68970489501953,-73.99931335449219,40.69328308105469,1,N,1,4.0,0.5,0.5,0.3,4.0,0.0,,9.3,1.0 +2,2016-01-30 12:02:30,2016-01-30 12:09:14,1,0.73,,,-73.9960708618164,40.69076919555664,-74.0013656616211,40.680091857910156,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-02 18:21:24,2016-01-02 18:30:50,1,1.48,,,-73.8913803100586,40.74663543701172,-73.86760711669922,40.74103546142578,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-05 15:45:58,2016-01-05 15:50:45,1,0.41,,,-73.92134094238281,40.76660919189453,-73.91541290283203,40.765995025634766,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-06 09:18:33,2016-01-06 09:24:46,1,0.9,,,-73.98684692382812,40.70161819458008,-73.97505187988281,40.69799041748047,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-03 22:25:15,2016-01-03 22:32:13,1,1.58,,,-73.91437530517578,40.775394439697266,-73.91425323486328,40.75680160522461,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-10 01:22:46,2016-01-10 01:30:57,1,1.65,,,-73.96564483642578,40.71354293823242,-73.9427490234375,40.7074089050293,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-09 16:52:55,2016-01-09 17:07:38,2,2.42,,,-73.91967010498047,40.766075134277344,-73.92391967773438,40.73612594604492,1,N,1,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-30 03:49:11,2016-01-30 03:51:52,1,0.68,,,-73.9790267944336,40.68385314941406,-73.98883056640625,40.685001373291016,1,N,1,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-26 19:45:54,2016-01-26 19:54:55,1,2.14,,,-73.8799057006836,40.879783630371094,-73.88262939453125,40.856082916259766,1,N,1,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-07 21:22:46,2016-01-07 21:36:04,1,2.38,,,-73.91901397705078,40.758949279785156,-73.91188049316406,40.7819938659668,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-15 12:46:02,2016-01-15 12:50:46,1,0.9,,,-73.8707046508789,40.75156784057617,-73.87127685546875,40.76178741455078,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-14 17:46:13,2016-01-14 17:52:22,1,1.33,,,-73.84429931640625,40.72137451171875,-73.8231430053711,40.71507263183594,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-05 18:42:42,2016-01-05 18:59:47,1,1.61,,,-73.86267852783203,40.74990463256836,-73.87291717529297,40.74742126464844,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-20 23:33:31,2016-01-20 23:36:35,1,0.85,,,-73.95740509033203,40.67057800292969,-73.95317840576172,40.66455841064453,1,N,1,4.5,0.5,0.5,0.3,1.5,0.0,,7.3,1.0 +2,2016-01-01 01:01:07,2016-01-01 01:09:26,1,1.68,,,-73.98308563232422,40.68629837036133,-73.98741912841797,40.667850494384766,1,N,1,8.0,0.5,0.5,0.3,2.32,0.0,,11.62,1.0 +2,2016-01-11 08:55:13,2016-01-11 09:24:02,1,8.71,,,-73.9352798461914,40.79619216918945,-73.86162567138672,40.76829528808594,1,N,1,26.0,0.0,0.5,0.3,0.0,0.0,,26.8,1.0 +1,2016-01-02 16:49:33,2016-01-02 17:28:31,1,6.0,,,-73.97601318359375,40.6837272644043,-73.93798065185547,40.61228942871094,1,N,1,26.5,0.0,0.5,0.3,8.15,0.0,,35.45,1.0 +1,2016-01-19 00:19:08,2016-01-19 00:22:57,1,0.9,,,-73.93579864501953,40.6973762512207,-73.9466323852539,40.6920051574707,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,,7.55,1.0 +2,2016-01-14 12:28:39,2016-01-14 12:43:08,1,2.26,,,-73.86396026611328,40.73308181762695,-73.86089324951172,40.757293701171875,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-07 17:35:23,2016-01-07 17:41:30,1,1.0,,,-73.949951171875,40.78551483154297,-73.96060943603516,40.777435302734375,1,N,1,6.0,1.0,0.5,0.3,1.55,0.0,,9.35,1.0 +1,2016-01-01 21:57:27,2016-01-01 22:04:16,1,1.1,,,-73.9498062133789,40.68635177612305,-73.9330062866211,40.68677520751953,1,N,1,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-03 00:44:17,2016-01-03 00:49:12,1,0.5,,,-73.9449691772461,40.80757141113281,-73.93782043457031,40.803871154785156,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-01 17:41:32,2016-01-01 17:58:19,1,3.6,,,-73.97100067138672,40.69321060180664,-73.95999145507812,40.644378662109375,1,N,1,14.5,1.0,0.5,0.3,3.25,0.0,,19.55,1.0 +1,2016-01-24 17:54:53,2016-01-24 18:03:53,1,1.6,,,-73.98938751220703,40.66523361206055,-74.00827026367188,40.6469612121582,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-03 09:24:53,2016-01-03 09:37:01,1,4.95,,,-74.00007629394531,40.69027328491211,-73.98069763183594,40.717777252197266,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +1,2016-01-13 22:17:23,2016-01-13 22:26:05,1,1.6,,,-73.98130798339844,40.68974685668945,-73.95967102050781,40.69593048095703,1,N,1,8.0,0.5,0.5,0.3,2.3,0.0,,11.6,1.0 +1,2016-01-19 06:44:31,2016-01-19 07:02:54,2,7.0,,,-73.95044708251953,40.82662582397461,-73.90778350830078,40.888343811035156,1,N,2,22.0,0.0,0.5,0.3,0.0,0.0,,22.8,1.0 +1,2016-01-01 08:04:40,2016-01-01 08:12:34,1,1.9,,,-73.93709564208984,40.80461883544922,-73.94686126708984,40.782405853271484,1,N,1,8.5,0.0,0.5,0.3,0.93,0.0,,10.23,1.0 +2,2016-01-16 01:08:31,2016-01-16 01:12:28,2,1.07,,,-73.84400939941406,40.72142028808594,-73.8526382446289,40.70787811279297,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-05 01:18:20,2016-01-05 01:20:15,1,0.19,,,-73.88748168945312,40.74730682373047,-73.89138793945312,40.746891021728516,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-01 04:42:45,2016-01-01 04:55:21,1,4.2,,,-74.0170669555664,40.64199447631836,-74.03852844238281,40.61813735961914,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-21 11:27:34,2016-01-21 11:54:12,1,13.21,,,-73.94242858886719,40.81172561645508,-73.8102798461914,40.703433990478516,1,N,2,38.0,0.0,0.5,0.3,0.0,5.54,,44.34,1.0 +1,2016-01-05 21:15:30,2016-01-05 21:20:54,1,1.0,,,-73.98310089111328,40.677581787109375,-73.99320983886719,40.66485595703125,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-28 23:58:16,2016-01-29 00:01:15,1,0.3,,,-73.94304656982422,40.799198150634766,-73.9386215209961,40.799835205078125,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-11 17:54:46,2016-01-11 18:12:49,1,3.64,,,-73.99102783203125,40.692108154296875,-74.01214599609375,40.64683151245117,1,N,1,15.0,1.0,0.5,0.3,1.2,0.0,,18.0,1.0 +2,2016-01-05 06:49:44,2016-01-05 07:00:27,1,2.54,,,-73.9918441772461,40.703330993652344,-74.0134506225586,40.715518951416016,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-26 15:28:55,2016-01-26 15:33:53,1,0.53,,,-73.91726684570312,40.76139450073242,-73.91358947753906,40.75643539428711,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,,6.8,1.0 +2,2016-01-08 17:56:35,2016-01-08 18:08:55,1,1.24,,,-73.93905639648438,40.80516052246094,-73.95726013183594,40.81194305419922,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-08 11:07:16,2016-01-08 11:38:33,1,5.76,,,-73.95882415771484,40.71683883666992,-73.95467376708984,40.769859313964844,1,N,1,23.5,0.0,0.5,0.3,4.0,0.0,,28.3,1.0 +1,2016-01-19 10:51:50,2016-01-19 11:35:45,1,7.3,,,-73.919677734375,40.82600784301758,-73.96318054199219,40.755096435546875,1,N,1,31.0,0.0,0.5,0.3,7.95,0.0,,39.75,1.0 +2,2016-01-10 07:32:44,2016-01-10 07:49:10,1,3.5,,,-73.96289825439453,40.71193313598633,-74.00655364990234,40.731197357177734,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-18 11:39:13,2016-01-18 11:45:28,2,1.14,,,-73.83036804199219,40.759498596191406,-73.81705474853516,40.752689361572266,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-20 11:12:43,2016-01-20 11:36:24,2,7.36,,,-73.86981964111328,40.749000549316406,-73.95624542236328,40.74756622314453,1,N,1,24.5,0.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-27 16:31:32,2016-01-27 17:07:53,3,3.72,,,-73.95198059082031,40.725677490234375,-73.9498519897461,40.68144989013672,1,N,1,22.5,1.0,0.5,0.3,6.08,0.0,,30.38,1.0 +2,2016-01-25 18:57:54,2016-01-25 19:07:22,1,1.54,,,-73.97713470458984,40.681400299072266,-73.98767852783203,40.66360092163086,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-02 11:57:35,2016-01-02 12:06:36,1,2.83,,,-73.88594055175781,40.75556564331055,-73.91093444824219,40.761898040771484,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +1,2016-01-01 15:05:37,2016-01-01 15:34:37,1,6.4,,,-73.95140075683594,40.68980407714844,-73.94186401367188,40.59994888305664,1,N,1,24.5,0.0,0.5,0.3,0.0,0.0,,25.3,1.0 +1,2016-01-24 22:00:51,2016-01-24 22:08:28,1,1.2,,,-73.94866943359375,40.829105377197266,-73.9468994140625,40.81608963012695,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-15 20:11:11,2016-01-15 20:11:59,1,0.0,,,-73.9923095703125,40.68980407714844,-73.99254608154297,40.68952178955078,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-29 14:31:53,2016-01-29 14:44:01,1,1.36,,,-73.95381927490234,40.78706741333008,-73.95323944091797,40.77265930175781,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-10 12:56:58,2016-01-10 13:15:19,1,7.45,,,-73.89836883544922,40.66733932495117,-73.9205551147461,40.61094284057617,1,N,1,23.0,0.0,0.5,0.3,5.95,0.0,,29.75,1.0 +2,2016-01-28 22:21:17,2016-01-28 22:35:52,1,2.26,,,-73.82972717285156,40.75956344604492,-73.83331298828125,40.78325271606445,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-22 23:54:35,2016-01-23 00:09:33,1,3.4,,,-73.92166900634766,40.76650619506836,-73.88313293457031,40.74787902832031,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-07 09:10:41,2016-01-07 09:35:27,1,7.8,,,-73.98981475830078,40.690101623535156,-73.96737670898438,40.76106643676758,1,N,1,25.5,0.0,0.5,0.3,7.85,0.0,,34.15,1.0 +2,2016-01-18 12:29:29,2016-01-18 12:35:03,1,0.7,,,-73.97441864013672,40.68001174926758,-73.98030853271484,40.68519592285156,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-04 21:08:54,2016-01-04 21:12:57,1,0.67,,,-73.94026947021484,40.798011779785156,-73.93038177490234,40.7961311340332,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-12 01:10:57,2016-01-12 01:15:37,1,1.03,,,-73.88861083984375,40.747398376464844,-73.87763214111328,40.754432678222656,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-27 02:21:29,2016-01-27 02:39:48,1,5.0,,,-73.99466705322266,40.68056869506836,-73.91947937011719,40.70446014404297,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +1,2016-01-10 12:20:14,2016-01-10 12:35:02,2,3.3,,,-73.95213317871094,40.80386734008789,-73.97389221191406,40.7647590637207,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-21 21:27:50,2016-01-21 21:34:13,5,1.03,,,-73.9223861694336,40.76732635498047,-73.9153060913086,40.75737380981445,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-20 19:00:18,2016-01-20 19:04:35,1,0.72,,,-73.94392395019531,40.7120361328125,-73.94281005859375,40.70158386230469,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-01 02:23:59,2016-01-01 02:29:47,1,2.06,,,-73.9422378540039,40.82240676879883,-73.93418884277344,40.84445571899414,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-14 19:32:17,2016-01-14 19:41:05,1,1.68,,,-73.930908203125,40.76616287231445,-73.94351959228516,40.74701690673828,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-25 07:33:08,2016-01-25 08:15:12,1,6.94,,,-73.9723892211914,40.67840576171875,-73.98666381835938,40.70405578613281,1,N,1,28.0,0.0,0.5,0.3,5.76,0.0,,34.56,1.0 +2,2016-01-18 18:51:11,2016-01-18 18:54:59,2,0.73,,,-73.96136474609375,40.8021354675293,-73.9697265625,40.80004119873047,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-13 20:28:38,2016-01-13 20:54:18,1,6.02,,,-73.91683959960938,40.7647819519043,-73.99372100830078,40.74155807495117,1,N,1,22.0,0.5,0.5,0.3,2.7,0.0,,26.0,1.0 +2,2016-01-04 11:24:48,2016-01-04 12:01:15,1,10.63,,,-73.86795806884766,40.744937896728516,-73.89828491210938,40.655941009521484,1,N,1,36.0,0.0,0.5,0.3,2.0,0.0,,38.8,1.0 +2,2016-01-06 08:11:08,2016-01-06 08:32:56,1,2.5,,,-73.95303344726562,40.791690826416016,-73.95476531982422,40.7877082824707,1,N,1,14.5,0.0,0.5,0.3,2.0,0.0,,17.3,1.0 +2,2016-01-18 07:51:42,2016-01-18 08:15:30,1,6.46,,,-73.88190460205078,40.7349853515625,-73.96936798095703,40.75398635864258,1,N,2,21.5,0.0,0.5,0.3,0.0,0.0,,22.3,1.0 +2,2016-01-18 02:12:46,2016-01-18 02:22:48,2,2.61,,,-73.9719467163086,40.693275451660156,-73.95804595947266,40.7187385559082,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-28 19:52:19,2016-01-28 20:08:31,1,6.66,,,-73.94023132324219,40.840816497802734,-73.95174407958984,40.765811920166016,1,N,2,20.5,1.0,0.5,0.3,0.0,0.0,,22.3,1.0 +2,2016-01-10 16:09:04,2016-01-10 16:17:55,1,0.94,,,-73.98627471923828,40.69276809692383,-73.9941177368164,40.68606948852539,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-27 20:42:55,2016-01-27 20:46:01,1,0.48,,,-73.96287536621094,40.804222106933594,-73.95854187011719,40.810203552246094,1,N,1,4.0,0.5,0.5,0.3,0.6,0.0,,5.9,1.0 +2,2016-01-13 01:57:19,2016-01-13 02:00:22,1,0.73,,,-73.9388656616211,40.80521011352539,-73.9455795288086,40.8095703125,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-05 14:07:28,2016-01-05 14:16:44,1,1.6,,,-73.9778060913086,40.689849853515625,-73.95745849609375,40.685428619384766,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-13 18:16:47,2016-01-13 18:34:06,1,3.63,,,-73.94247436523438,40.84185028076172,-73.97063446044922,40.79891586303711,1,N,1,15.0,1.0,0.5,0.3,3.36,0.0,,20.16,1.0 +2,2016-01-26 20:36:17,2016-01-26 20:50:16,1,4.5,,,-73.93656921386719,40.820518493652344,-73.90060424804688,40.86027526855469,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +1,2016-01-10 01:55:44,2016-01-10 02:08:10,1,3.9,,,-73.91883087158203,40.8438835144043,-73.91922760009766,40.80666732788086,5,N,2,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +2,2016-01-24 20:56:42,2016-01-24 21:05:29,1,1.39,,,-73.9813003540039,40.689884185791016,-73.99565887451172,40.692161560058594,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-21 08:18:47,2016-01-21 08:44:21,1,3.94,,,-73.94902801513672,40.80512619018555,-73.96865844726562,40.75847625732422,1,N,1,18.0,0.0,0.5,0.3,3.76,0.0,,22.56,1.0 +2,2016-01-15 00:32:02,2016-01-15 00:35:34,1,0.89,,,-73.95584869384766,40.71742248535156,-73.94561767578125,40.725399017333984,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-22 09:48:05,2016-01-22 09:58:53,2,3.06,,,-73.9954605102539,40.68321228027344,-74.0157699584961,40.712066650390625,1,N,1,12.0,0.0,0.5,0.3,3.67,5.54,,22.01,1.0 +2,2016-01-03 18:05:36,2016-01-03 18:16:37,1,3.46,,,-73.95281219482422,40.72723388671875,-73.98861694335938,40.71885299682617,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-05 02:13:19,2016-01-05 02:24:00,1,2.31,,,-73.96913146972656,40.689483642578125,-73.94632720947266,40.674232482910156,1,N,1,10.0,0.5,0.5,0.3,2.82,0.0,,14.12,1.0 +2,2016-01-19 04:04:01,2016-01-19 04:19:37,1,6.49,,,-73.95700073242188,40.74632263183594,-73.98672485351562,40.703956604003906,1,N,1,20.0,0.5,0.5,0.3,4.26,0.0,,25.56,1.0 +2,2016-01-20 19:41:49,2016-01-20 19:48:47,5,1.43,,,-73.94415283203125,40.80058670043945,-73.94701385498047,40.815025329589844,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-29 23:10:58,2016-01-29 23:19:39,1,1.89,,,-73.92144775390625,40.69865036010742,-73.94251251220703,40.68644332885742,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-12 14:02:57,2016-01-12 14:07:28,1,1.2,,,-73.94024658203125,40.7892951965332,-73.94316864013672,40.80175018310547,1,N,1,6.0,0.0,0.5,0.3,2.0,0.0,,8.8,1.0 +2,2016-01-16 15:10:12,2016-01-16 15:21:19,1,1.77,,,-73.9762954711914,40.673316955566406,-73.99512481689453,40.68385314941406,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-02 18:44:51,2016-01-02 18:54:38,2,1.92,,,-73.90480041503906,40.81525802612305,-73.93049621582031,40.8210334777832,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-04 08:51:03,2016-01-04 09:24:43,1,8.05,,,-73.94490051269531,40.82395553588867,-73.98905944824219,40.74383544921875,1,N,2,29.5,0.0,0.5,0.3,0.0,0.0,,30.3,1.0 +1,2016-01-28 21:05:41,2016-01-28 21:15:44,1,2.5,,,-73.98682403564453,40.702598571777344,-73.95265197753906,40.6949577331543,1,N,1,10.5,0.5,0.5,0.3,2.35,0.0,,14.15,1.0 +1,2016-01-04 22:49:34,2016-01-04 22:58:21,1,2.6,,,-73.83000946044922,40.7137565612793,-73.79495239257812,40.72799301147461,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-21 22:27:57,2016-01-21 22:36:47,1,1.99,,,-73.94841766357422,40.7452278137207,-73.92359161376953,40.764381408691406,1,N,1,9.0,0.5,0.5,0.3,3.09,0.0,,13.39,1.0 +2,2016-01-02 22:25:18,2016-01-02 22:31:44,1,1.18,,,-73.89080047607422,40.7469482421875,-73.88712310791016,40.75994873046875,1,N,1,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 18:43:04,2016-01-01 18:52:06,1,1.47,,,-73.9817886352539,40.687381744384766,-73.9554443359375,40.69078063964844,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-22 19:05:08,2016-01-22 19:09:27,1,0.55,,,-73.94132232666016,40.798500061035156,-73.93257141113281,40.79479217529297,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-07 22:02:41,2016-01-07 22:09:21,1,1.5,,,-73.83038330078125,40.75938034057617,-73.80718994140625,40.75746154785156,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-21 18:09:27,2016-01-21 18:17:50,1,1.17,,,-73.8440933227539,40.7208137512207,-73.84970092773438,40.73603439331055,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-07 14:23:03,2016-01-07 14:35:17,1,3.2,,,-73.93978881835938,40.822025299072266,-73.96958923339844,40.80000305175781,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-07 19:46:24,2016-01-07 19:58:24,1,2.57,,,-73.95820617675781,40.670005798339844,-73.92345428466797,40.65586853027344,1,N,2,11.0,1.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-17 14:18:10,2016-01-17 14:23:09,1,0.83,,,-73.97681427001953,40.681785583496094,-73.9854507446289,40.67028045654297,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-21 02:02:24,2016-01-21 02:10:34,1,1.9,,,-73.9277114868164,40.697914123535156,-73.8987045288086,40.70156478881836,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-16 01:30:19,2016-01-16 01:41:10,2,2.2,,,-73.97330474853516,40.689781188964844,-73.99899291992188,40.684783935546875,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,,12.95,1.0 +2,2016-01-03 04:14:07,2016-01-03 04:28:42,1,8.79,,,-73.92059326171875,40.76808166503906,-73.821533203125,40.70481491088867,1,N,1,26.0,0.5,0.5,0.3,2.73,0.0,,30.03,1.0 +2,2016-01-22 11:27:50,2016-01-22 12:06:39,1,15.6,,,-73.95699310302734,40.74782180786133,-73.7763671875,40.64534378051758,1,N,2,45.0,0.0,0.5,0.3,0.0,0.0,,45.8,1.0 +2,2016-01-19 10:24:55,2016-01-19 10:25:40,1,0.13,,,-73.86210632324219,40.83735656738281,-73.86345672607422,40.83769226074219,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-26 02:37:03,2016-01-26 02:54:42,4,2.89,,,-73.89038848876953,40.747047424316406,-73.85552215576172,40.7411003112793,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-05 12:10:05,2016-01-05 12:14:17,2,0.53,,,-73.98040771484375,40.68525695800781,-73.98722839355469,40.68924331665039,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-09 04:14:25,2016-01-09 04:26:21,1,1.15,,,-73.89653778076172,40.74625015258789,-73.8756103515625,40.74575424194336,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-03 15:38:40,2016-01-03 16:12:21,1,17.35,,,-73.95140838623047,40.80458450317383,-73.78331756591797,40.643798828125,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,,70.01,1.0 +2,2016-01-09 20:21:38,2016-01-09 20:33:46,5,3.48,,,-73.99143981933594,40.685298919677734,-74.0156021118164,40.706634521484375,1,N,1,13.0,0.5,0.5,0.3,2.0,0.0,,16.3,1.0 +2,2016-01-16 20:29:44,2016-01-16 20:41:28,1,1.14,,,-73.98394012451172,40.68654251098633,-73.98329162597656,40.67282485961914,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-12 08:32:52,2016-01-12 09:00:36,1,3.7,,,-73.95171356201172,40.79937744140625,-73.98182678222656,40.756282806396484,1,N,1,18.5,0.0,0.5,0.3,3.85,0.0,,23.15,1.0 +1,2016-01-18 22:34:11,2016-01-18 22:55:39,1,5.7,,,-73.97686767578125,40.688316345214844,-73.99634552001953,40.75830841064453,1,N,2,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-17 22:53:05,2016-01-17 23:09:58,1,4.77,,,-73.94353485107422,40.8104133605957,-73.9791259765625,40.75307846069336,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-29 16:54:40,2016-01-29 17:02:16,1,1.45,,,-73.99779510498047,40.68315887451172,-73.9833984375,40.672813415527344,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-20 18:31:05,2016-01-20 18:39:31,1,1.03,,,-73.97808074951172,40.68684387207031,-73.9688491821289,40.67793655395508,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,,10.56,1.0 +1,2016-01-07 19:37:21,2016-01-07 19:45:39,1,1.3,,,-73.91214752197266,40.82953643798828,-73.9096908569336,40.84480667114258,5,N,2,7.0,0.0,0.0,0,0.0,0.0,,7.0,2.0 +2,2016-01-22 15:23:03,2016-01-22 15:29:51,1,1.56,,,-73.94202423095703,40.812679290771484,-73.9508285522461,40.7941780090332,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-27 11:38:03,2016-01-27 11:57:52,1,1.4,,,-73.95232391357422,40.791324615478516,-73.94459533691406,40.77950668334961,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-14 17:45:05,2016-01-14 17:52:32,5,1.2,,,-73.96607208251953,40.80400085449219,-73.95010375976562,40.806663513183594,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-20 09:52:17,2016-01-20 10:00:35,1,1.37,,,-73.97489929199219,40.67504119873047,-73.98068237304688,40.667911529541016,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-17 21:13:37,2016-01-17 21:34:52,1,3.8,,,-73.95191955566406,40.82462692260742,-73.94983673095703,40.785606384277344,1,N,1,16.5,0.5,0.5,0.3,3.55,0.0,,21.35,1.0 +2,2016-01-05 00:55:32,2016-01-05 01:04:02,1,3.43,,,-73.89098358154297,40.74656295776367,-73.8823471069336,40.76502227783203,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-28 21:40:26,2016-01-28 21:46:14,1,1.32,,,-73.80733489990234,40.700740814208984,-73.78839874267578,40.708824157714844,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-21 21:04:53,2016-01-21 21:20:18,1,2.7,,,-73.9933853149414,40.696495056152344,-73.97886657714844,40.6701774597168,1,N,1,12.0,0.5,0.5,0.3,2.65,0.0,,15.95,1.0 +2,2016-01-17 00:05:00,2016-01-17 00:12:14,1,1.57,,,-73.972412109375,40.67717742919922,-73.96025848388672,40.690486907958984,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +1,2016-01-07 15:29:33,2016-01-07 15:38:03,1,1.2,,,-73.95577239990234,40.69276428222656,-73.95014953613281,40.705665588378906,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-09 11:18:28,2016-01-09 11:30:41,1,4.9,,,-73.93940734863281,40.79471206665039,-73.8675308227539,40.82554626464844,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-25 09:06:36,2016-01-25 09:57:21,1,5.92,,,-73.96076202392578,40.673011779785156,-73.94157409667969,40.675865173339844,1,N,2,29.0,0.0,0.5,0.3,0.0,0.0,,29.8,1.0 +2,2016-01-17 14:51:37,2016-01-17 15:13:45,1,4.24,,,-73.9578857421875,40.67618179321289,-74.01071166992188,40.67197036743164,1,N,1,18.0,0.0,0.5,0.3,5.64,0.0,,24.44,1.0 +2,2016-01-18 13:34:49,2016-01-18 13:46:17,1,4.01,,,-73.9905776977539,40.702674865722656,-73.9781265258789,40.7123908996582,1,N,1,13.5,0.0,0.5,0.3,1.5,0.0,,15.8,1.0 +2,2016-01-07 08:35:44,2016-01-07 08:48:59,1,2.47,,,-73.93539428710938,40.79610824584961,-73.94294738769531,40.82149887084961,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-15 08:37:22,2016-01-15 08:59:31,1,7.1,,,-73.92536163330078,40.83269500732422,-73.84044647216797,40.840797424316406,5,N,2,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +1,2016-01-06 06:14:21,2016-01-06 06:44:21,1,20.2,,,-73.97378540039062,40.69285202026367,-73.78173065185547,40.64853286743164,1,N,1,53.5,0.5,0.5,0.3,10.95,0.0,,65.75,1.0 +2,2016-01-14 18:06:30,2016-01-14 18:14:40,1,1.44,,,-73.99375915527344,40.67194366455078,-73.97391510009766,40.67203140258789,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-21 19:41:44,2016-01-21 19:46:14,1,0.39,,,-73.98126983642578,40.68995666503906,-73.98439025878906,40.686790466308594,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-22 22:10:45,2016-01-22 22:32:05,1,3.6,,,-73.95140838623047,40.65437316894531,-73.92517852783203,40.67270278930664,1,N,1,16.5,0.5,0.5,0.3,3.0,0.0,,20.8,1.0 +2,2016-01-25 20:32:58,2016-01-25 20:40:12,3,1.33,,,-73.93901062011719,40.821598052978516,-73.9202880859375,40.828155517578125,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-20 21:22:04,2016-01-20 21:29:54,1,1.26,,,-73.94894409179688,40.74453353881836,-73.92859649658203,40.752296447753906,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,,10.38,1.0 +2,2016-01-05 19:47:45,2016-01-05 19:53:09,1,0.82,,,-73.95198822021484,40.72538375854492,-73.95967102050781,40.71800994873047,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-27 21:11:11,2016-01-27 21:15:41,1,0.68,,,-73.91812133789062,40.77028274536133,-73.92913055419922,40.775936126708984,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,,7.3,1.0 +1,2016-01-30 18:36:17,2016-01-30 18:39:24,2,0.9,,,-73.98746490478516,40.69133758544922,-73.98475646972656,40.70185852050781,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +1,2016-01-06 20:46:23,2016-01-06 20:49:34,1,0.8,,,-73.95748138427734,40.71812438964844,-73.95442199707031,40.72645568847656,1,N,1,4.5,0.5,0.5,0.3,1.0,0.0,,6.8,1.0 +2,2016-01-22 00:33:11,2016-01-22 00:43:53,1,1.98,,,-73.96063995361328,40.6610221862793,-73.9339599609375,40.67072677612305,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-04 15:41:28,2016-01-04 15:45:05,1,0.9,,,-73.9541244506836,40.803829193115234,-73.94450378417969,40.81390380859375,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-14 13:26:59,2016-01-14 13:42:15,1,2.0,,,-73.9521713256836,40.78959274291992,-73.95819091796875,40.77018737792969,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-30 11:34:46,2016-01-30 11:43:41,1,1.5,,,-73.9428939819336,40.79920959472656,-73.93575286865234,40.816959381103516,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-12 17:24:57,2016-01-12 18:15:01,1,9.8,,,-73.95410919189453,40.78743362426758,-73.95429229736328,40.72032165527344,1,N,1,37.5,1.0,0.5,0.3,7.85,0.0,,47.15,1.0 +2,2016-01-11 16:26:09,2016-01-11 16:41:12,1,3.41,,,-73.99017333984375,40.687156677246094,-74.00292205810547,40.72816848754883,1,N,1,13.5,1.0,0.5,0.3,3.82,0.0,,19.12,1.0 +2,2016-01-19 17:36:23,2016-01-19 17:43:10,1,1.05,,,-73.9415283203125,40.81329345703125,-73.94804382324219,40.80186080932617,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-22 22:29:44,2016-01-22 22:48:28,3,3.7,,,-73.95585632324219,40.68117141723633,-73.93232727050781,40.71077346801758,1,N,1,15.0,0.5,0.5,0.3,3.25,0.0,,19.55,1.0 +1,2016-01-27 18:48:59,2016-01-27 18:58:58,1,0.9,,,-73.82996368408203,40.7137451171875,-73.83235931396484,40.70315170288086,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-06 14:21:23,2016-01-06 14:53:28,1,6.42,,,-73.95465850830078,40.73454666137695,-74.00713348388672,40.740787506103516,1,N,1,25.0,0.0,0.5,0.3,6.45,0.0,,32.25,1.0 +2,2016-01-14 01:49:26,2016-01-14 02:04:50,1,4.3,,,-73.98632049560547,40.68907165527344,-73.91370391845703,40.679298400878906,1,N,1,15.5,0.5,0.5,0.3,3.36,0.0,,20.16,1.0 +2,2016-01-18 02:29:22,2016-01-18 02:37:55,2,1.79,,,-73.93934631347656,40.70509338378906,-73.95315551757812,40.71816635131836,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-03 23:30:07,2016-01-03 23:52:49,1,7.56,,,-73.96638488769531,40.804588317871094,-73.98994445800781,40.73027801513672,1,N,1,25.0,0.5,0.5,0.3,6.58,0.0,,32.88,1.0 +2,2016-01-03 21:27:21,2016-01-03 21:35:42,1,2.82,,,-73.97695922851562,40.67508316040039,-73.97763061523438,40.64534378051758,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-27 18:11:38,2016-01-27 18:17:14,4,0.97,,,-73.94441223144531,40.83491516113281,-73.94551086425781,40.824440002441406,1,N,1,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-09 16:46:36,2016-01-09 16:55:54,2,1.0,,,-73.86883544921875,40.74924850463867,-73.87265014648438,40.759315490722656,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-24 14:37:11,2016-01-24 15:03:21,1,9.48,,,-73.92565155029297,40.82792282104492,-73.99359130859375,40.736026763916016,1,N,2,28.5,0.0,0.5,0.3,0.0,0.0,,29.3,1.0 +2,2016-01-03 20:20:03,2016-01-03 20:38:03,1,4.83,,,-73.97705841064453,40.683631896972656,-73.94994354248047,40.72608947753906,1,N,1,17.5,0.5,0.5,0.3,5.64,0.0,,24.44,1.0 +1,2016-01-08 18:59:41,2016-01-08 19:04:03,1,0.6,,,-73.9518814086914,40.79029846191406,-73.94418334960938,40.7921257019043,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-25 08:34:15,2016-01-25 09:02:17,1,6.62,,,-73.87165069580078,40.835845947265625,-73.8697280883789,40.87947463989258,5,N,2,13.0,0.0,0.0,0,0.0,0.0,,13.0,2.0 +2,2016-01-25 22:14:42,2016-01-25 22:41:13,1,6.36,,,-73.921875,40.75535583496094,-73.96932220458984,40.80018997192383,1,N,1,23.0,0.5,0.5,0.3,5.08,0.0,,29.38,1.0 +2,2016-01-28 08:51:48,2016-01-28 08:56:12,1,0.78,,,-73.91871643066406,40.75923538208008,-73.91104888916016,40.76868438720703,1,N,1,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-28 19:44:23,2016-01-28 19:54:30,1,1.69,,,-73.96726989746094,40.6343879699707,-73.94168853759766,40.64366149902344,1,N,1,9.0,1.0,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-09 10:26:38,2016-01-09 10:42:57,1,5.6,,,-73.94117736816406,40.813846588134766,-73.9717788696289,40.76371765136719,1,N,2,18.5,0.0,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-21 19:37:35,2016-01-21 19:40:49,1,0.63,,,-73.96110534667969,40.71456527709961,-73.96686553955078,40.71072006225586,1,N,1,4.5,1.0,0.5,0.3,1.89,0.0,,8.19,1.0 +2,2016-01-20 09:19:08,2016-01-20 09:25:51,1,1.1,,,-73.95433044433594,40.73036575317383,-73.95929718017578,40.71880340576172,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-18 13:42:00,2016-01-18 13:46:38,1,0.85,,,-73.97332763671875,40.693336486816406,-73.98129272460938,40.68922805786133,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-14 16:53:35,2016-01-14 17:12:42,1,2.4,,,-73.89391326904297,40.754737854003906,-73.89299774169922,40.725746154785156,1,N,2,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-02 15:03:44,2016-01-02 15:13:04,1,1.66,,,-73.9847412109375,40.68682098388672,-73.98070526123047,40.66794204711914,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-13 20:13:38,2016-01-13 20:27:25,1,3.2,,,-73.98355102539062,40.68885040283203,-73.94925689697266,40.66022491455078,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-29 21:58:13,2016-01-29 22:03:36,1,1.52,,,-73.93147277832031,40.765380859375,-73.91378021240234,40.7711296081543,1,N,1,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-22 18:26:56,2016-01-22 19:51:32,1,15.01,,,-73.91809844970703,40.83456039428711,-73.92803192138672,40.83568572998047,5,N,2,15.0,0.0,0.0,0,0.0,0.0,,15.0,2.0 +2,2016-01-06 22:58:48,2016-01-06 23:11:57,1,8.18,,,-73.91438293457031,40.764591217041016,-73.98712921142578,40.71830368041992,1,N,2,23.0,0.5,0.5,0.3,0.0,0.0,,24.3,1.0 +2,2016-01-03 20:40:08,2016-01-03 20:53:44,1,2.16,,,-73.96841430664062,40.67863845825195,-73.98316192626953,40.669097900390625,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-13 19:23:49,2016-01-13 19:27:54,1,0.94,,,-73.94831085205078,40.78951644897461,-73.94718170166016,40.78009796142578,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-09 19:01:13,2016-01-09 19:05:41,1,1.32,,,-73.939208984375,40.80537796020508,-73.95171356201172,40.78789138793945,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-25 08:10:02,2016-01-25 08:22:13,1,1.01,,,-73.9393081665039,40.82148742675781,-73.92310333251953,40.816768646240234,1,N,1,9.0,0.0,0.5,0.3,2.94,0.0,,12.74,1.0 +2,2016-01-05 18:50:13,2016-01-05 18:58:59,1,1.34,,,-73.95783996582031,40.717586517333984,-73.94744110107422,40.71163558959961,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-30 02:03:16,2016-01-30 02:07:39,1,0.99,,,-73.95333862304688,40.65935134887695,-73.95042419433594,40.67162322998047,1,N,1,5.5,0.5,0.5,0.3,5.0,0.0,,11.8,1.0 +2,2016-01-15 08:13:04,2016-01-15 08:15:04,1,0.46,,,-73.94950103759766,40.82257843017578,-73.94530487060547,40.82819366455078,1,N,1,3.5,0.0,0.5,0.3,1.08,0.0,,5.38,1.0 +2,2016-01-02 00:36:15,2016-01-02 00:43:16,1,1.25,,,-73.95995330810547,40.715736389160156,-73.9404067993164,40.71462631225586,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-04 00:38:20,2016-01-04 00:46:42,1,1.4,,,-73.88407897949219,40.747657775878906,-73.85923767089844,40.75164031982422,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-21 22:51:57,2016-01-21 23:01:06,2,2.2,,,-73.9832534790039,40.67292785644531,-74.0080795288086,40.65066146850586,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,,12.95,1.0 +2,2016-01-23 00:40:41,2016-01-23 01:11:47,1,7.21,,,-73.95878601074219,40.650760650634766,-73.93701171875,40.718475341796875,1,N,2,26.0,0.5,0.5,0.3,0.0,0.0,,27.3,1.0 +2,2016-01-14 18:52:37,2016-01-14 18:58:39,1,1.04,,,-73.92174530029297,40.6773681640625,-73.91099548339844,40.68525314331055,1,N,1,6.0,1.0,0.5,0.3,1.95,0.0,,9.75,1.0 +2,2016-01-17 17:24:55,2016-01-17 17:49:57,2,11.98,,,-73.95193481445312,40.79007339477539,-73.8517074584961,40.72857666015625,1,N,1,34.0,0.0,0.5,0.3,0.0,5.54,,40.34,1.0 +1,2016-01-30 07:59:43,2016-01-30 08:11:01,1,3.6,,,-73.98959350585938,40.70249557495117,-73.99756622314453,40.729774475097656,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-25 09:01:16,2016-01-25 09:58:48,1,8.7,,,-73.95744323730469,40.68146514892578,-73.9936752319336,40.74627685546875,1,N,1,40.5,0.0,0.5,0.3,8.25,0.0,,49.55,1.0 +2,2016-01-15 18:52:53,2016-01-15 19:04:54,1,3.98,,,-73.95269775390625,40.727176666259766,-73.98258972167969,40.69613265991211,1,N,1,13.0,1.0,0.5,0.3,2.96,0.0,,17.76,1.0 +2,2016-01-20 21:15:57,2016-01-20 21:22:07,1,1.08,,,-73.97799682617188,40.67280578613281,-73.9910888671875,40.66642379760742,1,N,1,6.5,0.5,0.5,0.3,2.34,0.0,,10.14,1.0 +2,2016-01-20 10:13:29,2016-01-21 00:00:00,1,3.78,,,-73.91897583007812,40.74309158325195,-73.86399841308594,40.7496452331543,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +1,2016-01-02 22:07:57,2016-01-02 22:17:43,2,2.5,,,-73.95140075683594,40.714027404785156,-73.91007232666016,40.70854187011719,1,N,1,10.0,0.5,0.5,0.3,2.8,0.0,,14.1,1.0 +2,2016-01-11 19:09:22,2016-01-11 19:16:05,1,1.02,,,-73.8740005493164,40.75685119628906,-73.87344360351562,40.74524688720703,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,,9.96,1.0 +1,2016-01-17 03:06:43,2016-01-17 03:09:59,1,0.7,,,-73.89559936523438,40.929771423339844,-73.89749145507812,40.93690490722656,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-03 23:37:54,2016-01-03 23:52:39,1,6.43,,,-73.956298828125,40.719146728515625,-73.86727142333984,40.73878860473633,1,N,1,20.0,0.5,0.5,0.3,4.26,0.0,,25.56,1.0 +2,2016-01-28 12:07:37,2016-01-29 00:00:00,1,0.72,,,-73.97791290283203,40.68465042114258,-73.98336029052734,40.69487380981445,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-17 03:59:39,2016-01-17 04:17:03,1,11.87,,,-73.99495697021484,40.68913650512695,-73.86695861816406,40.7708625793457,1,N,2,32.5,0.5,0.5,0.3,0.0,0.0,,33.8,1.0 +2,2016-01-10 17:22:37,2016-01-10 17:25:10,2,0.5,,,-73.95360565185547,40.806907653808594,-73.95819854736328,40.80084228515625,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-24 20:38:55,2016-01-24 21:09:00,1,6.48,,,-73.94647216796875,40.75729751586914,-73.89396667480469,40.69864273071289,1,N,1,24.0,0.5,0.5,0.3,5.06,0.0,,30.36,1.0 +2,2016-01-18 04:19:58,2016-01-18 04:43:21,1,6.05,,,-73.98921203613281,40.66569137573242,-73.9179458618164,40.701045989990234,1,N,2,22.0,0.5,0.5,0.3,0.0,0.0,,23.3,1.0 +1,2016-01-01 02:20:08,2016-01-01 02:28:41,1,2.6,,,-73.84413146972656,40.721229553222656,-73.8109359741211,40.720088958740234,1,N,1,10.0,1.0,0.5,0.3,3.5,0.0,,15.3,1.0 +1,2016-01-05 09:40:50,2016-01-05 10:08:56,1,4.2,,,-73.96891784667969,40.70915603637695,-74.00223541259766,40.718875885009766,1,N,1,20.0,0.0,0.5,0.3,5.2,0.0,,26.0,1.0 +2,2016-01-13 21:27:38,2016-01-13 21:38:38,1,2.99,,,-73.97933959960938,40.66939926147461,-73.95895385742188,40.68529510498047,1,N,1,11.5,0.5,0.5,0.3,3.84,0.0,,16.64,1.0 +2,2016-01-08 14:05:26,2016-01-08 14:40:27,1,9.44,,,-73.84335327148438,40.721431732177734,-73.99333953857422,40.747318267822266,1,N,1,34.0,0.0,0.5,0.3,0.0,5.54,,40.34,1.0 +1,2016-01-16 14:13:50,2016-01-16 14:44:09,3,5.8,,,-73.86917877197266,40.74931716918945,-73.86260223388672,40.682159423828125,1,N,1,24.0,0.0,0.5,0.3,0.0,0.0,,24.8,1.0 +2,2016-01-18 01:57:48,2016-01-18 02:02:51,1,2.22,,,-73.95172882080078,40.71495819091797,-73.98780822753906,40.71860885620117,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,,10.8,1.0 +2,2016-01-01 23:40:22,2016-01-01 23:54:18,1,2.74,,,-73.9126968383789,40.756019592285156,-73.8634262084961,40.753211975097656,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-24 23:24:57,2016-01-24 23:51:31,5,5.77,,,-73.97662353515625,40.6820182800293,-73.89768981933594,40.64230728149414,1,N,1,21.0,0.5,0.5,0.3,6.69,0.0,,28.99,1.0 +1,2016-01-26 11:48:07,2016-01-26 12:02:53,3,2.4,,,-73.97992706298828,40.668678283691406,-73.96427154541016,40.650062561035156,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-06 16:41:44,2016-01-06 16:53:40,1,0.9,,,-73.98617553710938,40.68999481201172,-73.98164367675781,40.69573974609375,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-07 10:11:55,2016-01-07 10:23:01,5,2.03,,,-73.91195678710938,40.744407653808594,-73.94793701171875,40.744991302490234,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,,12.96,1.0 +1,2016-01-06 10:03:01,2016-01-06 10:09:02,1,1.6,,,-73.942626953125,40.827537536621094,-73.93316650390625,40.84737777709961,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 23:40:38,2016-01-09 23:59:13,1,3.79,,,-73.9579086303711,40.72179412841797,-73.95726776123047,40.67259216308594,1,N,1,15.0,0.5,0.5,0.3,3.26,0.0,,19.56,1.0 +2,2016-01-13 19:37:43,2016-01-13 19:51:56,1,1.38,,,-73.90324401855469,40.74589157104492,-73.87996673583984,40.74104690551758,1,N,1,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-14 09:31:34,2016-01-14 09:46:40,1,5.1,,,-73.95433807373047,40.730674743652344,-73.99093627929688,40.695037841796875,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +1,2016-01-17 18:46:26,2016-01-17 19:04:46,1,3.7,,,-73.99195098876953,40.684444427490234,-73.95716857910156,40.653682708740234,1,N,1,15.0,1.0,0.5,0.3,3.35,0.0,,20.15,1.0 +1,2016-01-11 18:44:06,2016-01-11 18:53:19,1,3.5,,,-73.94867706298828,40.72842025756836,-73.98844909667969,40.720062255859375,1,N,1,11.5,1.0,0.5,0.3,3.3,0.0,,16.6,1.0 +2,2016-01-16 22:33:01,2016-01-16 22:38:44,1,0.68,,,-73.93974304199219,40.8054084777832,-73.93960571289062,40.80995559692383,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-16 00:23:42,2016-01-16 00:39:58,1,4.96,,,-73.8843765258789,40.85832214355469,-73.94229125976562,40.82209777832031,1,N,1,17.5,0.5,0.5,0.3,3.0,0.0,,21.8,1.0 +1,2016-01-16 23:11:33,2016-01-16 23:26:50,2,3.7,,,-73.91783142089844,40.77034378051758,-73.86553955078125,40.74636459350586,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-02 19:01:02,2016-01-02 19:13:41,1,1.98,,,-73.94950103759766,40.68030548095703,-73.97018432617188,40.695030212402344,1,N,1,10.0,0.0,0.5,0.3,2.7,0.0,,13.5,1.0 +2,2016-01-01 00:39:55,2016-01-01 00:56:18,1,2.57,,,-73.95063018798828,40.721763610839844,-73.94947814941406,40.717552185058594,1,N,1,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-22 11:43:35,2016-01-22 11:54:42,1,3.89,,,-73.89085388183594,40.862186431884766,-73.83906555175781,40.881988525390625,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-07 15:06:36,2016-01-07 15:21:41,1,5.48,,,-73.82984924316406,40.713680267333984,-73.86781311035156,40.74211502075195,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-08 18:39:14,2016-01-08 18:52:25,1,1.33,,,-73.943359375,40.81087875366211,-73.96061706542969,40.81782913208008,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-21 13:59:58,2016-01-21 14:18:46,1,2.55,,,-73.9447021484375,40.808876037597656,-73.95024871826172,40.78004455566406,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,,17.76,1.0 +1,2016-01-22 22:17:51,2016-01-22 22:25:44,1,1.4,,,-73.95044708251953,40.74384307861328,-73.92851257324219,40.74409866333008,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-26 21:00:59,2016-01-26 21:31:04,2,14.93,,,-73.92999267578125,40.75651168823242,-73.79052734375,40.64398193359375,1,N,1,41.0,0.5,0.5,0.3,8.46,0.0,,50.76,1.0 +2,2016-01-20 19:47:14,2016-01-20 20:08:53,1,3.59,,,-73.96076965332031,40.714988708496094,-73.96426391601562,40.67393112182617,1,N,1,16.0,1.0,0.5,0.3,3.56,0.0,,21.36,1.0 +2,2016-01-14 14:36:52,2016-01-14 14:45:00,3,1.47,,,-73.91960906982422,40.84760284423828,-73.91254425048828,40.8310661315918,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-16 13:25:48,2016-01-16 13:26:57,1,0.32,,,-73.96209716796875,40.805145263671875,-73.96649169921875,40.80403137207031,1,N,1,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-18 14:23:34,2016-01-18 14:45:20,1,5.32,,,-73.949462890625,40.78536605834961,-73.99301147460938,40.75860595703125,1,N,1,20.5,0.0,0.5,0.3,4.26,0.0,,25.56,1.0 +2,2016-01-21 22:33:00,2016-01-21 23:02:03,1,5.08,,,-73.91897583007812,40.7434196472168,-73.98893737792969,40.74038314819336,1,N,1,22.5,0.5,0.5,0.3,4.76,0.0,,28.56,1.0 +2,2016-01-29 12:04:26,2016-01-29 12:09:21,1,0.46,,,-73.9592514038086,40.67727279663086,-73.95572662353516,40.681114196777344,1,N,1,5.0,0.0,0.5,0.3,2.0,0.0,,7.8,1.0 +2,2016-01-17 20:17:10,2016-01-17 20:32:55,1,4.29,,,-73.8441162109375,40.72099685668945,-73.9081039428711,40.70710754394531,1,N,1,15.0,0.5,0.5,0.3,3.26,0.0,,19.56,1.0 +2,2016-01-09 20:52:30,2016-01-09 21:09:45,1,4.42,,,-73.9521713256836,40.72614288330078,-73.99678039550781,40.712162017822266,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +1,2016-01-27 18:08:55,2016-01-27 18:33:13,1,2.4,,,-73.94181823730469,40.70318603515625,-73.9531021118164,40.68061447143555,1,N,1,15.5,1.0,0.5,0.3,25.0,0.0,,42.3,1.0 +2,2016-01-14 12:51:37,2016-01-14 13:08:36,1,5.87,,,-73.98709869384766,40.691951751708984,-73.97395324707031,40.744056701660156,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-05 10:35:05,2016-01-05 10:52:57,1,1.69,,,-73.9392318725586,40.805206298828125,-73.9546127319336,40.783966064453125,1,N,1,12.5,0.0,0.5,0.3,2.0,0.0,,15.3,1.0 +2,2016-01-21 15:47:36,2016-01-21 15:56:47,1,1.33,,,-73.95291137695312,40.79848861694336,-73.9575424194336,40.81131362915039,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-17 18:06:50,2016-01-17 18:25:04,2,3.05,,,-73.95386505126953,40.79068374633789,-73.96231842041016,40.7579345703125,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-17 17:19:04,2016-01-17 17:20:44,1,0.17,,,-73.95709228515625,40.71845626831055,-73.95210266113281,40.7172737121582,1,N,1,3.0,0.0,0.5,0.3,2.0,0.0,,5.8,1.0 +2,2016-01-04 21:41:27,2016-01-04 21:45:11,1,0.82,,,-73.92546081542969,40.76193618774414,-73.93761444091797,40.76481628417969,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-06 19:31:29,2016-01-06 19:34:46,1,0.61,,,-73.91778564453125,40.77004623413086,-73.90782165527344,40.76613235473633,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-11 13:58:12,2016-01-11 14:09:30,1,1.14,,,-73.97451782226562,40.69801712036133,-73.958984375,40.69659423828125,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-07 18:38:23,2016-01-07 18:55:03,3,1.76,,,-73.98616790771484,40.669273376464844,-73.98126220703125,40.68960952758789,1,N,1,11.5,1.0,0.5,0.3,2.66,0.0,,15.96,1.0 +1,2016-01-15 17:58:04,2016-01-15 18:25:32,1,1.5,,,-73.96133422851562,40.806156158447266,-73.93971252441406,40.8052978515625,1,N,2,16.5,1.0,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-10 23:56:43,2016-01-11 00:04:02,1,2.1,,,-73.82975006103516,40.75974655151367,-73.79789733886719,40.762733459472656,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +1,2016-01-18 01:11:24,2016-01-18 01:14:13,2,0.6,,,-73.95309448242188,40.811153411865234,-73.95848083496094,40.808990478515625,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-21 10:18:25,2016-01-21 10:43:37,3,5.0,,,-73.99279022216797,40.693763732910156,-74.00301361083984,40.74937057495117,1,N,1,20.5,0.0,0.5,0.3,3.7,0.0,,25.0,1.0 +2,2016-01-04 19:04:21,2016-01-04 19:07:54,1,0.72,,,-73.98743438720703,40.69242858886719,-73.97821807861328,40.69613265991211,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-26 08:00:27,2016-01-26 08:13:21,1,1.39,,,-73.95469665527344,40.68731689453125,-73.96761322021484,40.698455810546875,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-01 07:30:57,2016-01-01 07:40:22,1,1.91,,,-73.95297241210938,40.82290267944336,-73.94894409179688,40.80268478393555,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-09 09:52:02,2016-01-09 10:02:50,6,5.73,,,-73.8189926147461,40.709251403808594,-73.8396987915039,40.76729965209961,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-13 19:09:07,2016-01-13 19:12:01,1,0.45,,,-73.95648956298828,40.71697235107422,-73.96268463134766,40.71734619140625,1,N,1,4.0,1.0,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-17 23:30:24,2016-01-17 23:43:19,1,2.88,,,-73.99111938476562,40.68938064575195,-73.94910430908203,40.66891098022461,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-22 18:36:08,2016-01-22 18:43:25,1,1.68,,,-74.00946044921875,40.680206298828125,-73.99578857421875,40.68156814575195,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-13 14:32:26,2016-01-13 14:39:15,1,1.39,,,-73.95560455322266,40.81966781616211,-73.96416473388672,40.803077697753906,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-20 15:27:19,2016-01-20 15:48:23,1,2.57,,,-73.94282531738281,40.81161117553711,-73.95021057128906,40.780738830566406,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-01 22:25:29,2016-01-01 22:38:32,5,2.3,,,-73.99449157714844,40.70318603515625,-73.96532440185547,40.69047546386719,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-17 01:04:39,2016-01-17 01:13:14,1,1.8,,,-73.93089294433594,40.65696334838867,-73.92466735839844,40.678802490234375,1,N,1,8.0,0.5,0.5,0.3,2.0,0.0,,11.3,1.0 +1,2016-01-01 04:06:15,2016-01-01 04:21:47,2,2.7,,,-73.93706512451172,40.70927429199219,-73.9581298828125,40.73335266113281,1,N,1,12.0,0.5,0.5,0.3,3.0,0.0,,16.3,1.0 +2,2016-01-05 16:58:57,2016-01-05 17:53:37,1,2.02,,,-73.83435821533203,40.75681686401367,-73.8223648071289,40.76534652709961,1,N,2,30.0,1.0,0.5,0.3,0.0,0.0,,31.8,1.0 +2,2016-01-28 16:19:38,2016-01-28 16:34:17,1,1.66,,,-73.94159698486328,40.817935943603516,-73.96073913574219,40.817970275878906,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-05 12:23:25,2016-01-05 12:37:17,1,3.0,,,-73.9880599975586,40.69040298461914,-73.95379638671875,40.66218948364258,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-13 16:46:42,2016-01-13 17:21:55,1,4.6,,,-73.94927215576172,40.74147033691406,-73.87722778320312,40.74092483520508,1,N,2,24.0,1.0,0.5,0.3,0.0,0.0,,25.8,1.0 +2,2016-01-02 21:12:22,2016-01-02 21:38:24,2,5.92,,,-73.95928955078125,40.71493148803711,-73.98619079589844,40.75697326660156,1,N,2,23.0,0.5,0.5,0.3,0.0,0.0,,24.3,1.0 +1,2016-01-25 20:09:39,2016-01-25 20:17:56,2,1.9,,,-73.97883605957031,40.65085220336914,-73.97180938720703,40.67144775390625,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-09 02:21:33,2016-01-09 02:23:07,1,0.55,,,-73.88324737548828,40.74985122680664,-73.87870025634766,40.754432678222656,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-15 00:45:17,2016-01-15 00:52:27,3,1.14,,,-73.89073181152344,40.747039794921875,-73.8704605102539,40.747161865234375,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-24 13:21:00,2016-01-24 13:29:19,1,1.0,,,-73.96073913574219,40.66047668457031,-73.96337127685547,40.6751823425293,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,,9.35,1.0 +2,2016-01-30 22:52:10,2016-01-30 23:15:14,2,4.92,,,-73.94644927978516,40.806331634521484,-73.97982788085938,40.74923324584961,1,N,2,19.5,0.5,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-23 04:55:15,2016-01-23 05:02:15,1,0.99,,,-73.92157745361328,40.767086029052734,-73.92752075195312,40.77287292480469,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-18 00:00:43,2016-01-18 00:04:54,1,0.79,,,-73.9213638305664,40.7667121887207,-73.9333724975586,40.76887893676758,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-25 19:35:09,2016-01-25 19:45:46,1,1.96,,,-73.93954467773438,40.712242126464844,-73.9051284790039,40.71070098876953,1,N,1,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-30 21:24:40,2016-01-30 21:44:04,1,2.3,,,-73.94268798828125,40.82733154296875,-73.90969848632812,40.83209228515625,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-13 07:35:52,2016-01-13 07:42:26,1,1.08,,,-73.97286224365234,40.693424224853516,-73.98712158203125,40.69391632080078,1,N,1,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 01:38:11,2016-01-01 01:47:31,1,3.51,,,-73.95466613769531,40.68711853027344,-73.95053100585938,40.72785568237305,1,N,1,12.0,0.5,0.5,0.3,2.0,0.0,,15.3,1.0 +2,2016-01-04 09:04:09,2016-01-04 09:27:38,1,5.46,,,-73.98334503173828,40.67268371582031,-73.95710754394531,40.716575622558594,1,N,1,21.0,0.0,0.5,0.3,5.45,0.0,,27.25,1.0 +1,2016-01-15 22:47:00,2016-01-15 23:00:10,1,2.3,,,-73.9734115600586,40.6859016418457,-73.93211364746094,40.69061279296875,1,N,1,11.0,0.5,0.5,0,2.4,0.0,,14.4,1.0 +2,2016-01-30 17:36:19,2016-01-30 17:49:44,2,1.81,,,-73.86961364746094,40.733978271484375,-73.86442565917969,40.7512321472168,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-17 11:23:13,2016-01-17 11:31:22,2,2.15,,,-73.93778991699219,40.812644958496094,-73.94692993164062,40.80570602416992,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-10 19:13:04,2016-01-10 19:21:30,1,1.19,,,-73.91600799560547,40.81998062133789,-73.90780639648438,40.81134796142578,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-20 10:20:50,2016-01-20 10:52:14,1,7.78,,,-73.9626235961914,40.7122802734375,-73.87117767333984,40.774017333984375,1,N,2,28.0,0.0,0.5,0.3,0.0,0.0,,28.8,1.0 +2,2016-01-22 07:42:05,2016-01-22 07:46:49,1,0.71,,,-74.0223388671875,40.66432571411133,-73.94058990478516,40.794795989990234,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-25 19:05:09,2016-01-25 19:10:52,1,0.8,,,-73.95549774169922,40.80430603027344,-73.96580505371094,40.79960632324219,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-12 17:30:08,2016-01-12 17:44:03,1,3.88,,,-73.90845489501953,40.86164093017578,-73.94132995605469,40.82362747192383,1,N,1,14.0,1.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-04 09:15:09,2016-01-04 09:21:07,1,1.1,,,-73.84423065185547,40.7214469909668,-73.84185791015625,40.72952651977539,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-21 17:33:03,2016-01-21 17:58:09,1,3.64,,,-73.96659088134766,40.804054260253906,-73.93350982666016,40.845035552978516,1,N,2,18.0,1.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-03 19:59:25,2016-01-03 20:05:26,1,1.27,,,-73.95785522460938,40.72175979614258,-73.94422149658203,40.72416687011719,1,N,1,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-25 17:01:51,2016-01-25 17:16:29,1,3.11,,,-73.9403305053711,40.83912658691406,-73.96647644042969,40.8040657043457,1,N,1,13.0,1.0,0.5,0.3,3.7,0.0,,18.5,1.0 +2,2016-01-13 09:55:37,2016-01-13 10:15:38,1,4.84,,,-73.92443084716797,40.77422332763672,-73.9742660522461,40.74994659423828,1,N,1,18.0,0.0,0.5,0.3,3.76,0.0,,22.56,1.0 +2,2016-01-13 16:44:28,2016-01-13 17:02:32,2,1.86,,,-73.90650177001953,40.75338363647461,-73.92182159423828,40.76628112792969,1,N,1,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-18 13:19:34,2016-01-18 13:27:41,1,1.16,,,-73.95063781738281,40.80246353149414,-73.95530700683594,40.78850173950195,1,N,1,7.0,0.0,0.5,0.3,3.55,0.0,,11.35,1.0 +2,2016-01-07 15:35:32,2016-01-07 15:38:37,2,0.76,,,-73.97817993164062,40.671024322509766,-73.98226928710938,40.67858123779297,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-21 13:34:09,2016-01-21 13:39:58,1,0.86,,,-73.93850708007812,40.84637451171875,-73.94441986083984,40.834869384765625,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,,7.8,1.0 +1,2016-01-09 13:07:05,2016-01-09 13:27:27,1,5.5,,,-73.93780517578125,40.79267501831055,-73.988037109375,40.76063919067383,1,N,3,19.5,0.0,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-09 11:21:42,2016-01-09 11:30:37,1,1.77,,,-73.92621612548828,40.68302536010742,-73.94722747802734,40.69040298461914,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-18 00:05:07,2016-01-18 00:11:55,5,1.85,,,-73.92912292480469,40.8124885559082,-73.94524383544922,40.79939651489258,1,N,1,7.5,0.5,0.5,0.3,1.88,0.0,,10.68,1.0 +2,2016-01-08 17:19:06,2016-01-08 17:37:00,5,1.94,,,-73.97428894042969,40.68631362915039,-73.94449615478516,40.67464828491211,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-21 17:45:41,2016-01-21 17:55:14,1,1.36,,,-73.95246887207031,40.78955841064453,-73.93894958496094,40.80463409423828,1,N,1,8.5,1.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-25 12:13:57,2016-01-25 13:33:16,5,7.08,,,-73.94454193115234,40.78304672241211,-73.87073516845703,40.77384948730469,1,N,1,53.0,0.0,0.5,0.3,5.0,5.54,,64.34,1.0 +2,2016-01-16 11:39:30,2016-01-16 11:47:46,1,1.36,,,-73.93931579589844,40.70988845825195,-73.95004272460938,40.72395324707031,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-01 23:20:26,2016-01-01 23:31:08,1,1.3,,,-73.95931243896484,40.708805084228516,-73.95441436767578,40.70963668823242,1,N,1,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-20 00:49:37,2016-01-20 01:02:16,2,2.73,,,-73.89141845703125,40.74659729003906,-73.87285614013672,40.71800994873047,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-09 15:51:17,2016-01-09 16:05:18,1,2.89,,,-73.97679138183594,40.68697738647461,-73.92581176757812,40.69537353515625,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-18 09:30:19,2016-01-19 09:23:30,1,3.83,,,-73.99295806884766,40.70235061645508,-73.96426391601562,40.71316146850586,1,N,1,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-10 02:27:45,2016-01-10 02:37:59,1,1.66,,,-73.95657348632812,40.721126556396484,-73.96177673339844,40.70198059082031,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-23 10:19:17,2016-01-23 10:23:29,1,1.09,,,-73.95311737060547,40.58720397949219,-73.9352798461914,40.58601760864258,1,N,1,5.5,0.0,0.5,0.3,10.0,0.0,,16.3,1.0 +1,2016-01-13 12:08:22,2016-01-13 12:22:55,3,3.0,,,-73.93804931640625,40.74881362915039,-73.9582290649414,40.71533966064453,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-06 08:31:19,2016-01-06 08:41:02,1,1.73,,,-74.00909423828125,40.63082504272461,-74.02970123291016,40.64018630981445,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-10 19:35:40,2016-01-10 19:41:59,1,1.2,,,-73.94210052490234,40.82302474975586,-73.9538803100586,40.811737060546875,1,N,1,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-10 22:10:50,2016-01-10 22:18:20,1,2.37,,,-73.88304901123047,40.73774337768555,-73.84659576416016,40.72092056274414,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-09 15:38:15,2016-01-09 15:42:17,1,0.93,,,-73.95509338378906,40.788753509521484,-73.9544448852539,40.77891159057617,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-15 21:57:00,2016-01-15 22:00:07,1,0.0,,,-73.95150756835938,40.66963577270508,-73.95147705078125,40.66963577270508,5,N,1,70.0,0.0,0.0,0,0.0,0.0,,70.0,2.0 +2,2016-01-20 21:00:51,2016-01-20 21:05:34,1,0.92,,,-73.92635345458984,40.8281135559082,-73.92964172363281,40.83772659301758,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-01 00:38:00,2016-01-01 00:50:16,3,2.5,,,-73.94226837158203,40.7540397644043,-73.91816711425781,40.74238204956055,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-09 10:57:38,2016-01-09 11:05:51,1,1.54,,,-73.95650482177734,40.67475128173828,-73.9761962890625,40.684852600097656,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-02 21:16:08,2016-01-02 21:27:26,1,3.23,,,-73.94513702392578,40.80807876586914,-73.96084594726562,40.77507019042969,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-07 22:26:35,2016-01-07 22:31:53,1,1.1,,,-73.96247863769531,40.671844482421875,-73.95840454101562,40.68169021606445,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-08 12:50:12,2016-01-08 13:11:49,1,3.5,,,-73.90721893310547,40.65562438964844,-73.94027709960938,40.68438720703125,1,N,1,16.0,0.0,0.5,0.3,3.35,0.0,,20.15,1.0 +2,2016-01-06 18:03:43,2016-01-06 18:20:48,1,2.26,,,-73.93855285644531,40.698673248291016,-73.93130493164062,40.669769287109375,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-25 12:16:09,2016-01-25 12:26:10,1,1.4,,,-73.94776916503906,40.829925537109375,-73.93696594238281,40.848941802978516,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-10 23:03:48,2016-01-10 23:19:14,1,3.8,,,-73.9453353881836,40.71147537231445,-73.9449234008789,40.75386428833008,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-05 12:03:29,2016-01-05 12:15:19,1,1.67,,,-73.91944885253906,40.67877960205078,-73.9414291381836,40.67561340332031,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-12 21:46:44,2016-01-12 21:49:11,1,0.61,,,-73.9115982055664,40.7751350402832,-73.91496276855469,40.778385162353516,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-04 17:47:35,2016-01-04 18:15:53,1,2.46,,,-73.86966705322266,40.74910354614258,-73.83016967773438,40.75508117675781,1,N,1,18.5,1.0,0.5,0.3,4.06,0.0,,24.36,1.0 +1,2016-01-16 23:10:51,2016-01-16 23:15:19,1,1.1,,,-73.96770477294922,40.6932487487793,-73.95059204101562,40.69219207763672,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-06 17:11:02,2016-01-06 17:23:15,2,1.75,,,-73.95234680175781,40.789791107177734,-73.96233367919922,40.80498123168945,1,N,1,9.5,1.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-04 14:32:13,2016-01-04 14:36:48,1,0.66,,,-73.94387817382812,40.79253387451172,-73.94046783447266,40.800148010253906,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-05 14:59:25,2016-01-05 15:13:02,1,2.32,,,-73.99282836914062,40.697601318359375,-73.97676086425781,40.68373107910156,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-18 04:07:42,2016-01-18 04:10:18,6,0.51,,,-73.92727661132812,40.75422668457031,-73.923828125,40.76112365722656,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-13 10:11:26,2016-01-13 10:18:53,1,5.02,,,-73.81304168701172,40.69729232788086,-73.78329467773438,40.64373779296875,5,N,2,25.0,0.0,0.0,0,0.0,0.0,,25.0,2.0 +2,2016-01-05 11:54:43,2016-01-05 12:10:31,1,3.23,,,-73.91694641113281,40.76138687133789,-73.95700073242188,40.74800109863281,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,,17.76,1.0 +2,2016-01-07 19:32:30,2016-01-07 19:47:33,1,4.2,,,-73.82244873046875,40.68698501586914,-73.86497497558594,40.7259635925293,1,N,2,15.0,1.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-30 17:27:17,2016-01-30 17:39:46,5,1.41,,,-73.92532348632812,40.810123443603516,-73.9056396484375,40.81247329711914,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-22 20:36:52,2016-01-22 20:39:32,1,0.4,,,-73.8297348022461,40.71366882324219,-73.82328796386719,40.71327590942383,1,N,1,4.0,0.5,0.5,0.3,1.32,0.0,,6.62,1.0 +2,2016-01-14 02:07:07,2016-01-14 02:27:45,1,10.78,,,-73.93634033203125,40.80396270751953,-73.8398666381836,40.88874435424805,1,N,2,31.5,0.5,0.5,0.3,0.0,0.0,,32.8,1.0 +2,2016-01-01 03:21:14,2016-01-01 03:23:59,1,0.5,,,-73.93154907226562,40.76514434814453,-73.92588806152344,40.76897430419922,1,N,1,4.0,0.5,0.5,0.3,2.5,0.0,,7.8,1.0 +2,2016-01-20 21:58:00,2016-01-20 22:03:22,5,1.02,,,-73.87117004394531,40.73387145996094,-73.87696075439453,40.744049072265625,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-28 09:25:36,2016-01-28 09:37:57,1,3.71,,,-73.93701934814453,40.80427169799805,-73.92864990234375,40.79050064086914,1,N,1,13.0,0.0,0.5,0.3,4.84,5.54,,24.18,1.0 +2,2016-01-04 00:41:49,2016-01-04 00:47:13,1,1.21,,,-73.95499420166016,40.80483627319336,-73.937744140625,40.80465316772461,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-22 12:54:34,2016-01-22 13:05:04,1,1.65,,,-73.93792724609375,40.80380630493164,-73.95327758789062,40.78261947631836,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,,11.16,1.0 +1,2016-01-28 14:36:16,2016-01-28 14:41:19,1,0.6,,,-73.92442321777344,40.76156997680664,-73.91748809814453,40.764930725097656,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-01 02:42:14,2016-01-01 02:54:48,1,2.3,,,-73.94047546386719,40.8057975769043,-73.91004180908203,40.81898880004883,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-11 19:53:08,2016-01-11 20:07:58,1,3.0,,,-73.9557113647461,40.68877410888672,-73.92180633544922,40.68357849121094,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-04 14:08:34,2016-01-04 14:19:25,1,4.2,,,-73.8619613647461,40.73030090332031,-73.80886840820312,40.727230072021484,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-30 21:52:30,2016-01-30 22:05:37,1,2.5,,,-73.95463562011719,40.73307418823242,-73.93401336669922,40.707496643066406,1,N,1,11.0,0.5,0.5,0.3,2.45,0.0,,14.75,1.0 +2,2016-01-16 17:43:30,2016-01-16 17:49:20,1,1.11,,,-73.91895294189453,40.759090423583984,-73.92438507080078,40.771087646484375,1,N,1,6.0,0.0,0.5,0.3,2.04,0.0,,8.84,1.0 +2,2016-01-29 09:42:38,2016-01-29 09:53:44,1,1.54,,,-73.93223571777344,40.8576545715332,-73.94276428222656,40.837127685546875,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,,10.8,1.0 +2,2016-01-14 12:58:24,2016-01-14 13:10:56,1,2.65,,,-73.95431518554688,40.58750534057617,-73.95826721191406,40.618247985839844,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-10 19:10:41,2016-01-10 19:12:38,1,0.23,,,-73.954345703125,40.78968811035156,-73.95237731933594,40.79066848754883,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-10 16:23:56,2016-01-10 16:35:33,2,2.62,,,-73.9869155883789,40.6916618347168,-74.00442504882812,40.72157669067383,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,,15.38,1.0 +2,2016-01-19 15:17:58,2016-01-19 15:27:50,1,1.03,,,-73.98504638671875,40.67738342285156,-73.97554016113281,40.66905975341797,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-07 18:00:13,2016-01-07 18:08:22,1,0.89,,,-73.93641662597656,40.80585861206055,-73.94092559814453,40.8118782043457,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-03 02:19:19,2016-01-03 02:32:10,1,2.7,,,-73.91981506347656,40.75811004638672,-73.89851379394531,40.73839569091797,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-19 16:03:13,2016-01-19 16:07:33,1,0.6,,,-73.99161529541016,40.69098663330078,-73.99447631835938,40.687984466552734,1,Y,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-29 12:40:17,2016-01-29 12:55:38,1,2.6,,,-73.95111846923828,40.82567596435547,-73.94126892089844,40.79848098754883,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-20 13:34:58,2016-01-20 13:40:08,1,0.8,,,-73.94994354248047,40.72230911254883,-73.96114349365234,40.71907043457031,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-23 02:14:21,2016-01-23 02:37:57,1,5.8,,,-73.98617553710938,40.669185638427734,-73.95034790039062,40.723079681396484,1,N,1,20.5,0.5,0.5,0.3,6.54,0.0,,28.34,1.0 +2,2016-01-11 23:18:31,2016-01-11 23:28:08,1,2.77,,,-73.95264434814453,40.695068359375,-73.9261245727539,40.67212677001953,1,N,1,10.5,0.5,0.5,0.3,2.95,0.0,,14.75,1.0 +2,2016-01-18 18:39:55,2016-01-18 18:52:43,1,4.43,,,-73.93895721435547,40.80503845214844,-73.9276351928711,40.855125427246094,1,N,1,15.5,0.0,0.5,0.3,4.08,0.0,,20.38,1.0 +2,2016-01-15 20:30:47,2016-01-15 20:41:33,1,1.51,,,-73.9111328125,40.77580261230469,-73.89185333251953,40.76877975463867,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-19 19:35:50,2016-01-19 19:42:33,1,1.16,,,-73.948486328125,40.72254180908203,-73.95684814453125,40.733638763427734,1,N,1,6.5,1.0,0.5,0.3,2.08,0.0,,10.38,1.0 +2,2016-01-05 09:10:52,2016-01-05 09:32:24,5,3.74,,,-73.91193389892578,40.76776885986328,-73.96529388427734,40.76179885864258,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +1,2016-01-13 19:43:05,2016-01-13 19:58:11,1,3.2,,,-73.96556854248047,40.710323333740234,-73.98188781738281,40.732845306396484,1,N,2,13.0,1.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-05 11:09:45,2016-01-05 11:13:33,1,0.0,,,-73.90201568603516,40.763816833496094,-73.90203857421875,40.76382827758789,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-30 03:33:35,2016-01-30 03:53:06,1,3.94,,,-73.96195983886719,40.715938568115234,-73.98347473144531,40.72998046875,1,N,1,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-29 23:17:49,2016-01-29 23:27:38,6,1.77,,,-73.95569610595703,40.71774673461914,-73.93699645996094,40.71210479736328,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-18 12:25:13,2016-01-18 12:29:50,1,0.77,,,-73.88395690917969,40.74761199951172,-73.86929321289062,40.7490234375,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-17 00:36:01,2016-01-17 00:41:09,2,0.78,,,-73.9556655883789,40.80378723144531,-73.94746398925781,40.809993743896484,1,N,1,5.5,0.5,0.5,0.3,2.04,0.0,,8.84,1.0 +2,2016-01-12 19:50:58,2016-01-12 20:05:02,1,5.97,,,-73.940185546875,40.840511322021484,-73.98096466064453,40.77448654174805,1,N,1,19.0,1.0,0.5,0.3,2.0,0.0,,22.8,1.0 +2,2016-01-07 08:17:03,2016-01-07 08:31:06,1,2.32,,,-73.91259002685547,40.746055603027344,-73.94773864746094,40.751468658447266,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-21 23:28:13,2016-01-21 23:44:24,1,3.26,,,-73.97412872314453,40.68626022338867,-73.92748260498047,40.68663024902344,1,N,1,13.5,0.5,0.5,0.3,3.7,0.0,,18.5,1.0 +1,2016-01-26 00:11:53,2016-01-26 00:22:02,2,1.7,,,-73.94526672363281,40.80780792236328,-73.93705749511719,40.82710266113281,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-01 17:52:58,2016-01-01 17:56:51,1,0.91,,,-73.97628784179688,40.68370819091797,-73.98736572265625,40.679168701171875,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-28 17:03:26,2016-01-28 17:17:00,1,1.5,,,-73.9459457397461,40.817291259765625,-73.9442367553711,40.834720611572266,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-20 17:25:52,2016-01-20 17:31:52,1,0.99,,,-73.94123840332031,40.801025390625,-73.94585418701172,40.81229019165039,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-05 15:42:20,2016-01-05 15:50:23,1,0.92,,,-73.99221801757812,40.6895637512207,-73.98330688476562,40.69486618041992,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-25 18:54:15,2016-01-25 19:06:10,1,2.42,,,-73.9815444946289,40.68974685668945,-73.99267578125,40.660919189453125,1,N,1,10.5,1.0,0.5,0.3,3.08,0.0,,15.38,1.0 +1,2016-01-14 13:19:22,2016-01-14 13:39:09,1,8.0,,,-73.90054321289062,40.677093505859375,-73.78242492675781,40.64487838745117,1,N,1,24.5,0.0,0.5,0.3,5.05,0.0,,30.35,1.0 +1,2016-01-19 17:23:52,2016-01-19 17:53:05,1,6.0,,,-73.99227905273438,40.6942138671875,-73.98343658447266,40.74077224731445,1,N,1,23.5,1.0,0.5,0.3,1.0,0.0,,26.3,1.0 +2,2016-01-30 19:56:43,2016-01-30 20:01:03,1,0.72,,,-73.9666976928711,40.803993225097656,-73.95914459228516,40.81018829345703,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-06 04:33:51,2016-01-06 04:47:26,1,3.5,,,-73.9484634399414,40.74489212036133,-73.930419921875,40.69706726074219,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-28 01:04:16,2016-01-28 01:13:21,1,1.8,,,-73.89136505126953,40.746917724609375,-73.87844848632812,40.75918197631836,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-15 08:02:12,2016-01-15 08:25:17,2,3.6,,,-73.9546127319336,40.67223358154297,-73.99288940429688,40.69548797607422,1,N,1,17.0,0.0,0.5,0.3,3.55,0.0,,21.35,1.0 +2,2016-01-12 13:04:14,2016-01-12 13:09:38,1,3.07,,,-73.89086151123047,40.74649429321289,-73.8709945678711,40.77391052246094,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-14 21:48:12,2016-01-14 21:51:39,1,0.8,,,-73.95648956298828,40.813533782958984,-73.94722747802734,40.81591796875,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-04 21:49:44,2016-01-04 21:57:49,1,1.5,,,-73.9321517944336,40.795440673828125,-73.94973754882812,40.78748321533203,1,N,1,8.0,0.5,0.5,0.3,1.7,0.0,,11.0,1.0 +1,2016-01-21 18:55:02,2016-01-21 19:05:46,1,1.2,,,-73.95231628417969,40.79812240600586,-73.9530258178711,40.78584289550781,1,N,1,8.0,1.0,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-11 16:18:42,2016-01-11 16:25:20,1,1.55,,,-73.9519271850586,40.790061950683594,-73.93538665771484,40.80033493041992,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-01 03:10:17,2016-01-01 03:23:21,1,4.98,,,-74.0113754272461,40.678653717041016,-73.96772766113281,40.71066665649414,1,N,1,16.5,0.5,0.5,0.3,3.56,0.0,,21.36,1.0 +2,2016-01-22 09:51:19,2016-01-22 09:52:23,1,0.23,,,-73.96185302734375,40.805057525634766,-73.96595764160156,40.80635452270508,1,N,1,3.0,0.0,0.5,0.3,0.95,0.0,,4.75,1.0 +2,2016-01-22 22:43:39,2016-01-22 22:48:00,1,0.61,,,-73.9770736694336,40.68402862548828,-73.98179626464844,40.69185256958008,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-24 12:30:01,2016-01-24 12:38:52,1,2.31,,,-73.91112518310547,40.713253021240234,-73.94638061523438,40.72287368774414,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-08 07:40:11,2016-01-08 07:59:19,2,2.3,,,-73.95018005371094,40.79269027709961,-73.92567443847656,40.812992095947266,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-14 09:26:16,2016-01-14 09:34:13,1,0.8,,,-73.96631622314453,40.68971252441406,-73.9809799194336,40.68989562988281,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-10 04:20:15,2016-01-10 04:29:40,1,1.79,,,-73.99430084228516,40.6903076171875,-73.96260070800781,40.687992095947266,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-06 22:47:38,2016-01-06 22:53:08,1,1.13,,,-73.95830535888672,40.71729278564453,-73.95399475097656,40.72940444946289,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-27 07:56:42,2016-01-27 08:11:49,1,1.38,,,-73.88103485107422,40.73772430419922,-73.90714263916016,40.74205780029297,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,,12.3,1.0 +2,2016-01-05 21:03:16,2016-01-05 21:21:18,1,4.2,,,-73.92525482177734,40.76829147338867,-73.9847183227539,40.76737594604492,1,N,1,16.5,0.5,0.5,0.3,3.0,0.0,,20.8,1.0 +2,2016-01-17 03:59:54,2016-01-17 04:10:05,1,2.18,,,-73.95158386230469,40.714359283447266,-73.92784881591797,40.70189666748047,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-05 12:24:45,2016-01-05 12:35:52,1,0.62,,,-73.9229507446289,40.817138671875,-73.92076110839844,40.81605529785156,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-30 11:01:46,2016-01-30 11:08:49,1,1.08,,,-73.9550552368164,40.811885833740234,-73.94332885742188,40.80855178833008,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-20 19:47:54,2016-01-20 20:35:10,1,8.3,,,-73.9841537475586,40.686519622802734,-73.9754409790039,40.765201568603516,1,N,1,36.0,0.5,0.5,0.3,7.45,0.0,,44.75,1.0 +2,2016-01-27 12:50:37,2016-01-27 12:55:33,1,0.75,,,-73.84429168701172,40.72136306762695,-73.85527038574219,40.721073150634766,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-14 09:19:45,2016-01-14 09:56:43,1,20.5,,,-73.93267822265625,40.85679626464844,-73.78955078125,40.64707565307617,1,N,1,55.5,0.0,0.5,0.3,4.0,5.54,,65.84,1.0 +2,2016-01-07 21:24:43,2016-01-07 21:31:50,1,2.49,,,-73.80706024169922,40.699371337890625,-73.8477554321289,40.68999099731445,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-29 18:05:36,2016-01-29 18:20:39,1,1.99,,,-73.85128784179688,40.71046447753906,-73.84561920166016,40.695682525634766,1,N,1,11.5,1.0,0.5,0.3,11.8,0.0,,25.1,1.0 +2,2016-01-21 12:04:39,2016-01-21 12:13:31,5,1.48,,,-73.93131256103516,40.75464630126953,-73.91217803955078,40.769065856933594,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-13 13:55:10,2016-01-13 14:02:12,1,1.37,,,-73.92257690429688,40.81785583496094,-73.90287780761719,40.823360443115234,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-13 15:37:06,2016-01-13 16:05:41,1,8.06,,,-73.94212341308594,40.841556549072266,-73.95631408691406,40.7677116394043,1,N,1,26.0,0.0,0.5,0.3,5.36,0.0,,32.16,1.0 +2,2016-01-02 17:40:10,2016-01-02 18:09:38,1,7.93,,,-73.99445343017578,40.6901969909668,-73.99549865722656,40.754432678222656,1,N,2,27.5,0.0,0.5,0.3,0.0,0.0,,28.3,1.0 +2,2016-01-12 19:17:45,2016-01-12 19:44:06,1,4.44,,,-73.84923553466797,40.6883430480957,-73.85375213623047,40.68691635131836,1,N,1,21.0,1.0,0.5,0.3,4.56,0.0,,27.36,1.0 +2,2016-01-15 10:01:24,2016-01-15 10:14:42,1,2.18,,,-73.94903564453125,40.69541931152344,-73.9144058227539,40.701393127441406,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-30 12:13:13,2016-01-30 12:21:06,1,1.05,,,-73.90042114257812,40.856224060058594,-73.88851928710938,40.85453414916992,1,N,1,6.5,0.0,0.5,0.3,0.7,0.0,,8.0,1.0 +2,2016-01-25 07:47:23,2016-01-25 08:12:47,6,4.1,,,-73.94480895996094,40.81367111206055,-73.90803527832031,40.85382080078125,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-28 20:20:50,2016-01-28 20:23:25,1,0.57,,,-73.96395874023438,40.80819320678711,-73.96807098388672,40.80061340332031,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +1,2016-01-19 16:01:29,2016-01-19 16:01:50,2,0.0,,,-73.94695281982422,40.74492263793945,-73.94696044921875,40.74491882324219,1,N,2,2.5,1.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-18 13:26:45,2016-01-18 13:32:41,1,0.9,,,-73.97779846191406,40.68038558959961,-73.97357940673828,40.67300033569336,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-29 11:42:12,2016-01-29 11:52:59,2,2.3,,,-73.96280670166016,40.71211624145508,-73.9891357421875,40.72360610961914,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-13 13:20:25,2016-01-13 13:35:00,1,2.2,,,-73.9417724609375,40.798763275146484,-73.93741607666016,40.82383346557617,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-22 18:20:02,2016-01-22 18:27:43,5,0.88,,,-73.98729705810547,40.691734313964844,-73.98507690429688,40.682518005371094,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-05 12:39:44,2016-01-05 13:01:15,1,9.25,,,-73.930908203125,40.865169525146484,-73.98078918457031,40.769256591796875,1,N,2,28.5,0.0,0.5,0.3,0.0,0.0,,29.3,1.0 +1,2016-01-03 11:13:28,2016-01-03 11:34:24,1,4.4,,,0.0,0.0,-74.00004577636719,40.721309661865234,1,N,1,18.0,0.0,0.5,0.3,3.75,0.0,,22.55,1.0 +2,2016-01-07 10:56:05,2016-01-07 11:12:25,1,6.01,,,-73.86290740966797,40.7305908203125,-73.926025390625,40.76108932495117,1,N,1,20.0,0.0,0.5,0.3,5.2,0.0,,26.0,1.0 +2,2016-01-17 20:36:08,2016-01-17 20:40:33,1,0.65,,,-73.8896255493164,40.74714660644531,-73.89997100830078,40.74391555786133,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-12 22:58:25,2016-01-12 23:06:47,1,1.42,,,-73.89151000976562,40.74671173095703,-73.89579772949219,40.72935485839844,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-06 14:20:35,2016-01-06 14:46:58,1,13.57,,,-73.99263763427734,40.66209030151367,-73.87067413330078,40.77363967895508,1,N,2,37.5,0.0,0.5,0.3,0.0,0.0,,38.3,1.0 +1,2016-01-19 18:39:55,2016-01-19 19:07:28,1,4.3,,,-73.99088287353516,40.69290542602539,-73.91986083984375,40.708160400390625,1,N,1,20.5,1.0,0.5,0.3,3.0,0.0,,25.3,1.0 +2,2016-01-04 18:30:31,2016-01-04 18:38:49,1,2.17,,,-73.92312622070312,40.75523376464844,-73.89946746826172,40.7459831237793,1,N,1,8.5,1.0,0.5,0.3,3.09,0.0,,13.39,1.0 +2,2016-01-30 23:45:51,2016-01-30 23:51:59,1,1.08,,,-73.96096801757812,40.806846618652344,-73.95284271240234,40.803558349609375,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-21 21:55:45,2016-01-21 22:20:34,1,8.64,,,-73.92549133300781,40.827877044677734,-73.99369812011719,40.75227355957031,1,N,1,28.0,0.5,0.5,0.3,8.79,0.0,,38.09,1.0 +2,2016-01-17 17:20:23,2016-01-17 17:41:04,1,4.33,,,-73.981689453125,40.674713134765625,-74.01046752929688,40.719886779785156,1,N,1,17.0,0.0,0.5,0.3,3.56,0.0,,21.36,1.0 +2,2016-01-13 22:39:20,2016-01-13 23:09:43,1,6.51,,,-73.95182800292969,40.725608825683594,-73.98210906982422,40.7639274597168,1,N,1,24.5,0.5,0.5,0.3,0.0,0.0,,25.8,1.0 +2,2016-01-12 22:21:04,2016-01-12 22:39:55,1,9.8,,,-73.95081329345703,40.7305793762207,-73.97738647460938,40.63821792602539,1,N,2,28.5,0.5,0.5,0.3,0.0,0.0,,29.8,1.0 +1,2016-01-26 05:11:27,2016-01-26 05:40:34,1,19.1,,,-73.99447631835938,40.69023513793945,-73.77961730957031,40.645240783691406,1,N,1,51.0,0.5,0.5,0.3,15.65,0.0,,67.95,1.0 +2,2016-01-05 14:38:17,2016-01-05 14:41:51,1,0.5,,,-73.9216079711914,40.67868423461914,-73.92365264892578,40.6871337890625,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-21 23:06:43,2016-01-21 23:15:17,1,1.95,,,-73.9611587524414,40.71889114379883,-73.93563079833984,40.722225189208984,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,,11.76,1.0 +1,2016-01-30 14:15:30,2016-01-30 14:19:18,2,0.5,,,-73.99174499511719,40.663021087646484,-73.98612213134766,40.66938400268555,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-26 20:53:44,2016-01-26 21:16:48,1,3.4,,,-73.94562530517578,40.69212341308594,-73.90528106689453,40.669273376464844,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-17 17:50:55,2016-01-17 18:04:48,1,2.77,,,-73.97379302978516,40.68325424194336,-73.96405029296875,40.65341567993164,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-19 07:58:27,2016-01-19 08:38:25,6,11.02,,,-73.80757904052734,40.700340270996094,-73.74824523925781,40.76796340942383,1,N,1,34.5,0.0,0.5,0.3,0.0,0.0,,35.3,1.0 +1,2016-01-07 03:44:09,2016-01-07 04:04:18,1,8.2,,,-73.87677764892578,40.748321533203125,-73.88151550292969,40.81454086303711,1,N,2,25.0,0.5,0.5,0.3,0.0,0.0,,26.3,1.0 +2,2016-01-08 19:37:24,2016-01-08 19:59:50,1,8.16,,,-73.91348266601562,40.75638198852539,-73.9883041381836,40.72181701660156,1,N,1,26.0,1.0,0.5,0.3,5.56,0.0,,33.36,1.0 +2,2016-01-09 15:53:41,2016-01-09 15:57:55,1,0.78,,,-73.94506072998047,40.746131896972656,-73.95320129394531,40.74526596069336,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-25 17:53:36,2016-01-25 18:06:15,1,3.46,,,-73.9404067993164,40.839691162109375,-73.92240142822266,40.8487663269043,1,N,2,12.0,1.0,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-20 10:38:48,2016-01-20 10:46:45,1,1.1,,,-73.94636535644531,40.806800842285156,-73.96150970458984,40.806312561035156,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,,9.3,1.0 +1,2016-01-29 19:39:03,2016-01-29 20:00:52,1,4.8,,,-73.92611694335938,40.7442741394043,-73.86141204833984,40.73762130737305,1,N,1,18.0,1.0,0.5,0.3,0.0,0.0,,19.8,1.0 +1,2016-01-14 15:10:42,2016-01-14 15:29:25,1,3.5,,,-73.92168426513672,40.76679229736328,-73.96727752685547,40.76524353027344,1,N,1,14.5,0.0,0.5,0.3,3.05,0.0,,18.35,1.0 +1,2016-01-13 00:02:54,2016-01-13 00:09:21,1,1.2,,,-73.95760345458984,40.71799850463867,-73.94397735595703,40.722103118896484,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-15 19:42:46,2016-01-15 19:51:40,1,1.39,,,-73.99201202392578,40.689701080322266,-73.9710693359375,40.68409729003906,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-20 15:33:09,2016-01-20 15:44:38,1,1.72,,,-73.94287109375,40.84354019165039,-73.93805694580078,40.823158264160156,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-21 23:06:13,2016-01-21 23:29:31,1,9.55,,,-73.85202026367188,40.728668212890625,-73.95183563232422,40.681610107421875,1,N,1,28.5,0.5,0.5,0.3,0.3,0.0,,30.1,1.0 +1,2016-01-06 13:23:50,2016-01-06 13:33:44,1,1.7,,,-73.99356079101562,40.699153900146484,-73.99225616455078,40.684059143066406,1,N,1,8.0,0.0,0.5,0.3,2.0,0.0,,10.8,1.0 +2,2016-01-08 18:38:07,2016-01-08 19:07:21,1,5.31,,,-73.86955261230469,40.65190887451172,-73.93916320800781,40.63390350341797,1,N,1,22.0,1.0,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-10 04:11:37,2016-01-10 04:22:28,1,2.05,,,-73.89013671875,40.74692916870117,-73.86611938476562,40.759483337402344,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-17 18:05:30,2016-01-17 18:06:30,1,0.29,,,-73.9103775024414,40.85453414916992,-73.90576934814453,40.85723876953125,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +2,2016-01-20 20:21:43,2016-01-20 20:32:24,1,1.37,,,-73.97797393798828,40.68500518798828,-73.96748352050781,40.69329833984375,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-17 11:30:46,2016-01-17 11:40:21,1,1.79,,,-73.962158203125,40.66965103149414,-73.97084045410156,40.68790817260742,1,N,1,9.0,0.0,0.5,0.3,4.0,0.0,,13.8,1.0 +1,2016-01-02 21:13:22,2016-01-02 21:18:18,1,1.7,,,-73.84529876708984,40.849185943603516,-73.83104705810547,40.851844787597656,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 20:38:36,2016-01-09 20:56:35,1,7.36,,,-73.95781707763672,40.73121643066406,-73.99787902832031,40.67877960205078,1,N,1,22.5,0.5,0.5,0.3,5.95,0.0,,29.75,1.0 +2,2016-01-07 17:07:25,2016-01-07 17:16:11,1,1.06,,,-73.8908920288086,40.74689865112305,-73.89712524414062,40.75812911987305,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-01 22:47:00,2016-01-01 22:54:01,1,1.7,,,-73.94282531738281,40.79918670654297,-73.94047546386719,40.81901931762695,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-12 09:31:49,2016-01-12 10:06:51,1,6.3,,,-73.9923324584961,40.682621002197266,-74.01395416259766,40.71172332763672,1,N,1,26.5,0.0,0.5,0.3,5.46,0.0,,32.76,1.0 +1,2016-01-22 13:30:04,2016-01-22 13:39:27,1,1.3,,,-73.98493194580078,40.69150161743164,-73.96617889404297,40.6933479309082,1,N,4,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-30 05:24:22,2016-01-30 05:37:28,5,7.72,,,-73.86189270019531,40.73017883300781,-73.92703247070312,40.76126480102539,1,N,2,22.5,0.5,0.5,0.3,0.0,0.0,,23.8,1.0 +1,2016-01-17 17:03:57,2016-01-17 17:28:16,1,4.5,,,-73.95004272460938,40.655029296875,-74.00618743896484,40.625118255615234,1,N,1,18.0,0.0,0.5,0.3,1.0,0.0,,19.8,1.0 +2,2016-01-02 18:43:22,2016-01-02 18:53:47,1,2.09,,,-73.84435272216797,40.721378326416016,-73.84674835205078,40.73694610595703,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-30 15:22:31,2016-01-30 15:33:49,1,3.86,,,-73.89093780517578,40.74700927734375,-73.861572265625,40.76787567138672,1,N,1,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-30 02:27:33,2016-01-30 02:41:28,1,3.0,,,-73.92286682128906,40.70664596557617,-73.9650650024414,40.714271545410156,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-28 22:49:17,2016-01-28 22:53:41,2,0.4,,,-73.93925476074219,40.80522918701172,-73.94486999511719,40.80854034423828,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-26 08:18:40,2016-01-26 08:23:59,1,0.65,,,-73.95516967773438,40.804603576660156,-73.94767761230469,40.81490707397461,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-01 04:46:55,2016-01-01 04:55:03,2,2.2,,,-73.97854614257812,40.683860778808594,-73.9537353515625,40.66429138183594,1,N,1,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-30 20:45:48,2016-01-30 20:50:41,1,0.56,,,-73.91698455810547,40.74318313598633,-73.92527770996094,40.74190902709961,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-03 12:22:56,2016-01-03 12:29:30,1,1.3,,,-73.94510650634766,40.79961013793945,-73.93628692626953,40.81717300415039,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-14 17:55:11,2016-01-14 18:02:04,1,0.96,,,-73.99240112304688,40.69413375854492,-73.99930572509766,40.683414459228516,1,N,1,6.0,1.0,0.5,0.3,1.0,0.0,,8.8,1.0 +1,2016-01-04 05:29:35,2016-01-04 05:59:42,2,18.7,,,-73.96476745605469,40.806583404541016,-73.78510284423828,40.6431884765625,2,N,1,52.0,0.0,0.5,0.3,14.55,5.54,,72.89,1.0 +2,2016-01-29 12:04:00,2016-01-29 12:23:40,1,3.27,,,-73.95934295654297,40.80931091308594,-73.98202514648438,40.76942825317383,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-30 19:54:26,2016-01-30 20:03:33,1,1.46,,,-73.80789184570312,40.70012283325195,-73.81466674804688,40.711830139160156,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-21 09:58:19,2016-01-21 10:03:59,1,1.2,,,-73.91259765625,40.75595474243164,-73.90371704101562,40.76681137084961,1,N,1,6.0,0.0,0.5,0.3,1.7,0.0,,8.5,1.0 +2,2016-01-12 11:25:09,2016-01-12 12:00:13,3,5.35,,,-73.96074676513672,40.690311431884766,-74.0055923461914,40.74103546142578,1,N,1,25.0,0.0,0.5,0.3,5.16,0.0,,30.96,1.0 +2,2016-01-15 03:45:50,2016-01-15 03:49:06,1,1.23,,,-73.9577865600586,40.80131149291992,-73.96759033203125,40.792972564697266,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-25 22:15:51,2016-01-25 22:34:08,5,3.89,,,-73.95783233642578,40.670928955078125,-74.00353240966797,40.65654373168945,1,N,1,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-01 14:20:20,2016-01-01 14:28:18,3,0.75,,,-73.9510498046875,40.67851638793945,-73.94610595703125,40.68018341064453,1,N,1,7.0,0.0,0.5,0.3,2.34,0.0,,10.14,1.0 +2,2016-01-03 22:05:54,2016-01-03 22:19:40,1,2.8,,,-73.95208740234375,40.679771423339844,-73.95758056640625,40.71150207519531,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-03 05:09:51,2016-01-03 05:30:07,1,9.9,,,-73.9471435546875,40.74799346923828,-73.83482360839844,40.70707321166992,1,N,2,28.5,0.5,0.5,0.3,0.0,0.0,,29.8,1.0 +2,2016-01-25 15:01:57,2016-01-25 15:29:47,1,5.55,,,-73.93616485595703,40.79928970336914,-73.92277526855469,40.867183685302734,1,N,2,22.0,0.0,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-14 23:06:16,2016-01-14 23:09:43,1,0.52,,,-73.91886901855469,40.74299621582031,-73.92111206054688,40.735904693603516,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-25 22:47:57,2016-01-25 23:17:18,1,6.34,,,-73.94453430175781,40.809051513671875,-73.99974060058594,40.734100341796875,1,N,1,23.0,0.5,0.5,0.3,2.7,0.0,,27.0,1.0 +2,2016-01-19 12:22:03,2016-01-19 12:27:26,5,0.88,,,-73.94036102294922,40.80038833618164,-73.93438720703125,40.80316162109375,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-24 13:52:28,2016-01-24 13:59:01,1,1.0,,,-73.95724487304688,40.81216049194336,-73.96796417236328,40.8014030456543,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-17 22:36:12,2016-01-17 22:39:20,1,1.14,,,-73.95370483398438,40.78789520263672,-73.97013092041016,40.789146423339844,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-19 19:19:16,2016-01-19 19:31:13,1,3.46,,,-73.99175262451172,40.695560455322266,-73.95272827148438,40.71478271484375,1,N,1,13.5,1.0,0.5,0.3,3.06,0.0,,18.36,1.0 +1,2016-01-10 00:04:48,2016-01-10 00:21:29,1,3.4,,,-73.94051361083984,40.67991638183594,-73.99169921875,40.683982849121094,1,N,1,14.0,0.5,0.5,0.3,2.0,0.0,,17.3,1.0 +2,2016-01-03 21:24:03,2016-01-03 21:44:20,5,4.53,,,-73.94420623779297,40.71287155151367,-73.94580078125,40.65967559814453,1,N,1,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +1,2016-01-05 18:17:36,2016-01-05 18:20:41,1,0.6,,,-73.92546081542969,40.76187515258789,-73.9271469116211,40.76731872558594,1,N,1,4.0,1.0,0.5,0.3,1.15,0.0,,6.95,1.0 +2,2016-01-21 07:56:47,2016-01-21 08:00:44,1,0.55,,,-73.95809936523438,40.80030059814453,-73.96034240722656,40.804771423339844,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-15 12:53:23,2016-01-15 13:05:08,1,3.2,,,-73.99236297607422,40.69451904296875,-73.95035552978516,40.71665573120117,1,N,1,13.0,0.0,0.5,0.3,2.75,0.0,,16.55,1.0 +2,2016-01-04 18:11:50,2016-01-04 18:30:44,1,3.41,,,-73.89170837402344,40.861907958984375,-73.9051284790039,40.887535095214844,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-01 21:03:38,2016-01-01 21:05:58,1,0.7,,,-73.9612045288086,40.67414093017578,-73.95596313476562,40.67588806152344,1,N,1,4.0,0.5,0.5,0.3,1.59,0.0,,6.89,1.0 +2,2016-01-02 13:51:23,2016-01-02 13:56:38,1,0.94,,,-73.95137786865234,40.799835205078125,-73.93952178955078,40.80145263671875,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-30 18:56:12,2016-01-30 19:05:36,1,3.14,,,-73.92875671386719,40.76310729980469,-73.95423126220703,40.76403045654297,1,N,1,11.0,0.0,0.5,0.3,2.95,0.0,,14.75,1.0 +2,2016-01-01 03:14:03,2016-01-01 03:33:33,1,3.75,,,-73.95777893066406,40.71774673461914,-73.95994567871094,40.683746337890625,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +1,2016-01-15 15:58:13,2016-01-15 16:07:08,1,0.7,,,-73.93495178222656,40.847843170166016,-73.92424011230469,40.844974517822266,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-07 09:10:09,2016-01-07 09:25:26,1,4.33,,,-73.8814926147461,40.74227523803711,-73.81941986083984,40.742130279541016,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-10 20:02:30,2016-01-10 20:08:15,1,0.84,,,-73.95198822021484,40.7899055480957,-73.95034790039062,40.784278869628906,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-13 00:48:30,2016-01-13 00:52:06,1,0.89,,,-73.83029174804688,40.713462829589844,-73.83404541015625,40.70492935180664,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-09 01:15:14,2016-01-09 01:20:17,2,1.54,,,-73.95450592041016,40.73520278930664,-73.95252227783203,40.71826171875,1,N,1,6.5,0.5,0.5,0.3,1.95,0.0,,9.75,1.0 +2,2016-01-14 11:46:46,2016-01-14 11:48:18,1,0.4,,,-73.8901138305664,40.746036529541016,-73.88713073730469,40.74115753173828,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-09 12:38:19,2016-01-09 12:49:56,1,4.71,,,-73.9217300415039,40.835758209228516,-73.90674591064453,40.87949752807617,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,,19.56,1.0 +2,2016-01-08 22:13:29,2016-01-08 22:24:13,6,2.66,,,-73.95568084716797,40.71406555175781,-73.95118713378906,40.745113372802734,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-13 22:31:54,2016-01-13 22:39:35,1,1.01,,,-73.921630859375,40.76680374145508,-73.92871856689453,40.77394485473633,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-14 08:05:10,2016-01-14 08:16:53,1,2.0,,,-73.98724365234375,40.6922492980957,-73.9813003540039,40.67116165161133,1,Y,1,9.5,0.0,0.5,0.3,1.0,0.0,,11.3,1.0 +2,2016-01-28 13:57:32,2016-01-28 14:00:39,1,0.56,,,-73.89641571044922,40.746280670166016,-73.88623809814453,40.744415283203125,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-07 07:36:13,2016-01-07 07:58:42,1,5.75,,,-73.94709014892578,40.800960540771484,-73.94002532958984,40.75030517578125,1,N,1,20.0,0.0,0.5,0.3,4.16,0.0,,24.96,1.0 +2,2016-01-11 12:25:36,2016-01-11 12:34:58,1,2.44,,,-73.98938751220703,40.703041076660156,-73.9994125366211,40.71764373779297,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-05 08:00:18,2016-01-05 08:30:02,1,4.67,,,-73.92898559570312,40.73889923095703,-73.98152923583984,40.746551513671875,1,N,1,21.0,0.0,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-03 03:30:28,2016-01-03 03:45:59,1,9.57,,,-73.96098327636719,40.716758728027344,-74.02486419677734,40.635982513427734,1,N,2,27.5,0.5,0.5,0.3,0.0,0.0,,28.8,1.0 +1,2016-01-20 01:16:14,2016-01-20 01:32:27,1,6.3,,,-73.9563217163086,40.71440887451172,-73.99015808105469,40.756900787353516,1,N,2,19.5,0.5,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-29 15:14:44,2016-01-29 15:41:24,1,1.72,,,-73.95235443115234,40.79014587402344,-73.94367218017578,40.77664566040039,1,N,1,16.0,0.0,0.5,0.3,3.36,0.0,,20.16,1.0 +2,2016-01-29 07:48:32,2016-01-29 08:29:05,1,12.6,,,-74.0186996459961,40.63238525390625,-73.95366668701172,40.7669563293457,1,N,1,40.0,0.0,0.5,0.3,10.0,5.54,,56.34,1.0 +1,2016-01-14 17:14:22,2016-01-14 17:19:29,1,0.9,,,-73.96338653564453,40.682796478271484,-73.96878051757812,40.692935943603516,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-16 11:11:33,2016-01-16 11:14:57,5,0.37,,,-73.94226837158203,40.83778381347656,-73.943603515625,40.832733154296875,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-30 21:51:24,2016-01-31 21:28:54,1,2.56,,,-73.96552276611328,40.713478088378906,-73.9926986694336,40.72260284423828,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-04 19:47:34,2016-01-04 19:53:33,1,1.5,,,-73.91831970214844,40.77018356323242,-73.89252471923828,40.77055358886719,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-28 19:42:55,2016-01-28 19:50:46,1,0.9,,,-73.92046356201172,40.766448974609375,-73.92894744873047,40.775821685791016,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-13 14:50:55,2016-01-13 15:12:17,1,3.38,,,-73.94390106201172,40.711822509765625,-73.94508361816406,40.755348205566406,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-20 01:38:24,2016-01-20 01:41:36,1,0.56,,,-73.89093017578125,40.74707794189453,-73.88258361816406,40.74995040893555,1,N,1,4.5,0.5,0.5,0.3,1.0,0.0,,6.8,1.0 +2,2016-01-20 00:09:32,2016-01-20 00:29:07,1,5.47,,,-73.95565795898438,40.80411911010742,-74.00262451171875,40.739803314208984,1,N,2,18.0,0.5,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-06 15:41:58,2016-01-06 15:51:33,3,2.88,,,-73.9423828125,40.840518951416016,-73.967529296875,40.80717086791992,1,N,1,11.0,0.0,0.5,0.3,2.2,0.0,,14.0,1.0 +2,2016-01-29 08:02:50,2016-01-29 08:11:37,1,0.85,,,-73.88957214355469,40.74925231933594,-73.88021850585938,40.75605010986328,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-30 22:04:51,2016-01-30 22:09:31,5,0.79,,,-73.95758819580078,40.71794509887695,-73.94841003417969,40.726558685302734,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-11 11:03:43,2016-01-11 11:06:39,1,0.5,,,-73.91217803955078,40.823768615722656,-73.91990661621094,40.82621383666992,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-29 17:50:13,2016-01-29 18:05:48,1,1.6,,,-73.9756851196289,40.676116943359375,-73.9916000366211,40.690956115722656,1,N,2,11.0,1.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-27 18:59:54,2016-01-27 19:01:09,6,0.43,,,-73.94474029541016,40.808631896972656,-73.93978881835938,40.8116569519043,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-01 16:25:50,2016-01-01 16:41:17,1,2.71,,,-73.95415496826172,40.80097198486328,-73.98133850097656,40.78083419799805,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-21 14:28:44,2016-01-21 14:45:32,1,3.45,,,-73.79714965820312,40.7032470703125,-73.85641479492188,40.68611145019531,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,,18.36,1.0 +1,2016-01-02 02:35:23,2016-01-02 02:39:45,1,0.8,,,-73.90571594238281,40.81072235107422,-73.89592742919922,40.8180046081543,5,N,2,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +1,2016-01-29 03:57:40,2016-01-29 04:04:35,1,1.6,,,-73.8602294921875,40.83790588378906,-73.84532928466797,40.822265625,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-06 00:23:50,2016-01-06 00:29:32,1,1.11,,,-73.95865631103516,40.81489562988281,-73.94363403320312,40.81018829345703,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-17 02:01:30,2016-01-17 02:15:03,5,2.55,,,-73.95057678222656,40.743736267089844,-73.90992736816406,40.74626541137695,1,N,1,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-29 21:10:52,2016-01-29 21:17:51,1,2.22,,,-73.89495086669922,40.75463104248047,-73.92120361328125,40.76726531982422,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-07 13:51:07,2016-01-07 14:02:10,1,2.11,,,-73.94709014892578,40.79981231689453,-73.92306518554688,40.80887222290039,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-06 10:13:08,2016-01-06 10:24:58,1,2.1,,,-73.96880340576172,40.672828674316406,-73.93085479736328,40.67057418823242,1,N,1,10.5,0.5,0.5,0.3,2.95,0.0,,14.75,1.0 +2,2016-01-25 01:32:51,2016-01-25 01:41:14,1,1.09,,,-73.95796203613281,40.721900939941406,-73.96221923828125,40.71174621582031,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,,10.38,1.0 +2,2016-01-01 03:57:01,2016-01-01 04:06:58,1,1.29,,,-73.9173355102539,40.815921783447266,-73.90476989746094,40.83018112182617,1,N,1,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-21 15:39:58,2016-01-21 15:49:38,2,1.9,,,-73.84420013427734,40.72102355957031,-73.8736572265625,40.735233306884766,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-24 17:18:52,2016-01-24 17:23:29,2,1.03,,,-73.95331573486328,40.79154586791992,-73.95618438720703,40.78437423706055,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-18 02:36:09,2016-01-18 02:38:23,1,0.9,,,-73.93132019042969,40.80166244506836,-73.92243957519531,40.809814453125,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-18 19:31:26,2016-01-18 19:35:40,1,0.99,,,-73.9444351196289,40.819339752197266,-73.95381164550781,40.80638122558594,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-04 22:10:52,2016-01-04 22:12:23,1,0.66,,,-73.9446792602539,40.787452697753906,-73.95097351074219,40.77900695800781,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-29 15:15:53,2016-01-29 15:43:04,1,2.9,,,-73.96397399902344,40.808162689208984,-73.98233032226562,40.76993179321289,1,N,1,18.5,0.0,0.5,0.3,3.86,0.0,,23.16,1.0 +2,2016-01-25 17:55:17,2016-01-25 18:12:28,1,1.93,,,-73.93901062011719,40.843868255615234,-73.92259216308594,40.86616134643555,1,N,1,12.0,1.0,0.5,0.3,3.45,0.0,,17.25,1.0 +1,2016-01-16 01:16:52,2016-01-16 01:40:09,2,3.4,,,-74.01181030273438,40.67386245727539,-73.96935272216797,40.68954849243164,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-16 09:46:35,2016-01-16 09:50:24,1,0.61,,,-73.99787139892578,40.68303298950195,-73.99565887451172,40.6906623840332,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-09 16:22:32,2016-01-09 16:28:44,1,1.02,,,-73.9605484008789,40.65966796875,-73.95623779296875,40.671241760253906,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-30 17:16:01,2016-01-30 17:34:55,1,3.53,,,-73.97306060791016,40.691673278808594,-73.9964370727539,40.66412353515625,1,N,1,15.5,0.0,0.5,0.3,4.08,0.0,,20.38,1.0 +2,2016-01-21 15:59:56,2016-01-21 16:40:09,1,5.86,,,-73.93211364746094,40.75358963012695,-73.85990142822266,40.71162414550781,1,N,2,27.5,0.0,0.5,0.3,0.0,0.0,,28.3,1.0 +1,2016-01-22 08:58:39,2016-01-22 09:01:19,1,0.6,,,-73.96048736572266,40.81573486328125,-73.96427917480469,40.8079719543457,1,N,1,4.0,0.0,0.5,0.3,0.95,0.0,,5.75,1.0 +1,2016-01-20 08:00:50,2016-01-20 08:09:18,1,1.5,,,-73.95391845703125,40.58767318725586,-73.93408203125,40.59668731689453,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,,10.55,1.0 +1,2016-01-04 22:36:23,2016-01-04 22:44:45,3,2.9,,,-73.94544982910156,40.83356857299805,-73.9366455078125,40.806617736816406,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-16 12:18:29,2016-01-16 12:24:44,1,1.22,,,-73.94507598876953,40.818485260009766,-73.95669555664062,40.817596435546875,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-02 01:36:53,2016-01-02 01:42:47,1,2.38,,,-73.86005401611328,40.71184539794922,-73.84062194824219,40.68574905395508,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-22 18:39:22,2016-01-22 18:59:56,1,4.23,,,-73.93299865722656,40.795989990234375,-73.9698486328125,40.75761795043945,1,N,2,17.5,1.0,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-01 23:09:20,2016-01-01 23:22:48,5,2.5,,,-73.8858413696289,40.747493743896484,-73.92897033691406,40.739356994628906,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-28 11:51:42,2016-01-28 12:22:30,2,12.75,,,-73.97544860839844,40.67002868652344,-73.77640533447266,40.64523696899414,1,N,1,37.0,0.0,0.5,0.3,5.5,0.0,,43.3,1.0 +2,2016-01-27 18:51:52,2016-01-27 18:57:30,1,0.76,,,-73.89166259765625,40.82122039794922,-73.88927459716797,40.814056396484375,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-08 18:27:10,2016-01-08 19:41:33,5,9.19,,,-73.92942810058594,40.68475341796875,-73.99568939208984,40.60329818725586,1,N,1,50.0,1.0,0.5,0.3,40.0,0.0,,91.8,1.0 +2,2016-01-13 13:20:19,2016-01-13 13:42:32,1,6.46,,,-73.86941528320312,40.7345085144043,-73.93099975585938,40.76576232910156,1,N,2,22.5,0.0,0.5,0.3,0.0,0.0,,23.3,1.0 +2,2016-01-18 11:42:26,2016-01-18 11:49:03,1,1.55,,,-73.95619201660156,40.74672317504883,-73.9398193359375,40.756614685058594,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-19 07:46:19,2016-01-19 07:51:05,2,0.78,,,-73.91184997558594,40.76776885986328,-73.91976928710938,40.758094787597656,1,N,1,5.5,0.0,0.5,0.3,1.89,0.0,,8.19,1.0 +2,2016-01-10 00:17:12,2016-01-10 00:23:11,1,1.08,,,-73.95344543457031,40.63972854614258,-73.95276641845703,40.65378189086914,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-08 18:21:36,2016-01-08 18:24:18,1,0.39,,,-73.9138412475586,40.76545333862305,-73.90885162353516,40.76754379272461,1,N,1,3.5,1.0,0.5,0.3,1.5,0.0,,6.8,1.0 +1,2016-01-18 10:50:20,2016-01-18 11:02:34,1,3.5,,,-73.92630767822266,40.76616668701172,-73.97078704833984,40.751766204833984,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-26 13:21:58,2016-01-26 13:34:55,1,1.89,,,-73.9370346069336,40.81362533569336,-73.95317077636719,40.79151153564453,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-21 19:23:44,2016-01-21 19:29:19,1,1.1,,,-73.98551940917969,40.67387771606445,-73.97206115722656,40.676631927490234,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-29 00:18:29,2016-01-29 00:20:05,1,0.6,,,-73.97091674804688,40.68776321411133,-73.96033477783203,40.68894577026367,1,N,1,4.0,0.5,0.5,0.3,1.05,0.0,,6.35,1.0 +2,2016-01-03 14:09:12,2016-01-03 14:20:00,1,1.73,,,-73.95703125,40.684818267822266,-73.95032501220703,40.69975662231445,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,,12.88,1.0 +2,2016-01-03 08:15:26,2016-01-03 08:17:26,1,0.87,,,-73.94803619384766,40.790042877197266,-73.95436096191406,40.77901077270508,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-17 21:40:28,2016-01-17 22:07:30,1,7.26,,,-73.9527816772461,40.786399841308594,-74.00272369384766,40.73388671875,1,N,1,25.5,0.5,0.5,0.3,5.36,0.0,,32.16,1.0 +1,2016-01-30 13:57:54,2016-01-30 14:08:58,2,1.7,,,-73.97605895996094,40.68388366699219,-73.98754119873047,40.66473388671875,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-13 20:53:50,2016-01-13 20:59:19,1,1.23,,,-73.96131896972656,40.810298919677734,-73.9715805053711,40.795326232910156,1,N,1,6.5,0.5,0.5,0.3,1.25,0.0,,9.05,1.0 +2,2016-01-12 09:17:59,2016-01-12 09:39:06,1,2.01,,,-73.92912292480469,40.679344177246094,-73.95169830322266,40.689796447753906,1,N,1,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-14 11:37:37,2016-01-14 11:47:44,1,1.51,,,-73.9369125366211,40.80420684814453,-73.95330047607422,40.81747817993164,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-20 11:53:43,2016-01-20 11:53:47,1,6.1,,,-73.94853210449219,40.829349517822266,-73.94862365722656,40.82920837402344,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-09 16:00:55,2016-01-09 16:08:11,1,1.15,,,-73.89144897460938,40.7465705871582,-73.89095306396484,40.7352180480957,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-26 19:41:47,2016-01-26 19:47:59,1,0.83,,,-73.98741149902344,40.69190216064453,-73.99480438232422,40.6845703125,1,N,1,6.0,1.0,0.5,0.3,1.0,0.0,,8.8,1.0 +2,2016-01-26 11:34:34,2016-01-26 11:43:49,1,1.44,,,-73.95694732666016,40.71854019165039,-73.95033264160156,40.73417282104492,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-27 23:51:15,2016-01-28 00:03:13,1,2.6,,,-73.96401977539062,40.678794860839844,-73.93779754638672,40.66089630126953,1,N,1,11.0,0.5,0.5,0.3,2.21,0.0,,14.51,1.0 +2,2016-01-01 01:13:13,2016-01-01 01:13:19,1,0.0,,,-73.79655456542969,40.70952606201172,-73.79654693603516,40.709537506103516,5,N,1,22.0,0.0,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-15 20:57:08,2016-01-15 21:03:38,1,1.22,,,-73.9924545288086,40.69864273071289,-74.0020980834961,40.68488311767578,1,N,1,6.5,0.5,0.5,0.3,2.34,0.0,,10.14,1.0 +2,2016-01-17 05:38:35,2016-01-17 05:45:52,1,2.09,,,-73.95411682128906,40.7107048034668,-73.92240905761719,40.70927810668945,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-02 16:21:30,2016-01-02 16:33:23,1,1.65,,,-73.94180297851562,40.8381462097168,-73.93106079101562,40.822601318359375,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-20 14:16:47,2016-01-20 14:25:39,1,1.21,,,-73.88972473144531,40.746002197265625,-73.869140625,40.749046325683594,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-16 10:33:56,2016-01-16 11:02:11,1,2.6,,,-73.86282348632812,40.749656677246094,-73.82215118408203,40.75428771972656,1,N,2,18.5,0.0,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-03 19:57:09,2016-01-03 20:13:25,1,2.81,,,-73.95960998535156,40.71612548828125,-73.95733642578125,40.68770980834961,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-29 21:39:37,2016-01-29 22:05:17,1,4.4,,,-73.97467803955078,40.680362701416016,-73.97594451904297,40.72854995727539,1,N,2,19.5,0.5,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-02 12:03:45,2016-01-02 12:12:09,1,1.53,,,-73.9196548461914,40.76603698730469,-73.8955078125,40.766357421875,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-30 21:43:13,2016-01-30 21:51:07,1,1.07,,,-73.95560455322266,40.80420684814453,-73.94087219238281,40.800010681152344,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-04 22:46:32,2016-01-04 23:10:02,2,5.23,,,-73.9666519165039,40.6834602355957,-73.98377990722656,40.74375534057617,1,N,2,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-16 02:11:17,2016-01-16 02:26:37,1,7.2,,,-73.890869140625,40.746826171875,-73.82166290283203,40.78583908081055,1,N,1,22.0,0.5,0.5,0.3,4.66,0.0,,27.96,1.0 +1,2016-01-16 01:40:07,2016-01-16 01:48:13,1,1.4,,,-73.94851684570312,40.82888412475586,-73.94466400146484,40.81446075439453,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,,11.15,1.0 +2,2016-01-01 01:00:09,2016-01-01 01:08:27,1,0.69,,,-73.9544448852539,40.73112869262695,-73.95764923095703,40.725059509277344,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-27 20:06:48,2016-01-27 20:14:22,1,1.47,,,-73.93892669677734,40.805137634277344,-73.9532241821289,40.78578186035156,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-21 12:23:11,2016-01-21 13:28:39,1,11.49,,,-73.99050903320312,40.701141357421875,-73.95970153808594,40.709022521972656,1,N,1,49.5,0.0,0.5,0.3,0.0,0.0,,50.3,1.0 +2,2016-01-30 20:14:33,2016-01-30 20:40:39,5,2.73,,,-73.96014404296875,40.71553039550781,-73.99842834472656,40.7242317199707,1,N,1,17.0,0.5,0.5,0.3,3.66,0.0,,21.96,1.0 +2,2016-01-16 20:26:35,2016-01-16 20:34:26,1,1.56,,,-73.93245697021484,40.79567337036133,-73.95387268066406,40.80640411376953,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-25 20:50:54,2016-01-25 21:01:59,1,1.8,,,-73.99417877197266,40.6607666015625,-73.97944641113281,40.677650451660156,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-12 12:40:51,2016-01-12 12:44:39,1,0.81,,,-73.93872833251953,40.826988220214844,-73.9464340209961,40.81683349609375,1,N,1,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-22 08:39:11,2016-01-22 08:52:53,1,4.7,,,-73.98178100585938,40.57698059082031,-74.02851867675781,40.618682861328125,1,N,1,16.0,0.0,0.5,0.3,3.36,0.0,,20.16,1.0 +2,2016-01-17 17:41:11,2016-01-17 17:51:23,1,1.92,,,-73.93856048583984,40.81712341308594,-73.91409301757812,40.83152389526367,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-30 18:55:50,2016-01-30 19:10:14,1,3.04,,,-73.9392318725586,40.80541229248047,-73.97575378417969,40.79149627685547,1,N,1,12.0,0.0,0.5,0.3,1.25,0.0,,14.05,1.0 +1,2016-01-21 17:54:12,2016-01-21 18:00:34,1,1.1,,,-73.92561340332031,40.76190948486328,-73.93852996826172,40.75286865234375,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-10 05:25:00,2016-01-10 06:05:28,1,19.05,,,-73.95344543457031,40.78655242919922,-73.78976440429688,40.64693069458008,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,,70.01,1.0 +2,2016-01-29 21:28:15,2016-01-29 21:30:25,1,0.45,,,-73.85122680664062,40.694000244140625,-73.8541259765625,40.70064163208008,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-29 03:15:48,2016-01-29 03:26:31,1,2.06,,,-73.95594787597656,40.804649353027344,-73.94877624511719,40.82902145385742,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-09 09:48:24,2016-01-09 09:53:59,1,0.84,,,-73.8899917602539,40.74687194824219,-73.88536071777344,40.7553596496582,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-15 17:43:45,2016-01-15 17:51:24,2,1.53,,,-73.82998657226562,40.713783264160156,-73.83170318603516,40.699832916259766,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-09 11:46:34,2016-01-09 11:57:12,1,1.6,,,-73.99554443359375,40.682960510253906,-73.97978973388672,40.669166564941406,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-28 12:34:23,2016-01-28 12:39:51,1,1.18,,,-73.95228576660156,40.81117630004883,-73.94600677490234,40.82539749145508,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-25 18:24:41,2016-01-25 18:47:34,1,4.0,,,-73.86217498779297,40.73033905029297,-73.84651184082031,40.69514846801758,1,N,1,17.5,1.0,0.5,0.3,3.85,0.0,,23.15,1.0 +2,2016-01-25 14:02:57,2016-01-25 14:21:32,1,5.94,,,-73.99801635742188,40.68271255493164,-73.96467590332031,40.715248107910156,1,N,2,19.0,0.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-26 11:06:38,2016-01-26 11:41:20,1,14.81,,,-73.8272705078125,40.85261535644531,-73.98974609375,40.767425537109375,1,N,1,43.0,0.0,0.5,0.3,10.95,0.0,,54.75,1.0 +2,2016-01-30 19:41:41,2016-01-30 19:46:04,3,0.58,,,-73.96380615234375,40.80311965942383,-73.9559326171875,40.80354309082031,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,,6.8,1.0 +2,2016-01-08 14:45:17,2016-01-08 15:01:56,6,2.53,,,-73.84423065185547,40.72138977050781,-73.8490982055664,40.69453048706055,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-12 16:45:49,2016-01-12 16:50:57,1,1.0,,,-73.9188232421875,40.75911331176758,-73.90834045410156,40.7708854675293,1,N,1,5.5,1.0,0.5,0.3,1.45,0.0,,8.75,1.0 +2,2016-01-29 22:01:13,2016-01-29 22:22:44,1,5.4,,,-73.88846588134766,40.747127532958984,-73.95951080322266,40.71807861328125,1,N,1,21.0,0.5,0.5,0.3,3.0,0.0,,25.3,1.0 +2,2016-01-29 03:53:48,2016-01-29 03:59:38,1,1.15,,,-73.94676971435547,40.8161506652832,-73.93936920166016,40.83150863647461,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-16 23:20:04,2016-01-16 23:35:31,1,3.74,,,-73.90753936767578,40.835914611816406,-73.87625122070312,40.829124450683594,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-16 03:15:45,2016-01-16 03:35:14,2,2.58,,,-73.95502471923828,40.68909454345703,-73.9308853149414,40.67142868041992,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-17 16:30:30,2016-01-17 16:38:24,1,1.0,,,-73.97756958007812,40.684417724609375,-73.9874038696289,40.683006286621094,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-14 07:48:12,2016-01-14 08:39:42,1,5.1,,,-73.90638732910156,40.74550247192383,-73.95206451416016,40.77388381958008,1,N,1,32.5,0.0,0.5,0.3,2.0,0.0,,35.3,1.0 +2,2016-01-05 06:35:42,2016-01-05 06:44:20,1,1.95,,,-73.95455932617188,40.805763244628906,-73.9747314453125,40.79081726074219,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-29 18:12:53,2016-01-29 18:16:50,1,0.63,,,-73.94105529785156,40.78828811645508,-73.9352798461914,40.79624938964844,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-20 18:09:19,2016-01-20 19:00:22,1,18.12,,,-73.94039916992188,40.814666748046875,-73.78068542480469,40.64495849609375,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,,58.34,1.0 +2,2016-01-07 15:29:14,2016-01-07 15:42:32,1,3.2,,,-73.81533813476562,40.704532623291016,-73.76872253417969,40.70818328857422,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-20 11:15:06,2016-01-20 11:32:39,1,8.29,,,-73.8448486328125,40.72157287597656,-73.92115020751953,40.763160705566406,1,N,2,25.5,0.0,0.5,0.3,0.0,0.0,,26.3,1.0 +2,2016-01-15 20:37:06,2016-01-15 21:00:02,1,2.84,,,-73.96199035644531,40.71337127685547,-73.99645233154297,40.72544479370117,1,N,1,16.0,0.5,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-26 12:28:54,2016-01-26 12:38:12,1,1.21,,,-73.9700698852539,40.694190979003906,-73.98094940185547,40.68997573852539,1,N,1,7.5,0.0,0.5,0.3,3.0,0.0,,11.3,1.0 +2,2016-01-09 14:45:35,2016-01-09 15:33:02,1,18.38,,,-73.98361206054688,40.661983489990234,-73.77637481689453,40.6452751159668,1,N,1,54.0,0.0,0.5,0.3,16.44,0.0,,71.24,1.0 +2,2016-01-12 15:19:21,2016-01-12 15:37:19,5,3.16,,,-73.93993377685547,40.82067108154297,-73.97035217285156,40.78590774536133,1,N,1,15.0,0.0,0.5,0.3,1.5,0.0,,17.3,1.0 +2,2016-01-14 23:24:39,2016-01-14 23:39:52,1,3.02,,,-73.97639465332031,40.68281173706055,-73.98784637451172,40.664058685302734,1,N,1,13.0,0.5,0.5,0.3,1.0,0.0,,15.3,1.0 +1,2016-01-25 11:17:58,2016-01-25 11:22:59,2,0.8,,,-73.84419250488281,40.72124099731445,-73.83751678466797,40.71260070800781,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-13 02:15:02,2016-01-13 02:30:22,1,6.27,,,-73.84424591064453,40.72092056274414,-73.9124526977539,40.69927215576172,1,N,2,19.5,0.5,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-24 16:18:20,2016-01-24 16:21:26,1,0.53,,,-73.90809631347656,40.81305694580078,-73.91820526123047,40.81627655029297,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-02 17:52:48,2016-01-02 18:11:00,2,5.1,,,-73.99459075927734,40.70297622680664,-73.98506164550781,40.724021911621094,1,N,2,19.0,0.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-19 18:11:38,2016-01-19 18:25:40,1,2.41,,,-73.94500732421875,40.808128356933594,-73.91468811035156,40.822998046875,1,N,1,11.5,1.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-28 15:22:44,2016-01-28 15:30:58,1,0.68,,,-73.9465103149414,40.80049514770508,-73.95315551757812,40.791412353515625,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-01 05:25:17,2016-01-01 05:33:07,3,1.5,,,-73.93440246582031,40.698570251464844,-73.96084594726562,40.697200775146484,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,,10.55,1.0 +1,2016-01-29 05:15:55,2016-01-29 05:26:03,1,2.9,,,-73.8900146484375,40.747291564941406,-73.922119140625,40.76727294921875,1,N,1,11.0,0.5,0.5,0.3,3.0,0.0,,15.3,1.0 +2,2016-01-20 19:17:01,2016-01-20 19:22:55,5,1.61,,,-73.95197296142578,40.79011154174805,-73.94164276123047,40.80946731567383,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-04 22:47:04,2016-01-04 22:49:13,1,0.48,,,-73.88522338867188,40.74403762817383,-73.87744903564453,40.73853302001953,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-27 14:21:47,2016-01-27 14:43:44,1,2.1,,,-73.94627380371094,40.680419921875,-73.94231414794922,40.702239990234375,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-02 18:01:30,2016-01-02 18:06:49,6,0.66,,,-73.98384857177734,40.67770004272461,-73.97484588623047,40.6800537109375,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-10 13:20:35,2016-01-10 13:34:17,1,2.19,,,-73.92556762695312,40.76184844970703,-73.95693969726562,40.74560546875,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-12 12:50:43,2016-01-12 12:58:23,1,1.3,,,-73.97864532470703,40.673065185546875,-73.99335479736328,40.66143035888672,1,N,1,7.0,0.0,0.5,0.3,1.25,0.0,,9.05,1.0 +2,2016-01-17 01:43:48,2016-01-17 02:06:29,1,4.13,,,-73.95832061767578,40.71739196777344,-73.91529083251953,40.70128631591797,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-08 10:51:14,2016-01-08 10:54:13,1,0.79,,,-73.959716796875,40.801109313964844,-73.95794677734375,40.81098175048828,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,,6.3,1.0 +2,2016-01-28 16:44:42,2016-01-28 16:51:42,1,1.22,,,-73.8075180053711,40.700653076171875,-73.8082504272461,40.686859130859375,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-09 11:41:13,2016-01-09 11:56:45,1,3.45,,,-73.98332214355469,40.677188873291016,-74.01964569091797,40.637935638427734,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-07 20:03:23,2016-01-07 20:08:40,1,1.0,,,-73.94447326660156,40.67571258544922,-73.94400024414062,40.66202163696289,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,,8.15,1.0 +2,2016-01-15 22:18:26,2016-01-15 22:34:34,1,3.33,,,-73.9612045288086,40.714576721191406,-73.9710464477539,40.68003463745117,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-20 10:57:19,2016-01-20 11:27:03,1,3.95,,,-73.94965362548828,40.79693603515625,-73.98501586914062,40.759735107421875,1,N,1,20.0,0.0,0.5,0.3,4.16,0.0,,24.96,1.0 +2,2016-01-30 00:35:45,2016-01-30 00:43:38,1,1.47,,,-73.95994567871094,40.65630340576172,-73.96363067626953,40.677433013916016,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-13 19:25:32,2016-01-13 19:26:27,1,0.04,,,-73.85191345214844,40.83418655395508,-73.85139465332031,40.833221435546875,1,N,4,-2.5,-1.0,-0.5,-0.3,0.0,0.0,,-4.3,1.0 +2,2016-01-16 15:52:32,2016-01-16 15:57:34,1,1.05,,,-73.94658660888672,40.800506591796875,-73.94892120361328,40.7885856628418,1,N,1,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-16 13:33:51,2016-01-16 14:01:56,1,6.49,,,-73.9929428100586,40.69308090209961,-73.99095153808594,40.760738372802734,1,N,2,24.5,0.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-22 22:03:29,2016-01-22 22:09:50,1,0.59,,,-73.97716522216797,40.68141555786133,-73.98529052734375,40.670448303222656,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-16 15:21:13,2016-01-16 15:29:57,1,0.75,,,-73.99430847167969,40.68559265136719,-73.9930648803711,40.69443130493164,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-20 17:05:19,2016-01-20 17:08:22,1,0.5,,,-73.95413970947266,40.80607223510742,-73.95389556884766,40.80119323730469,1,N,1,4.5,1.0,0.5,0.3,1.0,0.0,,7.3,1.0 +2,2016-01-09 21:01:35,2016-01-09 21:32:52,2,9.49,,,-73.83587646484375,40.71796417236328,-73.95819091796875,40.773006439208984,1,N,1,31.5,0.5,0.5,0.3,8.2,0.0,,41.0,1.0 +2,2016-01-19 19:52:02,2016-01-19 20:11:14,1,8.77,,,-73.88195037841797,40.75587844848633,-73.80797576904297,40.68755340576172,1,N,2,24.5,1.0,0.5,0.3,0.0,0.0,,26.3,1.0 +2,2016-01-17 00:41:13,2016-01-17 00:46:48,3,1.52,,,-73.96245574951172,40.7099723815918,-73.9573745727539,40.72234344482422,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-15 10:58:06,2016-01-15 11:07:46,1,1.31,,,-73.9286117553711,40.85649871826172,-73.937255859375,40.84078598022461,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-08 00:16:35,2016-01-08 00:38:30,1,5.45,,,-73.91165161132812,40.775630950927734,-73.94877624511719,40.773860931396484,1,N,2,20.0,0.5,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-28 17:17:41,2016-01-28 17:20:43,1,0.49,,,-73.93305969238281,40.7639274597168,-73.93862915039062,40.7648811340332,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-17 14:11:24,2016-01-17 14:26:27,1,3.65,,,-73.91869354248047,40.74301528930664,-73.91708374023438,40.703033447265625,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-07 13:53:44,2016-01-07 14:04:10,1,1.55,,,-73.96195983886719,40.80552291870117,-73.94499206542969,40.813777923583984,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-04 06:15:25,2016-01-04 06:35:38,1,7.8,,,-73.94574737548828,40.820068359375,-73.87332153320312,40.77429962158203,1,N,1,25.0,0.0,0.5,0.3,6.25,5.54,,37.59,1.0 +2,2016-01-12 06:58:44,2016-01-12 07:38:42,1,5.37,,,-73.97850036621094,40.68788528442383,-73.9766616821289,40.75615692138672,1,N,2,28.0,0.0,0.5,0.3,0.0,0.0,,28.8,1.0 +2,2016-01-17 07:14:43,2016-01-17 07:17:57,1,0.91,,,-73.9539794921875,40.800540924072266,-73.95374298095703,40.79079818725586,1,N,1,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-14 18:56:33,2016-01-14 18:58:35,5,0.36,,,-73.93340301513672,40.71018600463867,-73.93329620361328,40.7053337097168,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-22 17:03:09,2016-01-22 17:58:49,1,11.4,,,-73.959228515625,40.68247604370117,-73.78282928466797,40.64404296875,1,N,1,45.0,1.0,0.5,0.3,9.35,0.0,,56.15,1.0 +1,2016-01-30 10:17:31,2016-01-30 10:23:34,1,0.7,,,-73.98442077636719,40.671485900878906,-73.97781372070312,40.674530029296875,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,,7.8,1.0 +2,2016-01-07 16:30:00,2016-01-07 16:48:19,1,6.04,,,-73.80005645751953,40.7027473449707,-73.85352325439453,40.7542610168457,1,N,2,20.5,1.0,0.5,0.3,0.0,0.0,,22.3,1.0 +1,2016-01-16 15:39:59,2016-01-16 15:53:27,1,2.2,,,-73.86373138427734,40.732784271240234,-73.83958435058594,40.7212028503418,1,N,1,10.5,0.0,0.5,0.3,2.8,0.0,,14.1,1.0 +1,2016-01-19 17:26:41,2016-01-19 17:36:45,1,1.7,,,-73.96202087402344,40.69403076171875,-73.96324920654297,40.71018981933594,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-08 03:06:42,2016-01-08 03:13:44,1,1.5,,,-73.95641326904297,40.708675384521484,-73.950439453125,40.72499465942383,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-07 15:36:55,2016-01-07 16:03:35,1,6.5,,,-73.9949722290039,40.66046142578125,-74.00212860107422,40.72999572753906,1,N,2,24.0,0.0,0.5,0.3,0.0,0.0,,24.8,1.0 +2,2016-01-13 19:27:18,2016-01-13 19:29:58,1,0.47,,,-73.93915557861328,40.798797607421875,-73.93447875976562,40.801876068115234,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-14 08:03:53,2016-01-14 08:24:07,1,4.06,,,-73.91926574707031,40.749420166015625,-73.97511291503906,40.75601577758789,1,N,1,16.5,0.0,0.5,0.3,2.0,0.0,,19.3,1.0 +2,2016-01-30 13:25:08,2016-01-30 13:31:14,1,1.16,,,-73.90281677246094,40.74150466918945,-73.89022827148438,40.74593734741211,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-18 22:22:14,2016-01-18 22:24:46,1,0.3,,,-73.86990356445312,40.74911117553711,-73.8675308227539,40.74778747558594,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-17 00:12:41,2016-01-17 00:20:17,1,1.34,,,-73.89117431640625,40.746952056884766,-73.87043762207031,40.73745346069336,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-12 17:51:09,2016-01-12 18:19:46,3,4.82,,,-73.98566436767578,40.677650451660156,-73.98722076416016,40.738983154296875,1,N,1,21.5,1.0,0.5,0.3,4.66,0.0,,27.96,1.0 +1,2016-01-17 14:37:10,2016-01-17 14:48:04,1,2.2,,,-73.8915786743164,40.74715805053711,-73.87140655517578,40.762210845947266,1,N,1,9.5,0.0,0.5,0.3,2.0,0.0,,12.3,1.0 +2,2016-01-22 07:51:49,2016-01-22 08:02:35,1,1.78,,,-73.98294830322266,40.65756607055664,-73.97877502441406,40.66636276245117,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-10 05:18:36,2016-01-10 05:39:11,1,8.38,,,-73.95787811279297,40.72184753417969,-74.00469970703125,40.65088653564453,1,N,2,25.5,0.5,0.5,0.3,0.0,0.0,,26.8,1.0 +2,2016-01-04 17:43:57,2016-01-04 17:49:00,1,0.87,,,-73.9556884765625,40.803958892822266,-73.9450454711914,40.80823516845703,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-14 10:03:24,2016-01-14 10:11:49,1,1.8,,,-74.00340270996094,40.57773971557617,-73.9818115234375,40.576927185058594,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-10 02:27:52,2016-01-10 02:38:36,1,4.32,,,-73.94268035888672,40.83726119995117,-73.9760513305664,40.79154586791992,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-12 15:30:31,2016-01-12 15:42:31,1,2.32,,,-73.90338134765625,40.74538803100586,-73.9043960571289,40.72195053100586,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-24 16:04:30,2016-01-24 16:11:47,2,1.18,,,-73.94863891601562,40.80836486816406,-73.94078063964844,40.822418212890625,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-12 11:45:19,2016-01-12 11:51:24,1,1.93,,,-73.89273834228516,40.74725341796875,-73.88726806640625,40.76081085205078,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-26 10:14:23,2016-01-26 10:20:36,1,0.7,,,-73.99641418457031,40.671478271484375,-73.98918151855469,40.66573715209961,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-12 07:09:59,2016-01-12 07:48:15,1,7.39,,,-73.94514465332031,40.81861114501953,-73.97087860107422,40.744834899902344,1,N,2,29.0,0.0,0.5,0.3,0.0,0.0,,29.8,1.0 +1,2016-01-11 20:17:16,2016-01-11 20:29:05,1,1.4,,,-73.8782958984375,40.748199462890625,-73.86560821533203,40.75148010253906,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-13 14:53:34,2016-01-13 15:02:46,1,1.58,,,-73.93365478515625,40.79850387573242,-73.95217895507812,40.80315017700195,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-18 13:19:08,2016-01-18 13:28:07,1,3.33,,,-73.93201446533203,40.79560089111328,-73.96117401123047,40.76261901855469,5,N,1,16.5,0.0,0.0,0,2.0,0.0,,18.5,2.0 +2,2016-01-07 15:08:41,2016-01-07 15:25:15,1,1.98,,,-73.98583984375,40.67384338378906,-73.98397064208984,40.695281982421875,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,,15.36,1.0 +1,2016-01-16 22:52:19,2016-01-16 23:14:08,2,4.4,,,-73.94424438476562,40.7147216796875,-73.97508239746094,40.674224853515625,1,N,1,18.0,0.5,0.5,0.3,2.0,0.0,,21.3,1.0 +2,2016-01-22 01:29:01,2016-01-22 01:35:52,1,1.23,,,-73.89092254638672,40.746952056884766,-73.87753295898438,40.75362014770508,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-08 23:52:59,2016-01-09 00:04:16,1,1.44,,,-73.94326782226562,40.708065032958984,-73.95641326904297,40.72161865234375,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,,11.3,1.0 +2,2016-01-12 19:21:23,2016-01-12 19:29:56,1,1.43,,,-73.97434997558594,40.68971633911133,-73.99549102783203,40.69062042236328,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-26 09:26:54,2016-01-26 09:48:16,1,8.53,,,-73.95021057128906,40.78680419921875,-73.86412811279297,40.76980972290039,1,N,1,26.5,0.0,0.5,0.3,6.57,5.54,,39.41,1.0 +2,2016-01-26 19:34:34,2016-01-26 19:38:20,1,0.58,,,-73.91383361816406,40.76536560058594,-73.92020416259766,40.75749206542969,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-21 11:57:14,2016-01-21 12:01:56,1,0.6,,,-73.8985595703125,40.85158157348633,-73.88909149169922,40.848201751708984,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-18 09:11:25,2016-01-18 09:30:06,1,4.68,,,-73.87877655029297,40.82804870605469,-73.92902374267578,40.82215118408203,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-11 22:48:27,2016-01-11 23:08:31,1,10.11,,,-73.9813232421875,40.68998336791992,-73.87313842773438,40.70461654663086,1,N,2,29.5,0.5,0.5,0.3,0.0,0.0,,30.8,1.0 +2,2016-01-12 08:07:14,2016-01-12 08:11:37,1,0.5,,,-73.98297119140625,40.67316818237305,-73.98859405517578,40.670677185058594,1,N,1,5.0,0.0,0.5,0.3,0.58,0.0,,6.38,1.0 +2,2016-01-09 01:44:57,2016-01-09 01:56:29,1,2.53,,,-73.9451675415039,40.808021545410156,-73.9092025756836,40.81587600708008,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-08 10:48:57,2016-01-08 11:49:03,2,7.3,,,-73.94841766357422,40.82950973510742,-73.95462036132812,40.765846252441406,1,N,3,40.0,0.0,0.5,0.3,0.0,0.0,,40.8,1.0 +2,2016-01-18 00:03:23,2016-01-18 00:19:30,1,4.2,,,-73.96760559082031,40.6873664855957,-74.00041198730469,40.72881317138672,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +1,2016-01-15 11:29:22,2016-01-15 11:54:26,1,3.1,,,-73.97785949707031,40.684814453125,-74.00101470947266,40.72032928466797,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-15 17:11:45,2016-01-15 17:21:55,1,1.19,,,-73.95626831054688,40.80308532714844,-73.93956756591797,40.804046630859375,1,N,1,8.0,1.0,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-27 05:24:35,2016-01-27 05:34:17,3,2.44,,,-73.93598937988281,40.79528045654297,-73.96212005615234,40.776302337646484,1,N,1,10.0,0.5,0.5,0.3,2.0,0.0,,13.3,1.0 +2,2016-01-20 19:48:45,2016-01-20 19:52:15,1,0.72,,,-73.83087158203125,40.713932037353516,-73.82591247558594,40.705963134765625,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-18 15:27:21,2016-01-18 15:37:50,1,1.7,,,-73.91384887695312,40.75360870361328,-73.94391632080078,40.75476837158203,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-06 08:41:02,2016-01-06 08:54:40,2,3.0,,,-73.86344909667969,40.753665924072266,-73.81629180908203,40.75526428222656,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-22 17:48:32,2016-01-22 17:58:09,1,0.77,,,-73.99041748046875,40.686790466308594,-73.97876739501953,40.685546875,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-01 02:52:55,2016-01-01 03:07:07,1,9.2,,,-73.93916320800781,40.848514556884766,-74.06200408935547,40.92084884643555,3,N,2,43.5,0.5,0.0,0.3,0.0,10.5,,54.8,1.0 +2,2016-01-27 18:32:39,2016-01-27 18:41:34,1,2.52,,,-73.95218658447266,40.79853820800781,-73.9707260131836,40.78860855102539,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-19 19:22:39,2016-01-19 19:35:46,1,3.02,,,-73.96009063720703,40.80833053588867,-73.95242309570312,40.77849578857422,1,N,1,12.5,1.0,0.5,0.3,3.58,0.0,,17.88,1.0 +2,2016-01-01 05:13:49,2016-01-01 05:25:08,1,2.03,,,-73.94657897949219,40.695823669433594,-73.92244720458984,40.68111038208008,1,N,1,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-27 16:28:27,2016-01-27 17:08:12,2,7.7,,,-73.83125305175781,40.714656829833984,-73.93577575683594,40.68569564819336,1,N,1,31.0,1.0,0.5,0.3,8.2,0.0,,41.0,1.0 +2,2016-01-23 02:39:18,2016-01-23 02:42:06,1,0.67,,,-73.92616271972656,40.82816696166992,-73.9306411743164,40.83412170410156,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-07 04:11:24,2016-01-07 04:17:59,1,2.29,,,-73.95897674560547,40.714752197265625,-73.94778442382812,40.687286376953125,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-28 09:05:19,2016-01-28 09:08:07,1,0.4,,,-73.9964599609375,40.69403839111328,-73.99291229248047,40.69760513305664,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-10 02:35:50,2016-01-10 02:41:30,1,1.06,,,-73.95755767822266,40.7178955078125,-73.9540786743164,40.729888916015625,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-08 18:59:40,2016-01-08 19:29:27,1,5.06,,,-74.01046752929688,40.671974182128906,-73.9405288696289,40.674705505371094,1,N,1,21.5,1.0,0.5,0.3,4.66,0.0,,27.96,1.0 +2,2016-01-29 22:58:53,2016-01-29 23:02:05,1,0.65,,,-73.97673034667969,40.68724822998047,-73.97079467773438,40.69301986694336,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-08 16:15:39,2016-01-08 16:16:18,1,0.01,,,-73.9939193725586,40.70274353027344,-73.99417114257812,40.70275115966797,1,N,2,2.5,1.0,0.5,0.3,0.0,0.0,,4.3,1.0 +1,2016-01-30 16:41:17,2016-01-30 16:50:33,1,1.7,,,-73.94217681884766,40.82889938354492,-73.9501724243164,40.809844970703125,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-18 01:45:19,2016-01-18 01:49:42,1,0.83,,,-73.9435806274414,40.8255729675293,-73.93775177001953,40.83482360839844,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-21 19:48:01,2016-01-21 19:51:46,1,1.04,,,-73.99413299560547,40.68608474731445,-74.00155639648438,40.672908782958984,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-06 20:57:01,2016-01-06 21:02:43,1,1.11,,,-73.91902160644531,40.75893783569336,-73.90574645996094,40.76442337036133,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-08 22:35:49,2016-01-08 22:45:58,1,2.32,,,-73.97718048095703,40.68358612060547,-73.95701599121094,40.6567268371582,1,N,1,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-13 21:44:35,2016-01-13 21:55:39,3,1.79,,,-73.92545318603516,40.76173400878906,-73.90320587158203,40.77406692504883,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-13 22:45:35,2016-01-13 23:12:02,1,10.8,,,-73.95864868164062,40.72119903564453,-73.9234848022461,40.809391021728516,1,N,2,32.0,0.5,0.5,0.3,0.0,0.0,,33.3,1.0 +2,2016-01-25 07:52:09,2016-01-25 08:09:34,1,5.67,,,-73.82503509521484,40.724979400634766,-73.83649444580078,40.78295135498047,1,N,1,19.5,0.0,0.5,0.3,5.0,0.0,,25.3,1.0 +2,2016-01-02 09:53:37,2016-01-02 10:00:50,1,1.4,,,-73.93697357177734,40.75960159301758,-73.91813659667969,40.761390686035156,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-16 00:18:30,2016-01-16 00:22:48,1,0.77,,,-73.95381164550781,40.66386795043945,-73.96117401123047,40.671504974365234,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-28 19:21:35,2016-01-28 19:49:57,1,4.2,,,-73.97465515136719,40.6756477355957,-73.94288635253906,40.7073860168457,1,N,1,21.0,1.0,0.5,0.3,0.0,0.0,,22.8,1.0 +1,2016-01-14 12:59:52,2016-01-14 13:08:30,1,2.1,,,-73.917724609375,40.834259033203125,-73.89685821533203,40.85429382324219,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-30 22:31:04,2016-01-30 22:36:12,1,1.04,,,-73.96131134033203,40.68230056762695,-73.95510864257812,40.68916702270508,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +1,2016-01-13 23:14:59,2016-01-13 23:55:22,1,10.2,,,-73.91801452636719,40.66366958618164,-73.84593963623047,40.70967483520508,1,N,1,37.5,0.5,0.5,0.3,38.0,0.0,,76.8,1.0 +1,2016-01-17 11:53:28,2016-01-17 12:00:24,1,1.8,,,-73.93910217285156,40.80516815185547,-73.956787109375,40.785972595214844,1,N,1,7.5,0.0,0.5,0.3,2.05,0.0,,10.35,1.0 +2,2016-01-09 20:14:49,2016-01-09 20:21:16,1,1.04,,,-73.977783203125,40.68475341796875,-73.96634674072266,40.69083023071289,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-03 00:18:25,2016-01-03 00:29:32,1,2.3,,,-73.94025421142578,40.72323989868164,-73.92610931396484,40.69800567626953,1,N,1,10.5,0.5,0.5,0.3,2.35,0.0,,14.15,1.0 +2,2016-01-28 14:03:01,2016-01-28 14:33:30,1,3.61,,,-73.95208740234375,40.79005813598633,-73.98939514160156,40.757076263427734,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-12 10:07:45,2016-01-12 10:13:29,1,0.72,,,-73.84426879882812,40.72136306762695,-73.85507202148438,40.72134017944336,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-15 11:32:43,2016-01-15 11:35:44,1,0.32,,,-73.94611358642578,40.792503356933594,-73.94463348388672,40.787540435791016,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-07 08:16:28,2016-01-07 08:29:26,1,1.51,,,-73.92447662353516,40.66957092285156,-73.93598175048828,40.67888641357422,1,N,1,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-18 18:52:35,2016-01-18 19:08:23,1,3.22,,,-73.91883850097656,40.7430419921875,-73.8918228149414,40.75482940673828,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-30 17:39:16,2016-01-30 17:51:02,1,2.41,,,-73.94642639160156,40.79228973388672,-73.97783660888672,40.7867431640625,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-02 21:36:09,2016-01-02 21:41:49,1,1.03,,,-74.00447845458984,40.65419387817383,-73.99152374267578,40.66022872924805,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-10 02:44:31,2016-01-10 02:51:01,1,2.38,,,-73.92137145996094,40.64494323730469,-73.89388275146484,40.66472625732422,1,N,1,9.0,0.5,0.5,0.3,2.58,0.0,,12.88,1.0 +2,2016-01-16 22:44:07,2016-01-16 22:52:01,1,1.7,,,-73.9551010131836,40.69454574584961,-73.96377563476562,40.67770004272461,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-21 13:37:36,2016-01-21 13:58:20,1,3.82,,,-73.944580078125,40.794620513916016,-73.91778564453125,40.83712387084961,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,,20.76,1.0 +1,2016-01-15 14:46:19,2016-01-15 14:50:44,1,0.7,,,-73.90345001220703,40.745792388916016,-73.90755462646484,40.73723220825195,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,,6.8,1.0 +2,2016-01-04 08:41:47,2016-01-04 09:15:18,1,17.91,,,-73.94142150878906,40.811805725097656,-73.77870178222656,40.64677047729492,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,,52.8,1.0 +2,2016-01-17 20:50:54,2016-01-17 20:58:27,2,1.4,,,-73.95833587646484,40.71723556518555,-73.93829345703125,40.721092224121094,1,N,1,7.0,0.5,0.5,0.3,2.49,0.0,,10.79,1.0 +2,2016-01-01 14:31:05,2016-01-01 14:39:33,2,2.29,,,-73.9406509399414,40.673927307128906,-73.97752380371094,40.68426513671875,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-08 23:19:45,2016-01-08 23:51:05,1,8.23,,,-73.89390563964844,40.65005111694336,-73.7776870727539,40.68800354003906,1,N,2,27.5,0.5,0.5,0.3,0.0,0.0,,28.8,1.0 +2,2016-01-07 16:38:00,2016-01-07 17:08:06,1,2.74,,,-73.95361328125,40.79090118408203,-73.9745101928711,40.75827407836914,1,N,2,19.0,1.0,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-20 17:37:01,2016-01-20 17:44:58,1,2.9,,,-73.82615661621094,40.74710464477539,-73.83138275146484,40.769710540771484,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-16 13:17:27,2016-01-16 13:29:29,1,2.2,,,-73.9566650390625,40.747867584228516,-73.92173767089844,40.74532699584961,1,N,1,10.5,0.5,0.5,0.3,1.0,0.0,,12.8,1.0 +2,2016-01-16 00:37:41,2016-01-16 00:57:30,1,3.27,,,-73.95648193359375,40.71692657470703,-73.92034912109375,40.69072723388672,1,N,1,15.0,0.5,0.5,0.3,3.26,0.0,,19.56,1.0 +2,2016-01-22 16:28:00,2016-01-22 16:39:29,1,1.51,,,-73.95143127441406,40.79085159301758,-73.95279693603516,40.776485443115234,1,N,1,9.0,1.0,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-07 16:38:18,2016-01-07 16:46:47,1,1.54,,,-73.9869384765625,40.69126510620117,-73.968994140625,40.6939811706543,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-25 20:19:50,2016-01-25 20:33:12,1,2.38,,,-73.93953704833984,40.80509567260742,-73.9537353515625,40.77870178222656,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-03 16:13:13,2016-01-03 16:22:55,1,3.24,,,-73.89105224609375,40.74675750732422,-73.8704833984375,40.773765563964844,1,N,1,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-06 19:46:15,2016-01-06 19:53:42,1,0.91,,,-73.8886489868164,40.74711990356445,-73.88318634033203,40.75403594970703,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 12:24:42,2016-01-09 12:58:09,1,8.62,,,-73.98595428466797,40.66903305053711,-73.99031829833984,40.76073455810547,1,N,1,30.0,0.0,0.5,0.3,7.7,0.0,,38.5,1.0 +1,2016-01-05 15:15:56,2016-01-05 15:20:43,1,1.2,,,-73.92029571533203,40.83100509643555,-73.90785217285156,40.84376525878906,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-21 12:35:49,2016-01-21 12:39:36,1,0.83,,,-73.9472427368164,40.82585144042969,-73.94868469238281,40.81593322753906,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-19 20:14:51,2016-01-19 20:20:21,6,1.44,,,-73.99457550048828,40.690399169921875,-74.00720977783203,40.675819396972656,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-19 23:37:15,2016-01-19 23:56:22,1,5.6,,,-73.99332427978516,40.668609619140625,-74.00289916992188,40.73764419555664,1,N,1,19.0,0.5,0.5,0.3,7.75,5.54,,33.59,1.0 +2,2016-01-12 22:46:04,2016-01-12 23:08:51,1,5.1,,,-73.9578628540039,40.722049713134766,-73.98291778564453,40.66840744018555,1,N,1,19.0,0.5,0.5,0.3,3.0,0.0,,23.3,1.0 +2,2016-01-05 18:46:29,2016-01-05 18:55:33,6,1.24,,,-73.99088287353516,40.692378997802734,-73.97053527832031,40.68772506713867,1,N,1,7.5,1.0,0.5,0.3,2.79,0.0,,12.09,1.0 +2,2016-01-26 21:00:00,2016-01-26 21:06:29,1,1.21,,,-73.95336151123047,40.71894073486328,-73.93598937988281,40.71455383300781,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-04 00:16:42,2016-01-04 00:17:55,1,0.1,,,-73.94336700439453,40.81079864501953,-73.94384002685547,40.81026077270508,1,N,3,3.0,0.5,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-26 18:56:34,2016-01-26 19:02:46,1,1.27,,,-73.9958267211914,40.67910385131836,-74.0112075805664,40.67888259887695,1,N,1,6.5,1.0,0.5,0.3,2.49,0.0,,10.79,1.0 +2,2016-01-16 02:17:58,2016-01-16 02:24:07,1,0.8,,,-73.9576644897461,40.72216033935547,-73.96585083007812,40.71278381347656,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-14 17:57:02,2016-01-14 18:39:47,1,8.02,,,-73.85102081298828,40.73058319091797,-73.96773529052734,40.69743347167969,1,N,1,31.5,1.0,0.5,0.3,8.32,0.0,,41.62,1.0 +2,2016-01-02 22:13:28,2016-01-02 22:17:09,1,0.62,,,-73.90453338623047,40.87238311767578,-73.89918518066406,40.87415313720703,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-27 08:41:26,2016-01-27 08:59:40,1,2.68,,,-73.95951080322266,40.81410217285156,-73.98428344726562,40.77984619140625,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-21 16:02:30,2016-01-21 16:12:46,1,0.94,,,-73.92262268066406,40.678993225097656,-73.93183898925781,40.68767166137695,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-05 22:11:00,2016-01-05 22:21:44,1,2.11,,,-73.99552154541016,40.690521240234375,-73.96204376220703,40.68478012084961,1,N,1,9.5,0.5,0.5,0.3,2.7,0.0,,13.5,1.0 +1,2016-01-02 07:47:37,2016-01-02 07:49:40,2,0.3,,,-73.94608306884766,40.75008010864258,-73.94559478759766,40.74618148803711,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +1,2016-01-09 23:11:37,2016-01-09 23:26:27,1,6.3,,,-73.9909439086914,40.686012268066406,-74.02869415283203,40.62456512451172,1,N,1,19.5,0.5,0.5,0.3,4.15,0.0,,24.95,1.0 +1,2016-01-15 22:13:03,2016-01-15 22:37:28,1,5.1,,,-73.9494857788086,40.79182052612305,-73.9364242553711,40.73616027832031,1,N,2,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-07 08:35:20,2016-01-07 09:05:48,1,6.78,,,-73.99765014648438,40.695194244384766,-73.97389221191406,40.61285400390625,1,N,1,25.0,0.0,0.5,0.3,5.16,0.0,,30.96,1.0 +2,2016-01-21 19:09:31,2016-01-21 19:29:41,1,3.38,,,-73.94041442871094,40.798179626464844,-73.98164367675781,40.78105163574219,1,N,1,15.5,1.0,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-08 18:47:49,2016-01-08 19:02:11,3,2.67,,,-73.94843292236328,40.80336380004883,-73.97793579101562,40.78351593017578,1,N,1,11.5,1.0,0.5,0.3,1.5,0.0,,14.8,1.0 +1,2016-01-20 08:57:13,2016-01-20 09:28:27,1,5.2,,,-73.96615600585938,40.58514404296875,-73.9830551147461,40.64670181274414,1,N,2,22.5,0.0,0.5,0.3,0.0,0.0,,23.3,1.0 +2,2016-01-25 11:42:09,2016-01-25 11:48:35,5,0.84,,,-73.94245147705078,40.84153366088867,-73.93755340576172,40.8529167175293,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-29 12:55:43,2016-01-29 13:01:33,1,0.58,,,-73.85704040527344,40.728477478027344,-73.86265563964844,40.72972869873047,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-10 19:36:05,2016-01-10 19:48:04,1,3.16,,,-73.9391098022461,40.80529022216797,-73.97563171386719,40.78757858276367,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-12 10:38:19,2016-01-12 10:57:11,1,6.35,,,-73.8021240234375,40.701881408691406,-73.75540161132812,40.65146255493164,1,N,2,21.5,0.0,0.5,0.3,0.0,0.0,,22.3,1.0 +2,2016-01-11 19:02:13,2016-01-11 19:05:50,1,0.68,,,-73.95293426513672,40.67891311645508,-73.9625015258789,40.67752456665039,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-21 17:23:20,2016-01-21 17:27:34,1,0.55,,,-73.93905639648438,40.79541015625,-73.93949127197266,40.79024887084961,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-02 09:56:37,2016-01-02 10:04:33,1,1.3,,,-73.8667221069336,40.7495231628418,-73.89000701904297,40.74710464477539,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-02 14:07:06,2016-01-02 14:31:32,1,9.99,,,-73.9033432006836,40.745853424072266,-73.79512023925781,40.70745849609375,1,N,1,31.0,0.0,0.5,0.3,6.36,0.0,,38.16,1.0 +1,2016-01-15 18:46:56,2016-01-15 19:17:30,1,5.9,,,-73.98916625976562,40.69368362426758,-73.98780059814453,40.75609588623047,1,N,2,24.5,1.0,0.5,0.3,0.0,0.0,,26.3,1.0 +2,2016-01-13 16:57:24,2016-01-13 17:20:23,5,5.86,,,-73.94415283203125,40.79551315307617,-73.92660522460938,40.866825103759766,1,N,2,23.0,1.0,0.5,0.3,0.0,0.0,,24.8,1.0 +1,2016-01-01 23:46:41,2016-01-01 23:58:00,2,3.1,,,-73.99463653564453,40.68489456176758,-73.95744323730469,40.687705993652344,1,N,1,11.5,0.5,0.5,0.3,2.55,0.0,,15.35,1.0 +2,2016-01-06 10:13:20,2016-01-06 10:27:48,1,2.17,,,-73.94461822509766,40.794612884521484,-73.9734115600586,40.789554595947266,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-30 01:25:56,2016-01-30 01:41:48,2,4.0,,,-73.98857879638672,40.67013168334961,-73.96144104003906,40.62519836425781,1,Y,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-08 17:52:00,2016-01-08 18:07:06,1,2.32,,,-73.83058166503906,40.75947952270508,-73.84230041503906,40.783180236816406,1,N,1,12.0,1.0,0.5,0.3,4.14,0.0,,17.94,1.0 +2,2016-01-24 17:39:21,2016-01-24 17:49:46,1,1.98,,,-73.9371566772461,40.80169677734375,-73.93521881103516,40.80091094970703,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-03 00:06:01,2016-01-03 00:09:54,1,0.76,,,-73.84253692626953,40.71933364868164,-73.85551452636719,40.72195053100586,1,N,1,5.0,0.5,0.5,0.3,1.89,0.0,,8.19,1.0 +2,2016-01-15 20:16:29,2016-01-15 20:18:12,1,0.34,,,-73.94207000732422,40.81227111816406,-73.93900299072266,40.81650924682617,1,N,1,3.5,0.5,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-06 19:27:08,2016-01-06 19:40:48,1,5.15,,,-73.95045471191406,40.8099365234375,-73.98722839355469,40.768768310546875,1,N,1,17.0,1.0,0.5,0.3,4.7,0.0,,23.5,1.0 +2,2016-01-28 18:12:54,2016-01-28 18:23:36,1,1.15,,,-73.91205596923828,40.775203704833984,-73.89640045166016,40.76927185058594,1,N,1,8.0,1.0,0.5,0.3,2.94,0.0,,12.74,1.0 +2,2016-01-20 17:23:16,2016-01-20 17:33:05,6,1.68,,,-73.90362548828125,40.74492645263672,-73.90023803710938,40.72903060913086,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-27 17:21:50,2016-01-27 17:43:05,1,3.47,,,-73.96741485595703,40.69084167480469,-74.01078033447266,40.67490768432617,1,N,1,14.5,1.0,0.5,0.3,4.08,0.0,,20.38,1.0 +2,2016-01-15 19:25:24,2016-01-15 19:30:28,1,0.67,,,-73.98578643798828,40.6696891784668,-73.97936248779297,40.678192138671875,1,N,1,5.5,1.0,0.5,0.3,1.82,0.0,,9.12,1.0 +1,2016-01-06 08:51:39,2016-01-06 09:01:57,1,1.1,,,-73.93898010253906,40.80550765991211,-73.94910430908203,40.79158401489258,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-03 14:33:03,2016-01-03 14:40:03,1,1.2,,,-73.95760345458984,40.71792984008789,-73.95455932617188,40.73243713378906,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-10 17:25:29,2016-01-10 17:42:04,1,2.35,,,-73.99052429199219,40.6937370300293,-73.97818756103516,40.671085357666016,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-11 17:20:42,2016-01-11 17:47:35,1,4.32,,,-73.95891571044922,40.81510543823242,-73.97260284423828,40.76331329345703,1,N,2,19.5,1.0,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-28 12:26:04,2016-01-28 13:04:00,1,12.63,,,-73.99056243896484,40.686641693115234,-73.87268829345703,40.77444839477539,1,N,1,40.0,0.0,0.5,0.3,5.0,0.0,,45.8,1.0 +1,2016-01-10 14:20:34,2016-01-10 14:26:56,1,0.7,,,-73.8848648071289,40.74763107299805,-73.89533233642578,40.74713897705078,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-15 00:51:36,2016-01-15 00:55:44,1,1.07,,,-73.92146301269531,40.766666412353516,-73.91050720214844,40.778873443603516,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-29 02:57:31,2016-01-29 03:06:23,1,2.18,,,-73.8304672241211,40.759586334228516,-73.83627319335938,40.785911560058594,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-24 10:22:06,2016-01-24 10:22:54,1,0.09,,,-73.8442153930664,40.72243118286133,-73.84394836425781,40.72121047973633,5,N,1,20.0,0.0,0.0,0,0.0,0.0,,20.0,2.0 +2,2016-01-09 22:01:12,2016-01-09 22:19:24,1,4.07,,,-73.9457778930664,40.79301834106445,-73.98822784423828,40.7644157409668,1,N,1,16.0,0.5,0.5,0.3,2.0,0.0,,19.3,1.0 +2,2016-01-14 15:34:25,2016-01-14 16:07:27,1,5.46,,,-73.87895965576172,40.879852294921875,-73.92548370361328,40.81761169433594,1,N,2,24.5,0.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-15 21:38:46,2016-01-15 21:43:27,1,0.95,,,-73.95317840576172,40.786865234375,-73.9531021118164,40.77681350708008,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-03 17:48:12,2016-01-03 18:15:01,1,7.33,,,-73.94204711914062,40.84184646606445,-73.99376678466797,40.75715637207031,1,N,2,26.5,0.0,0.5,0.3,0.0,0.0,,27.3,1.0 +2,2016-01-08 16:04:00,2016-01-08 16:11:25,1,0.67,,,-73.87810516357422,40.748321533203125,-73.89107513427734,40.74702072143555,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-05 18:35:43,2016-01-05 18:40:50,1,1.23,,,-73.91161346435547,40.768028259277344,-73.89222717285156,40.76708984375,1,N,1,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-27 22:14:08,2016-01-27 22:16:27,1,0.48,,,-73.86219787597656,40.73046875,-73.85391998291016,40.733158111572266,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-08 07:35:44,2016-01-08 07:38:27,1,0.54,,,-73.93649291992188,40.82033920288086,-73.94388580322266,40.819759368896484,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-27 17:35:16,2016-01-27 17:35:32,1,0.0,,,-73.89044952392578,40.75737380981445,-73.89038848876953,40.757328033447266,1,N,1,2.5,1.0,0.5,0.3,2.7,0.0,,7.0,1.0 +2,2016-01-17 03:10:03,2016-01-17 03:10:19,2,0.07,,,-73.92884826660156,40.819034576416016,-73.9305191040039,40.82049560546875,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-08 13:22:08,2016-01-08 13:25:34,1,0.79,,,-73.9119873046875,40.77518844604492,-73.91552734375,40.781620025634766,1,N,1,5.0,0.0,0.5,0.3,1.45,0.0,,7.25,1.0 +2,2016-01-28 20:07:32,2016-01-28 20:15:23,1,1.21,,,-73.91161346435547,40.77555847167969,-73.91461944580078,40.76377868652344,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-19 12:25:59,2016-01-19 12:29:02,1,0.3,,,-73.8693618774414,40.73558807373047,-73.87093353271484,40.73398971557617,5,N,2,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +2,2016-01-21 21:20:23,2016-01-21 21:28:01,1,1.54,,,-73.98725891113281,40.69195556640625,-73.97991180419922,40.67724609375,1,N,1,7.5,0.5,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-09 22:15:24,2016-01-09 22:24:55,1,1.53,,,-73.87085723876953,40.73402404785156,-73.86393737792969,40.752342224121094,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-16 12:49:34,2016-01-16 13:07:01,1,3.76,,,-73.94171905517578,40.676456451416016,-73.87902069091797,40.674591064453125,5,N,2,12.0,0.0,0.0,0,0.0,0.0,,12.0,2.0 +2,2016-01-12 20:20:20,2016-01-12 20:26:11,2,2.98,,,-73.98722839355469,40.693824768066406,-73.9494400024414,40.71259689331055,1,N,1,10.0,0.5,0.5,0.3,2.82,0.0,,14.12,1.0 +2,2016-01-14 23:24:08,2016-01-14 23:42:04,2,3.85,,,-73.96558380126953,40.71330261230469,-74.00833892822266,40.721168518066406,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +1,2016-01-16 11:37:37,2016-01-16 11:55:34,2,3.7,,,-73.86953735351562,40.74945831298828,-73.91224670410156,40.72588348388672,1,N,1,15.5,0.0,0.5,0.3,2.0,0.0,,18.3,1.0 +2,2016-01-07 22:14:06,2016-01-07 22:24:46,6,3.26,,,-73.97351837158203,40.69326400756836,-73.98690032958984,40.725284576416016,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-25 01:37:35,2016-01-25 01:48:47,1,5.9,,,-73.83013916015625,40.75957107543945,-73.7530288696289,40.73952865600586,1,N,1,17.5,0.5,0.5,0.3,5.64,0.0,,24.44,1.0 +1,2016-01-09 23:41:58,2016-01-09 23:53:27,1,1.9,,,-73.92719268798828,40.762760162353516,-73.90290069580078,40.74662399291992,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,,13.55,1.0 +1,2016-01-11 18:26:38,2016-01-11 18:34:47,1,1.5,,,-73.97541046142578,40.686744689941406,-73.98607635498047,40.70317840576172,1,N,1,7.5,1.0,0.5,0.3,2.3,0.0,,11.6,1.0 +2,2016-01-02 20:06:23,2016-01-02 20:22:05,1,3.28,,,-73.95648193359375,40.67487335205078,-73.90802001953125,40.66280746459961,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-07 07:14:00,2016-01-07 07:30:28,1,4.95,,,-73.93993377685547,40.7978515625,-73.90023040771484,40.827781677246094,1,N,1,17.5,0.0,0.5,0.3,1.7,0.0,,20.0,1.0 +1,2016-01-03 22:43:47,2016-01-03 23:06:23,1,5.1,,,-73.95530700683594,40.804443359375,-73.97697448730469,40.74858856201172,1,N,1,19.0,0.5,0.5,0.3,4.05,0.0,,24.35,1.0 +2,2016-01-09 04:07:04,2016-01-09 04:09:56,1,0.55,,,-73.9217529296875,40.75545883178711,-73.91740417480469,40.75544738769531,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-20 11:30:43,2016-01-20 11:35:36,1,0.96,,,-73.95329284667969,40.72817611694336,-73.95816040039062,40.71546936035156,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-20 19:27:08,2016-01-20 19:36:48,1,1.23,,,-73.87680053710938,40.74849319458008,-73.89212036132812,40.75606155395508,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-16 01:11:56,2016-01-16 01:29:41,1,4.25,,,-73.9957504272461,40.69059371948242,-73.9595947265625,40.642513275146484,1,N,1,16.0,0.5,0.5,0.3,1.0,0.0,,18.3,1.0 +1,2016-01-02 00:56:16,2016-01-02 01:05:03,1,1.9,,,-73.88055419921875,40.741573333740234,-73.85321044921875,40.73977279663086,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-06 14:33:28,2016-01-06 14:38:05,1,0.54,,,-73.96072387695312,40.80172348022461,-73.9678726196289,40.8010368347168,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-30 11:28:21,2016-01-30 11:38:00,1,1.9,,,-73.94302368164062,40.789939880371094,-73.97207641601562,40.79462432861328,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,,10.8,1.0 +2,2016-01-21 09:49:04,2016-01-21 09:58:30,1,1.46,,,-73.96141052246094,40.714378356933594,-73.94397735595703,40.70804977416992,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-05 19:37:55,2016-01-05 19:43:46,1,0.89,,,-73.95272827148438,40.80805587768555,-73.9410629272461,40.80512237548828,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,,8.3,1.0 +1,2016-01-14 06:56:47,2016-01-14 07:19:39,1,4.2,,,-73.95184326171875,40.72343444824219,-73.95663452148438,40.67457962036133,1,N,1,17.5,0.0,0.5,0.3,3.0,0.0,,21.3,1.0 +2,2016-01-27 21:50:41,2016-01-27 21:58:22,1,1.28,,,-73.8769302368164,40.74825668334961,-73.85335540771484,40.752254486083984,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-04 07:34:54,2016-01-04 07:55:41,1,5.87,,,-73.98931121826172,40.68818664550781,-73.97686004638672,40.74106979370117,1,N,1,20.0,0.0,0.5,0.3,5.2,0.0,,26.0,1.0 +2,2016-01-02 16:39:13,2016-01-02 16:49:46,1,2.41,,,-73.91932678222656,40.806724548339844,-73.9444808959961,40.79153823852539,1,N,1,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-13 16:47:18,2016-01-13 16:55:02,1,1.16,,,-73.94945526123047,40.7850456237793,-73.96609497070312,40.7898063659668,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-05 19:23:18,2016-01-05 19:42:10,1,2.62,,,-73.97783660888672,40.68437194824219,-73.96460723876953,40.65293502807617,1,N,1,14.0,1.0,0.5,0.3,3.75,0.0,,19.55,1.0 +2,2016-01-04 20:24:43,2016-01-04 20:37:36,1,2.82,,,-73.88577270507812,40.876461029052734,-73.91162109375,40.84354782104492,1,N,1,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-25 09:05:05,2016-01-25 09:20:28,1,1.96,,,-73.92839050292969,40.8347053527832,-73.9428482055664,40.83892059326172,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-04 22:08:25,2016-01-04 22:20:03,1,2.65,,,-73.8852767944336,40.7503662109375,-73.92245483398438,40.76015853881836,1,N,1,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-17 14:27:18,2016-01-17 14:30:49,1,0.82,,,-73.95227813720703,40.78986358642578,-73.94393920898438,40.79808807373047,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-07 06:36:05,2016-01-07 06:39:28,1,0.67,,,-73.93904113769531,40.799312591552734,-73.94025421142578,40.80652618408203,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-30 08:59:59,2016-01-30 09:06:59,1,0.8,,,-73.95137786865234,40.80983352661133,-73.94495391845703,40.80171203613281,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-29 02:03:49,2016-01-29 02:06:26,1,0.9,,,-73.92896270751953,40.67930603027344,-73.92555236816406,40.67028045654297,1,N,1,4.5,0.5,0.5,0.3,1.15,0.0,,6.95,1.0 +2,2016-01-22 08:52:43,2016-01-22 09:23:58,1,5.78,,,-73.94047546386719,40.839630126953125,-73.96575164794922,40.7719612121582,1,N,1,24.0,0.0,0.5,0.3,0.0,0.0,,24.8,1.0 +2,2016-01-16 12:12:32,2016-01-16 12:22:31,1,2.4,,,-73.94630432128906,40.789207458496094,-73.9395523071289,40.81599426269531,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-08 18:02:20,2016-01-08 18:15:53,2,3.8,,,-73.93929290771484,40.80516815185547,-73.91883850097656,40.76585388183594,1,N,2,13.5,1.0,0.5,0.3,0.0,5.54,,20.84,1.0 +2,2016-01-30 20:22:12,2016-01-30 20:37:09,1,2.49,,,-73.84432220458984,40.72137451171875,-73.87184143066406,40.7055549621582,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-21 10:15:13,2016-01-21 10:28:11,1,4.88,,,-73.87974548339844,40.879737854003906,-73.8751449584961,40.827667236328125,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-19 09:31:39,2016-01-19 09:31:58,2,0.0,,,-73.93727111816406,40.79591369628906,-73.9373550415039,40.795799255371094,1,N,3,-2.5,0.0,-0.5,-0.3,0.0,0.0,,-3.3,1.0 +2,2016-01-01 21:31:22,2016-01-01 21:49:20,1,4.48,,,-73.95800018310547,40.72185516357422,-73.98060607910156,40.739593505859375,1,N,1,16.5,0.5,0.5,0.3,3.56,0.0,,21.36,1.0 +2,2016-01-10 20:59:16,2016-01-10 21:13:46,6,5.88,,,-73.95832061767578,40.815982818603516,-73.89776611328125,40.85783004760742,1,N,2,19.0,0.5,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-16 16:35:50,2016-01-16 16:40:37,2,0.67,,,-73.93959045410156,40.815467834472656,-73.94145965576172,40.82265853881836,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-07 19:38:52,2016-01-07 19:43:55,1,0.76,,,-73.9417724609375,40.82271194458008,-73.95246887207031,40.82390594482422,1,N,1,5.5,1.0,0.5,0.3,0.73,0.0,,8.03,1.0 +2,2016-01-21 00:36:41,2016-01-21 00:45:36,1,1.93,,,-73.88959503173828,40.747066497802734,-73.92230987548828,40.76063919067383,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-16 15:09:12,2016-01-16 15:12:56,1,1.1,,,-73.8638687133789,40.7329216003418,-73.84656524658203,40.7380485534668,1,N,1,5.5,0.0,0.5,0.3,3.0,0.0,,9.3,1.0 +2,2016-01-05 08:20:52,2016-01-05 08:27:15,1,0.52,,,-73.93240356445312,40.65654754638672,-73.94225311279297,40.655941009521484,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-11 10:17:44,2016-01-11 10:45:28,1,3.8,,,-73.91946411132812,40.83501052856445,-73.94052124023438,40.789695739746094,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-04 15:07:26,2016-01-04 15:12:57,1,0.93,,,-73.9659194946289,40.80550003051758,-73.9660415649414,40.794952392578125,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-10 20:26:31,2016-01-10 20:32:32,1,1.55,,,-73.91477966308594,40.763771057128906,-73.89275360107422,40.75850296020508,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-30 19:22:47,2016-01-30 19:32:05,2,1.77,,,-73.88764953613281,40.83763885498047,-73.91192626953125,40.82160186767578,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +1,2016-01-21 21:45:30,2016-01-21 21:57:15,1,2.1,,,-73.97794342041016,40.684959411621094,-73.94294738769531,40.68011474609375,1,N,1,10.5,0.5,0.5,0.3,2.95,0.0,,14.75,1.0 +2,2016-01-19 11:58:52,2016-01-19 12:12:08,1,1.64,,,-73.93817138671875,40.80039596557617,-73.95195007324219,40.79032516479492,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-20 22:27:25,2016-01-20 22:30:44,1,0.75,,,-73.96611022949219,40.68353271484375,-73.97032165527344,40.6895866394043,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-30 01:49:47,2016-01-30 02:34:42,1,13.49,,,-73.98735809326172,40.67908477783203,-73.93988800048828,40.81523132324219,1,N,1,44.0,0.5,0.5,0.3,1.0,0.0,,46.3,1.0 +2,2016-01-13 00:54:22,2016-01-13 01:02:25,1,2.44,,,-73.80760955810547,40.70035171508789,-73.83373260498047,40.68154525756836,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-06 18:30:55,2016-01-06 18:39:42,1,0.89,,,-73.84429931640625,40.721351623535156,-73.85166931152344,40.71044158935547,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,,11.16,1.0 +1,2016-01-21 19:50:35,2016-01-21 20:35:05,1,12.5,,,-73.98291015625,40.689849853515625,-73.80703735351562,40.73194122314453,1,N,1,39.5,0.5,0.5,0.3,8.15,0.0,,48.95,1.0 +2,2016-01-17 18:34:15,2016-01-17 19:04:06,5,14.51,,,-73.9256362915039,40.761783599853516,-73.78262329101562,40.644065856933594,1,N,1,40.5,0.0,0.5,0.3,0.0,0.0,,41.3,1.0 +2,2016-01-06 18:04:15,2016-01-06 18:14:55,1,1.88,,,-73.84491729736328,40.72214126586914,-73.82227325439453,40.72277069091797,1,N,1,9.0,1.0,0.5,0.3,1.5,0.0,,12.3,1.0 +2,2016-01-21 23:47:53,2016-01-21 23:57:47,1,3.33,,,-73.97677612304688,40.683326721191406,-73.99114990234375,40.7244873046875,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,,15.36,1.0 +2,2016-01-07 14:23:09,2016-01-07 14:33:59,1,1.52,,,-73.9486083984375,40.79779052734375,-73.96284484863281,40.77842330932617,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-11 20:27:39,2016-01-11 20:40:30,1,3.26,,,-73.95942687988281,40.71819305419922,-73.91796112060547,40.70189666748047,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,,15.96,1.0 +1,2016-01-20 07:48:39,2016-01-20 07:56:11,1,1.2,,,-73.97920227050781,40.678165435791016,-73.99137878417969,40.66326141357422,1,N,1,7.0,0.0,0.5,0.3,2.5,0.0,,10.3,1.0 +2,2016-01-28 17:20:38,2016-01-28 17:33:11,1,1.87,,,-73.94232940673828,40.79478454589844,-73.93978881835938,40.81309127807617,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-07 08:51:02,2016-01-07 08:55:04,1,1.02,,,-73.93757629394531,40.79294204711914,-73.93756866455078,40.80448532104492,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-28 15:36:44,2016-01-28 15:46:58,1,1.7,,,-73.9393310546875,40.82148742675781,-73.95280456542969,40.800132751464844,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-04 19:25:16,2016-01-04 19:35:19,1,1.58,,,-73.99246215820312,40.689544677734375,-74.00640869140625,40.67866516113281,1,N,1,8.5,1.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-13 11:30:30,2016-01-13 11:41:17,1,2.57,,,-73.9501953125,40.65725326538086,-73.97661590576172,40.68293762207031,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-09 18:26:27,2016-01-09 18:27:52,1,0.29,,,-73.89044952392578,40.746097564697266,-73.88676452636719,40.743690490722656,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-14 15:03:49,2016-01-14 15:11:30,1,1.28,,,-73.89128875732422,40.746910095214844,-73.91170501708984,40.7435188293457,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-01 21:51:50,2016-01-01 22:08:28,1,3.8,,,-73.92913818359375,40.675750732421875,-73.9928207397461,40.68862533569336,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-15 14:22:34,2016-01-15 14:28:28,1,0.65,,,-73.9527816772461,40.8104248046875,-73.95280456542969,40.81808090209961,1,N,1,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-28 12:05:07,2016-01-28 12:13:56,1,1.8,,,-73.91915130615234,40.75897216796875,-73.93525695800781,40.76832962036133,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-21 10:11:07,2016-01-21 10:21:36,1,2.0,,,-73.95333862304688,40.7318115234375,-73.95745849609375,40.710350036621094,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,,10.8,1.0 +2,2016-01-08 07:55:08,2016-01-08 08:14:08,1,4.19,,,-73.95123291015625,40.72454833984375,-73.99829864501953,40.725040435791016,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-19 00:39:05,2016-01-19 00:41:32,1,0.37,,,-73.92204284667969,40.75528335571289,-73.91704559326172,40.75487518310547,1,N,1,3.5,0.5,0.5,0.3,1.0,0.0,,5.8,1.0 +2,2016-01-16 02:24:06,2016-01-16 02:30:15,1,1.48,,,-73.87260437011719,40.84137725830078,-73.8534164428711,40.84388732910156,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-19 11:24:08,2016-01-19 11:26:52,1,0.6,,,-73.93781280517578,40.74920654296875,-73.94680786132812,40.751163482666016,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-28 20:14:00,2016-01-28 20:19:20,1,0.74,,,-73.97325134277344,40.67763137817383,-73.9729232788086,40.67348861694336,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-15 18:27:31,2016-01-15 18:32:34,5,0.87,,,-73.94754028320312,40.74742889404297,-73.95942687988281,40.743988037109375,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-03 15:21:14,2016-01-03 15:25:24,1,0.93,,,-73.95482635498047,40.81167984008789,-73.95011901855469,40.80156326293945,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-30 04:02:39,2016-01-30 04:12:32,1,2.5,,,-73.89952087402344,40.65895462036133,-73.89991760253906,40.657135009765625,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-22 19:10:35,2016-01-22 19:14:52,1,1.21,,,-73.95891571044922,40.708866119384766,-73.95689392089844,40.720428466796875,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,,8.76,1.0 +1,2016-01-15 23:59:50,2016-01-16 00:04:06,1,0.8,,,-73.92581176757812,40.8278923034668,-73.93790435791016,40.829410552978516,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,,7.55,1.0 +2,2016-01-06 14:28:27,2016-01-06 14:44:12,1,0.81,,,-73.9508285522461,40.79182052612305,-73.95513916015625,40.782745361328125,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-15 20:43:32,2016-01-15 21:06:42,1,3.4,,,-73.93209838867188,40.67948532104492,-73.99056243896484,40.69254684448242,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-20 17:29:31,2016-01-20 17:32:34,1,0.71,,,-73.96218872070312,40.709503173828125,-73.96410369873047,40.70330810546875,1,N,1,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-30 18:18:12,2016-01-30 18:40:32,1,6.8,,,-73.88780975341797,40.67709732055664,-73.78389739990234,40.67945861816406,1,N,1,22.5,0.0,0.5,0.3,4.65,0.0,,27.95,1.0 +2,2016-01-21 19:19:51,2016-01-21 19:44:24,1,8.05,,,-73.8617935180664,40.83327865600586,-73.94768524169922,40.775360107421875,1,N,1,25.5,1.0,0.5,0.3,5.0,0.0,,32.3,1.0 +2,2016-01-30 01:30:03,2016-01-30 01:36:45,5,2.07,,,-73.84483337402344,40.72019958496094,-73.8134536743164,40.71040344238281,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-08 18:17:17,2016-01-08 18:28:48,1,1.48,,,-73.93921661376953,40.8165283203125,-73.94929504394531,40.801815032958984,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-21 08:13:13,2016-01-21 08:29:30,1,3.08,,,-73.99214935302734,40.68955993652344,-74.0077896118164,40.72476577758789,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-13 01:50:32,2016-01-13 01:59:21,1,1.94,,,-73.91535949707031,40.74309158325195,-73.88916778564453,40.75333786010742,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-29 16:24:04,2016-01-29 17:10:01,1,4.9,,,-73.93702697753906,40.805110931396484,-73.93619537353516,40.849586486816406,1,N,3,28.0,1.0,0.5,0.3,0.0,0.0,,29.8,1.0 +1,2016-01-07 19:20:55,2016-01-07 19:30:58,1,0.8,,,-73.86056518554688,40.83327102661133,-73.8563003540039,40.83774185180664,1,N,1,8.0,1.0,0.5,0.3,1.2,0.0,,11.0,1.0 +2,2016-01-03 13:00:16,2016-01-03 13:06:30,1,1.69,,,-73.87429809570312,40.7350959777832,-73.85302734375,40.72695541381836,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-14 15:12:22,2016-01-14 15:15:06,1,0.53,,,-73.95730590820312,40.8120002746582,-73.9648666381836,40.808616638183594,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-22 20:45:18,2016-01-22 20:54:44,1,2.24,,,-73.92353057861328,40.825538635253906,-73.94817352294922,40.80922317504883,1,N,1,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-25 23:52:23,2016-01-25 23:57:42,1,1.0,,,-73.95753479003906,40.71796798706055,-73.95416259765625,40.72974395751953,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-26 01:07:19,2016-01-26 01:12:08,1,0.66,,,-73.89096069335938,40.74660110473633,-73.8959732055664,40.74070739746094,1,N,1,5.0,0.5,0.5,0.3,1.58,0.0,,7.88,1.0 +2,2016-01-22 14:54:27,2016-01-22 15:17:01,1,2.67,,,-73.96414947509766,40.807945251464844,-73.9571304321289,40.782840728759766,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-08 11:00:38,2016-01-08 11:11:45,1,3.16,,,-73.912109375,40.84353256225586,-73.86251831054688,40.832305908203125,1,N,1,12.5,0.0,0.5,0.3,2.0,0.0,,15.3,1.0 +2,2016-01-04 21:47:57,2016-01-04 21:59:57,1,4.39,,,-73.98738861083984,40.6920166015625,-74.00569152832031,40.74580764770508,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +1,2016-01-29 14:58:29,2016-01-29 15:05:27,1,0.7,,,-73.93856811523438,40.842613220214844,-73.9314193725586,40.848331451416016,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-09 10:40:45,2016-01-09 10:50:49,2,1.81,,,-73.9752197265625,40.67463684082031,-73.96356201171875,40.69377517700195,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-11 11:24:51,2016-01-11 11:36:04,1,2.2,,,-73.95433044433594,40.78953170776367,-73.98086547851562,40.779754638671875,1,N,1,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-13 09:39:09,2016-01-13 09:45:36,1,1.34,,,-73.8863296508789,40.86650085449219,-73.88095092773438,40.881752014160156,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-28 09:49:17,2016-01-28 10:09:40,1,5.69,,,-73.9917221069336,40.69023513793945,-73.98307800292969,40.7386360168457,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-05 03:37:58,2016-01-05 03:43:23,1,1.28,,,-73.95166778564453,40.713905334472656,-73.94835662841797,40.69549560546875,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-25 06:53:26,2016-01-25 07:12:50,1,5.0,,,-73.84424591064453,40.72137451171875,-73.81807708740234,40.75143814086914,1,N,1,18.5,0.0,0.5,0.3,3.0,0.0,,22.3,1.0 +2,2016-01-10 15:16:17,2016-01-10 15:29:28,1,2.21,,,-73.93814849853516,40.797237396240234,-73.96908569335938,40.7986946105957,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-16 20:11:21,2016-01-16 20:21:18,1,2.1,,,-73.8863296508789,40.744529724121094,-73.91983795166016,40.74351119995117,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-29 22:08:17,2016-01-29 22:13:22,1,0.9,,,-73.93919372558594,40.8051872253418,-73.95072937011719,40.80152893066406,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-21 15:44:16,2016-01-21 15:57:02,1,1.97,,,-73.94271850585938,40.84084701538086,-73.92910766601562,40.85919952392578,1,N,1,10.0,0.0,0.5,0.3,2.7,0.0,,13.5,1.0 +2,2016-01-06 18:05:53,2016-01-06 18:58:27,5,12.19,,,-73.94461822509766,40.704444885253906,-73.91770935058594,40.826744079589844,1,N,2,47.0,1.0,0.5,0.3,0.0,5.54,,54.34,1.0 +2,2016-01-29 08:13:34,2016-01-29 08:38:58,1,7.15,,,-73.9905776977539,40.702537536621094,-73.97190856933594,40.76297378540039,1,N,1,24.5,0.0,0.5,0.3,5.06,0.0,,30.36,1.0 +1,2016-01-06 23:44:22,2016-01-06 23:44:37,1,0.2,,,-74.0239028930664,40.762672424316406,-74.02194213867188,40.764305114746094,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-27 10:59:54,2016-01-27 11:07:35,1,1.83,,,-73.88884735107422,40.76521682739258,-73.87096405029297,40.77409744262695,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-05 16:21:02,2016-01-05 16:26:20,1,0.7,,,-73.99302673339844,40.69526672363281,-73.98924255371094,40.68861389160156,1,N,1,5.0,1.0,0.5,0.3,1.7,0.0,,8.5,1.0 +2,2016-01-08 17:36:19,2016-01-08 17:39:40,1,0.56,,,-73.92623901367188,40.77202606201172,-73.93183898925781,40.765201568603516,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-18 22:49:19,2016-01-18 22:55:00,1,1.3,,,-73.88479614257812,40.74755859375,-73.86695098876953,40.75469970703125,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-24 09:31:42,2016-01-24 09:31:46,1,0.0,,,-73.92123413085938,40.8679084777832,-73.92121887207031,40.86793899536133,5,N,1,10.0,0.0,0.0,0,2.5,0.0,,12.5,2.0 +2,2016-01-03 19:31:05,2016-01-03 19:37:45,1,1.49,,,-73.9578628540039,40.81516647338867,-73.95088958740234,40.814231872558594,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,,8.8,1.0 +1,2016-01-27 08:30:36,2016-01-27 08:55:59,1,5.9,,,-73.95153045654297,40.82516860961914,-73.98650360107422,40.76078414916992,1,N,1,21.5,0.0,0.5,0.3,2.0,0.0,,24.3,1.0 +2,2016-01-01 15:23:23,2016-01-01 15:30:53,2,1.68,,,-73.95634460449219,40.813114166259766,-73.93911743164062,40.81597137451172,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-03 15:21:01,2016-01-03 15:32:15,1,4.02,,,-73.91000366210938,40.87464141845703,-73.93821716308594,40.855228424072266,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-01 03:52:44,2016-01-01 04:09:29,1,3.01,,,-73.93673706054688,40.81991195678711,-73.8905258178711,40.823158264160156,1,N,1,13.5,0.5,0.5,0.3,2.96,0.0,,17.76,1.0 +1,2016-01-14 07:47:01,2016-01-14 08:02:43,1,5.0,,,-73.93824768066406,40.846885681152344,-73.97052764892578,40.7938117980957,1,N,1,17.5,0.0,0.5,0.3,2.0,0.0,,20.3,1.0 +2,2016-01-01 01:58:51,2016-01-01 02:10:38,1,2.14,,,-73.89018249511719,40.82679748535156,-73.92280578613281,40.81745147705078,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-16 00:58:13,2016-01-16 01:03:08,1,0.61,,,-73.94844818115234,40.803916931152344,-73.94438934326172,40.79883575439453,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-26 12:54:42,2016-01-26 13:04:39,1,3.0,,,-73.9337387084961,40.80266189575195,-73.92134857177734,40.77110290527344,1,N,2,12.0,0.0,0.5,0.3,0.0,5.54,,18.34,1.0 +2,2016-01-21 19:35:02,2016-01-21 19:39:05,1,0.85,,,-73.96514892578125,40.806514739990234,-73.96043395996094,40.81581497192383,1,N,1,5.0,1.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-30 09:37:58,2016-01-30 09:41:07,1,0.54,,,-73.95511627197266,40.81507873535156,-73.95272827148438,40.80811309814453,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-29 12:50:18,2016-01-29 12:54:39,1,0.7,,,-73.95572662353516,40.68101501464844,-73.94977569580078,40.684757232666016,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-29 19:06:06,2016-01-29 19:14:51,1,1.27,,,-73.95972442626953,40.67673110961914,-73.95062255859375,40.66850662231445,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-11 20:23:57,2016-01-11 20:37:16,1,3.19,,,-73.96473693847656,40.71678161621094,-73.99015045166016,40.72511291503906,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-26 14:49:11,2016-01-26 15:01:06,1,1.1,,,-73.8851089477539,40.74583053588867,-73.89131927490234,40.73902130126953,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-22 06:33:32,2016-01-22 06:55:21,1,7.58,,,-73.96149444580078,40.695674896240234,-73.92435455322266,40.75623321533203,1,N,1,25.0,0.0,0.5,0.3,5.16,0.0,,30.96,1.0 +2,2016-01-27 06:57:01,2016-01-27 07:09:41,1,2.49,,,-73.95580291748047,40.681251525878906,-73.91082000732422,40.67734909057617,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-27 07:00:03,2016-01-27 07:06:03,1,0.61,,,-73.95809936523438,40.810813903808594,-73.95508575439453,40.81986618041992,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-19 21:14:08,2016-01-19 21:23:23,1,2.1,,,-73.93909454345703,40.805118560791016,-73.967529296875,40.801082611083984,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-22 11:42:11,2016-01-22 11:55:54,1,4.2,,,-73.86131286621094,40.833595275878906,-73.89305877685547,40.86801528930664,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-28 14:21:28,2016-01-28 14:33:28,1,1.63,,,-73.95289611816406,40.81098937988281,-73.94693756103516,40.831111907958984,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-12 15:21:51,2016-01-12 15:45:23,1,9.7,,,-73.99101257324219,40.695228576660156,-73.87090301513672,40.7740592956543,1,N,1,27.5,0.0,0.5,0.3,5.65,0.0,,33.95,1.0 +2,2016-01-17 04:03:30,2016-01-17 04:27:05,1,3.07,,,-73.98706817626953,40.70237350463867,-73.96831512451172,40.67314147949219,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-16 12:31:43,2016-01-16 12:31:46,1,0.0,,,-73.91255187988281,40.887115478515625,-73.91255187988281,40.88712692260742,5,N,1,17.0,0.0,0.0,0,3.4,0.0,,20.4,2.0 +2,2016-01-13 13:22:12,2016-01-13 13:25:27,1,0.63,,,-73.91036987304688,40.77586364746094,-73.90168762207031,40.769737243652344,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-29 10:32:23,2016-01-29 10:36:49,1,0.77,,,-73.95209503173828,40.82392120361328,-73.9451675415039,40.83340835571289,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-19 07:43:49,2016-01-19 07:48:52,1,0.66,,,-73.94571685791016,40.812713623046875,-73.95266723632812,40.80653762817383,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-17 13:19:46,2016-01-17 13:21:23,1,0.35,,,-73.94197845458984,40.822513580322266,-73.94221496582031,40.81882858276367,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +1,2016-01-02 16:12:57,2016-01-02 16:25:51,3,5.7,,,-73.98959350585938,40.700767517089844,-73.97189331054688,40.749725341796875,1,N,2,17.0,1.0,0.5,0.3,0.0,0.0,,18.8,1.0 +1,2016-01-11 11:45:09,2016-01-11 11:58:54,1,5.8,,,-73.8563003540039,40.85727310180664,-73.8653793334961,40.8321647644043,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,,18.3,1.0 +1,2016-01-10 18:18:37,2016-01-10 18:22:25,1,0.6,,,-73.96369934082031,40.71065139770508,-73.95796966552734,40.717681884765625,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,,6.35,1.0 +2,2016-01-11 00:54:58,2016-01-11 01:07:33,1,2.03,,,-73.9190673828125,40.743019104003906,-73.88340759277344,40.749664306640625,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-26 15:12:10,2016-01-26 15:33:53,1,5.6,,,-73.89933013916016,40.85414505004883,-73.8292465209961,40.86381530761719,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-05 19:28:08,2016-01-05 19:38:05,1,2.25,,,-73.96200561523438,40.71339416503906,-73.9332504272461,40.70502471923828,1,N,1,9.5,1.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-02 15:00:52,2016-01-02 15:03:12,1,0.19,,,-73.93961334228516,40.79859161376953,-73.94208526611328,40.798057556152344,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-07 23:51:03,2016-01-08 00:06:19,1,8.14,,,-73.94584655761719,40.745849609375,-74.00428771972656,40.681671142578125,1,N,1,23.5,0.5,0.5,0.3,3.0,0.0,,27.8,1.0 +2,2016-01-16 21:50:51,2016-01-16 22:16:27,1,3.99,,,-73.96549987792969,40.71059799194336,-73.97264099121094,40.677310943603516,1,N,2,19.0,0.5,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-17 14:12:59,2016-01-17 14:29:24,1,3.48,,,-73.94095611572266,40.839515686035156,-73.96819305419922,40.801055908203125,1,N,1,14.5,0.0,0.5,0.3,1.5,0.0,,16.8,1.0 +1,2016-01-12 17:35:41,2016-01-12 17:53:34,1,3.9,,,-73.94835662841797,40.829566955566406,-73.97605895996094,40.780948638916016,1,N,1,15.5,0.5,0.5,0.3,3.35,0.0,,20.15,1.0 +2,2016-01-20 13:20:19,2016-01-20 13:26:43,6,1.0,,,-73.97686004638672,40.68185043334961,-73.9789047241211,40.69198989868164,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-06 02:07:17,2016-01-06 02:21:36,1,3.56,,,-73.95801544189453,40.721805572509766,-73.92359161376953,40.69253158569336,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-23 03:28:25,2016-01-23 03:36:38,1,1.46,,,-73.89129638671875,40.74675369262695,-73.866943359375,40.74231719970703,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-27 16:30:05,2016-01-27 16:45:45,1,2.23,,,-73.9364013671875,40.81452178955078,-73.9613265991211,40.80253219604492,1,N,2,12.0,1.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-14 01:05:21,2016-01-14 01:12:06,1,1.11,,,-73.96632385253906,40.71302795410156,-73.9537582397461,40.70783996582031,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-09 22:38:07,2016-01-09 23:01:11,2,9.26,,,-74.00433349609375,40.67374801635742,-73.93028259277344,40.75454330444336,1,N,1,27.5,0.5,0.5,0.3,2.0,0.0,,30.8,1.0 +2,2016-01-03 23:49:16,2016-01-04 00:09:12,1,5.29,,,-73.96299743652344,40.711822509765625,-73.99268341064453,40.662139892578125,1,N,1,18.5,0.5,0.5,0.3,1.0,0.0,,20.8,1.0 +2,2016-01-09 21:52:54,2016-01-09 22:33:26,1,10.15,,,-73.94462585449219,40.72306823730469,-73.97260284423828,40.79607009887695,1,N,1,36.0,0.5,0.5,0.3,7.46,0.0,,44.76,1.0 +1,2016-01-04 13:03:36,2016-01-04 13:32:45,1,4.8,,,-73.97866821289062,40.68456268310547,-73.9203109741211,40.65298080444336,1,N,2,22.0,0.5,0.5,0.3,0.0,0.0,,23.3,1.0 +1,2016-01-24 17:37:25,2016-01-24 18:06:28,1,6.1,,,-73.93067169189453,40.67291259765625,-74.00101470947266,40.64380645751953,1,N,2,23.0,0.0,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-06 13:17:22,2016-01-06 14:02:34,1,16.8,,,-73.98027038574219,40.66849136352539,-74.17743682861328,40.6906852722168,1,N,1,51.0,0.0,0.5,0.3,12.46,10.5,,74.76,1.0 +2,2016-01-26 09:33:56,2016-01-26 09:45:53,1,1.76,,,-73.90361022949219,40.745765686035156,-73.9308853149414,40.744808197021484,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,,12.88,1.0 +1,2016-01-07 07:01:12,2016-01-07 07:16:33,1,2.6,,,-73.92813110351562,40.68359375,-73.94892883300781,40.66619110107422,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-16 08:19:30,2016-01-16 08:28:07,1,1.94,,,-73.91392517089844,40.76560592651367,-73.93629455566406,40.7498893737793,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,,11.62,1.0 +2,2016-01-12 15:58:11,2016-01-12 16:11:03,1,2.35,,,-73.97743225097656,40.689788818359375,-73.95442199707031,40.672637939453125,1,N,2,11.0,1.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-25 09:59:02,2016-01-25 10:28:26,1,3.35,,,-73.95683288574219,40.74467849731445,-73.98595428466797,40.72944641113281,1,N,1,19.0,0.0,0.5,0.3,3.96,0.0,,23.76,1.0 +1,2016-01-02 05:12:44,2016-01-02 05:33:01,1,5.8,,,-73.95752716064453,40.7223014831543,-73.98809814453125,40.749942779541016,1,N,1,20.0,0.5,0.5,0.3,4.26,0.0,,25.56,1.0 +1,2016-01-01 16:39:17,2016-01-01 16:47:49,1,1.5,,,-73.94292449951172,40.827274322509766,-73.95423126220703,40.80561065673828,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-30 10:39:30,2016-01-30 10:42:02,1,0.5,,,-73.94676208496094,40.82650375366211,-73.94591522216797,40.82150650024414,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-27 20:23:42,2016-01-27 20:40:27,1,2.36,,,-73.989013671875,40.675315856933594,-73.95903778076172,40.67372512817383,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-01 02:06:41,2016-01-01 02:18:09,1,2.27,,,-73.98377227783203,40.68804168701172,-73.9479751586914,40.67676544189453,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-29 15:07:44,2016-01-29 15:14:33,1,0.89,,,-73.80754089355469,40.700443267822266,-73.80401611328125,40.68922424316406,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-19 13:27:39,2016-01-19 13:41:45,1,2.16,,,-73.9825210571289,40.67815017700195,-73.97354888916016,40.69792938232422,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,,14.16,1.0 +1,2016-01-01 05:45:14,2016-01-01 05:52:04,2,1.2,,,-73.95258331298828,40.695594787597656,-73.94259643554688,40.70286178588867,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-07 07:47:24,2016-01-07 07:54:56,2,1.01,,,-73.94173431396484,40.78950881958008,-73.94759368896484,40.79606246948242,5,N,2,8.0,0.0,0.0,0,0.0,0.0,,8.0,2.0 +2,2016-01-09 04:22:57,2016-01-09 04:25:23,1,0.8,,,-73.9291000366211,40.67919921875,-73.93345642089844,40.68820571899414,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-03 03:28:43,2016-01-03 03:44:41,1,3.51,,,-73.83219146728516,40.75700759887695,-73.88797760009766,40.74726104736328,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-15 08:27:34,2016-01-15 08:30:31,1,0.51,,,-73.9803237915039,40.66838836669922,-73.97896575927734,40.6739387512207,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-28 16:17:18,2016-01-28 16:35:26,5,2.34,,,-73.94930267333984,40.78486251831055,-73.95860290527344,40.8074951171875,1,N,2,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-26 14:56:44,2016-01-26 15:02:28,1,0.63,,,-73.92965698242188,40.764068603515625,-73.91918182373047,40.7590446472168,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-29 16:00:42,2016-01-29 16:18:58,1,5.07,,,-73.80722045898438,40.6993408203125,-73.76393127441406,40.73430633544922,1,N,1,17.5,0.0,0.5,0.3,2.0,0.0,,20.3,1.0 +1,2016-01-30 12:32:58,2016-01-30 12:48:42,1,2.2,,,0.0,0.0,-73.89081573486328,40.748199462890625,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-30 16:16:58,2016-01-30 16:19:37,1,0.39,,,-73.94839477539062,40.81406021118164,-73.95054626464844,40.80995178222656,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-20 20:15:12,2016-01-20 20:49:16,1,9.33,,,-73.95426940917969,40.730281829833984,-73.95344543457031,40.81198501586914,1,N,2,31.5,0.5,0.5,0.3,0.0,0.0,,32.8,1.0 +2,2016-01-19 11:23:18,2016-01-19 11:29:11,1,0.58,,,-73.953125,40.7884635925293,-73.95642852783203,40.78154754638672,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-13 20:15:41,2016-01-13 20:21:32,1,1.68,,,-73.94732666015625,40.63243865966797,-73.92281341552734,40.623817443847656,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-09 21:34:23,2016-01-09 21:38:26,1,0.53,,,-73.95042419433594,40.786705017089844,-73.95328521728516,40.791439056396484,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-01 02:23:57,2016-01-01 02:35:20,1,2.99,,,-73.99111938476562,40.6856803894043,-73.9876937866211,40.71982192993164,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-14 10:08:35,2016-01-14 10:20:45,1,2.32,,,-73.96709442138672,40.684661865234375,-73.99095153808594,40.70266342163086,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +1,2016-01-10 13:36:15,2016-01-10 13:50:46,1,5.6,,,-73.93113708496094,40.859413146972656,-73.95062255859375,40.794986724853516,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-22 12:18:49,2016-01-22 12:31:43,1,2.4,,,-73.95952606201172,40.80916213989258,-73.95005798339844,40.785491943359375,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-28 19:25:14,2016-01-28 19:29:22,1,1.06,,,-73.94381713867188,40.680137634277344,-73.94882202148438,40.693519592285156,1,N,1,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-11 06:47:21,2016-01-11 06:51:24,1,1.0,,,-73.9495620727539,40.68024826049805,-73.94303131103516,40.68787384033203,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,,6.95,1.0 +2,2016-01-02 03:39:45,2016-01-02 04:06:22,1,11.15,,,-73.93016815185547,40.85697555541992,-73.87803649902344,40.75445556640625,1,N,1,33.5,0.5,0.5,0.3,2.0,5.54,,42.34,1.0 +1,2016-01-05 07:57:49,2016-01-05 08:13:54,1,2.1,,,-73.95994567871094,40.81376647949219,-73.94818878173828,40.79299545288086,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-06 11:16:31,2016-01-06 11:51:52,2,5.09,,,-73.89127349853516,40.86189270019531,-73.89387512207031,40.87555694580078,5,N,2,8.0,0.0,0.0,0,0.0,0.0,,8.0,2.0 +2,2016-01-19 08:38:56,2016-01-19 08:41:52,1,0.54,,,-73.91197204589844,40.767601013183594,-73.91702270507812,40.77095031738281,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-08 15:00:12,2016-01-08 15:24:46,1,7.73,,,-73.82913970947266,40.713443756103516,-73.74373626708984,40.639808654785156,1,N,2,26.0,0.0,0.5,0.3,0.0,0.0,,26.8,1.0 +2,2016-01-30 11:46:38,2016-01-30 11:56:27,1,1.67,,,-73.9268798828125,40.69804000854492,-73.91840362548828,40.681705474853516,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,,11.62,1.0 +2,2016-01-09 12:49:10,2016-01-09 12:56:19,1,1.23,,,-73.9454345703125,40.79035568237305,-73.95758056640625,40.78258514404297,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-28 21:47:36,2016-01-28 22:09:29,1,5.2,,,-73.92514038085938,40.76851272583008,-73.99308776855469,40.736717224121094,1,N,1,19.0,0.5,0.5,0.3,3.0,0.0,,23.3,1.0 +2,2016-01-05 09:53:33,2016-01-05 09:56:16,1,0.85,,,-73.99341583251953,40.687618255615234,-73.99960327148438,40.68830490112305,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-02 00:23:58,2016-01-02 00:29:43,3,1.04,,,-73.95587921142578,40.714019775390625,-73.94778442382812,40.72270584106445,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-19 12:39:03,2016-01-19 12:41:40,1,0.59,,,-73.9595947265625,40.80877685546875,-73.95296478271484,40.81084442138672,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-13 17:48:30,2016-01-13 18:07:14,2,4.0,,,-73.96115112304688,40.664390563964844,-73.94729614257812,40.71784973144531,1,N,1,15.0,1.0,0.5,0.3,3.0,0.0,,19.8,1.0 +2,2016-01-26 21:12:17,2016-01-26 21:32:58,1,6.92,,,-73.99295043945312,40.689117431640625,-73.98963165283203,40.61983871459961,1,N,2,22.5,0.5,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-11 22:02:15,2016-01-11 22:05:17,1,0.79,,,-73.93914794921875,40.805381774902344,-73.94699096679688,40.796791076660156,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-26 12:20:21,2016-01-26 12:55:22,1,6.52,,,-74.00730895996094,40.65620040893555,-73.98424530029297,40.726402282714844,1,N,1,26.0,0.0,0.5,0.3,3.0,0.0,,29.8,1.0 +1,2016-01-03 20:04:22,2016-01-03 20:07:42,1,0.7,,,-73.94916534423828,40.71260452270508,-73.94361877441406,40.71892166137695,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-02 01:31:59,2016-01-02 01:35:35,1,0.71,,,-73.91693878173828,40.761417388916016,-73.91141510009766,40.768898010253906,1,N,1,4.5,0.5,0.5,0.3,2.0,0.0,,7.8,1.0 +2,2016-01-27 23:18:29,2016-01-27 23:26:09,1,1.17,,,-73.8907699584961,40.74641418457031,-73.8983154296875,40.7587890625,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-12 19:04:26,2016-01-12 19:09:21,1,0.75,,,-73.9062271118164,40.77281188964844,-73.91490936279297,40.76408767700195,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-14 20:10:53,2016-01-14 20:39:56,1,5.67,,,-73.95783996582031,40.717803955078125,-73.98526763916016,40.74967956542969,1,N,2,23.5,0.5,0.5,0.3,0.0,0.0,,24.8,1.0 +2,2016-01-10 14:47:59,2016-01-10 14:52:33,1,0.63,,,-73.98699951171875,40.695621490478516,-73.99210357666016,40.69032287597656,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-26 22:24:37,2016-01-26 22:55:33,1,8.29,,,-73.95794677734375,40.72185134887695,-73.96968841552734,40.80008316040039,1,N,1,28.0,0.5,0.5,0.3,5.86,0.0,,35.16,1.0 +2,2016-01-07 21:38:57,2016-01-07 21:43:03,1,0.91,,,-73.92097473144531,40.76667022705078,-73.9197998046875,40.75802230834961,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-26 19:53:51,2016-01-26 20:28:29,1,4.47,,,-73.91854095458984,40.666046142578125,-73.93974304199219,40.684471130371094,1,N,1,22.5,1.0,0.5,0.3,6.08,0.0,,30.38,1.0 +2,2016-01-21 17:48:20,2016-01-21 17:57:29,1,1.93,,,-73.9879379272461,40.70158386230469,-74.00409698486328,40.684688568115234,1,N,1,8.5,1.0,0.5,0.3,2.0,0.0,,12.3,1.0 +2,2016-01-03 20:18:31,2016-01-03 20:22:16,1,0.83,,,-73.96369171142578,40.80284881591797,-73.95153045654297,40.80275344848633,1,N,1,5.0,0.5,0.5,0.3,1.89,0.0,,8.19,1.0 +2,2016-01-10 01:20:14,2016-01-10 01:21:34,1,0.32,,,-73.95650482177734,40.716957092285156,-73.95880889892578,40.7134895324707,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-26 07:49:22,2016-01-26 08:15:36,1,2.23,,,-73.95008850097656,40.82217025756836,-73.92115783691406,40.82649230957031,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-01 03:45:49,2016-01-01 03:53:25,1,1.21,,,-73.95375061035156,40.80366134643555,-73.93666076660156,40.79865264892578,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-26 10:24:39,2016-01-26 10:31:25,1,1.04,,,-73.91939544677734,40.86489486694336,-73.92913818359375,40.85567855834961,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-28 17:14:17,2016-01-28 17:28:25,2,1.59,,,-73.88507843017578,40.749698638916016,-73.8961181640625,40.73497009277344,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-19 11:49:20,2016-01-19 11:59:48,1,2.17,,,-73.95064544677734,40.66965866088867,-73.92546081542969,40.68042755126953,1,N,1,10.0,0.0,0.5,0.3,2.7,0.0,,13.5,1.0 +1,2016-01-05 16:51:11,2016-01-05 17:00:34,1,1.2,,,-73.9550552368164,40.734283447265625,-73.94358825683594,40.726097106933594,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-14 21:01:11,2016-01-14 21:04:11,1,0.93,,,-73.92097473144531,40.7565803527832,-73.91309356689453,40.76076889038086,1,N,1,4.5,0.5,0.5,0.3,1.45,0.0,,7.25,1.0 +2,2016-01-04 01:25:00,2016-01-04 01:35:37,3,4.79,,,-73.91466522216797,40.76370620727539,-73.88450622558594,40.73240280151367,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-29 08:22:05,2016-01-29 08:24:54,1,0.51,,,-73.95035552978516,40.80641174316406,-73.9482421875,40.80138397216797,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-13 08:44:14,2016-01-13 08:52:24,1,2.05,,,-73.9408950805664,40.78841781616211,-73.92013549804688,40.81302261352539,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-11 21:28:16,2016-01-11 21:33:29,1,1.5,,,-73.93260955810547,40.77286148071289,-73.94271850585938,40.755897521972656,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-03 09:40:09,2016-01-03 10:02:02,1,5.77,,,-73.948974609375,40.63419723510742,-74.02809143066406,40.63776397705078,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,,21.3,1.0 +1,2016-01-01 05:03:44,2016-01-01 05:22:29,2,3.7,,,-73.93016815185547,40.75608825683594,-73.8726577758789,40.74597930908203,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-03 08:28:47,2016-01-03 08:33:36,1,1.61,,,-73.95301055908203,40.79166030883789,-73.94754028320312,40.775611877441406,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,,8.8,1.0 +2,2016-01-07 22:53:25,2016-01-07 23:01:26,1,1.87,,,-73.95136260986328,40.81032180786133,-73.935791015625,40.83197784423828,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-09 02:27:25,2016-01-09 02:44:13,1,2.62,,,-73.95677947998047,40.72081756591797,-73.92593383789062,40.69747543334961,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-18 12:13:14,2016-01-18 12:24:39,1,2.24,,,-73.95236206054688,40.747798919677734,-73.95036315917969,40.76112365722656,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +1,2016-01-02 04:43:13,2016-01-02 04:52:52,1,2.9,,,-73.86012268066406,40.8388786315918,-73.9001235961914,40.84914779663086,5,N,2,12.0,0.0,0.0,0,0.0,0.0,,12.0,2.0 +2,2016-01-23 09:55:04,2016-01-23 10:14:49,2,2.44,,,-73.85468292236328,40.73765563964844,-73.884033203125,40.74818420410156,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-08 15:53:06,2016-01-08 16:01:31,3,1.49,,,-73.95243835449219,40.78655242919922,-73.93887329101562,40.80502700805664,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-09 00:49:48,2016-01-09 00:54:26,1,0.78,,,-73.94781494140625,40.82535171508789,-73.93716430664062,40.81929397583008,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-24 17:04:56,2016-01-24 17:05:17,4,0.0,,,-73.94764709472656,40.63218688964844,-73.947509765625,40.632144927978516,5,N,1,40.0,0.0,0.0,0,0.01,0.0,,40.01,2.0 +2,2016-01-04 06:35:45,2016-01-04 06:41:03,1,0.75,,,-73.95097351074219,40.7913703918457,-73.94624328613281,40.78521728515625,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-30 22:32:18,2016-01-30 23:01:14,5,4.61,,,-73.98265075683594,40.677860260009766,-73.98162078857422,40.73253631591797,1,N,2,21.5,0.5,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-15 02:53:17,2016-01-15 03:08:24,1,6.43,,,-73.9535903930664,40.72282028198242,-73.99451446533203,40.684288024902344,1,N,1,19.5,0.5,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-14 09:46:30,2016-01-14 09:51:07,1,1.49,,,-73.86026763916016,40.71535110473633,-73.86959838867188,40.733943939208984,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-20 08:10:15,2016-01-20 08:14:29,5,0.79,,,-73.94589233398438,40.72557830810547,-73.94298553466797,40.73417282104492,1,N,1,5.0,0.0,0.5,0.3,0.87,0.0,,6.67,1.0 +2,2016-01-18 15:48:20,2016-01-18 15:54:24,1,0.88,,,-73.98723602294922,40.691932678222656,-73.98194122314453,40.70132064819336,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-30 17:52:57,2016-01-30 18:03:19,1,1.67,,,-73.98518371582031,40.678199768066406,-73.9589614868164,40.67830276489258,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-09 08:30:55,2016-01-09 08:41:14,1,2.9,,,-73.95003509521484,40.8271369934082,-73.96432495117188,40.792049407958984,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-04 09:08:25,2016-01-04 09:28:22,1,6.36,,,-73.92315673828125,40.743465423583984,-73.991455078125,40.69725799560547,1,N,1,22.0,0.0,0.5,0.3,3.2,0.0,,26.0,1.0 +2,2016-01-05 14:32:20,2016-01-05 14:36:19,1,0.73,,,-73.9984359741211,40.6770133972168,-73.9921875,40.68100357055664,1,N,1,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-09 20:42:35,2016-01-09 20:49:55,1,1.16,,,-73.9439926147461,40.83503723144531,-73.93263244628906,40.84828567504883,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-10 13:42:02,2016-01-10 13:44:46,1,0.68,,,-73.95655822753906,40.74469757080078,-73.94872283935547,40.74844741821289,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-02 19:22:15,2016-01-02 19:53:58,2,10.47,,,-73.9668960571289,40.683433532714844,-73.92984771728516,40.75883483886719,1,N,1,33.0,0.0,0.5,0.3,3.8,0.0,,37.6,1.0 +2,2016-01-10 17:53:11,2016-01-10 17:58:29,1,1.26,,,-73.94957733154297,40.796600341796875,-73.95333099365234,40.7826042175293,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-05 04:57:26,2016-01-05 05:00:11,1,0.45,,,-73.91038513183594,40.76949691772461,-73.91820526123047,40.77028274536133,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-14 08:37:53,2016-01-14 09:13:21,1,7.43,,,-73.99506378173828,40.7025032043457,-73.97689819335938,40.7626953125,1,N,1,28.5,0.0,0.5,0.3,5.86,0.0,,35.16,1.0 +2,2016-01-18 02:02:59,2016-01-18 02:05:40,1,0.38,,,-73.92142486572266,40.76668167114258,-73.91690063476562,40.770931243896484,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-16 02:52:39,2016-01-16 02:57:30,1,0.92,,,-73.90619659423828,40.69684600830078,-73.91222381591797,40.686405181884766,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-15 10:14:42,2016-01-15 10:18:47,1,0.74,,,-73.9597396850586,40.687232971191406,-73.97351837158203,40.686031341552734,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-14 20:16:02,2016-01-14 20:24:19,2,2.17,,,-73.95596313476562,40.71403121948242,-73.9261703491211,40.70094299316406,1,N,1,9.0,0.5,0.5,0.3,1.75,0.0,,12.05,1.0 +2,2016-01-27 12:13:56,2016-01-28 11:50:58,1,4.45,,,-73.92164611816406,40.76670837402344,-73.94940948486328,40.77012252807617,1,N,2,24.5,0.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-21 12:38:54,2016-01-21 13:31:21,1,18.42,,,-73.9888687133789,40.700897216796875,-73.82418823242188,40.78356170654297,1,N,1,56.5,0.0,0.5,0.3,11.46,0.0,,68.76,1.0 +2,2016-01-14 07:54:24,2016-01-14 08:10:36,1,3.0,,,-73.9809341430664,40.68491744995117,-74.0097885131836,40.7155876159668,1,N,1,13.5,0.0,0.5,0.3,2.5,0.0,,16.8,1.0 +2,2016-01-28 07:24:12,2016-01-28 07:47:16,1,3.84,,,-73.88152313232422,40.747955322265625,-73.8250961303711,40.7557373046875,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-09 18:23:00,2016-01-09 18:23:04,1,0.0,,,-73.92231750488281,40.82680130004883,-73.92231750488281,40.826805114746094,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +1,2016-01-17 12:39:25,2016-01-17 12:43:38,1,1.1,,,-73.91685485839844,40.76145553588867,-73.90336608886719,40.771751403808594,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-01 00:03:30,2016-01-01 00:11:01,1,1.47,,,-73.95904541015625,40.67775344848633,-73.94842529296875,40.691436767578125,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-18 13:03:27,2016-01-18 13:20:27,4,3.73,,,-73.94493103027344,40.79167175292969,-73.94747924804688,40.8308219909668,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,,17.76,1.0 +2,2016-01-16 23:58:48,2016-01-17 00:09:47,3,1.92,,,-73.95214080810547,40.81472396850586,-73.93985748291016,40.823665618896484,1,N,1,9.5,0.5,0.5,0.3,1.5,0.0,,12.3,1.0 +2,2016-01-22 18:18:21,2016-01-22 18:22:25,1,0.57,,,-73.82992553710938,40.71370315551758,-73.82160949707031,40.714698791503906,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-15 21:18:31,2016-01-15 21:29:02,1,2.21,,,-73.9668197631836,40.71055603027344,-73.97907257080078,40.69273376464844,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-06 11:17:14,2016-01-06 11:26:11,1,3.67,,,-73.90320587158203,40.865360260009766,-73.9373779296875,40.824161529541016,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-03 14:48:06,2016-01-03 14:54:51,1,0.79,,,-74.00003051757812,40.678443908691406,-73.99488830566406,40.68925476074219,1,N,1,6.5,0.0,0.5,0.3,1.5,0.0,,8.8,1.0 +1,2016-01-01 00:48:01,2016-01-01 01:04:04,3,5.9,,,-73.99266052246094,40.70219421386719,-73.93653869628906,40.71149444580078,1,Y,2,19.0,0.5,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-08 19:33:41,2016-01-08 19:38:53,1,1.09,,,-73.95123291015625,40.7911491394043,-73.93831634521484,40.79896545410156,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-30 12:47:18,2016-01-30 12:54:26,1,1.2,,,-73.91365814208984,40.76554870605469,-73.92781066894531,40.755645751953125,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-18 20:51:15,2016-01-18 20:54:02,1,0.41,,,-73.96426391601562,40.80315017700195,-73.9671401977539,40.80736541748047,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-21 17:56:02,2016-01-21 18:08:33,1,0.9,,,-73.92141723632812,40.766746520996094,-73.92096710205078,40.77622985839844,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-30 11:26:40,2016-01-30 11:41:56,1,6.4,,,-73.9404296875,40.85129928588867,-73.98282623291016,40.77333068847656,5,N,2,23.0,0.0,0.0,0,0.0,0.0,,23.0,2.0 +2,2016-01-15 01:01:07,2016-01-15 01:05:42,1,1.51,,,-73.95246124267578,40.8109130859375,-73.94478607177734,40.82916259765625,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-15 11:41:26,2016-01-15 11:55:07,1,2.34,,,-73.83431243896484,40.75784683227539,-73.81468963623047,40.73420715332031,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-01 05:08:35,2016-01-01 05:19:14,2,1.99,,,-73.94819641113281,40.70722198486328,-73.92388153076172,40.6982421875,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-13 18:26:40,2016-01-13 18:50:44,1,4.79,,,-73.9261703491211,40.77204513549805,-73.93936157226562,40.71596908569336,1,N,1,19.5,1.0,0.5,0.3,4.26,0.0,,25.56,1.0 +2,2016-01-17 20:40:54,2016-01-17 20:52:12,1,1.68,,,-73.89083862304688,40.74699401855469,-73.8958740234375,40.746421813964844,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-17 00:54:27,2016-01-17 00:57:57,1,0.98,,,-73.95145416259766,40.74281692504883,-73.95413970947266,40.73019027709961,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-07 08:18:51,2016-01-07 08:28:58,1,2.24,,,-74.00086975097656,40.681243896484375,-73.98839569091797,40.70163345336914,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-20 15:06:47,2016-01-21 00:00:00,1,1.55,,,-73.92719268798828,40.67920684814453,-73.91372680664062,40.669837951660156,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-18 15:39:50,2016-01-18 15:44:34,1,0.8,,,-73.97765350341797,40.68449020385742,-73.98332214355469,40.69440841674805,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-03 01:41:47,2016-01-03 01:43:33,1,0.64,,,-73.93663024902344,40.798683166503906,-73.9441146850586,40.79519271850586,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-21 08:31:01,2016-01-21 08:36:45,5,1.5,,,-73.87984466552734,40.87974548339844,-73.8969955444336,40.862613677978516,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-03 11:38:44,2016-01-03 11:53:07,5,4.23,,,-73.99716186523438,40.684478759765625,-73.99342346191406,40.727291107177734,1,N,1,15.0,0.0,0.5,0.3,3.0,0.0,,18.8,1.0 +2,2016-01-17 14:12:47,2016-01-17 14:38:21,1,3.71,,,-73.96363830566406,40.808223724365234,-73.98844146728516,40.760013580322266,1,N,1,18.5,0.0,0.5,0.3,3.86,0.0,,23.16,1.0 +2,2016-01-20 11:21:54,2016-01-20 11:39:39,1,2.08,,,-73.95569610595703,40.787818908691406,-73.9655990600586,40.80556106567383,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-30 05:10:42,2016-01-30 05:21:21,1,4.62,,,-73.95772552490234,40.72248077392578,-73.98383331298828,40.696868896484375,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-11 13:53:08,2016-01-11 13:55:49,1,1.41,,,-73.87120056152344,40.87856674194336,-73.86897277832031,40.86540222167969,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-10 18:48:48,2016-01-10 18:55:01,1,1.24,,,-73.92304992675781,40.75557327270508,-73.93948364257812,40.751617431640625,1,N,1,6.5,0.0,0.5,0.3,0.73,0.0,,8.03,1.0 +2,2016-01-07 18:14:56,2016-01-07 18:31:03,3,2.02,,,-73.84429931640625,40.72135925292969,-73.82508087158203,40.73417282104492,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-09 22:55:29,2016-01-09 23:02:35,1,0.9,,,-73.9942855834961,40.690277099609375,-73.9897689819336,40.70163345336914,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-13 21:30:08,2016-01-13 21:47:16,1,5.27,,,-73.9503402709961,40.67141342163086,-73.9524917602539,40.731781005859375,1,N,1,17.5,0.5,0.5,0.3,4.7,0.0,,23.5,1.0 +2,2016-01-24 12:59:42,2016-01-24 13:12:15,1,1.69,,,-73.98619079589844,40.66938781738281,-74.00342559814453,40.65005111694336,1,N,1,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-30 14:50:58,2016-01-30 15:19:03,1,4.04,,,-73.83026123046875,40.75943374633789,-73.88614654541016,40.75538635253906,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-04 06:32:09,2016-01-04 06:51:59,1,8.0,,,-73.9489517211914,40.79704666137695,-73.8651351928711,40.770572662353516,1,N,1,25.0,0.0,0.5,0.3,13.0,0.0,,38.8,1.0 +2,2016-01-28 16:52:14,2016-01-28 17:02:07,1,1.97,,,-73.99562072753906,40.66365432739258,-73.97469329833984,40.650901794433594,1,N,1,9.5,1.0,0.5,0.3,2.82,0.0,,14.12,1.0 +1,2016-01-22 22:37:33,2016-01-22 22:44:53,1,2.2,,,-73.9393081665039,40.80525588989258,-73.95698547363281,40.77827835083008,1,N,1,9.0,0.5,0.5,0.3,2.0,0.0,,12.3,1.0 +2,2016-01-17 08:35:08,2016-01-17 08:43:25,1,2.12,,,-73.939208984375,40.805545806884766,-73.95245361328125,40.779876708984375,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,,10.8,1.0 +2,2016-01-11 17:34:04,2016-01-11 17:45:30,1,2.32,,,-73.95857238769531,40.649993896484375,-73.96749114990234,40.68138885498047,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-29 17:41:15,2016-01-29 17:50:15,1,1.0,,,-73.95237731933594,40.79846954345703,-73.95193481445312,40.79011154174805,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-01 05:07:03,2016-01-01 05:26:13,1,4.97,,,-73.96342468261719,40.67569351196289,-73.99150848388672,40.62002182006836,1,N,1,18.0,0.5,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-17 15:32:17,2016-01-17 15:37:53,1,0.86,,,-73.95972442626953,40.71632385253906,-73.95391845703125,40.72568130493164,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-09 15:10:51,2016-01-09 15:21:19,5,1.68,,,-73.97956085205078,40.67022705078125,-74.00157928466797,40.679683685302734,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-29 14:10:11,2016-01-29 14:30:19,1,3.35,,,-73.93909454345703,40.80485534667969,-73.88697052001953,40.816043853759766,1,N,1,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-08 20:09:25,2016-01-08 20:23:14,1,3.12,,,-73.94850158691406,40.72264099121094,-73.94157409667969,40.682044982910156,1,N,1,12.0,0.5,0.5,0.3,3.32,0.0,,16.62,1.0 +2,2016-01-13 07:14:31,2016-01-13 07:22:34,1,1.83,,,-73.95903015136719,40.71664047241211,-73.9569091796875,40.7364387512207,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +1,2016-01-21 22:56:31,2016-01-21 22:59:05,1,0.7,,,-73.91081237792969,40.77589797973633,-73.91606140136719,40.783321380615234,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-09 02:27:24,2016-01-09 02:44:49,3,5.98,,,-73.9535903930664,40.68891525268555,-73.97359466552734,40.74357604980469,1,N,1,19.5,0.5,0.5,0.3,4.16,0.0,,24.96,1.0 +2,2016-01-10 10:55:48,2016-01-10 11:00:46,5,1.06,,,-73.95750427246094,40.80146408081055,-73.94757080078125,40.812007904052734,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-02 19:48:24,2016-01-02 20:37:43,1,11.8,,,-73.95028686523438,40.656394958496094,-73.97801971435547,40.77854919433594,1,N,1,41.5,0.5,0.5,0.3,8.55,0.0,,51.35,1.0 +2,2016-01-16 01:58:19,2016-01-16 02:12:05,1,2.98,,,-73.9620361328125,40.71601867675781,-73.91976165771484,40.70026779174805,1,N,1,12.0,0.5,0.5,0.3,1.5,0.0,,14.8,1.0 +2,2016-01-07 16:33:50,2016-01-07 16:35:41,1,0.33,,,-73.95408630371094,40.78742980957031,-73.95226287841797,40.79147720336914,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-15 00:33:04,2016-01-15 00:34:33,1,0.55,,,-73.95325469970703,40.788665771484375,-73.94348907470703,40.78486633300781,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-07 08:13:10,2016-01-07 08:21:01,1,1.86,,,-73.91984558105469,40.77277374267578,-73.9411392211914,40.75543975830078,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-30 15:09:05,2016-01-30 15:12:17,1,0.7,,,-73.9562759399414,40.65523910522461,-73.94801330566406,40.6609992980957,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-08 16:38:07,2016-01-08 16:46:39,1,1.2,,,-73.95844268798828,40.649288177490234,-73.94425964355469,40.646244049072266,1,N,1,7.5,1.0,0.5,0.3,1.85,0.0,,11.15,1.0 +2,2016-01-14 16:05:39,2016-01-14 16:28:53,3,3.57,,,-73.977783203125,40.686893463134766,-73.95745086669922,40.67800521850586,1,N,1,17.0,1.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-16 00:32:15,2016-01-16 00:34:08,2,0.46,,,-73.956787109375,40.71665954589844,-73.96146392822266,40.711273193359375,1,N,1,3.5,0.5,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-22 15:04:14,2016-01-22 15:17:59,1,2.18,,,-73.94245910644531,40.696102142333984,-73.95523834228516,40.68102264404297,1,N,1,10.5,0.0,0.5,0.3,2.82,0.0,,14.12,1.0 +2,2016-01-08 22:18:33,2016-01-08 22:21:27,1,0.38,,,-73.92323303222656,40.76055145263672,-73.92684936523438,40.76044464111328,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-29 18:17:47,2016-01-29 18:28:35,1,0.71,,,-73.8443832397461,40.72138595581055,-73.8548583984375,40.72174835205078,1,N,1,8.0,1.0,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-20 20:18:18,2016-01-20 20:28:24,6,1.15,,,-73.95528411865234,40.804527282714844,-73.93754577636719,40.804359436035156,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-20 22:55:56,2016-01-20 22:59:22,1,0.6,,,-73.94004821777344,40.8409309387207,-73.93486022949219,40.847965240478516,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-19 13:10:46,2016-01-19 13:32:04,1,3.6,,,-73.96289825439453,40.809452056884766,-73.96437072753906,40.77042007446289,1,N,1,17.0,0.0,0.5,0.3,3.55,0.0,,21.35,1.0 +1,2016-01-04 08:01:19,2016-01-04 08:13:16,1,2.9,,,-73.86216735839844,40.73041534423828,-73.83161926269531,40.756370544433594,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-21 18:56:34,2016-01-21 19:07:51,5,1.77,,,-73.89022827148438,40.74623489379883,-73.92070770263672,40.743221282958984,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-06 17:56:06,2016-01-06 18:15:57,1,2.35,,,-73.95359802246094,40.680755615234375,-73.98812103271484,40.69448471069336,1,N,2,14.0,1.0,0.5,0.3,0.0,0.0,,15.8,1.0 +1,2016-01-30 19:56:11,2016-01-30 20:18:47,1,2.3,,,-73.8710708618164,40.73392868041992,-73.88640594482422,40.75587463378906,1,N,1,15.0,0.0,0.5,0.3,3.15,0.0,,18.95,1.0 +2,2016-01-07 18:17:28,2016-01-07 18:35:41,2,2.99,,,-73.96550750732422,40.8060417175293,-73.94003295898438,40.78624725341797,1,N,1,14.5,1.0,0.5,0.3,3.26,0.0,,19.56,1.0 +1,2016-01-16 17:44:52,2016-01-16 17:49:08,5,0.9,,,-73.91627502441406,40.67857360839844,-73.92351531982422,40.6872444152832,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,,7.55,1.0 +2,2016-01-12 07:54:11,2016-01-12 08:00:38,1,1.0,,,-73.89640808105469,40.864566802978516,-73.90229797363281,40.87196731567383,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-29 22:05:23,2016-01-29 22:08:12,1,0.6,,,-73.93710327148438,40.69326400756836,-73.92681884765625,40.69197082519531,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-03 01:08:56,2016-01-03 01:23:15,1,4.0,,,-73.92997741699219,40.75641632080078,-73.88849639892578,40.748233795166016,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-09 19:16:16,2016-01-09 19:16:20,1,0.0,,,-73.9000244140625,40.67642593383789,-73.90001678466797,40.67641067504883,5,N,1,50.0,0.0,0.0,0,0.0,0.0,,50.0,2.0 +1,2016-01-01 00:47:34,2016-01-01 01:03:38,3,2.4,,,-73.93617248535156,40.809688568115234,-73.90581512451172,40.82292556762695,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-21 23:56:06,2016-01-22 00:09:06,1,3.21,,,-73.97594451904297,40.686946868896484,-73.96212005615234,40.71868896484375,1,N,1,12.0,0.5,0.5,0.3,2.0,0.0,,15.3,1.0 +2,2016-01-25 16:55:27,2016-01-25 17:24:22,1,4.96,,,-73.95894622802734,40.716827392578125,-73.92790222167969,40.77225112915039,1,N,1,21.0,1.0,0.5,0.3,4.56,0.0,,27.36,1.0 +2,2016-01-29 22:16:03,2016-01-29 22:23:02,1,0.7,,,-73.95978546142578,40.71791076660156,-73.95661163330078,40.714229583740234,1,N,1,6.0,0.5,0.5,0.3,2.19,0.0,,9.49,1.0 +2,2016-01-14 14:28:12,2016-01-14 14:32:50,1,0.56,,,-73.95850372314453,40.800926208496094,-73.96736145019531,40.80533981323242,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-27 07:54:57,2016-01-27 08:05:57,1,1.71,,,-73.98385620117188,40.66400146484375,-74.00234985351562,40.680397033691406,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-21 14:42:24,2016-01-21 14:49:38,1,1.14,,,-73.954345703125,40.78731918334961,-73.97000885009766,40.78926467895508,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-12 18:28:39,2016-01-12 18:58:27,1,5.8,,,-73.95735931396484,40.675201416015625,-73.8665542602539,40.66933822631836,1,N,1,23.0,1.0,0.5,0.3,0.0,0.0,,24.8,1.0 +2,2016-01-06 22:57:30,2016-01-06 23:01:43,1,0.96,,,-73.97781372070312,40.68457794189453,-73.97893524169922,40.69611740112305,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,,7.8,1.0 +2,2016-01-25 19:59:59,2016-01-25 20:14:48,1,2.5,,,-73.86922454833984,40.73406219482422,-73.8550796508789,40.706851959228516,1,N,1,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-17 16:32:53,2016-01-17 17:18:08,1,7.57,,,-73.9661636352539,40.80485153198242,-73.95346069335938,40.72671127319336,1,N,2,32.5,0.0,0.5,0.3,0.0,0.0,,33.3,1.0 +2,2016-01-10 00:24:37,2016-01-10 00:38:01,1,2.61,,,-73.96910858154297,40.6931037902832,-73.99481201171875,40.68060302734375,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,,15.36,1.0 +2,2016-01-01 17:08:04,2016-01-01 17:08:17,1,0.0,,,-73.93809509277344,40.804569244384766,-73.9376449584961,40.80442810058594,3,N,2,20.0,0.0,0.0,0.3,0.0,0.0,,20.3,1.0 +1,2016-01-08 03:14:18,2016-01-08 03:22:19,1,2.2,,,-73.91516876220703,40.76399612426758,-73.90504455566406,40.738563537597656,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-02 00:44:03,2016-01-02 00:52:25,1,2.3,,,-73.96585083007812,40.677391052246094,-73.94686126708984,40.695621490478516,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-26 20:23:03,2016-01-26 21:01:36,1,6.23,,,-73.96104431152344,40.806922912597656,-73.99234008789062,40.73729705810547,1,N,1,27.0,0.5,0.5,0.3,0.0,0.0,,28.3,1.0 +2,2016-01-12 07:25:50,2016-01-12 07:31:16,1,1.37,,,-73.84417724609375,40.72172927856445,-73.8551025390625,40.70859909057617,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 17:35:52,2016-01-22 17:40:14,1,0.84,,,-73.94621276855469,40.68024444580078,-73.94805908203125,40.68729019165039,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-10 08:16:54,2016-01-10 08:23:31,1,1.1,,,-73.89115905761719,40.74680709838867,-73.87709045410156,40.74609375,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-15 19:41:31,2016-01-15 20:01:35,1,3.64,,,-73.95780181884766,40.671363830566406,-73.95846557617188,40.717140197753906,1,N,1,16.0,1.0,0.5,0.3,3.56,0.0,,21.36,1.0 +2,2016-01-10 21:55:25,2016-01-10 22:00:09,1,1.04,,,-73.98748016357422,40.69285583496094,-73.97368621826172,40.69741439819336,1,N,1,6.0,0.5,0.5,0.3,2.19,0.0,,9.49,1.0 +1,2016-01-20 19:47:21,2016-01-20 20:09:13,1,6.5,,,-73.93793487548828,40.79705810546875,-73.99449157714844,40.73891067504883,1,N,2,23.0,1.0,0.5,0.3,0.0,0.0,,24.8,1.0 +1,2016-01-29 23:31:06,2016-01-29 23:42:57,1,2.1,,,-73.9452133178711,40.808048248291016,-73.94065856933594,40.82807159423828,1,Y,1,10.0,0.5,0.5,0.3,1.0,0.0,,12.3,1.0 +2,2016-01-27 10:44:13,2016-01-27 10:57:09,1,1.74,,,-73.86923217773438,40.73388671875,-73.86253356933594,40.751556396484375,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-21 09:41:16,2016-01-21 10:18:05,1,7.65,,,-73.97869110107422,40.690513610839844,-73.97513580322266,40.74994659423828,1,N,1,30.0,0.0,0.5,0.3,6.16,0.0,,36.96,1.0 +2,2016-01-18 04:11:56,2016-01-18 04:18:56,1,0.97,,,-73.91082763671875,40.77601623535156,-73.92252349853516,40.77428436279297,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-06 11:29:42,2016-01-06 11:33:03,1,0.86,,,-73.95488739013672,40.78919982910156,-73.95635223388672,40.77980041503906,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-07 14:40:33,2016-01-07 14:54:03,1,1.36,,,-73.93938446044922,40.80493927001953,-73.9534912109375,40.79127502441406,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,,11.8,1.0 +1,2016-01-16 13:54:03,2016-01-16 14:01:33,1,1.5,,,-73.936279296875,40.82030487060547,-73.9091567993164,40.81298065185547,1,N,4,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-17 23:03:54,2016-01-17 23:16:05,1,3.03,,,-73.83042907714844,40.75952911376953,-73.81014251708984,40.72289276123047,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-20 16:57:51,2016-01-20 17:07:05,2,1.38,,,-73.95100402832031,40.8026123046875,-73.94713592529297,40.79103469848633,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-07 18:05:04,2016-01-07 18:10:17,1,1.1,,,-73.95429992675781,40.58732223510742,-73.93761444091797,40.58815002441406,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-05 23:57:15,2016-01-06 00:11:34,1,3.7,,,-73.95582580566406,40.7139778137207,-73.94249725341797,40.75756072998047,1,N,1,14.0,0.5,0.5,0.3,3.05,0.0,,18.35,1.0 +2,2016-01-01 00:50:05,2016-01-01 01:18:13,1,5.16,,,-73.91962432861328,40.75923156738281,-73.97720336914062,40.78464126586914,1,N,1,22.0,0.5,0.5,0.3,5.82,0.0,,29.12,1.0 +2,2016-01-16 20:28:13,2016-01-16 20:38:12,1,3.51,,,-73.94343566894531,40.8360481262207,-73.9289779663086,40.86337661743164,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-11 13:41:09,2016-01-11 13:50:42,1,1.19,,,-73.95891571044922,40.71669387817383,-73.96748352050781,40.71128845214844,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-10 03:28:26,2016-01-10 03:50:25,5,7.54,,,-73.91395568847656,40.76504135131836,-73.82568359375,40.75285720825195,1,N,1,24.0,0.5,0.5,0.3,5.06,0.0,,30.36,1.0 +2,2016-01-20 12:05:54,2016-01-20 12:20:03,2,1.68,,,-73.9803695678711,40.67649459838867,-73.96881866455078,40.69295883178711,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-30 16:25:58,2016-01-30 16:34:31,1,1.53,,,-73.94963073730469,40.80195999145508,-73.9383544921875,40.78811264038086,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-26 17:29:04,2016-01-26 17:49:00,1,1.5,,,-73.95111083984375,40.786033630371094,-73.9728775024414,40.797821044921875,1,N,1,13.0,1.0,0.5,0.3,3.0,0.0,,17.8,1.0 +2,2016-01-09 02:44:53,2016-01-09 03:05:06,1,4.11,,,-73.91544342041016,40.677181243896484,-73.94583129882812,40.69319534301758,1,N,1,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-27 17:40:28,2016-01-27 18:09:27,1,5.09,,,-73.93724822998047,40.80439758300781,-73.87604522705078,40.82632064819336,1,N,1,20.0,1.0,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-05 16:12:44,2016-01-05 16:13:20,1,0.03,,,-73.95189666748047,40.789085388183594,-73.95256805419922,40.78933334350586,1,N,1,2.5,1.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-26 21:43:28,2016-01-26 22:05:51,1,4.24,,,-73.98222351074219,40.68998336791992,-73.91778564453125,40.675193786621094,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-17 09:02:34,2016-01-17 09:06:12,1,1.1,,,-73.9412841796875,40.81367492675781,-73.95237731933594,40.802276611328125,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-18 00:18:50,2016-01-18 00:33:01,1,6.41,,,-73.91671752929688,40.764739990234375,-73.82772064208984,40.754150390625,1,N,2,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-13 23:00:18,2016-01-13 23:11:12,1,1.76,,,-73.9747543334961,40.68650436401367,-73.98473358154297,40.6711311340332,1,N,1,9.5,0.5,0.5,0.3,2.7,0.0,,13.5,1.0 +2,2016-01-29 02:28:12,2016-01-29 02:40:40,2,3.29,,,-73.95271301269531,40.72702407836914,-73.95930480957031,40.68669128417969,1,N,1,12.0,0.5,0.5,0.3,3.0,0.0,,16.3,1.0 +1,2016-01-15 10:54:27,2016-01-15 11:00:07,1,0.8,,,-73.89181518554688,40.74668884277344,-73.87966918945312,40.750118255615234,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-25 11:56:38,2016-01-25 12:15:45,1,2.52,,,-73.96239471435547,40.804832458496094,-73.94190979003906,40.832969665527344,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-26 14:50:49,2016-01-26 15:03:31,1,2.84,,,-73.73587036132812,40.72856521606445,-73.7821273803711,40.71312713623047,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,,15.36,1.0 +1,2016-01-22 11:54:19,2016-01-22 11:59:11,2,1.0,,,-73.95999908447266,40.80815887451172,-73.96908569335938,40.79857635498047,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-18 22:19:29,2016-01-18 22:29:19,1,1.78,,,-73.88725280761719,40.7474365234375,-73.86190032958984,40.752559661865234,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-09 23:40:02,2016-01-09 23:51:12,1,1.83,,,-73.96195220947266,40.71358108520508,-73.93843078613281,40.70062255859375,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-06 18:20:31,2016-01-06 18:28:00,1,1.36,,,-73.94352722167969,40.81058120727539,-73.95855712890625,40.8005256652832,1,N,1,7.0,1.0,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-07 21:13:41,2016-01-07 21:29:44,1,6.25,,,-73.90799713134766,40.6778564453125,-73.83627319335938,40.72157287597656,1,N,2,20.0,0.5,0.5,0.3,0.0,0.0,,21.3,1.0 +1,2016-01-19 13:18:15,2016-01-19 13:21:38,1,0.6,,,-73.949951171875,40.80956268310547,-73.94313049316406,40.81412887573242,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,,6.35,1.0 +2,2016-01-19 12:46:27,2016-01-19 12:57:14,5,3.06,,,-73.9119644165039,40.77510452270508,-73.90425872802734,40.74821853637695,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-25 15:03:24,2016-01-25 15:08:14,1,0.89,,,-73.83049011230469,40.71338653564453,-73.83595275878906,40.70528793334961,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-26 18:05:37,2016-01-26 18:16:23,1,1.72,,,-73.94435119628906,40.79184341430664,-73.93641662597656,40.81230545043945,1,N,1,9.0,1.0,0.5,0.3,1.0,0.0,,11.8,1.0 +1,2016-01-15 08:56:24,2016-01-15 09:28:48,1,5.4,,,-73.9567642211914,40.74793243408203,-74.00640869140625,40.71381378173828,1,N,1,22.5,0.0,0.5,0.3,4.0,5.54,,32.84,1.0 +2,2016-01-03 18:19:25,2016-01-03 18:24:44,1,0.85,,,-73.94786071777344,40.80116271972656,-73.93846893310547,40.8087158203125,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-05 12:25:43,2016-01-05 12:34:03,1,3.51,,,-73.90311431884766,40.74604797363281,-73.87326049804688,40.77420425415039,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-28 09:58:14,2016-01-28 10:06:51,1,1.2,,,-73.95372772216797,40.58729553222656,-73.96722412109375,40.580718994140625,1,N,2,7.5,0.0,0.5,0,0.0,0.0,,8.0,1.0 +2,2016-01-29 05:48:03,2016-01-29 05:50:37,1,1.09,,,-73.9431381225586,40.78532028198242,-73.93207550048828,40.795101165771484,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-29 17:53:45,2016-01-29 17:57:55,1,0.68,,,-73.95650482177734,40.71699142456055,-73.96610260009766,40.71453094482422,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-03 17:36:28,2016-01-03 17:42:44,2,1.44,,,-73.89190673828125,40.82469177246094,-73.89173126220703,40.841495513916016,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-10 02:00:03,2016-01-10 02:08:19,1,1.83,,,-73.95050048828125,40.66155242919922,-73.94677734375,40.68296813964844,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-20 00:30:09,2016-01-20 00:36:29,1,1.8,,,-73.84420013427734,40.72105407714844,-73.85970306396484,40.741947174072266,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-02 16:26:01,2016-01-02 16:29:43,1,1.15,,,-73.99028015136719,40.685882568359375,-73.98651885986328,40.67400360107422,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,,7.55,1.0 +2,2016-01-20 09:09:41,2016-01-21 08:57:30,1,0.73,,,-73.92317199707031,40.817596435546875,-73.93666076660156,40.820133209228516,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-12 18:21:54,2016-01-12 18:24:28,1,0.47,,,-73.91291046142578,40.774444580078125,-73.91878509521484,40.77212142944336,1,N,1,4.0,1.0,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-28 07:30:31,2016-01-28 07:53:25,1,2.75,,,-73.94230651855469,40.786468505859375,-73.95581817626953,40.81277847290039,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-25 05:04:36,2016-01-25 05:33:50,1,15.3,,,-73.91867065429688,40.743289947509766,-73.79039764404297,40.643741607666016,1,N,2,43.0,0.5,0.5,0.3,0.0,0.0,,44.3,1.0 +2,2016-01-05 08:27:05,2016-01-05 08:34:53,1,1.49,,,-73.87804412841797,40.756412506103516,-73.90592956542969,40.75353240966797,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-04 21:44:11,2016-01-04 21:59:35,1,3.98,,,-73.99185180664062,40.69095230102539,-73.93163299560547,40.680721282958984,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-25 19:47:34,2016-01-25 20:01:43,1,2.3,,,-73.9471664428711,40.80100631713867,-73.97301483154297,40.785301208496094,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-30 15:24:52,2016-01-30 15:34:43,1,0.9,,,-73.9538803100586,40.81127166748047,-73.93859100341797,40.80516815185547,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-02 20:49:53,2016-01-02 20:59:42,1,1.99,,,-73.97594451904297,40.683963775634766,-73.96334838867188,40.682701110839844,1,N,1,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-16 16:02:14,2016-01-16 16:22:29,1,3.7,,,-73.94607543945312,40.71147918701172,-73.9892349243164,40.7315559387207,1,N,1,16.5,0.0,0.5,0.3,3.45,0.0,,20.75,1.0 +2,2016-01-02 21:36:48,2016-01-02 21:46:49,2,2.69,,,-73.93902587890625,40.80531311035156,-73.96875762939453,40.786033630371094,1,N,1,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-26 23:14:11,2016-01-26 23:33:49,1,5.52,,,-73.94062042236328,40.71189498901367,-73.83734130859375,40.70802688598633,1,N,1,19.0,0.5,0.5,0.3,3.0,0.0,,23.3,1.0 +2,2016-01-29 17:46:30,2016-01-29 17:54:16,1,1.12,,,-73.96231842041016,40.8049201965332,-73.94979858398438,40.801761627197266,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-22 19:56:52,2016-01-22 20:06:14,1,1.79,,,-73.92972564697266,40.68630599975586,-73.90962219238281,40.674678802490234,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-13 23:36:58,2016-01-13 23:46:37,1,1.82,,,-73.89142608642578,40.74664306640625,-73.85962677001953,40.745914459228516,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-04 10:42:03,2016-01-04 10:47:01,1,0.98,,,-73.9068603515625,40.76008605957031,-73.91893005371094,40.759090423583984,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-25 17:22:20,2016-01-25 17:30:39,1,1.1,,,-73.94966125488281,40.67803192138672,-73.95266723632812,40.68825149536133,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-04 16:54:37,2016-01-04 17:26:38,1,4.68,,,-73.93428802490234,40.80183029174805,-73.9178466796875,40.84897994995117,1,N,2,22.0,1.0,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-16 10:04:47,2016-01-16 10:09:52,1,0.9,,,-73.91875457763672,40.8250617980957,-73.9098892211914,40.8352165222168,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-30 01:48:12,2016-01-30 01:56:47,5,1.74,,,-73.8894271850586,40.73929214477539,-73.8725814819336,40.7522087097168,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-18 16:03:54,2016-01-18 16:18:03,2,2.33,,,-73.97314453125,40.68586349487305,-73.98487091064453,40.662986755371094,1,N,1,11.5,0.0,0.5,0.3,3.0,0.0,,15.3,1.0 +1,2016-01-08 20:16:55,2016-01-08 20:30:18,5,2.5,,,-73.97636413574219,40.68368148803711,-73.95207977294922,40.68156814575195,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-27 21:12:59,2016-01-27 21:26:46,1,4.6,,,-73.99639129638672,40.694095611572266,-73.98091125488281,40.645328521728516,1,N,1,15.0,0.5,0.5,0.3,1.5,0.0,,17.8,1.0 +1,2016-01-04 13:04:01,2016-01-04 13:13:24,1,2.4,,,-73.9300308227539,40.75654983520508,-73.96587371826172,40.75845718383789,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-25 09:45:44,2016-01-25 09:54:32,1,1.66,,,-73.90505981445312,40.745506286621094,-73.89237213134766,40.75857162475586,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-22 01:44:29,2016-01-22 01:58:59,1,5.99,,,-73.95365905761719,40.787723541259766,-73.9346923828125,40.844688415527344,1,N,1,19.5,0.5,0.5,0.3,5.2,0.0,,26.0,1.0 +2,2016-01-15 18:55:28,2016-01-15 19:27:36,1,8.31,,,-73.95219421386719,40.80355453491211,-73.86498260498047,40.85247039794922,1,N,1,28.0,1.0,0.5,0.3,5.96,0.0,,35.76,1.0 +2,2016-01-07 18:23:03,2016-01-07 18:39:48,1,2.92,,,-73.93670654296875,40.8492317199707,-73.90364837646484,40.88056182861328,1,N,2,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-18 16:15:31,2016-01-18 16:27:58,2,2.4,,,-73.96409606933594,40.8079719543457,-73.94852447509766,40.78490447998047,1,N,1,11.5,0.0,0.5,0.3,1.25,0.0,,13.55,1.0 +2,2016-01-14 22:53:11,2016-01-14 22:57:49,1,1.09,,,-73.95594024658203,40.694637298583984,-73.97120666503906,40.68968200683594,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-06 19:07:00,2016-01-06 19:35:42,1,4.75,,,-73.9563217163086,40.723228454589844,-73.95074462890625,40.66175842285156,1,N,2,20.0,1.0,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-16 20:45:50,2016-01-16 21:26:57,1,6.7,,,-73.94731903076172,40.83018112182617,-73.99580383300781,40.753173828125,1,N,1,30.5,0.5,0.5,0.3,6.36,0.0,,38.16,1.0 +2,2016-01-28 17:36:44,2016-01-28 17:59:58,1,3.5,,,-73.96038818359375,40.8040657043457,-73.95415496826172,40.767208099365234,1,N,1,16.5,1.0,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-30 02:25:13,2016-01-30 02:38:07,1,4.03,,,-73.96192932128906,40.71580123901367,-73.98815155029297,40.68492889404297,1,N,1,14.5,0.5,0.5,0.3,3.0,0.0,,18.8,1.0 +2,2016-01-21 22:56:15,2016-01-21 23:03:43,1,1.89,,,-73.95808410644531,40.81526565551758,-73.94168090820312,40.829978942871094,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-12 18:26:08,2016-01-12 18:38:57,1,1.7,,,-73.99082946777344,40.70256042480469,-73.97798919677734,40.68516540527344,1,N,1,10.0,1.0,0.5,0.3,2.95,0.0,,14.75,1.0 +2,2016-01-15 23:00:25,2016-01-15 23:11:40,1,4.7,,,-73.9420394897461,40.837703704833984,-73.97673034667969,40.78845977783203,1,N,1,15.0,0.5,0.5,0.3,3.26,0.0,,19.56,1.0 +1,2016-01-01 07:33:41,2016-01-01 07:40:14,1,2.7,,,-73.94165802001953,40.838279724121094,-73.9126205444336,40.84637451171875,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-16 19:10:13,2016-01-16 19:24:18,1,1.36,,,-73.98680877685547,40.67887878417969,-73.9716567993164,40.67623519897461,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-27 20:15:58,2016-01-27 20:20:52,1,0.87,,,-73.93661499023438,40.82054138183594,-73.92211151123047,40.82035827636719,1,N,1,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-18 03:34:34,2016-01-19 00:00:00,1,3.3,,,-73.92721557617188,40.81859588623047,-73.91627502441406,40.85403060913086,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-27 10:49:30,2016-01-27 10:56:03,1,0.68,,,-73.89048767089844,40.86110305786133,-73.89165496826172,40.853206634521484,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-04 13:06:01,2016-01-04 13:47:09,1,19.97,,,-73.93109130859375,40.84800338745117,-73.78270721435547,40.644039154052734,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,,58.34,1.0 +2,2016-01-10 11:04:34,2016-01-10 11:26:35,1,4.89,,,-73.94979858398438,40.68123245239258,-73.99575805664062,40.72460174560547,1,N,2,19.0,0.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-20 14:12:05,2016-01-20 14:18:32,1,1.36,,,-73.93887329101562,40.82704544067383,-73.95252227783203,40.81096649169922,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-09 21:23:15,2016-01-09 21:38:12,1,2.98,,,-74.00811767578125,40.631317138671875,-73.9704818725586,40.636390686035156,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-04 18:45:45,2016-01-04 18:58:52,1,2.76,,,-73.84432220458984,40.721343994140625,-73.83695220947266,40.69416809082031,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-11 13:23:02,2016-01-11 13:34:22,1,2.47,,,-73.92059326171875,40.76807403564453,-73.89138793945312,40.751869201660156,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-04 16:36:55,2016-01-04 16:53:48,1,3.52,,,-73.80345916748047,40.716896057128906,-73.82441711425781,40.6880989074707,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-15 23:22:34,2016-01-15 23:29:03,1,1.33,,,-73.90834045410156,40.770957946777344,-73.91939544677734,40.75579071044922,1,N,1,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-17 16:33:24,2016-01-17 16:41:39,2,1.4,,,-73.954833984375,40.804176330566406,-73.93229675292969,40.795291900634766,1,N,1,7.5,0.0,0.5,0.3,1.5,0.0,,9.8,1.0 +2,2016-01-11 19:12:32,2016-01-11 19:23:27,1,1.89,,,-73.95812225341797,40.815162658691406,-73.97313690185547,40.7928581237793,1,N,1,10.0,1.0,0.5,0.3,2.95,0.0,,14.75,1.0 +2,2016-01-29 22:39:15,2016-01-29 23:02:51,1,6.14,,,-73.83332061767578,40.67328643798828,-73.92516326904297,40.65569305419922,5,N,2,25.0,0.0,0.0,0,0.0,0.0,,25.0,2.0 +2,2016-01-16 20:46:53,2016-01-16 20:55:30,2,2.04,,,-73.94943237304688,40.74855041503906,-73.92632293701172,40.765647888183594,1,N,1,9.0,0.5,0.5,0.3,2.58,0.0,,12.88,1.0 +2,2016-01-10 20:27:55,2016-01-10 20:37:10,1,1.63,,,-73.9222640991211,40.75525665283203,-73.94004821777344,40.75245666503906,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-16 03:00:10,2016-01-16 03:16:11,2,4.51,,,-73.95674896240234,40.81382751464844,-73.88733673095703,40.81603240966797,5,N,2,15.0,0.0,0.0,0,0.0,0.0,,15.0,2.0 +1,2016-01-09 09:15:38,2016-01-09 09:17:34,1,0.5,,,-73.94464874267578,40.81376266479492,-73.93997955322266,40.82020950317383,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,,6.0,1.0 +2,2016-01-20 17:47:59,2016-01-20 17:49:17,1,0.14,,,-73.95018005371094,40.680423736572266,-73.94750213623047,40.680259704589844,1,N,2,2.5,1.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-11 18:13:17,2016-01-11 18:25:54,1,1.49,,,-73.93376159667969,40.76301193237305,-73.91216278076172,40.76908874511719,1,N,1,9.5,1.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-01 18:53:51,2016-01-01 19:02:48,1,2.94,,,-73.80757141113281,40.700313568115234,-73.80050659179688,40.66805648803711,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-03 02:36:26,2016-01-03 02:37:25,1,0.2,,,-73.85807037353516,40.75279235839844,-73.85731506347656,40.755516052246094,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-26 13:44:28,2016-01-26 13:52:28,1,1.07,,,-73.95414733886719,40.72990417480469,-73.95635223388672,40.71713638305664,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-08 11:13:16,2016-01-08 11:29:33,1,5.0,,,-73.95406341552734,40.58744812011719,-73.99320220947266,40.61608123779297,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +1,2016-01-15 19:48:39,2016-01-15 19:51:10,1,0.4,,,-73.94831848144531,40.8039665222168,-73.94429016113281,40.80944061279297,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-09 21:01:31,2016-01-09 21:04:51,1,0.69,,,-73.91124725341797,40.70402145385742,-73.91937255859375,40.70425033569336,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-25 18:19:15,2016-01-25 18:30:14,1,3.06,,,-73.92243957519531,40.83643341064453,-73.91897583007812,40.80746078491211,1,N,1,11.5,1.0,0.5,0.3,5.0,0.0,,18.3,1.0 +2,2016-01-16 15:00:34,2016-01-16 15:05:25,1,0.55,,,-73.86199188232422,40.730438232421875,-73.86460876464844,40.73434066772461,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-13 15:54:16,2016-01-13 16:11:58,1,3.46,,,-73.85163116455078,40.850242614746094,-73.90461730957031,40.863258361816406,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +1,2016-01-21 09:13:36,2016-01-21 09:22:39,1,1.3,,,-73.84434509277344,40.721282958984375,-73.83457946777344,40.71232223510742,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-19 08:12:48,2016-01-19 08:26:57,1,1.74,,,-73.96358489990234,40.802913665771484,-73.93952178955078,40.805198669433594,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-22 23:00:45,2016-01-22 23:14:02,1,5.86,,,-73.90557861328125,40.745338439941406,-73.83238220214844,40.76276779174805,1,N,2,18.5,0.5,0.5,0.3,0.0,0.0,,19.8,1.0 +1,2016-01-07 20:38:53,2016-01-07 20:52:50,1,6.2,,,-73.944580078125,40.783424377441406,-73.98258209228516,40.71996307373047,1,N,1,19.0,0.5,0.5,0.3,0.0,0.0,,20.3,1.0 +1,2016-01-10 16:56:57,2016-01-10 17:01:35,1,1.2,,,-73.95243835449219,40.798282623291016,-73.941162109375,40.81265640258789,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,,7.8,1.0 +2,2016-01-06 15:31:31,2016-01-06 15:39:16,1,1.02,,,-73.92568969726562,40.761863708496094,-73.9362564086914,40.749839782714844,1,N,1,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-18 23:08:50,2016-01-18 23:13:32,1,1.23,,,-73.95024108886719,40.728885650634766,-73.95170593261719,40.71562576293945,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-27 09:30:58,2016-01-27 10:08:13,1,6.4,,,-73.98680877685547,40.702476501464844,-73.97575378417969,40.75695037841797,1,N,1,30.0,0.0,0.5,0.3,6.15,0.0,,36.95,1.0 +1,2016-01-16 13:15:21,2016-01-16 13:31:13,1,2.6,,,-73.96835327148438,40.68642807006836,-73.95826721191406,40.6549186706543,1,N,1,12.5,0.0,0.5,0.3,1.33,0.0,,14.63,1.0 +2,2016-01-30 22:16:21,2016-01-30 22:20:17,1,0.51,,,-73.9901351928711,40.68727111816406,-73.98892211914062,40.69373321533203,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-26 20:36:18,2016-01-26 20:43:13,1,1.3,,,-73.95431518554688,40.58734130859375,-73.93505096435547,40.58470916748047,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-20 20:46:28,2016-01-20 21:09:44,1,4.0,,,-73.96273040771484,40.71738052368164,-74.01048278808594,40.71989822387695,1,N,1,18.0,0.5,0.5,0.3,3.86,0.0,,23.16,1.0 +2,2016-01-13 21:58:31,2016-01-13 22:02:38,1,0.85,,,-73.94992065429688,40.65542221069336,-73.9368896484375,40.65870666503906,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-17 07:32:07,2016-01-17 07:40:11,1,1.55,,,-73.9542007446289,40.685176849365234,-73.93070983886719,40.691253662109375,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,,9.8,1.0 +2,2016-01-08 21:37:17,2016-01-08 21:46:15,1,1.28,,,-73.90052032470703,40.8583984375,-73.9122085571289,40.8431510925293,5,N,2,8.0,0.0,0.0,0,0.0,0.0,,8.0,2.0 +1,2016-01-17 12:21:05,2016-01-17 12:36:46,2,3.7,,,-73.95491790771484,40.815101623535156,-73.9557113647461,40.776363372802734,1,N,1,14.0,0.0,0.5,0.3,2.95,0.0,,17.75,1.0 +2,2016-01-17 22:54:31,2016-01-17 23:11:14,1,4.35,,,-73.9576187133789,40.72998809814453,-73.99547576904297,40.727020263671875,1,N,1,16.0,0.5,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-18 20:27:19,2016-01-18 20:36:03,1,0.81,,,-73.95420837402344,40.72996139526367,-73.94490051269531,40.725582122802734,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +1,2016-01-26 22:07:02,2016-01-26 22:34:03,1,5.1,,,-73.978515625,40.68443298339844,-73.90391540527344,40.70740509033203,1,N,1,20.5,0.5,0.5,0.3,4.35,0.0,,26.15,1.0 +1,2016-01-13 22:23:41,2016-01-13 23:02:23,1,14.3,,,-73.95201873779297,40.78993606567383,-73.80875396728516,40.753421783447266,1,N,2,44.0,0.5,0.5,0.3,0.0,0.0,,45.3,1.0 +2,2016-01-28 13:33:32,2016-01-28 13:47:52,1,2.43,,,-73.9893798828125,40.66972732543945,-74.01624298095703,40.65318298339844,1,N,1,12.0,0.0,0.5,0.3,1.0,0.0,,13.8,1.0 +2,2016-01-01 16:37:40,2016-01-01 16:44:47,1,3.37,,,-73.86387634277344,40.73291778564453,-73.81074523925781,40.73487091064453,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,,14.76,1.0 +1,2016-01-03 08:23:02,2016-01-03 08:29:56,1,1.6,,,-73.97430419921875,40.68620300292969,-73.95333862304688,40.6921501159668,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,,8.8,1.0 +1,2016-01-20 17:23:32,2016-01-20 17:51:03,1,5.9,,,-73.97817993164062,40.689815521240234,-73.98844909667969,40.755775451660156,1,N,1,22.0,1.0,0.5,0.3,2.2,0.0,,26.0,1.0 +2,2016-01-30 14:25:46,2016-01-30 14:39:57,1,2.24,,,-73.89096069335938,40.746971130371094,-73.88945007324219,40.73381805419922,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-27 07:24:19,2016-01-27 07:43:15,1,3.0,,,-73.94183349609375,40.83845138549805,-73.95609283447266,40.80140686035156,1,N,1,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-16 23:56:17,2016-01-17 00:09:04,2,3.34,,,-73.92625427246094,40.8193244934082,-73.9131851196289,40.84012222290039,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +2,2016-01-04 09:09:11,2016-01-04 09:15:03,1,0.85,,,-73.92157745361328,40.83576583862305,-73.9115219116211,40.84377670288086,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-01 00:28:40,2016-01-01 00:36:10,2,1.42,,,-73.885986328125,40.744422912597656,-73.91510772705078,40.74348068237305,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-13 16:59:25,2016-01-13 17:10:29,1,1.8,,,-73.90438842773438,40.85177230834961,-73.8868637084961,40.85784912109375,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-05 19:42:13,2016-01-05 19:59:34,1,7.7,,,-73.9493408203125,40.80266571044922,-73.97911071777344,40.718505859375,1,N,2,23.5,1.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-10 21:48:18,2016-01-10 22:02:18,1,4.32,,,-73.8839340209961,40.75259017944336,-73.82276153564453,40.78091049194336,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-07 17:26:01,2016-01-07 17:32:46,1,0.99,,,-73.9559097290039,40.81293869018555,-73.94467163085938,40.803070068359375,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-17 03:07:40,2016-01-17 03:25:52,2,8.1,,,-73.9422836303711,40.819732666015625,-73.85862731933594,40.86601638793945,5,N,2,20.0,0.0,0.0,0,0.0,0.0,,20.0,2.0 +2,2016-01-06 23:05:24,2016-01-06 23:09:36,1,0.66,,,-73.94169616699219,40.70069885253906,-73.93121337890625,40.69464874267578,1,N,1,4.5,0.5,0.5,0.3,1.45,0.0,,7.25,1.0 +2,2016-01-29 20:02:03,2016-01-29 20:16:38,5,1.9,,,-73.88455200195312,40.74481201171875,-73.89519500732422,40.76028060913086,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-07 08:18:14,2016-01-07 08:22:05,1,0.55,,,-73.98710632324219,40.66818618774414,-73.9804916381836,40.672115325927734,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +1,2016-01-21 14:05:42,2016-01-21 14:27:23,1,3.6,,,-73.99266815185547,40.689727783203125,-73.94205474853516,40.686458587646484,1,N,1,16.5,0.0,0.5,0.3,3.45,0.0,,20.75,1.0 +2,2016-01-05 13:12:11,2016-01-05 13:29:48,5,3.02,,,-73.91736602783203,40.81595230102539,-73.89246368408203,40.85246658325195,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-17 18:23:05,2016-01-17 18:32:36,1,1.8,,,-73.84407806396484,40.72109603881836,-73.81524658203125,40.71090316772461,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-19 07:24:34,2016-01-19 07:51:08,1,5.55,,,-73.81877899169922,40.70899963378906,-73.9068832397461,40.727882385253906,1,N,2,21.5,0.0,0.5,0.3,0.0,0.0,,22.3,1.0 +2,2016-01-30 10:27:52,2016-01-30 10:36:25,1,2.36,,,-73.99258422851562,40.703330993652344,-74.00529479980469,40.718326568603516,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-21 19:43:00,2016-01-21 19:58:09,1,3.77,,,-73.97086334228516,40.69337463378906,-74.00965881347656,40.70502853393555,1,N,1,14.5,1.0,0.5,0.3,2.0,0.0,,18.3,1.0 +2,2016-01-03 20:06:32,2016-01-03 20:18:47,1,4.87,,,-73.869384765625,40.733802795410156,-73.81536102294922,40.727081298828125,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +1,2016-01-30 20:16:43,2016-01-30 20:44:30,1,3.2,,,-73.95806884765625,40.723609924316406,-73.9897689819336,40.72255325317383,1,N,1,17.5,0.5,0.5,0.3,3.75,0.0,,22.55,1.0 +1,2016-01-09 11:40:57,2016-01-09 11:53:47,1,3.2,,,-73.94882202148438,40.829002380371094,-73.94009399414062,40.79303741455078,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-07 20:40:19,2016-01-07 20:54:04,2,3.5,,,-73.9189453125,40.7428092956543,-73.91339111328125,40.70528030395508,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-06 19:50:46,2016-01-06 20:08:20,1,5.84,,,-73.84392547607422,40.72147750854492,-73.82111358642578,40.76067352294922,1,N,1,19.0,1.0,0.5,0.3,0.0,0.0,,20.8,1.0 +1,2016-01-28 10:21:58,2016-01-28 10:25:16,1,1.0,,,-73.93864440917969,40.67984390258789,-73.9489974975586,40.687923431396484,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-27 23:19:14,2016-01-27 23:31:34,2,2.41,,,-73.87669372558594,40.74834442138672,-73.8827896118164,40.73099136352539,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-01 02:11:43,2016-01-01 02:33:05,1,5.0,,,-73.99322509765625,40.695369720458984,-73.9913330078125,40.74660110473633,1,N,2,19.0,0.5,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-06 09:38:15,2016-01-06 09:41:10,1,0.59,,,-73.95843505859375,40.714725494384766,-73.96566009521484,40.7144775390625,1,N,1,4.0,0.0,0.5,0.3,1.0,0.0,,5.8,1.0 +2,2016-01-18 08:13:18,2016-01-18 08:18:13,5,2.46,,,-73.93798828125,40.82121276855469,-73.92863464355469,40.83977127075195,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-10 00:07:20,2016-01-10 00:15:27,1,1.86,,,-73.95315551757812,40.807743072509766,-73.95526123046875,40.82693099975586,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-30 13:41:05,2016-01-30 13:52:58,1,1.87,,,-73.96805572509766,40.689361572265625,-73.95066833496094,40.6684684753418,1,N,1,9.5,0.0,0.5,0.3,1.0,0.0,,11.3,1.0 +1,2016-01-06 00:17:52,2016-01-06 00:22:54,1,1.0,,,-73.91523742675781,40.690399169921875,-73.9030532836914,40.695289611816406,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,,8.15,1.0 +1,2016-01-24 16:37:10,2016-01-24 16:53:11,1,5.4,,,-73.93986511230469,40.84112548828125,-73.94033813476562,40.792327880859375,1,N,1,18.0,0.0,0.5,0.3,1.2,0.0,,20.0,1.0 +2,2016-01-20 15:31:45,2016-01-20 15:45:59,1,2.72,,,-73.94795989990234,40.80975341796875,-73.9754867553711,40.7822380065918,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-30 08:17:37,2016-01-30 08:34:23,1,4.76,,,-73.96515655517578,40.8060417175293,-73.97753143310547,40.76110076904297,1,N,1,17.5,0.0,0.5,0.3,3.66,0.0,,21.96,1.0 +2,2016-01-04 08:34:20,2016-01-04 09:01:01,1,3.95,,,-73.97755432128906,40.68442153930664,-74.0151596069336,40.70850372314453,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,,20.3,1.0 +1,2016-01-21 11:21:20,2016-01-21 11:27:26,1,1.4,,,-73.94808197021484,40.798561096191406,-73.954345703125,40.81085205078125,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,,8.3,1.0 +1,2016-01-27 10:25:51,2016-01-27 10:36:42,1,2.3,,,-73.97908020019531,40.69347381591797,-73.95307159423828,40.67642593383789,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-17 11:54:20,2016-01-17 12:04:55,1,2.7,,,-73.97883605957031,40.689937591552734,-73.99823760986328,40.72256088256836,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,,14.15,1.0 +2,2016-01-05 19:24:46,2016-01-05 19:30:03,1,1.13,,,-73.99071502685547,40.69254684448242,-73.98333740234375,40.70135498046875,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-17 16:54:23,2016-01-17 16:57:05,5,0.63,,,-73.96710968017578,40.67439651489258,-73.95787811279297,40.671058654785156,1,N,1,4.0,0.0,0.5,0.3,0.48,0.0,,5.28,1.0 +1,2016-01-08 14:00:36,2016-01-08 14:11:51,1,4.6,,,-73.94475555419922,40.834442138671875,-73.92208862304688,40.881065368652344,1,N,1,15.0,0.0,0.5,0.3,2.0,2.54,,20.34,1.0 +2,2016-01-03 16:37:20,2016-01-03 16:44:24,1,0.87,,,-73.9930419921875,40.70100784301758,-73.99413299560547,40.690940856933594,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-02 13:47:10,2016-01-02 14:06:55,1,5.2,,,-73.99140167236328,40.68534469604492,-74.02333068847656,40.630828857421875,1,N,1,18.5,0.0,0.5,0.3,5.79,0.0,,25.09,1.0 +2,2016-01-08 15:06:39,2016-01-08 15:11:17,1,0.9,,,-73.83049011230469,40.708770751953125,-73.81941986083984,40.71373748779297,1,N,1,5.5,0.0,0.5,0.3,0.7,0.0,,7.0,1.0 +1,2016-01-10 04:32:51,2016-01-10 05:13:08,1,11.9,,,-73.95877838134766,40.722164154052734,-73.95721435546875,40.80424880981445,1,N,2,37.5,0.5,0.5,0.3,0.0,0.0,,38.8,1.0 +1,2016-01-03 00:25:21,2016-01-03 00:47:26,1,5.8,,,-73.95791625976562,40.64445114135742,-73.99333190917969,40.72183609008789,1,N,2,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-14 20:24:20,2016-01-14 20:29:01,1,0.74,,,-73.95680236816406,40.74557113647461,-73.94737243652344,40.748130798339844,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,,7.3,1.0 +2,2016-01-23 03:11:00,2016-01-23 03:34:18,4,6.53,,,-73.94805908203125,40.746063232421875,-73.99046325683594,40.737186431884766,1,N,1,22.0,0.5,0.5,0.3,5.82,0.0,,29.12,1.0 +2,2016-01-15 15:49:24,2016-01-15 16:24:14,1,4.41,,,-73.99247741699219,40.6895637512207,-73.92631530761719,40.67641830444336,1,N,1,22.5,0.0,0.5,0.3,4.66,0.0,,27.96,1.0 +1,2016-01-26 03:54:31,2016-01-26 04:12:49,1,7.2,,,-73.94213104248047,40.71571350097656,-73.99143981933594,40.75142288208008,1,N,1,22.0,0.5,0.5,0.3,4.66,0.0,,27.96,1.0 +1,2016-01-29 08:45:47,2016-01-29 08:55:35,1,1.8,,,-73.8768081665039,40.74832534790039,-73.8641357421875,40.73148727416992,1,N,1,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-11 20:35:40,2016-01-11 20:49:54,1,3.67,,,-73.92139434814453,40.76661682128906,-73.87653350830078,40.74851608276367,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-04 16:45:10,2016-01-04 16:57:10,1,2.11,,,-73.9654769897461,40.806068420410156,-73.93891906738281,40.80470657348633,1,N,1,10.0,1.0,0.5,0.3,1.18,0.0,,12.98,1.0 +2,2016-01-15 16:41:48,2016-01-15 17:10:04,1,4.76,,,-73.93868255615234,40.749752044677734,-73.87049102783203,40.755226135253906,1,N,2,20.0,1.0,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-13 16:09:43,2016-01-13 17:19:31,1,15.13,,,-73.87589263916016,40.770870208740234,-73.9569091796875,40.652183532714844,1,N,1,52.0,1.0,0.5,0.3,10.76,0.0,,64.56,1.0 +1,2016-01-16 00:13:15,2016-01-16 00:21:12,1,2.1,,,-73.95694732666016,40.71652603149414,-73.98619079589844,40.71794128417969,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,,10.8,1.0 +2,2016-01-19 20:33:03,2016-01-19 20:48:52,1,5.13,,,-73.9559555053711,40.719390869140625,-73.96781921386719,40.76809310913086,1,N,1,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +1,2016-01-01 04:44:14,2016-01-01 04:48:43,1,0.6,,,0.0,0.0,-73.9540023803711,40.8045768737793,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-20 01:15:47,2016-01-20 01:19:33,1,1.1,,,-73.95486450195312,40.72069549560547,-73.9556884765625,40.7337646484375,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 20:52:28,2016-01-22 20:58:33,1,1.39,,,-73.92171478271484,40.767032623291016,-73.9345703125,40.776580810546875,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-01 00:19:39,2016-01-01 00:39:18,1,3.56,,,-73.95267486572266,40.723175048828125,-73.92391967773438,40.76137924194336,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +1,2016-01-15 18:46:54,2016-01-15 18:54:46,1,1.1,,,-73.89712524414062,40.821109771728516,-73.9157485961914,40.82563018798828,5,N,2,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +2,2016-01-10 22:21:56,2016-01-10 22:29:20,1,1.87,,,-73.99288177490234,40.68283462524414,-73.98405456542969,40.664024353027344,1,N,1,8.0,0.5,0.5,0.3,2.32,0.0,,11.62,1.0 +1,2016-01-29 18:11:05,2016-01-29 18:34:50,3,4.3,,,-73.9607162475586,40.809898376464844,-73.95037078857422,40.77143859863281,1,N,2,18.0,1.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-29 01:42:43,2016-01-29 01:44:56,1,0.68,,,-73.78734588623047,40.72926330566406,-73.78706359863281,40.735347747802734,1,N,1,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-08 18:46:39,2016-01-08 18:48:50,1,0.19,,,-73.99357604980469,40.687225341796875,-73.99549102783203,40.685787200927734,1,N,1,3.5,1.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-04 06:02:16,2016-01-04 06:08:37,1,3.28,,,-73.890869140625,40.746925354003906,-73.87236785888672,40.77452087402344,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-08 20:17:57,2016-01-08 20:29:26,2,4.0,,,-73.95020294189453,40.72795486450195,-73.99188995361328,40.71486282348633,1,N,1,14.0,0.5,0.5,0.3,3.06,0.0,,18.36,1.0 +2,2016-01-15 01:24:03,2016-01-15 01:31:04,1,1.36,,,-73.94517517089844,40.80854415893555,-73.94425964355469,40.81437683105469,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +1,2016-01-05 23:59:59,2016-01-06 00:32:25,1,11.2,,,-73.87727355957031,40.748409271240234,-73.92274475097656,40.66817092895508,1,N,1,34.5,0.5,0.5,0.3,3.0,0.0,,38.8,1.0 +2,2016-01-08 18:55:38,2016-01-08 19:02:42,1,0.96,,,-73.95661163330078,40.7462158203125,-73.94393157958984,40.74494552612305,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 21:46:19,2016-01-09 21:57:07,2,2.07,,,-73.95396423339844,40.78730010986328,-73.97279357910156,40.76462936401367,1,N,1,10.0,0.5,0.5,0.3,2.1,0.0,,13.4,1.0 +2,2016-01-03 17:44:32,2016-01-03 17:59:23,1,3.66,,,-73.98623657226562,40.669193267822266,-74.00047302246094,40.63655471801758,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-25 22:40:26,2016-01-25 22:55:57,1,3.1,,,-73.98662567138672,40.70397186279297,-73.9554443359375,40.68939208984375,1,N,1,12.5,0.5,0.5,0.3,3.45,0.0,,17.25,1.0 +2,2016-01-27 20:32:53,2016-01-27 20:40:44,5,1.41,,,-73.87733459472656,40.737178802490234,-73.85848999023438,40.74399948120117,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-01 05:54:56,2016-01-01 06:03:03,5,1.63,,,-73.86114501953125,40.75791931152344,-73.87574005126953,40.74569320678711,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-17 21:17:06,2016-01-17 21:36:09,1,10.11,,,-73.92362976074219,40.82536315917969,-73.99140930175781,40.766326904296875,1,N,1,29.0,0.5,0.5,0.3,0.0,0.0,,30.3,1.0 +2,2016-01-30 00:49:42,2016-01-30 01:05:36,1,3.0,,,-73.91403198242188,40.70009231567383,-73.96117401123047,40.688079833984375,1,N,1,13.0,0.5,0.5,0.3,4.0,0.0,,18.3,1.0 +1,2016-01-30 21:31:57,2016-01-30 21:44:53,4,2.1,,,-73.86865997314453,40.73416519165039,-73.87870788574219,40.74984359741211,1,N,1,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-09 11:41:38,2016-01-09 11:54:37,1,6.68,,,-73.95670318603516,40.7473258972168,-73.88689422607422,40.76847457885742,1,N,1,20.0,0.0,0.5,0.3,4.16,0.0,,24.96,1.0 +2,2016-01-02 00:49:28,2016-01-02 00:59:04,1,2.08,,,-73.95157623291016,40.713951110839844,-73.9657974243164,40.69296646118164,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-27 07:12:29,2016-01-27 07:29:07,1,2.73,,,-73.9405746459961,40.814212799072266,-73.90579986572266,40.831241607666016,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-30 23:24:23,2016-01-30 23:31:22,1,1.3,,,-73.92687225341797,40.865596771240234,-73.9054946899414,40.87333297729492,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-21 23:09:02,2016-01-21 23:20:36,1,2.15,,,-73.99539184570312,40.68813705444336,-73.962158203125,40.67832565307617,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-11 11:44:33,2016-01-11 11:49:40,1,0.78,,,-73.95454406738281,40.78730392456055,-73.95951843261719,40.77992630004883,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-13 22:45:32,2016-01-13 22:50:50,1,0.99,,,-73.92169952392578,40.76670455932617,-73.93400573730469,40.770225524902344,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +1,2016-01-11 15:39:30,2016-01-11 15:51:33,1,2.0,,,-73.93843078613281,40.80524444580078,-73.96683502197266,40.80345153808594,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,,12.95,1.0 +2,2016-01-14 15:36:02,2016-01-14 15:58:18,1,3.9,,,-73.88508605957031,40.74967575073242,-73.82869720458984,40.760623931884766,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-08 00:18:32,2016-01-08 00:23:30,5,1.06,,,-73.9076919555664,40.77404022216797,-73.90898895263672,40.76456069946289,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,,7.8,1.0 +2,2016-01-06 10:07:59,2016-01-06 10:19:37,1,2.47,,,-74.007080078125,40.68228530883789,-73.9837875366211,40.70233154296875,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-17 04:44:28,2016-01-17 04:50:02,1,1.48,,,-73.91890716552734,40.759056091308594,-73.91918182373047,40.77284622192383,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-28 22:06:08,2016-01-28 22:13:46,1,2.62,,,-73.94103240966797,40.83930206298828,-73.91459655761719,40.8412971496582,1,N,1,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-12 09:48:35,2016-01-12 10:06:02,7,3.39,,,-73.83357238769531,40.827964782714844,-73.88492584228516,40.83669662475586,5,N,2,7.0,0.0,0.0,0,0.0,0.0,,7.0,2.0 +2,2016-01-30 14:13:08,2016-01-30 14:29:18,1,1.82,,,-73.92346954345703,40.76419448852539,-73.90292358398438,40.746761322021484,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-26 19:06:20,2016-01-26 19:20:01,1,2.4,,,-73.96083068847656,40.806861877441406,-73.95288848876953,40.783138275146484,1,N,1,11.5,1.0,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-11 15:47:24,2016-01-11 16:04:37,1,2.04,,,-73.96337127685547,40.710323333740234,-73.94902038574219,40.68866729736328,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-10 16:03:37,2016-01-10 16:19:31,1,3.9,,,-73.98725891113281,40.69401550292969,-74.00251007080078,40.738624572753906,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-02 21:05:05,2016-01-02 21:12:02,1,3.39,,,-73.82984161376953,40.71367263793945,-73.80580139160156,40.67482376098633,1,N,1,11.5,0.5,0.5,0.3,2.0,0.0,,14.8,1.0 +2,2016-01-13 19:03:53,2016-01-13 19:10:13,3,0.93,,,-73.92726135253906,40.703941345214844,-73.91505432128906,40.699378967285156,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-29 19:17:16,2016-01-29 19:35:36,6,2.19,,,-73.95996856689453,40.71546173095703,-73.98696899414062,40.72080993652344,1,N,1,13.5,1.0,0.5,0.3,2.0,0.0,,17.3,1.0 +2,2016-01-02 17:52:24,2016-01-02 17:58:03,1,0.77,,,-73.94692993164062,40.632171630859375,-73.94751739501953,40.640098571777344,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-17 18:57:52,2016-01-17 19:08:03,1,1.89,,,-73.98053741455078,40.67631530761719,-73.9496078491211,40.67517852783203,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-30 18:36:38,2016-01-30 18:58:50,1,3.7,,,-73.83070373535156,40.75932312011719,-73.81581115722656,40.71418380737305,1,N,1,17.0,0.0,0.5,0.3,3.56,0.0,,21.36,1.0 +1,2016-01-03 14:58:57,2016-01-03 15:07:23,1,2.8,,,-73.943603515625,40.836204528808594,-73.96310424804688,40.8057861328125,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-21 10:35:05,2016-01-21 10:42:25,1,1.12,,,-73.94773864746094,40.79594039916992,-73.93240356445312,40.79558181762695,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-28 10:34:44,2016-01-28 10:43:03,1,1.2,,,-73.87870025634766,40.75632095336914,-73.8900375366211,40.747047424316406,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-14 13:08:35,2016-01-14 13:14:52,5,1.2,,,-73.95835876464844,40.734683990478516,-73.9488754272461,40.7264289855957,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 21:45:34,2016-01-22 22:06:24,1,3.46,,,-73.99243927001953,40.6894645690918,-73.9532699584961,40.656028747558594,1,N,1,16.0,0.5,0.5,0.3,4.32,0.0,,21.62,1.0 +2,2016-01-08 10:04:19,2016-01-08 10:08:36,1,0.5,,,-73.96278381347656,40.712158203125,-73.95692443847656,40.71734619140625,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-19 11:03:41,2016-01-19 11:11:45,1,1.01,,,-73.96490478515625,40.8067512512207,-73.95425415039062,40.80588150024414,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-09 18:39:13,2016-01-09 18:46:49,1,1.3,,,-73.97649383544922,40.67488479614258,-73.98885345458984,40.66320037841797,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-15 00:32:51,2016-01-15 00:39:29,1,1.31,,,-73.95481872558594,40.72060012817383,-73.95932006835938,40.73268508911133,1,N,1,6.5,0.5,0.5,0.3,0.05,0.0,,7.85,1.0 +2,2016-01-10 01:17:24,2016-01-10 01:19:47,1,0.79,,,-73.83024597167969,40.714111328125,-73.82046508789062,40.719181060791016,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-07 01:42:49,2016-01-07 01:47:06,1,1.11,,,-73.93323516845703,40.70301818847656,-73.95333862304688,40.699066162109375,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-13 18:46:48,2016-01-13 18:50:06,2,0.82,,,-73.92561340332031,40.714088439941406,-73.94053649902344,40.71205139160156,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-25 10:51:05,2016-01-25 10:56:00,1,0.4,,,-73.9444580078125,40.79475402832031,-73.94912719726562,40.79423522949219,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-22 20:02:37,2016-01-22 20:12:52,1,1.6,,,-73.80779266357422,40.70045471191406,-73.78472900390625,40.706443786621094,1,N,1,8.5,0.5,0.5,0.3,1.95,0.0,,11.75,1.0 +2,2016-01-14 19:55:11,2016-01-14 19:57:32,1,0.44,,,-73.86228942871094,40.73037338256836,-73.86944580078125,40.73342514038086,1,N,1,4.0,1.0,0.5,0.3,1.74,0.0,,7.54,1.0 +2,2016-01-17 17:10:56,2016-01-17 17:31:00,1,4.22,,,-73.95686340332031,40.748111724853516,-73.96100616455078,40.77752685546875,1,N,1,16.5,0.0,0.5,0.3,4.32,0.0,,21.62,1.0 +2,2016-01-21 15:02:42,2016-01-21 15:22:26,1,1.94,,,-73.96649169921875,40.80427169799805,-73.9751205444336,40.78047180175781,1,N,1,13.5,0.0,0.5,0.3,2.0,0.0,,16.3,1.0 +2,2016-01-03 21:46:46,2016-01-03 21:56:30,1,2.18,,,-73.83043670654297,40.75950241088867,-73.84314727783203,40.783050537109375,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,,12.96,1.0 +1,2016-01-26 06:23:05,2016-01-26 06:47:30,1,4.3,,,-73.9786605834961,40.670257568359375,-73.98585510253906,40.721343994140625,1,N,1,19.0,0.0,0.5,0.3,3.0,0.0,,22.8,1.0 +1,2016-01-12 10:05:32,2016-01-12 10:30:57,1,2.7,,,-73.9390869140625,40.80513000488281,-73.96531677246094,40.77176284790039,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-22 14:30:35,2016-01-22 14:34:46,1,0.47,,,-73.95768737792969,40.717777252197266,-73.96218872070312,40.71968078613281,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-08 18:07:08,2016-01-08 18:15:55,1,1.56,,,-73.92107391357422,40.867523193359375,-73.93592071533203,40.849815368652344,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-29 22:52:26,2016-01-29 22:58:10,6,0.99,,,-73.89118957519531,40.747005462646484,-73.87532806396484,40.75065612792969,1,N,1,6.0,0.5,0.5,0.3,0.5,0.0,,7.8,1.0 +2,2016-01-26 21:06:11,2016-01-26 21:20:50,5,2.34,,,-73.88472747802734,40.74473190307617,-73.85603332519531,40.747581481933594,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-30 13:36:00,2016-01-30 13:39:28,2,0.59,,,-73.969482421875,40.689537048339844,-73.98037719726562,40.689979553222656,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-13 01:44:38,2016-01-13 01:47:49,1,0.37,,,-73.9505615234375,40.67069625854492,-73.95745086669922,40.6715087890625,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-28 21:18:25,2016-01-28 21:22:38,1,1.0,,,-73.86835479736328,40.74913024902344,-73.8583984375,40.755672454833984,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-16 00:45:26,2016-01-16 01:12:42,1,4.29,,,-73.96292114257812,40.71721267700195,-73.9353256225586,40.68434143066406,1,N,2,18.0,0.5,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-04 06:53:15,2016-01-04 07:06:53,2,4.08,,,-73.99642181396484,40.68602752685547,-73.98998260498047,40.73227310180664,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-09 20:21:06,2016-01-09 20:38:29,1,3.3,,,-73.95796203613281,40.71759033203125,-73.98389434814453,40.70146179199219,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-21 00:16:58,2016-01-21 00:29:11,1,6.3,,,-73.95767211914062,40.73032760620117,-74.00320434570312,40.682926177978516,1,N,1,19.0,0.5,0.5,0.3,2.0,0.0,,22.3,1.0 +2,2016-01-09 11:18:27,2016-01-09 11:30:12,2,2.09,,,-73.95471954345703,40.7893180847168,-73.9664306640625,40.764671325683594,1,N,1,10.0,0.0,0.5,0.3,1.62,0.0,,12.42,1.0 +2,2016-01-09 02:13:51,2016-01-09 02:43:52,1,7.32,,,-73.9570083618164,40.72107696533203,-73.98297119140625,40.763221740722656,1,N,1,26.0,0.5,0.5,0.3,2.5,0.0,,29.8,1.0 +2,2016-01-17 16:17:22,2016-01-17 16:26:48,1,1.45,,,-73.99803161621094,40.68305587768555,-73.97686004638672,40.681697845458984,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-06 08:23:38,2016-01-06 08:30:53,1,1.1,,,-73.93917083740234,40.80510330200195,-73.9407958984375,40.792823791503906,1,N,1,6.5,0.0,0.5,0.3,1.8,0.0,,9.1,1.0 +2,2016-01-27 18:20:51,2016-01-27 18:32:32,1,1.81,,,-73.86405944824219,40.732391357421875,-73.83920288085938,40.71834182739258,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-03 02:30:12,2016-01-03 02:44:16,1,6.38,,,-73.9516830444336,40.71481704711914,-73.91898345947266,40.769378662109375,1,N,1,20.0,0.5,0.5,0.3,2.0,0.0,,23.3,1.0 +2,2016-01-22 18:17:52,2016-01-22 18:32:14,1,3.32,,,-73.87760925292969,40.73647689819336,-73.82555389404297,40.74372863769531,1,N,2,13.0,1.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-22 15:10:34,2016-01-22 15:19:44,1,1.54,,,-73.98883056640625,40.675437927246094,-73.9922103881836,40.6590690612793,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-26 23:07:09,2016-01-26 23:10:42,5,0.91,,,-73.9253921508789,40.761775970458984,-73.93894958496094,40.76509094238281,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-13 21:26:52,2016-01-13 22:10:31,1,15.5,,,0.0,0.0,0.0,0.0,1,N,1,46.5,0.5,0.5,0.3,0.0,0.0,,47.8,1.0 +2,2016-01-09 16:30:36,2016-01-09 16:47:05,1,2.88,,,-73.91796875,40.758506774902344,-73.87651062011719,40.74849319458008,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-16 18:38:42,2016-01-16 18:58:10,1,6.0,,,-73.90750122070312,40.853919982910156,-73.8329849243164,40.83559036254883,1,N,1,20.0,0.0,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-16 23:00:39,2016-01-16 23:16:34,1,4.39,,,-73.94098663330078,40.818363189697266,-73.97274780273438,40.76470184326172,1,N,1,15.5,0.5,0.5,0.3,2.0,0.0,,18.8,1.0 +2,2016-01-01 20:12:04,2016-01-01 20:18:56,1,0.89,,,-73.96151733398438,40.71131896972656,-73.95655059814453,40.71692657470703,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,,8.3,1.0 +1,2016-01-22 13:36:35,2016-01-22 13:42:24,1,0.8,,,-73.97538757324219,40.67470932006836,-73.9675064086914,40.67434310913086,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,,7.3,1.0 +1,2016-01-15 18:08:54,2016-01-15 18:23:01,1,1.7,,,-73.94169616699219,40.79873275756836,-73.96632385253906,40.80487060546875,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-18 14:36:52,2016-01-18 14:50:10,1,2.67,,,-73.8709716796875,40.7340202331543,-73.92045593261719,40.74161911010742,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-01 17:30:14,2016-01-01 18:20:24,1,13.04,,,-73.89537811279297,40.6700325012207,-73.98460388183594,40.5766487121582,1,N,2,47.0,0.0,0.5,0.3,0.0,0.0,,47.8,1.0 +2,2016-01-21 11:09:10,2016-01-21 11:18:32,1,1.26,,,-73.9479751586914,40.79561996459961,-73.96572875976562,40.80531692504883,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,,11.0,1.0 +1,2016-01-18 00:50:45,2016-01-18 01:11:43,1,7.6,,,-73.9409408569336,40.814022064208984,-74.00395965576172,40.74300765991211,1,N,3,24.5,0.5,0.5,0.3,0.0,0.0,,25.8,1.0 +2,2016-01-09 07:19:19,2016-01-09 07:44:04,1,5.87,,,-73.87167358398438,40.7531852722168,-73.96913146972656,40.75609588623047,1,N,2,22.0,0.0,0.5,0.3,0.0,0.0,,22.8,1.0 +1,2016-01-02 03:33:43,2016-01-02 04:23:36,1,9.8,,,-73.97531127929688,40.68666458129883,-73.99764251708984,40.737762451171875,1,N,1,41.0,0.5,0.5,0.3,30.0,0.0,,72.3,1.0 +2,2016-01-08 09:20:28,2016-01-08 09:37:16,1,7.78,,,-73.84429931640625,40.72138214111328,-73.77693939208984,40.64631652832031,1,N,1,24.0,0.0,0.5,0.3,0.0,0.0,,24.8,1.0 +2,2016-01-10 10:53:22,2016-01-10 10:56:22,1,0.62,,,-73.91996765136719,40.75776290893555,-73.91685485839844,40.7647819519043,1,N,1,4.5,0.0,0.5,0.3,1.32,0.0,,6.62,1.0 +2,2016-01-29 22:16:40,2016-01-29 22:41:54,1,4.4,,,-73.96839904785156,40.67898178100586,-73.91519927978516,40.70480728149414,1,N,2,18.5,0.5,0.5,0.3,0.0,0.0,,19.8,1.0 +1,2016-01-14 07:49:08,2016-01-14 08:06:30,1,4.8,,,-73.98465728759766,40.70240783691406,-73.959228515625,40.72917938232422,1,N,1,17.5,0.0,0.5,0.3,3.65,0.0,,21.95,1.0 +2,2016-01-19 02:42:19,2016-01-19 02:56:13,2,2.8,,,-73.96553039550781,40.713523864746094,-73.9268569946289,40.69257354736328,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-02 16:52:56,2016-01-02 17:07:36,1,1.78,,,-73.95896911621094,40.68185043334961,-73.98738861083984,40.69124984741211,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-14 12:40:32,2016-01-14 12:42:44,1,0.64,,,-73.97007751464844,40.68953323364258,-73.98092651367188,40.68864440917969,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-10 04:30:56,2016-01-10 04:32:45,1,0.41,,,-73.9516830444336,40.71493148803711,-73.94895935058594,40.711238861083984,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-16 00:44:55,2016-01-16 00:47:28,1,0.64,,,-73.98866271972656,40.67038345336914,-73.98225402832031,40.678470611572266,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-03 19:01:37,2016-01-03 19:09:39,1,1.13,,,-73.87434387207031,40.73508071899414,-73.88441467285156,40.74055862426758,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-21 01:22:29,2016-01-21 01:29:11,1,2.38,,,-73.83189392089844,40.71525192260742,-73.8073501586914,40.71416473388672,1,N,1,9.0,0.5,0.5,0.3,2.0,0.0,,12.3,1.0 +1,2016-01-01 07:59:45,2016-01-01 08:08:00,1,2.1,,,-73.86953735351562,40.832706451416016,-73.89259338378906,40.824317932128906,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-13 17:54:44,2016-01-13 18:10:15,1,2.7,,,-73.99207305908203,40.69034194946289,-73.97923278808594,40.66325759887695,1,N,1,12.0,1.0,0.5,0.3,2.75,0.0,,16.55,1.0 +2,2016-01-15 18:30:06,2016-01-15 18:35:43,1,1.25,,,-73.951904296875,40.78974533081055,-73.9549789428711,40.77940368652344,1,N,1,6.0,1.0,0.5,0.3,1.0,0.0,,8.8,1.0 +2,2016-01-20 14:37:08,2016-01-20 14:39:34,1,0.54,,,-73.91352844238281,40.76553726196289,-73.9075927734375,40.76482009887695,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-02 18:35:49,2016-01-02 18:39:18,1,1.21,,,-73.93800354003906,40.79678726196289,-73.94673919677734,40.78078079223633,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-11 13:35:26,2016-01-11 13:50:35,1,2.6,,,-73.98159790039062,40.6890983581543,-73.9358139038086,40.688716888427734,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-20 13:01:22,2016-01-20 13:27:56,2,2.56,,,-73.92252349853516,40.82696533203125,-73.92315673828125,40.85139846801758,1,N,1,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-22 21:34:38,2016-01-22 21:50:22,1,6.16,,,-73.94013977050781,40.79777908325195,-73.88066101074219,40.750492095947266,1,N,2,19.5,0.5,0.5,0.3,0.0,5.54,,26.34,1.0 +2,2016-01-09 22:45:37,2016-01-09 22:56:42,1,2.61,,,-73.93585205078125,40.6773567199707,-73.95824432373047,40.69438171386719,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-12 20:46:42,2016-01-12 20:53:36,1,0.71,,,-73.97754669189453,40.68434143066406,-73.9847412109375,40.683048248291016,1,N,1,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 03:32:01,2016-01-01 03:57:11,1,4.35,,,-73.95167541503906,40.713348388671875,-73.93558502197266,40.66724395751953,1,N,1,19.0,0.5,0.5,0.3,4.06,0.0,,24.36,1.0 +2,2016-01-15 01:45:18,2016-01-15 01:45:41,1,0.0,,,-73.8147201538086,40.73030471801758,-73.81472778320312,40.73030090332031,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +1,2016-01-25 09:53:42,2016-01-25 10:04:05,1,1.8,,,-73.98995208740234,40.70265579223633,-73.97279357910156,40.688087463378906,1,N,1,8.5,0.0,0.5,0.3,2.7,0.0,,12.0,1.0 +2,2016-01-06 11:09:08,2016-01-06 11:11:45,1,0.63,,,-73.9173812866211,40.76102066040039,-73.92477416992188,40.7618408203125,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-22 15:28:43,2016-01-22 15:42:07,2,2.21,,,-73.8869857788086,40.730342864990234,-73.85140991210938,40.73088836669922,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-13 19:34:42,2016-01-13 19:50:35,1,7.41,,,-73.84605407714844,40.85647964477539,-73.9316635131836,40.828697204589844,1,N,1,22.0,1.0,0.5,0.3,4.76,0.0,,28.56,1.0 +2,2016-01-26 18:54:23,2016-01-26 19:08:07,6,2.0,,,-73.98746490478516,40.66780090332031,-73.97260284423828,40.68745040893555,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,,14.76,1.0 +1,2016-01-18 10:56:28,2016-01-18 11:00:06,1,0.5,,,-73.94142150878906,40.79950714111328,-73.94084930419922,40.805389404296875,1,N,1,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-02 09:08:48,2016-01-02 09:09:12,1,0.16,,,-73.94017028808594,40.81516647338867,-73.94110107421875,40.81172561645508,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-30 02:52:15,2016-01-30 02:58:00,1,1.67,,,-73.83453369140625,40.83771514892578,-73.86277770996094,40.84139633178711,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-13 05:41:31,2016-01-13 05:53:57,1,5.3,,,-73.92158508300781,40.766807556152344,-73.8546371459961,40.752052307128906,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +1,2016-01-11 17:59:39,2016-01-11 18:14:54,1,3.3,,,-73.93017578125,40.83152389526367,-73.8956298828125,40.85609817504883,1,N,2,13.0,1.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-10 00:56:30,2016-01-10 01:04:28,5,2.67,,,-73.92460632324219,40.76165771484375,-73.8901596069336,40.770835876464844,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-14 08:38:26,2016-01-14 08:45:33,1,0.54,,,-73.99766540527344,40.68361282348633,-74.0018081665039,40.68285369873047,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-24 15:26:16,2016-01-24 15:27:28,1,0.07,,,-73.92381286621094,40.68932342529297,-73.92698669433594,40.68746566772461,1,N,1,2.5,0.0,0.5,0.3,10.0,0.0,,13.3,1.0 +2,2016-01-19 17:35:53,2016-01-19 17:49:03,1,1.82,,,-73.9521484375,40.791175842285156,-73.94983673095703,40.77362823486328,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-02 17:29:25,2016-01-02 17:37:21,1,1.1,,,-73.95590209960938,40.80366516113281,-73.94232177734375,40.79561996459961,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-22 17:28:24,2016-01-22 17:33:32,5,0.82,,,-73.91014862060547,40.752296447753906,-73.90335083007812,40.745853424072266,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-24 18:51:34,2016-01-24 19:17:46,1,2.21,,,-73.85633850097656,40.74592971801758,-73.87686920166016,40.75056838989258,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-21 19:14:28,2016-01-21 19:22:25,1,2.19,,,-73.78495788574219,40.70790100097656,-73.74442291259766,40.71622848510742,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-17 09:49:13,2016-01-17 10:01:39,5,3.35,,,-73.95225524902344,40.78982162475586,-73.96135711669922,40.756256103515625,1,N,1,13.0,0.0,0.5,0.3,4.0,0.0,,17.8,1.0 +2,2016-01-01 01:28:22,2016-01-01 02:08:32,1,11.0,,,-73.9201431274414,40.76833724975586,-73.94032287597656,40.832908630371094,1,N,1,37.5,0.5,0.5,0.3,0.0,0.0,,38.8,1.0 +1,2016-01-17 00:42:35,2016-01-17 00:44:21,1,0.3,,,-73.91879272460938,40.758907318115234,-73.92359161376953,40.76118469238281,1,N,1,3.5,0.5,0.5,0.3,1.0,0.0,,5.8,1.0 +1,2016-01-07 19:32:08,2016-01-07 19:33:39,1,0.2,,,-73.94857788085938,40.81337356567383,-73.95098876953125,40.810325622558594,1,N,2,3.0,1.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-06 16:36:57,2016-01-06 16:41:27,1,0.7,,,-73.90348815917969,40.745723724365234,-73.89703369140625,40.75135803222656,1,N,2,5.0,1.0,0.5,0,0.0,0.0,,6.5,1.0 +2,2016-01-01 01:15:54,2016-01-01 01:39:41,1,6.22,,,-73.99166870117188,40.688785552978516,-73.98423767089844,40.73625946044922,1,N,1,23.0,0.5,0.5,0.3,4.86,0.0,,29.16,1.0 +2,2016-01-24 12:10:32,2016-01-24 12:37:04,1,0.49,,,-73.9663314819336,40.58567810058594,-73.96926879882812,40.58527374267578,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-25 19:00:26,2016-01-25 19:21:41,1,3.34,,,-73.8287353515625,40.756385803222656,-73.82989501953125,40.75967025756836,1,N,2,15.5,1.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-12 00:28:36,2016-01-12 00:31:05,3,0.75,,,-73.9435806274414,40.709598541259766,-73.93671417236328,40.714515686035156,1,N,4,-4.5,-0.5,-0.5,-0.3,0.0,0.0,,-5.8,1.0 +2,2016-01-17 15:17:28,2016-01-17 15:30:03,1,2.48,,,-73.97602844238281,40.68379592895508,-73.95685577392578,40.65985107421875,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-29 12:52:45,2016-01-29 13:01:11,1,1.04,,,-73.94718170166016,40.79939651489258,-73.94499206542969,40.79100799560547,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-20 08:28:19,2016-01-20 08:46:59,5,5.1,,,-73.95219421386719,40.82429122924805,-73.99076080322266,40.765838623046875,1,N,1,16.5,0.0,0.5,0.3,1.0,0.0,,18.3,1.0 +2,2016-01-12 10:23:56,2016-01-12 10:34:26,1,2.23,,,-73.90231323242188,40.85420608520508,-73.93489837646484,40.849822998046875,1,N,1,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-09 12:09:41,2016-01-10 11:57:26,3,1.04,,,-73.93777465820312,40.7926025390625,-73.94844055175781,40.797794342041016,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-11 19:00:41,2016-01-11 19:07:40,1,1.3,,,-73.95482635498047,40.789100646972656,-73.96685791015625,40.77268981933594,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-27 12:17:06,2016-01-27 12:39:17,1,4.8,,,-73.9867935180664,40.7023811340332,-73.9936752319336,40.724609375,1,N,1,19.0,0.0,0.5,0.3,4.0,0.0,,23.8,1.0 +2,2016-01-28 23:46:24,2016-01-28 23:51:15,1,0.81,,,-73.94023132324219,40.84054183959961,-73.9365234375,40.84947204589844,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-19 01:27:16,2016-01-19 01:41:00,6,2.95,,,-73.9677963256836,40.683712005615234,-73.92942810058594,40.69581604003906,1,N,1,13.0,0.5,0.5,0.3,3.58,0.0,,17.88,1.0 +2,2016-01-13 18:56:12,2016-01-13 19:12:48,5,3.57,,,-73.96365356445312,40.80278015136719,-73.91798400878906,40.82327651977539,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-18 08:56:51,2016-01-18 09:02:50,2,0.99,,,-73.91484069824219,40.764060974121094,-73.90412139892578,40.774959564208984,1,N,1,6.0,0.0,0.5,0.3,0.22,0.0,,7.02,1.0 +2,2016-01-16 21:51:14,2016-01-16 21:52:59,1,0.44,,,-73.80751037597656,40.700103759765625,-73.8101806640625,40.69587326049805,1,N,1,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-01 01:24:08,2016-01-01 01:34:20,1,1.62,,,-73.94467163085938,40.81381607055664,-73.94046020507812,40.833431243896484,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-12 14:05:04,2016-01-12 14:11:32,1,0.94,,,-73.99774932861328,40.6832389831543,-73.99137878417969,40.696075439453125,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-11 16:47:07,2016-01-11 16:53:26,1,1.27,,,-73.94805145263672,40.80910110473633,-73.9493179321289,40.82257080078125,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-04 12:16:26,2016-01-04 12:25:50,1,2.86,,,-73.89006805419922,40.755401611328125,-73.87550354003906,40.77215576171875,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-26 17:39:26,2016-01-26 18:20:59,1,4.47,,,-73.95233917236328,40.78996658325195,-73.99078369140625,40.750938415527344,1,N,2,25.5,1.0,0.5,0.3,0.0,0.0,,27.3,1.0 +2,2016-01-12 19:43:36,2016-01-12 20:15:43,1,7.6,,,-73.98587799072266,40.68965148925781,-73.95378112792969,40.6121940612793,1,N,1,26.0,1.0,0.5,0.3,0.0,0.0,,27.8,1.0 +2,2016-01-13 08:02:06,2016-01-13 08:11:25,1,4.5,,,-73.86993408203125,40.733673095703125,-73.794677734375,40.7382926940918,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-01 01:16:02,2016-01-01 01:25:46,1,2.22,,,-73.93604278564453,40.795074462890625,-73.94638061523438,40.81645584106445,1,N,1,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-06 20:47:24,2016-01-07 20:36:12,1,2.82,,,-73.86841583251953,40.835906982421875,-73.88824462890625,40.81367111206055,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +2,2016-01-08 19:37:07,2016-01-08 19:46:53,1,1.85,,,-73.9866943359375,40.70234298706055,-73.97909545898438,40.68353271484375,1,N,1,9.0,1.0,0.5,0.3,2.0,0.0,,12.8,1.0 +2,2016-01-30 19:47:30,2016-01-30 19:57:15,1,1.95,,,-73.9034423828125,40.745365142822266,-73.91116333007812,40.767704010009766,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,,10.8,1.0 +2,2016-01-09 16:23:19,2016-01-09 16:30:42,1,0.78,,,-73.89302825927734,40.75078201293945,-73.89544677734375,40.74271774291992,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-26 23:20:19,2016-01-26 23:34:30,1,3.36,,,-73.97045135498047,40.6515007019043,-73.9739761352539,40.688873291015625,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-19 18:52:11,2016-01-19 19:06:49,6,0.0,,,-73.89302062988281,40.750614166259766,-73.92709350585938,40.75263977050781,1,N,1,9.5,1.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-20 11:21:12,2016-01-20 11:27:49,1,1.29,,,-73.919677734375,40.743499755859375,-73.94432830810547,40.74677276611328,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-17 18:24:40,2016-01-17 18:38:33,1,4.39,,,-73.90509796142578,40.879150390625,-73.94380187988281,40.835323333740234,1,N,1,15.0,0.0,0.5,0.3,3.0,0.0,,18.8,1.0 +2,2016-01-29 09:04:14,2016-01-29 09:08:59,1,0.78,,,-73.93759155273438,40.80411148071289,-73.94501495361328,40.794002532958984,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-16 14:28:48,2016-01-16 14:34:14,1,1.09,,,-73.92436981201172,40.76953125,-73.928466796875,40.75799560546875,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-05 15:45:27,2016-01-05 15:50:16,1,0.74,,,-73.98603820800781,40.669097900390625,-73.99471282958984,40.66352844238281,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-27 10:58:55,2016-01-27 11:06:44,1,1.5,,,-73.99452209472656,40.69034957885742,-74.0052719116211,40.679649353027344,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-23 03:26:05,2016-01-23 03:39:13,1,2.5,,,-73.92140197753906,40.76662063598633,-73.91283416748047,40.7443962097168,1,N,1,10.5,0.5,0.5,0.3,3.54,0.0,,15.34,1.0 +2,2016-01-29 17:34:00,2016-01-29 17:38:30,1,0.46,,,-73.84429931640625,40.72138595581055,-73.84841918945312,40.71619415283203,1,N,1,5.0,1.0,0.5,0.3,1.0,0.0,,7.8,1.0 +2,2016-01-16 02:54:54,2016-01-16 02:59:48,1,1.51,,,-73.84417724609375,40.721248626708984,-73.83106994628906,40.729652404785156,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-07 23:46:45,2016-01-07 23:51:53,1,0.7,,,-73.95040130615234,40.714111328125,-73.96247863769531,40.71498107910156,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,,8.15,1.0 +2,2016-01-08 17:34:39,2016-01-08 17:35:42,1,0.0,,,-73.75659942626953,40.67155456542969,-73.75659942626953,40.67155838012695,5,N,2,65.0,0.0,0.0,0,0.0,0.0,,65.0,2.0 +2,2016-01-29 15:48:02,2016-01-29 15:55:22,1,1.3,,,-73.92568969726562,40.761863708496094,-73.94273376464844,40.75985336303711,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-07 23:34:43,2016-01-07 23:42:12,1,1.6,,,-73.90966033935547,40.82637023925781,-73.89002227783203,40.82699966430664,5,N,2,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +2,2016-01-19 13:28:44,2016-01-19 13:58:02,1,5.16,,,-73.91665649414062,40.76474380493164,-73.98196411132812,40.753753662109375,1,N,2,22.5,0.0,0.5,0.3,0.0,0.0,,23.3,1.0 +2,2016-01-22 18:36:34,2016-01-22 18:47:03,1,0.53,,,-73.8691635131836,40.73385238647461,-73.86214447021484,40.7376594543457,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-15 15:33:06,2016-01-15 16:27:35,1,12.79,,,-73.95307159423828,40.680633544921875,-73.79045104980469,40.646697998046875,1,N,1,45.5,0.0,0.5,0.3,8.08,0.0,,54.38,1.0 +2,2016-01-21 00:02:43,2016-01-21 00:08:00,2,1.28,,,-73.9819107055664,40.68586349487305,-73.99497985839844,40.69572830200195,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-18 13:48:58,2016-01-18 13:52:31,1,0.8,,,-73.97937774658203,40.67819595336914,-73.97991180419922,40.66892623901367,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-02 10:03:51,2016-01-02 10:09:12,1,1.2,,,-73.95639038085938,40.717105865478516,-73.94271087646484,40.72574996948242,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 16:03:08,2016-01-22 16:33:03,1,5.76,,,-73.94471740722656,40.82391357421875,-73.88883972167969,40.872833251953125,1,N,2,24.5,1.0,0.5,0.3,0.0,0.0,,26.3,1.0 +1,2016-01-03 21:01:38,2016-01-03 21:30:21,1,14.0,,,-73.95210266113281,40.78977966308594,-73.98246765136719,40.6575813293457,1,N,1,39.0,0.5,0.5,0.3,10.05,0.0,,50.35,1.0 +2,2016-01-23 09:53:59,2016-01-23 10:03:36,1,1.79,,,-73.946533203125,40.7849006652832,-73.95157623291016,40.79938888549805,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-14 18:58:22,2016-01-14 19:04:34,5,1.13,,,-73.95408630371094,40.587310791015625,-73.94610595703125,40.59741973876953,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-11 09:59:59,2016-01-11 10:08:30,1,1.41,,,-73.94438934326172,40.81940841674805,-73.95068359375,40.802547454833984,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-27 08:06:35,2016-01-27 08:13:27,1,1.6,,,-73.88761138916016,40.76521682739258,-73.91590881347656,40.77027130126953,1,N,1,7.5,0.0,0.5,0.3,2.05,0.0,,10.35,1.0 +1,2016-01-15 17:36:14,2016-01-15 18:04:52,1,5.1,,,-73.93182373046875,40.765193939208984,-73.94551849365234,40.70713806152344,1,N,2,21.0,0.5,0.5,0.3,0.0,0.0,,22.3,1.0 +2,2016-01-16 12:02:28,2016-01-16 12:11:52,1,2.25,,,-73.97062683105469,40.692020416259766,-73.99605560302734,40.69078826904297,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-16 22:46:21,2016-01-16 23:07:57,1,3.77,,,-73.8848648071289,40.747493743896484,-73.8308334350586,40.765262603759766,1,N,1,17.5,0.5,0.5,0.3,3.76,0.0,,22.56,1.0 +1,2016-01-18 05:30:33,2016-01-18 06:04:21,1,6.7,,,-73.94981384277344,40.65266036987305,-73.92250061035156,40.708961486816406,1,N,2,24.0,0.5,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-17 23:45:18,2016-01-17 23:54:15,1,3.04,,,-73.8908462524414,40.746910095214844,-73.8705062866211,40.763031005859375,1,N,1,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-25 15:00:11,2016-01-26 14:59:39,1,4.4,,,-73.92807006835938,40.74431610107422,-73.85212707519531,40.72896194458008,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-03 03:00:48,2016-01-03 03:02:07,1,0.4,,,-73.96266174316406,40.68708419799805,-73.95504760742188,40.68796920776367,1,N,1,3.5,0.5,0.5,0.3,0.86,0.0,,5.66,1.0 +2,2016-01-26 22:49:02,2016-01-26 22:57:51,1,1.41,,,-73.99250793457031,40.68364334106445,-73.98796081542969,40.70161437988281,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +1,2016-01-01 09:42:48,2016-01-01 09:45:53,2,0.8,,,-73.94338989257812,40.81544876098633,-73.9356918334961,40.825897216796875,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-26 18:05:31,2016-01-26 18:28:32,1,2.81,,,-73.9610824584961,40.718971252441406,-73.93124389648438,40.70375061035156,1,N,1,15.0,1.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-12 08:56:48,2016-01-12 08:56:50,1,0.0,,,-73.91929626464844,40.816776275634766,-73.91932678222656,40.81684112548828,5,N,1,12.0,0.0,0.0,0,0.0,0.0,,12.0,2.0 +1,2016-01-07 15:08:21,2016-01-07 15:25:22,1,2.2,,,-73.96601867675781,40.80555725097656,-73.95458221435547,40.78413009643555,1,N,1,12.5,0.0,0.5,0.3,1.7,0.0,,15.0,1.0 +2,2016-01-22 01:40:43,2016-01-22 01:42:44,1,0.37,,,-73.86981964111328,40.74980163574219,-73.87353515625,40.7529411315918,1,N,1,3.5,0.5,0.5,0.3,1.44,0.0,,6.24,1.0 +1,2016-01-06 18:21:58,2016-01-06 18:38:32,1,3.4,,,-73.81558227539062,40.700340270996094,-73.80413055419922,40.731300354003906,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-12 07:59:01,2016-01-12 08:13:47,1,2.07,,,-73.95011138916016,40.785579681396484,-73.9749526977539,40.77766799926758,1,N,1,11.5,0.0,0.5,0.3,3.69,0.0,,15.99,1.0 +1,2016-01-18 21:42:15,2016-01-18 22:13:13,1,11.6,,,-73.9466781616211,40.63180160522461,-73.79463195800781,40.596832275390625,1,N,1,35.5,0.5,0.5,0.3,0.0,0.0,,36.8,1.0 +2,2016-01-28 21:50:35,2016-01-28 22:13:39,1,5.58,,,-73.95310974121094,40.81777572631836,-73.97084045410156,40.753421783447266,1,N,1,20.5,0.5,0.5,0.3,2.0,0.0,,23.8,1.0 +1,2016-01-19 12:48:04,2016-01-19 13:09:00,1,6.2,,,-73.96326446533203,40.80876159667969,-73.99258422851562,40.754722595214844,1,N,2,22.0,0.0,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-08 19:09:40,2016-01-08 19:14:41,1,0.77,,,-73.95065307617188,40.818603515625,-73.94100189208984,40.81932830810547,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-11 08:05:39,2016-01-11 08:26:58,1,3.3,,,-73.95216369628906,40.64788818359375,-73.97321319580078,40.685001373291016,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-23 00:43:37,2016-01-23 01:19:47,1,11.47,,,-73.94744110107422,40.79069137573242,-73.9610595703125,40.685760498046875,1,N,2,36.5,0.5,0.5,0.3,0.0,0.0,,37.8,1.0 +2,2016-01-30 01:53:35,2016-01-30 02:11:44,2,6.3,,,-73.95120239257812,40.723880767822266,-73.89506530761719,40.76717758178711,1,N,1,20.0,0.5,0.5,0.3,2.22,0.0,,23.52,1.0 +1,2016-01-16 21:58:30,2016-01-16 22:05:13,3,1.4,,,-73.95343780517578,40.8226203918457,-73.95805358886719,40.805503845214844,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-22 13:36:27,2016-01-22 13:45:25,1,3.2,,,-73.89067840576172,40.746910095214844,-73.87225341796875,40.77444076538086,1,N,1,12.0,0.0,0.5,0.3,2.55,0.0,,15.35,1.0 +2,2016-01-20 15:14:35,2016-01-20 15:18:08,1,0.51,,,-73.9848861694336,40.670833587646484,-73.97996520996094,40.677085876464844,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-11 22:27:10,2016-01-11 22:33:55,1,1.3,,,-73.95781707763672,40.670963287353516,-73.93637084960938,40.672855377197266,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-04 21:30:01,2016-01-04 21:35:10,1,0.91,,,-73.86965942382812,40.733551025390625,-73.85921478271484,40.73712158203125,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-01 20:23:29,2016-01-01 20:30:47,1,1.37,,,-73.96220397949219,40.80558776855469,-73.95246887207031,40.80318069458008,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-04 15:32:09,2016-01-04 15:48:17,1,2.64,,,-73.95501708984375,40.789276123046875,-73.98059844970703,40.75925827026367,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,,15.96,1.0 +1,2016-01-04 10:12:15,2016-01-04 10:16:24,2,0.6,,,-73.94134521484375,40.8392448425293,-73.94007873535156,40.83633041381836,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,,6.35,1.0 +2,2016-01-22 17:34:31,2016-01-22 17:48:00,1,0.71,,,-73.97425079345703,40.671661376953125,-73.96976470947266,40.67455291748047,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-18 16:42:55,2016-01-18 16:53:05,1,2.7,,,-73.96025848388672,40.80803680419922,-73.98140716552734,40.77387619018555,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-05 15:55:25,2016-01-05 16:17:35,1,2.85,,,-73.95703125,40.80263137817383,-73.95565032958984,40.773597717285156,1,N,1,16.0,0.0,0.5,0.3,2.0,0.0,,18.8,1.0 +2,2016-01-19 07:56:54,2016-01-19 07:59:58,2,0.94,,,-73.94697570800781,40.831172943115234,-73.95533752441406,40.81999206542969,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-27 20:31:39,2016-01-27 20:50:55,1,6.03,,,-73.94181823730469,40.84121322631836,-73.96012878417969,40.77964782714844,1,N,1,20.5,0.5,0.5,0.3,3.27,0.0,,25.07,1.0 +1,2016-01-08 23:55:27,2016-01-09 00:01:39,4,1.3,,,-73.96351623535156,40.676780700683594,-73.96881866455078,40.69233703613281,1,N,1,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-22 16:08:42,2016-01-22 16:22:36,1,4.24,,,-73.94283294677734,40.84122848510742,-73.93915557861328,40.805416107177734,1,N,1,15.0,1.0,0.5,0.3,4.2,0.0,,21.0,1.0 +2,2016-01-10 10:36:31,2016-01-10 10:44:07,1,1.27,,,-73.98755645751953,40.693050384521484,-73.99930572509766,40.68342971801758,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,,9.75,1.0 +1,2016-01-10 20:39:37,2016-01-10 20:46:31,1,2.0,,,-73.9393081665039,40.805145263671875,-73.96332550048828,40.79384994506836,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-10 23:31:20,2016-01-10 23:45:26,1,4.4,,,-73.95853424072266,40.715023040771484,-73.9996109008789,40.744171142578125,1,N,1,15.0,0.5,0.5,0.3,3.25,0.0,,19.55,1.0 +1,2016-01-19 18:43:32,2016-01-19 19:09:14,1,5.5,,,-73.90300750732422,40.745853424072266,-73.9876480102539,40.75204086303711,1,N,2,21.0,1.0,0.5,0.3,0.0,5.54,,28.34,1.0 +2,2016-01-01 02:23:41,2016-01-01 02:37:51,1,5.49,,,-73.89276123046875,40.72227478027344,-73.981201171875,40.7442741394043,1,N,1,18.0,0.5,0.5,0.3,2.48,5.54,,27.32,1.0 +2,2016-01-25 15:06:52,2016-01-25 15:32:46,1,3.19,,,-73.9531478881836,40.798553466796875,-73.98207092285156,40.769195556640625,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-25 10:47:19,2016-01-25 11:01:41,1,4.35,,,-73.95539855957031,40.72007369995117,-73.99051666259766,40.69390106201172,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-20 17:37:09,2016-01-20 17:55:49,1,2.95,,,-73.94598388671875,40.806922912597656,-73.96439361572266,40.77371597290039,1,N,2,14.0,1.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-22 23:41:14,2016-01-22 23:49:27,2,1.51,,,-73.86209869384766,40.7303581237793,-73.86930084228516,40.7490234375,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-08 23:01:08,2016-01-08 23:06:46,1,1.0,,,-73.95387268066406,40.729286193847656,-73.95619201660156,40.71729278564453,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,,8.75,1.0 +2,2016-01-30 19:03:12,2016-01-30 19:24:39,1,4.47,,,-73.99398040771484,40.68154525756836,-74.00589752197266,40.73589324951172,1,N,1,17.5,0.0,0.5,0.3,3.66,0.0,,21.96,1.0 +1,2016-01-01 03:23:52,2016-01-01 03:42:57,1,6.7,,,-73.93841552734375,40.8131103515625,-73.99613189697266,40.75655746459961,1,N,1,21.5,0.5,0.5,0.3,5.7,0.0,,28.5,1.0 +2,2016-01-30 22:02:43,2016-01-30 22:07:40,1,0.81,,,-73.95459747314453,40.8055534362793,-73.96424102783203,40.800750732421875,1,N,1,5.5,0.5,0.5,0.3,2.0,0.0,,8.8,1.0 +2,2016-01-12 22:43:22,2016-01-12 22:46:37,1,0.64,,,-73.98468017578125,40.67111587524414,-73.99142456054688,40.6633415222168,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-30 20:49:35,2016-01-30 21:05:36,1,3.36,,,-73.94535064697266,40.807708740234375,-73.95093536376953,40.771663665771484,1,N,1,14.0,0.5,0.5,0.3,3.82,0.0,,19.12,1.0 +2,2016-01-24 16:48:28,2016-01-24 17:04:58,1,2.49,,,-73.97354125976562,40.6965446472168,-73.9581298828125,40.670475006103516,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,,15.36,1.0 +2,2016-01-28 22:52:11,2016-01-28 22:57:51,2,0.79,,,-73.84404754638672,40.721153259277344,-73.8421859741211,40.71310043334961,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-15 19:00:44,2016-01-15 19:09:16,1,0.96,,,-73.8907699584961,40.746978759765625,-73.88134002685547,40.754188537597656,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-02 16:11:56,2016-01-02 16:20:51,1,0.95,,,-73.94298553466797,40.79922103881836,-73.95216369628906,40.808631896972656,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-08 23:20:30,2016-01-08 23:49:32,1,6.12,,,-73.91590118408203,40.76416778564453,-74.00274658203125,40.74973678588867,1,N,1,23.0,0.5,0.5,0.3,4.86,0.0,,29.16,1.0 +2,2016-01-22 09:44:29,2016-01-22 09:47:05,1,0.54,,,-73.94291687011719,40.811405181884766,-73.95088958740234,40.81169128417969,1,N,1,4.0,0.0,0.5,0.3,1.44,0.0,,6.24,1.0 +2,2016-01-30 19:50:29,2016-01-30 20:01:18,5,1.86,,,-73.9176025390625,40.74351501464844,-73.94593811035156,40.750816345214844,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-02 21:31:45,2016-01-02 21:39:06,3,0.97,,,-73.95794677734375,40.72183609008789,-73.96186828613281,40.71320343017578,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-01 03:42:48,2016-01-01 03:52:48,5,1.7,,,-73.91592407226562,40.85028076171875,-73.9371337890625,40.83958435058594,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-28 18:11:27,2016-01-28 18:17:41,1,1.3,,,-73.94763946533203,40.764198303222656,-73.93034362792969,40.76455307006836,1,N,1,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-28 12:24:05,2016-01-28 12:34:45,1,1.39,,,-73.8302230834961,40.71369171142578,-73.84542083740234,40.72123336791992,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +1,2016-01-16 19:04:14,2016-01-16 19:09:40,1,1.0,,,-73.89602661132812,40.74540328979492,-73.9043960571289,40.75010299682617,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,,7.55,1.0 +1,2016-01-28 16:13:24,2016-01-28 16:22:26,1,0.9,,,-73.94122314453125,40.68805694580078,-73.94042205810547,40.67995834350586,1,Y,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-26 07:50:08,2016-01-26 07:55:08,1,1.41,,,-73.82747650146484,40.85262680053711,-73.82813262939453,40.833404541015625,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-28 21:13:05,2016-01-28 21:21:27,2,1.75,,,-73.9033203125,40.745784759521484,-73.89541625976562,40.7289924621582,1,N,1,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-07 11:43:17,2016-01-07 11:55:52,1,4.0,,,-73.9622802734375,40.805240631103516,-73.9887924194336,40.76918411254883,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-21 17:55:51,2016-01-21 17:59:48,1,0.67,,,-73.98760986328125,40.69203186035156,-73.98137664794922,40.69584274291992,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-10 14:24:17,2016-01-10 14:35:19,1,2.97,,,-73.96671295166016,40.714786529541016,-73.98766326904297,40.70158767700195,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,,14.76,1.0 +1,2016-01-02 16:41:13,2016-01-02 16:55:51,1,2.8,,,-73.94869232177734,40.80916213989258,-73.95516967773438,40.777713775634766,1,N,1,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-30 10:00:46,2016-01-30 10:16:08,1,2.7,,,-73.9889144897461,40.670494079589844,-73.9600830078125,40.66476821899414,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-22 19:19:47,2016-01-22 19:36:19,1,4.1,,,-73.88761138916016,40.74714660644531,-73.91339874267578,40.784725189208984,1,N,2,15.0,1.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-20 15:13:23,2016-01-20 15:20:09,1,0.98,,,-73.88545227050781,40.745689392089844,-73.86991119384766,40.742374420166016,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-20 01:17:03,2016-01-20 01:24:22,6,1.67,,,-73.95494842529297,40.69477844238281,-73.92420959472656,40.69755554199219,1,N,1,7.5,0.5,0.5,0.3,2.0,0.0,,10.8,1.0 +2,2016-01-04 12:21:40,2016-01-04 12:38:16,2,2.26,,,-73.98739624023438,40.6913948059082,-73.95984649658203,40.67079162597656,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-17 15:44:53,2016-01-17 16:18:48,1,15.1,,,-73.94329833984375,40.840606689453125,-73.80513763427734,40.77423858642578,1,N,2,42.5,0.0,0.5,0.3,0.0,5.54,,48.84,1.0 +1,2016-01-30 17:31:56,2016-01-30 17:39:24,1,0.9,,,-73.95368194580078,40.728797912597656,-73.94650268554688,40.72273635864258,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-16 01:21:11,2016-01-16 01:29:05,1,1.39,,,-73.95793914794922,40.81526184082031,-73.94127655029297,40.80672836303711,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-25 17:20:38,2016-01-25 17:52:13,1,1.95,,,-73.87435913085938,40.73655319213867,-73.8671875,40.72687530517578,1,N,2,18.5,1.0,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-30 17:03:12,2016-01-30 17:23:58,2,4.51,,,-73.95480346679688,40.733795166015625,-74.00655364990234,40.7495002746582,1,N,2,18.0,0.0,0.5,0.3,0.0,5.54,,24.34,1.0 +1,2016-01-02 09:14:04,2016-01-02 09:45:31,1,8.7,,,-73.96031188964844,40.6743278503418,-73.97897338867188,40.76407241821289,1,N,1,29.0,0.0,0.5,0.3,4.5,0.0,,34.3,1.0 +2,2016-01-27 07:37:10,2016-01-27 07:49:28,3,2.29,,,-73.96984100341797,40.692962646484375,-73.93621063232422,40.6878662109375,1,N,1,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-13 14:30:16,2016-01-13 14:37:38,1,0.91,,,-73.94189453125,40.79841613769531,-73.9406509399414,40.78873825073242,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-13 05:30:46,2016-01-13 05:44:34,1,3.37,,,-73.97772979736328,40.688636779785156,-73.99260711669922,40.72826385498047,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-25 22:18:17,2016-01-25 22:27:54,5,2.04,,,-73.94963073730469,40.7855339050293,-73.96414184570312,40.80394744873047,1,N,1,9.0,0.5,0.5,0.3,2.58,0.0,,12.88,1.0 +2,2016-01-13 08:23:57,2016-01-13 08:30:15,1,0.89,,,-73.93791961669922,40.818241119384766,-73.94900512695312,40.81260681152344,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-09 11:54:25,2016-01-09 12:04:14,1,1.98,,,-73.95375061035156,40.79877471923828,-73.95477294921875,40.77772521972656,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-30 20:31:45,2016-01-30 20:52:42,3,5.82,,,-73.94036865234375,40.840606689453125,-73.95167541503906,40.78626251220703,1,N,1,21.5,0.5,0.5,0.3,5.0,0.0,,27.8,1.0 +2,2016-01-08 21:45:47,2016-01-08 21:51:57,1,1.04,,,-73.84429168701172,40.720821380615234,-73.85980987548828,40.72943878173828,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-21 19:12:27,2016-01-21 19:26:32,1,3.55,,,-73.82991027832031,40.71375274658203,-73.83132934570312,40.68069076538086,1,N,1,12.5,1.0,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-29 23:38:23,2016-01-29 23:47:41,1,2.07,,,-73.91268157958984,40.64056396484375,-73.94776916503906,40.63315200805664,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,,11.3,1.0 +1,2016-01-15 07:02:03,2016-01-15 07:02:20,1,0.2,,,-73.95134735107422,40.80025863647461,-73.95219421386719,40.80058670043945,1,N,1,2.5,0.0,0.5,0.3,6.0,0.0,,9.3,1.0 +1,2016-01-09 20:48:12,2016-01-09 20:57:16,2,1.6,,,-73.9371566772461,40.824562072753906,-73.94779205322266,40.804744720458984,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-06 15:02:35,2016-01-06 15:10:40,1,2.62,,,-73.9213638305664,40.766666412353516,-73.90251922607422,40.75149154663086,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-16 18:50:04,2016-01-16 19:17:06,1,4.6,,,-73.97968292236328,40.671085357666016,-74.00982666015625,40.71099090576172,1,N,1,20.5,0.0,0.5,0.3,4.26,0.0,,25.56,1.0 +1,2016-01-28 11:50:13,2016-01-28 12:04:43,1,2.3,,,-73.9398422241211,40.83595657348633,-73.95127868652344,40.80523681640625,1,N,1,12.0,0.0,0.5,0.3,1.0,0.0,,13.8,1.0 +1,2016-01-15 11:13:44,2016-01-15 11:20:30,1,1.5,,,-73.95479583740234,40.688106536865234,-73.9705581665039,40.69792556762695,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-06 01:24:27,2016-01-06 01:27:42,3,0.87,,,-73.94163513183594,40.818626403808594,-73.94640350341797,40.80723571777344,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-01 05:13:44,2016-01-01 05:15:58,1,0.6,,,-73.91890716552734,40.7657470703125,-73.92573547363281,40.76000213623047,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-01 04:11:32,2016-01-01 04:14:22,1,0.5,,,-73.83091735839844,40.70805740356445,-73.8301773071289,40.71349334716797,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-20 09:59:49,2016-01-20 10:02:22,1,0.61,,,-73.96427154541016,40.803131103515625,-73.96051025390625,40.809871673583984,1,N,1,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-03 10:13:09,2016-01-03 10:25:00,1,1.57,,,-73.97262573242188,40.67662048339844,-73.96480560302734,40.660091400146484,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-06 18:28:55,2016-01-06 18:59:34,1,3.76,,,-73.95997619628906,40.65059280395508,-73.93344116210938,40.66120529174805,1,N,1,21.0,1.0,0.5,0.3,5.7,0.0,,28.5,1.0 +2,2016-01-22 10:08:02,2016-01-22 10:24:36,1,3.21,,,-73.88529968261719,40.85842514038086,-73.92154693603516,40.84021759033203,1,N,1,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-16 13:02:00,2016-01-16 13:16:13,1,2.46,,,-73.86489868164062,40.75776672363281,-73.90968322753906,40.75345230102539,1,N,1,12.5,0.0,0.5,0.3,1.33,0.0,,14.63,1.0 +2,2016-01-19 11:21:15,2016-01-19 11:30:29,1,0.84,,,-73.96092224121094,40.714698791503906,-73.9483642578125,40.71836853027344,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-28 22:04:44,2016-01-28 22:19:56,1,4.93,,,-73.86178588867188,40.730491638183594,-73.90678405761719,40.76570129394531,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-19 19:11:14,2016-01-19 19:17:54,1,0.92,,,-73.89697265625,40.86241149902344,-73.88744354248047,40.855674743652344,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,,9.96,1.0 +1,2016-01-17 03:36:44,2016-01-17 03:48:51,1,3.3,,,-73.94539642333984,40.80796813964844,-73.93925476074219,40.84330368041992,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-28 15:35:41,2016-01-28 15:45:37,1,1.91,,,-73.87030029296875,40.75708770751953,-73.84098815917969,40.763851165771484,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-27 18:57:46,2016-01-27 19:05:23,2,1.59,,,-73.96573638916016,40.712974548339844,-73.9439926147461,40.7118034362793,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-10 09:11:08,2016-01-10 09:30:39,1,7.35,,,-73.95423126220703,40.73167419433594,-73.87324523925781,40.77435302734375,1,N,1,24.5,0.0,0.5,0.3,5.06,0.0,,30.36,1.0 +1,2016-01-24 21:54:01,2016-01-24 22:03:50,1,3.3,,,-73.95614624023438,40.818824768066406,-73.9328842163086,40.84556198120117,1,N,1,11.5,0.5,0.5,0.3,1.0,0.0,,13.8,1.0 +1,2016-01-16 17:23:25,2016-01-16 17:48:04,2,4.6,,,-73.95977020263672,40.80807113647461,-73.97763061523438,40.753787994384766,1,N,2,18.5,0.0,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-13 19:54:41,2016-01-13 20:08:04,1,3.19,,,-73.80792999267578,40.70036315917969,-73.77389526367188,40.678123474121094,1,N,1,12.0,1.0,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-19 09:08:49,2016-01-19 09:14:53,1,1.08,,,-73.99195861816406,40.690364837646484,-73.9801025390625,40.68207931518555,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-13 22:26:46,2016-01-13 22:35:25,1,2.21,,,-73.9607925415039,40.660797119140625,-73.93386840820312,40.649898529052734,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-11 08:29:10,2016-01-11 08:35:53,1,1.4,,,-73.9511947631836,40.82560348510742,-73.94286346435547,40.840492248535156,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 08:01:15,2016-01-09 08:05:07,1,0.8,,,-73.93760681152344,40.848480224609375,-73.94257354736328,40.83742141723633,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-15 00:16:23,2016-01-15 00:35:10,1,4.4,,,-73.93390655517578,40.69822311401367,-73.99029541015625,40.72737121582031,1,N,1,17.5,0.5,0.5,0.3,4.7,0.0,,23.5,1.0 +2,2016-01-18 20:15:06,2016-01-18 20:20:49,1,1.06,,,-73.82910919189453,40.71339416503906,-73.83424377441406,40.70562744140625,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-07 08:44:02,2016-01-07 08:48:55,1,0.82,,,-73.89112854003906,40.7469596862793,-73.88493347167969,40.75367736816406,1,N,1,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-28 16:24:06,2016-01-28 16:40:13,1,2.03,,,-73.95511627197266,40.79936599731445,-73.9489517211914,40.822532653808594,1,N,1,11.5,1.0,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-03 04:37:45,2016-01-03 04:51:26,1,2.9,,,-73.95166015625,40.74299621582031,-73.94580841064453,40.707820892333984,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-01 01:59:21,2016-01-01 02:13:45,1,4.21,,,-73.91732025146484,40.83464813232422,-73.8653335571289,40.82338333129883,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-05 08:04:44,2016-01-05 08:16:42,1,2.31,,,-73.92402648925781,40.81538009643555,-73.95299530029297,40.813926696777344,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-28 17:33:10,2016-01-28 18:03:08,1,6.1,,,-73.9532699584961,40.58720016479492,-73.99779510498047,40.5969352722168,1,N,2,25.5,1.0,0.5,0.3,0.0,0.0,,27.3,1.0 +2,2016-01-20 09:17:26,2016-01-20 09:19:15,1,0.43,,,-73.99220275878906,40.6994514465332,-73.99376678466797,40.69389343261719,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-13 14:30:56,2016-01-13 14:46:09,1,3.85,,,-73.9548568725586,40.80509567260742,-73.94266510009766,40.841304779052734,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-10 01:44:19,2016-01-10 01:55:30,1,2.89,,,-73.89200592041016,40.86935043334961,-73.92146301269531,40.84010314941406,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +1,2016-01-25 11:12:46,2016-01-25 11:26:29,1,2.0,,,-73.97703552246094,40.68400955200195,-73.9520034790039,40.69294738769531,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-10 17:56:57,2016-01-10 18:05:26,1,1.76,,,-73.93303680419922,40.69875717163086,-73.91331481933594,40.7061653137207,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-09 16:18:13,2016-01-09 16:31:27,1,2.4,,,-73.99193572998047,40.683284759521484,-73.97989654541016,40.66489028930664,1,N,1,11.0,0.0,0.5,0.3,2.95,0.0,,14.75,1.0 +1,2016-01-06 10:27:03,2016-01-06 10:33:40,1,1.4,,,-73.94786071777344,40.82541275024414,-73.9441146850586,40.84243392944336,1,N,1,7.0,0.0,0.5,0.3,2.3,0.0,,10.1,1.0 +2,2016-01-20 23:35:29,2016-01-20 23:49:14,1,2.89,,,-73.96142578125,40.71426010131836,-73.92036437988281,40.70071029663086,1,N,1,12.0,0.5,0.5,0.3,3.32,0.0,,16.62,1.0 +2,2016-01-02 12:55:15,2016-01-02 13:02:51,1,1.82,,,-73.94679260253906,40.80015182495117,-73.96018981933594,40.77924346923828,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,,9.8,1.0 +1,2016-01-08 14:41:41,2016-01-08 16:05:36,1,7.0,,,-73.96890258789062,40.69363784790039,-73.92113494873047,40.66842269897461,1,N,1,48.5,0.0,0.5,0.3,12.33,0.0,,61.63,1.0 +2,2016-01-01 01:29:12,2016-01-01 01:46:01,5,4.64,,,-73.97136688232422,40.67558670043945,-73.95194244384766,40.71404266357422,1,N,1,17.0,0.5,0.5,0.3,4.58,0.0,,22.88,1.0 +1,2016-01-07 18:15:54,2016-01-07 18:30:58,1,3.1,,,-73.9389877319336,40.750396728515625,-73.96002960205078,40.719825744628906,1,N,1,13.0,1.0,0.5,0.3,2.95,0.0,,17.75,1.0 +2,2016-01-13 17:53:42,2016-01-13 17:53:47,1,0.0,,,-73.94307708740234,40.81019592285156,-73.94306945800781,40.81019592285156,5,N,1,9.0,0.0,0.0,0,0.0,0.0,,9.0,2.0 +2,2016-01-07 15:14:01,2016-01-07 15:17:53,1,0.71,,,-73.92574310302734,40.761905670166016,-73.93263244628906,40.753021240234375,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-26 20:17:17,2016-01-26 20:32:45,1,2.2,,,-73.86377716064453,40.73283386230469,-73.8959732055664,40.732784271240234,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-11 10:27:39,2016-01-11 10:34:59,1,0.89,,,-73.9428939819336,40.79688262939453,-73.95277404785156,40.78752136230469,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-27 06:04:26,2016-01-27 06:12:42,1,2.5,,,-73.93681335449219,40.743385314941406,-73.9588851928711,40.76081466674805,5,N,3,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +1,2016-01-25 21:07:07,2016-01-25 21:19:55,1,3.1,,,-73.94486999511719,40.80847930908203,-73.91376495361328,40.83837890625,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-15 22:33:46,2016-01-15 22:43:08,1,1.1,,,-73.97688293457031,40.68144226074219,-73.96249389648438,40.68490219116211,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-16 01:20:31,2016-01-16 01:23:13,1,0.33,,,-73.9548110961914,40.80510711669922,-73.95336151123047,40.80940628051758,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-19 07:37:52,2016-01-19 07:45:43,1,1.79,,,-73.92559051513672,40.76178741455078,-73.94963836669922,40.76247024536133,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-22 22:53:59,2016-01-22 23:11:26,1,5.16,,,-73.94539642333984,40.7459831237793,-73.94574737548828,40.69222640991211,1,N,1,17.0,0.5,0.5,0.3,2.74,0.0,,21.04,1.0 +2,2016-01-27 16:36:12,2016-01-27 18:07:00,1,3.28,,,-73.97713470458984,40.62777328491211,-73.96650695800781,40.631385803222656,1,N,1,49.0,1.0,0.5,0.3,12.7,0.0,,63.5,1.0 +2,2016-01-11 09:56:15,2016-01-11 10:17:19,1,5.71,,,-73.93620300292969,40.80324935913086,-73.99390411376953,40.768802642822266,1,N,1,20.0,0.0,0.5,0.3,1.0,0.0,,21.8,1.0 +1,2016-01-08 01:46:04,2016-01-08 01:50:40,2,1.2,,,-73.9796371459961,40.67768478393555,-73.99212646484375,40.66646194458008,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-04 14:11:01,2016-01-04 14:47:30,1,9.45,,,-73.84857177734375,40.72378158569336,-73.95330810546875,40.778564453125,1,N,1,34.0,0.0,0.5,0.3,6.96,0.0,,41.76,1.0 +2,2016-01-24 22:29:02,2016-01-24 22:44:36,1,3.21,,,-73.94995880126953,40.722347259521484,-73.983642578125,40.724491119384766,1,N,1,13.5,0.5,0.5,0.3,2.96,0.0,,17.76,1.0 +2,2016-01-25 13:05:52,2016-01-25 13:18:00,1,1.69,,,-73.9379653930664,40.80467224121094,-73.9643783569336,40.80928039550781,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-17 13:44:30,2016-01-17 13:57:13,1,2.38,,,-73.98133850097656,40.689056396484375,-73.94590759277344,40.67509460449219,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-21 00:15:59,2016-01-21 00:21:57,1,1.23,,,-73.92720031738281,40.81870651245117,-73.91033935546875,40.819950103759766,1,N,1,6.0,0.5,0.5,0.3,2.19,0.0,,9.49,1.0 +2,2016-01-08 19:52:10,2016-01-08 20:25:26,1,12.45,,,-73.97125244140625,40.68766784667969,-73.77632141113281,40.64540481567383,1,N,1,37.0,1.0,0.5,0.3,7.76,0.0,,46.56,1.0 +2,2016-01-14 13:37:08,2016-01-14 13:43:03,1,1.34,,,-73.95111846923828,40.791481018066406,-73.93721008300781,40.80192184448242,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-21 11:24:10,2016-01-21 11:28:03,1,1.04,,,-73.94003295898438,40.8251838684082,-73.94584655761719,40.81222152709961,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-12 07:15:41,2016-01-12 07:43:22,1,3.76,,,-73.90288543701172,40.81745529174805,-73.89729309082031,40.86177444458008,5,N,2,13.0,0.0,0.0,0,0.0,0.0,,13.0,2.0 +2,2016-01-22 02:32:34,2016-01-22 02:35:03,2,0.48,,,-73.92777252197266,40.69782638549805,-73.92076110839844,40.7014045715332,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,,6.36,1.0 +1,2016-01-11 20:24:09,2016-01-11 20:37:06,1,2.7,,,-73.94622039794922,40.68025588989258,-73.95140075683594,40.64502716064453,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-18 08:54:46,2016-01-18 09:09:56,1,4.63,,,-73.94493103027344,40.787132263183594,-73.99627685546875,40.753257751464844,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-08 20:47:58,2016-01-08 21:19:09,1,6.87,,,-73.95795440673828,40.72185134887695,-73.95561981201172,40.652313232421875,1,N,1,26.0,0.5,0.5,0.3,5.46,0.0,,32.76,1.0 +1,2016-01-20 22:55:41,2016-01-20 22:59:11,1,0.7,,,-73.94490814208984,40.82411193847656,-73.94625854492188,40.83036804199219,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-04 03:18:05,2016-01-04 03:30:10,1,3.09,,,-73.95771026611328,40.74341583251953,-73.97952270507812,40.758888244628906,1,N,1,12.0,0.5,0.5,0.3,3.77,5.54,,22.61,1.0 +2,2016-01-07 10:37:28,2016-01-07 10:44:28,1,0.7,,,-73.99346923828125,40.69221878051758,-73.99212646484375,40.70183563232422,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,,7.8,1.0 +1,2016-01-16 16:02:08,2016-01-16 16:13:09,4,1.2,,,-73.95209503173828,40.80300521850586,-73.93233489990234,40.794822692871094,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-12 07:44:33,2016-01-12 08:32:16,1,5.29,,,-73.963623046875,40.677406311035156,-73.9974365234375,40.73658752441406,1,N,1,31.5,0.0,0.5,0.3,8.08,0.0,,40.38,1.0 +2,2016-01-25 10:19:17,2016-01-25 10:28:39,1,1.02,,,-73.96369171142578,40.80290222167969,-73.96904754638672,40.790950775146484,1,N,1,7.5,0.0,0.5,0.3,2.08,0.0,,10.38,1.0 +1,2016-01-04 16:09:10,2016-01-04 16:24:08,1,4.2,,,-73.95307922363281,40.727699279785156,-73.99718475341797,40.72399139404297,1,N,2,16.0,1.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-26 12:47:56,2016-01-26 12:59:05,1,1.46,,,-73.91121673583984,40.74454116821289,-73.8860855102539,40.7400016784668,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-30 20:08:48,2016-01-30 20:14:37,1,1.09,,,-73.92980194091797,40.75652313232422,-73.92227172851562,40.745365142822266,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-21 20:34:12,2016-01-21 20:38:59,3,1.0,,,-73.86953735351562,40.74910354614258,-73.86528778076172,40.73542022705078,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-29 19:08:03,2016-01-29 19:16:31,1,1.22,,,-73.86228942871094,40.730369567871094,-73.87213134765625,40.72632598876953,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-20 19:05:45,2016-01-20 19:55:40,1,6.28,,,-73.95769500732422,40.7215461730957,-73.88018035888672,40.735286712646484,1,N,2,31.5,1.0,0.5,0.3,0.0,0.0,,33.3,1.0 +2,2016-01-15 18:42:20,2016-01-15 18:50:13,1,0.73,,,-73.97636413574219,40.67311477661133,-73.97042846679688,40.67610168457031,1,N,1,6.5,1.0,0.5,0.3,1.0,0.0,,9.3,1.0 +2,2016-01-01 01:21:32,2016-01-01 01:31:47,1,2.25,,,-73.94818878173828,40.81434631347656,-73.94779205322266,40.79022979736328,1,N,1,9.5,0.5,0.5,0.3,2.7,0.0,,13.5,1.0 +2,2016-01-19 20:44:03,2016-01-19 20:50:38,1,1.24,,,-73.95401763916016,40.58723831176758,-73.93553924560547,40.58705139160156,1,N,1,7.0,0.5,0.5,0.3,2.49,0.0,,10.79,1.0 +1,2016-01-01 07:56:49,2016-01-01 07:58:16,3,0.3,,,-73.88949584960938,40.74587631225586,-73.88400268554688,40.743492126464844,1,N,1,3.5,0.0,0.5,0.3,1.0,0.0,,5.3,1.0 +1,2016-01-03 03:59:52,2016-01-03 04:11:05,1,2.5,,,-73.89089965820312,40.74653625488281,-73.9317626953125,40.7567253112793,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-08 10:20:40,2016-01-08 11:01:21,6,8.21,,,-73.946044921875,40.78955841064453,-74.0010986328125,40.71461868286133,1,N,1,33.5,0.0,0.5,0.3,5.0,0.0,,39.3,1.0 +1,2016-01-02 15:58:48,2016-01-02 15:58:57,1,2.0,,,-74.00775909423828,40.654632568359375,-74.00775909423828,40.65463638305664,1,N,3,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-09 22:14:52,2016-01-09 22:22:39,1,1.13,,,-73.98735046386719,40.6878662109375,-73.98013305664062,40.676944732666016,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-21 19:27:22,2016-01-21 19:35:37,6,1.99,,,-73.96629333496094,40.80475616455078,-73.94349670410156,40.81612014770508,1,N,1,8.5,1.0,0.5,0.3,2.06,0.0,,12.36,1.0 +1,2016-01-12 18:09:52,2016-01-12 18:19:36,1,1.3,,,-73.95782470703125,40.7176628112793,-73.96875762939453,40.70909118652344,1,N,1,8.0,1.0,0.5,0.3,1.95,0.0,,11.75,1.0 +2,2016-01-24 19:09:38,2016-01-24 19:12:12,1,0.73,,,-73.91063690185547,40.77614974975586,-73.91096496582031,40.77970886230469,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-30 04:11:34,2016-01-30 04:12:07,1,0.06,,,-73.84419250488281,40.72120666503906,-73.84537506103516,40.72002410888672,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +1,2016-01-14 20:33:00,2016-01-14 20:37:15,1,0.7,,,-73.97017669677734,40.684539794921875,-73.96448516845703,40.68928909301758,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,,7.55,1.0 +2,2016-01-12 13:59:39,2016-01-12 14:05:53,5,1.22,,,-73.96060180664062,40.6595573425293,-73.96328735351562,40.676551818847656,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-29 17:53:03,2016-01-29 17:56:57,1,0.7,,,-73.9437484741211,40.74656677246094,-73.93896484375,40.754947662353516,1,N,1,5.0,1.0,0.5,0.3,1.36,0.0,,8.16,1.0 +1,2016-01-14 10:59:58,2016-01-14 11:16:12,1,2.9,,,-73.94971466064453,40.68128967285156,-73.95659637451172,40.64425277709961,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-05 08:11:31,2016-01-05 08:26:00,1,1.69,,,-73.9419174194336,40.82263946533203,-73.94207763671875,40.84123611450195,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-05 11:45:57,2016-01-05 12:00:20,1,3.04,,,-73.92546081542969,40.7619743347168,-73.97052764892578,40.764339447021484,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-27 22:31:49,2016-01-27 22:59:15,2,7.0,,,-73.98983001708984,40.7023811340332,-73.97099304199219,40.759029388427734,1,N,1,25.5,0.5,0.5,0.3,5.0,0.0,,31.8,1.0 +1,2016-01-17 09:49:49,2016-01-17 09:59:03,1,4.8,,,-73.9249038696289,40.86640167236328,-73.96238708496094,40.81059646606445,1,N,1,15.0,0.0,0.5,0.3,3.15,0.0,,18.95,1.0 +2,2016-01-30 06:41:19,2016-01-30 06:55:39,1,3.9,,,-73.90747833251953,40.77391052246094,-73.90499877929688,40.74549102783203,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +1,2016-01-03 10:10:47,2016-01-03 10:14:43,1,1.5,,,-73.93929290771484,40.80527877807617,-73.95247650146484,40.78978729248047,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-20 19:18:58,2016-01-20 19:38:28,1,4.08,,,-73.94347381591797,40.78934860229492,-73.94625091552734,40.82701873779297,1,N,2,16.0,1.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-30 19:56:00,2016-01-30 20:03:36,1,1.08,,,-73.8438491821289,40.72163009643555,-73.85742950439453,40.72545623779297,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,,9.75,1.0 +2,2016-01-03 12:49:57,2016-01-03 12:56:13,5,0.69,,,-73.94367218017578,40.79304122924805,-73.93462371826172,40.79563903808594,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-17 21:42:33,2016-01-17 21:45:09,1,0.52,,,-73.97296905517578,40.67799377441406,-73.97755432128906,40.68452835083008,1,N,1,4.0,0.5,0.5,0.3,0.5,0.0,,5.8,1.0 +2,2016-01-15 15:22:27,2016-01-15 15:34:29,1,2.19,,,-73.93836975097656,40.800086975097656,-73.947509765625,40.821937561035156,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-04 15:35:02,2016-01-04 15:46:38,1,2.01,,,-73.94951629638672,40.68003463745117,-73.92237854003906,40.671451568603516,1,N,1,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-14 01:35:20,2016-01-14 01:44:41,1,1.37,,,-73.98709869384766,40.69110107421875,-73.97068786621094,40.687137603759766,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-09 10:23:33,2016-01-09 10:41:13,1,4.08,,,-73.9451904296875,40.80809020996094,-73.97903442382812,40.761837005615234,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,,19.56,1.0 +1,2016-01-20 10:08:06,2016-01-20 10:10:48,1,0.7,,,-73.94312286376953,40.796451568603516,-73.93701934814453,40.802242279052734,1,N,1,4.0,0.0,0.5,0.3,1.0,0.0,,5.8,1.0 +2,2016-01-30 22:46:06,2016-01-30 22:52:21,1,1.17,,,-73.95247650146484,40.7990608215332,-73.96894836425781,40.80359649658203,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-30 21:49:24,2016-01-30 21:57:05,1,1.27,,,-73.9052505493164,40.8624153137207,-73.91036224365234,40.87434005737305,5,N,2,8.0,0.0,0.0,0,0.0,0.0,,8.0,2.0 +2,2016-01-17 02:15:52,2016-01-17 02:27:37,1,2.47,,,-73.9564208984375,40.71902847290039,-73.92340850830078,40.70689392089844,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-15 23:35:18,2016-01-15 23:54:42,1,4.82,,,-73.96100616455078,40.68034362792969,-73.91939544677734,40.6390380859375,1,N,2,18.5,0.5,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-15 08:06:46,2016-01-15 08:27:14,1,4.7,,,-73.93927001953125,40.80537414550781,-73.98625183105469,40.780616760253906,1,N,1,18.0,0.0,0.5,0.3,3.76,0.0,,22.56,1.0 +2,2016-01-21 18:25:47,2016-01-21 18:51:26,1,5.03,,,-73.92129516601562,40.766666412353516,-73.86295318603516,40.74913024902344,1,N,2,20.5,1.0,0.5,0.3,0.0,0.0,,22.3,1.0 +2,2016-01-07 20:41:19,2016-01-07 20:44:29,6,0.51,,,-73.94953155517578,40.807472229003906,-73.95568084716797,40.803985595703125,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-02 09:07:59,2016-01-02 09:21:08,1,4.6,,,-73.9900131225586,40.668670654296875,-74.00291442871094,40.72069549560547,1,N,2,15.0,0.0,0.5,0.3,0.0,5.54,,21.34,1.0 +1,2016-01-25 18:19:58,2016-01-25 18:29:46,1,1.2,,,-73.99610900878906,40.69065856933594,-73.97732543945312,40.68387222290039,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-14 17:16:03,2016-01-14 17:18:12,1,0.4,,,-73.95198059082031,40.81056213378906,-73.95796203613281,40.811222076416016,1,N,1,3.5,1.0,0.5,0.3,0.01,0.0,,5.31,1.0 +1,2016-01-24 20:35:23,2016-01-24 20:50:30,1,1.4,,,-73.92919158935547,40.679317474365234,-73.92435455322266,40.67293167114258,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,,13.55,1.0 +1,2016-01-01 02:52:55,2016-01-01 03:08:22,1,2.9,,,-73.87904357910156,40.74174499511719,-73.9212417602539,40.75768280029297,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-06 01:49:53,2016-01-06 01:54:36,1,1.2,,,-73.99513244628906,40.690372467041016,-73.97850036621094,40.68968200683594,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-15 19:53:36,2016-01-15 20:04:10,1,2.2,,,-73.96141815185547,40.71437072753906,-73.96376037597656,40.69373321533203,1,N,1,9.5,0.5,0.5,0.3,2.0,0.0,,12.8,1.0 +2,2016-01-14 15:18:03,2016-01-14 15:23:27,1,0.68,,,-73.90845489501953,40.75408172607422,-73.92037963867188,40.75963592529297,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-07 11:48:14,2016-01-07 12:41:21,1,30.98,,,-73.97599792480469,40.68412399291992,-73.71148681640625,40.66232681274414,1,N,1,84.0,0.0,0.5,0.3,84.44,0.0,,169.24,1.0 +2,2016-01-25 17:56:24,2016-01-25 18:33:49,1,10.56,,,-73.84425354003906,40.72133255004883,-73.7176513671875,40.70142364501953,1,N,2,34.0,1.0,0.5,0.3,0.0,0.0,,35.8,1.0 +2,2016-01-12 19:40:24,2016-01-12 19:44:41,2,0.82,,,-73.92980194091797,40.756324768066406,-73.91922760009766,40.75908660888672,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-20 13:45:45,2016-01-20 13:54:28,1,1.0,,,-73.94441223144531,40.80731964111328,-73.93379974365234,40.79866027832031,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-03 01:29:32,2016-01-03 01:37:13,5,1.52,,,-73.95443725585938,40.73008728027344,-73.95590209960938,40.71401596069336,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-22 08:57:28,2016-01-22 09:45:50,1,7.03,,,-73.96627807617188,40.680694580078125,-73.9996109008789,40.753963470458984,1,N,1,33.5,0.0,0.5,0.3,6.86,0.0,,41.16,1.0 +1,2016-01-30 20:22:05,2016-01-30 20:31:41,1,1.6,,,-73.95072174072266,40.80241394042969,-73.96888732910156,40.7943115234375,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,,10.8,1.0 +1,2016-01-16 16:16:06,2016-01-16 16:34:15,1,5.4,,,-73.94529724121094,40.74601745605469,-73.99889373779297,40.71997833251953,1,N,1,19.5,1.0,0.5,0.3,1.0,0.0,,22.3,1.0 +2,2016-01-19 12:20:07,2016-01-19 12:25:24,1,0.39,,,-73.95498657226562,40.701271057128906,-73.95466613769531,40.69704818725586,1,N,1,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-28 21:09:35,2016-01-28 21:19:24,2,1.95,,,-73.972900390625,40.685733795166016,-73.93666076660156,40.69011688232422,1,N,1,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-08 17:42:38,2016-01-08 17:48:39,1,1.0,,,-73.97855377197266,40.684600830078125,-73.98461151123047,40.67179870605469,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-28 00:58:12,2016-01-28 01:08:26,1,3.97,,,-73.97539520263672,40.68671417236328,-73.9444580078125,40.71156692504883,1,N,1,13.0,0.5,0.5,0.3,2.0,0.0,,16.3,1.0 +2,2016-01-10 21:19:29,2016-01-10 21:30:46,1,1.9,,,-73.9546890258789,40.820472717285156,-73.93677520751953,40.84225845336914,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-25 17:44:48,2016-01-25 17:48:26,1,0.7,,,-73.96109008789062,40.81199264526367,-73.9676513671875,40.80307388305664,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-03 01:17:57,2016-01-03 01:41:17,1,6.54,,,-73.94953918457031,40.714012145996094,-73.99273681640625,40.763248443603516,1,N,1,22.0,0.5,0.5,0.3,4.66,0.0,,27.96,1.0 +2,2016-01-01 09:09:32,2016-01-01 09:18:49,1,2.64,,,-73.84320068359375,40.72087478637695,-73.83295440673828,40.74781799316406,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-20 23:08:31,2016-01-20 23:11:51,1,0.87,,,-73.91875457763672,40.75883865356445,-73.91202545166016,40.764862060546875,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-22 08:18:30,2016-01-22 08:38:11,1,4.1,,,-73.99825286865234,40.690223693847656,-73.98753356933594,40.732627868652344,1,N,1,17.0,0.0,0.5,0.3,3.56,0.0,,21.36,1.0 +2,2016-01-01 16:43:13,2016-01-01 16:51:44,1,3.59,,,-73.94268035888672,40.79983139038086,-73.91869354248047,40.77017593383789,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-27 16:42:21,2016-01-27 16:51:03,1,0.7,,,-73.90354919433594,40.74490737915039,-73.90837860107422,40.736663818359375,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-20 22:48:07,2016-01-20 22:53:06,1,1.1,,,-73.95751190185547,40.71793746948242,-73.9424057006836,40.724761962890625,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,,8.15,1.0 +1,2016-01-10 19:17:31,2016-01-10 19:19:21,2,0.4,,,-73.95732879638672,40.681495666503906,-73.95413208007812,40.677303314208984,1,N,1,3.5,0.0,0.5,0.3,2.0,0.0,,6.3,1.0 +2,2016-01-30 09:44:20,2016-01-30 09:49:21,1,0.89,,,-73.94352722167969,40.81536865234375,-73.9501953125,40.82171630859375,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-08 15:13:25,2016-01-08 15:18:51,1,0.73,,,-73.93843841552734,40.79732131958008,-73.9505615234375,40.80237579345703,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,,7.3,1.0 +1,2016-01-25 10:52:06,2016-01-25 11:02:16,1,1.1,,,-73.81602478027344,40.831573486328125,-73.82054901123047,40.82505798339844,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-11 19:20:39,2016-01-11 19:29:17,1,2.14,,,-73.9903564453125,40.66423034667969,-73.97344970703125,40.641441345214844,1,N,1,9.5,1.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-05 17:32:59,2016-01-05 17:56:41,1,4.6,,,-73.98664093017578,40.703895568847656,-74.00044250488281,40.745445251464844,1,N,1,19.5,1.0,0.5,0.3,2.0,0.0,,23.3,1.0 +2,2016-01-16 22:35:31,2016-01-16 22:46:11,1,3.1,,,-73.99098205566406,40.68596649169922,-74.01461029052734,40.70623779296875,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-14 20:04:12,2016-01-14 20:16:37,1,1.9,,,-73.98713684082031,40.69341278076172,-73.96698760986328,40.6772575378418,1,N,1,10.0,0.5,0.5,0.3,1.0,0.0,,12.3,1.0 +2,2016-01-15 14:25:19,2016-01-15 14:46:48,1,3.36,,,-73.95484161376953,40.78932571411133,-73.98995971679688,40.757652282714844,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +1,2016-01-20 16:53:00,2016-01-20 16:59:02,1,1.0,,,-73.95467376708984,40.789424896240234,-73.95692443847656,40.77851867675781,1,N,1,6.0,1.0,0.5,0.3,1.2,0.0,,9.0,1.0 +1,2016-01-09 17:31:39,2016-01-09 17:50:32,1,3.5,,,-73.95979309082031,40.7160530090332,-73.91841125488281,40.74336624145508,1,N,1,15.0,1.0,0.5,0.3,2.0,0.0,,18.8,1.0 +1,2016-01-30 21:01:45,2016-01-30 21:12:21,2,1.8,,,-73.95361328125,40.78710174560547,-73.9771499633789,40.78764343261719,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-06 08:35:58,2016-01-06 08:58:19,2,6.72,,,-73.83048248291016,40.75948715209961,-73.74717712402344,40.74406051635742,1,N,2,21.0,0.0,0.5,0.3,0.0,0.0,,21.8,1.0 +1,2016-01-29 13:26:22,2016-01-29 13:37:01,2,1.5,,,-73.97859954833984,40.68423080444336,-73.99707794189453,40.67950439453125,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,,11.15,1.0 +2,2016-01-10 23:47:15,2016-01-10 23:54:06,1,1.73,,,-73.95758056640625,40.7297477722168,-73.95873260498047,40.71494674682617,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-17 11:47:44,2016-01-17 11:51:46,1,0.56,,,-73.96038055419922,40.654632568359375,-73.9565200805664,40.65788650512695,1,N,1,4.5,0.0,0.5,0.3,2.0,0.0,,7.3,1.0 +2,2016-01-09 01:11:53,2016-01-09 01:13:32,1,0.34,,,-73.95159149169922,40.809539794921875,-73.95484161376953,40.80521011352539,1,N,1,3.5,0.5,0.5,0.3,1.0,0.0,,5.8,1.0 +1,2016-01-10 03:24:26,2016-01-10 03:35:51,1,2.4,,,-73.94953918457031,40.714046478271484,-73.9223403930664,40.691864013671875,1,N,1,10.5,0.5,0.5,0.3,2.35,0.0,,14.15,1.0 +2,2016-01-10 02:29:49,2016-01-10 02:41:07,1,2.46,,,-73.92681884765625,40.81975555419922,-73.9579086303711,40.81536865234375,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-02 16:48:39,2016-01-02 16:58:27,1,2.89,,,-74.0286865234375,40.622947692871094,-74.00318145751953,40.658287048339844,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-29 23:37:11,2016-01-29 23:42:58,2,1.39,,,-73.96334838867188,40.710262298583984,-73.95851135253906,40.721981048583984,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-18 13:37:57,2016-01-18 13:56:23,1,2.87,,,-73.95834350585938,40.721431732177734,-73.93521881103516,40.697017669677734,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,,17.76,1.0 +2,2016-01-07 23:42:39,2016-01-07 23:53:31,1,4.04,,,-73.90971374511719,40.87480163574219,-73.91007232666016,40.84828567504883,1,N,1,14.0,0.5,0.5,0.3,3.06,0.0,,18.36,1.0 +2,2016-01-30 07:04:36,2016-01-30 07:10:12,5,0.83,,,-73.903564453125,40.74495315551758,-73.89582824707031,40.739601135253906,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-14 08:46:49,2016-01-14 09:06:16,1,3.64,,,-73.92163848876953,40.75577926635742,-73.95870971679688,40.72127151489258,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,,19.75,1.0 +2,2016-01-08 21:13:45,2016-01-08 21:19:41,5,1.81,,,-73.82075500488281,40.71023178100586,-73.84898376464844,40.72288513183594,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-08 07:40:25,2016-01-08 07:57:04,6,1.72,,,-73.93858337402344,40.79326248168945,-73.95462036132812,40.80747985839844,1,N,1,12.0,0.0,0.5,0.3,1.0,0.0,,13.8,1.0 +2,2016-01-19 23:17:43,2016-01-19 23:28:49,2,2.69,,,-73.9512710571289,40.810302734375,-73.93465423583984,40.845550537109375,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-30 22:21:08,2016-01-30 22:32:33,1,2.09,,,-73.9402084350586,40.83950424194336,-73.91845703125,40.82571792602539,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-11 19:11:38,2016-01-11 19:17:46,1,1.09,,,-73.95046997070312,40.67100524902344,-73.96864318847656,40.67579650878906,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-05 02:57:48,2016-01-05 03:13:45,1,3.62,,,-73.9163589477539,40.76228713989258,-73.91246032714844,40.72439956665039,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-06 16:31:47,2016-01-07 15:47:37,6,3.33,,,-73.98912048339844,40.69103240966797,-73.95158386230469,40.66404342651367,1,N,2,16.5,1.0,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-14 21:56:12,2016-01-14 22:01:55,2,2.53,,,-73.93606567382812,40.795074462890625,-73.92301940917969,40.82371139526367,1,N,1,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-11 23:16:25,2016-01-11 23:18:23,1,0.39,,,-73.92131042480469,40.766658782958984,-73.92488861083984,40.77151107788086,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-08 16:47:33,2016-01-08 16:50:23,5,0.67,,,-73.86180877685547,40.73051834106445,-73.85047912597656,40.734580993652344,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-25 21:37:14,2016-01-25 21:46:38,2,1.41,,,-73.99116516113281,40.68560028076172,-73.97205352783203,40.689449310302734,1,N,1,8.0,0.5,0.5,0.3,2.32,0.0,,11.62,1.0 +2,2016-01-06 19:48:28,2016-01-06 20:20:31,1,7.37,,,-73.92290496826172,40.683860778808594,-73.99102783203125,40.72773742675781,1,N,1,27.0,1.0,0.5,0.3,0.0,0.0,,28.8,1.0 +1,2016-01-30 11:39:29,2016-01-30 11:41:35,1,0.3,,,-73.93756866455078,40.70331954956055,-73.93980407714844,40.70771789550781,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-18 04:33:13,2016-01-18 04:46:37,1,5.07,,,-73.94246673583984,40.797603607177734,-73.98117065429688,40.73382568359375,1,N,1,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-14 15:31:14,2016-01-14 15:38:52,1,1.66,,,-73.95500183105469,40.81202697753906,-73.94155883789062,40.830963134765625,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-01 21:05:35,2016-01-01 21:25:42,1,5.37,,,-73.92910766601562,40.681190490722656,-73.99275207519531,40.71514129638672,1,N,2,19.5,0.5,0.5,0.3,0.0,0.0,,20.8,1.0 +1,2016-01-04 12:27:56,2016-01-04 12:40:36,1,2.2,,,-73.94021606445312,40.81498718261719,-73.94754791259766,40.790565490722656,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-27 10:39:14,2016-01-27 10:49:01,1,1.6,,,-73.91829681396484,40.86650466918945,-73.93656158447266,40.8494758605957,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-18 17:32:53,2016-01-18 17:36:50,1,1.5,,,-73.94795989990234,40.79849624633789,-73.96101379394531,40.77840805053711,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-09 18:53:59,2016-01-09 19:12:54,1,6.39,,,-73.9173812866211,40.770179748535156,-73.91419982910156,40.70347213745117,1,N,2,21.0,0.0,0.5,0.3,0.0,0.0,,21.8,1.0 +1,2016-01-06 00:07:10,2016-01-06 00:25:11,1,3.8,,,-73.96345520019531,40.710174560546875,-73.99304962158203,40.72978591918945,1,N,1,15.0,0.5,0.5,0.3,3.25,0.0,,19.55,1.0 +2,2016-01-10 10:35:30,2016-01-10 10:40:44,1,1.52,,,-74.01648712158203,40.674346923828125,-73.99768829345703,40.685691833496094,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-13 11:39:02,2016-01-13 11:54:19,6,2.99,,,-73.98313903808594,40.688472747802734,-73.94768524169922,40.66413879394531,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-16 20:30:03,2016-01-17 20:20:30,1,1.5,,,-73.9295654296875,40.69976806640625,-73.9343032836914,40.71406555175781,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-11 15:24:27,2016-01-11 15:42:30,1,3.85,,,-73.9203109741211,40.726654052734375,-73.86955261230469,40.7340202331543,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +1,2016-01-28 08:15:41,2016-01-28 08:44:11,1,5.4,,,-73.88569641113281,40.73114013671875,-73.82650756835938,40.753868103027344,5,N,2,15.55,0.0,0.0,0,0.0,0.0,,15.55,2.0 +2,2016-01-19 20:33:54,2016-01-19 20:45:22,1,2.35,,,-73.8070297241211,40.698753356933594,-73.79911041259766,40.68319320678711,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-29 00:08:49,2016-01-29 00:30:56,5,4.28,,,-73.986572265625,40.70323181152344,-73.9910659790039,40.66264343261719,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-20 19:18:38,2016-01-20 19:26:01,1,1.51,,,-73.93921661376953,40.80501174926758,-73.95287322998047,40.78605651855469,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,,11.16,1.0 +1,2016-01-09 00:51:33,2016-01-09 01:06:15,1,3.4,,,-73.90917205810547,40.74488067626953,-73.96593475341797,40.75844955444336,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-22 23:41:39,2016-01-22 23:49:55,1,1.99,,,-73.8303451538086,40.759403228759766,-73.83104705810547,40.74276351928711,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-17 23:23:27,2016-01-17 23:52:42,1,5.43,,,-73.95085906982422,40.72779846191406,-73.91373443603516,40.665000915527344,1,N,2,22.5,0.5,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-09 10:51:17,2016-01-09 10:57:21,1,1.42,,,-73.9580307006836,40.608863830566406,-73.93699645996094,40.62044143676758,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-12 20:00:03,2016-01-12 20:04:16,1,0.9,,,-73.95857238769531,40.72127914428711,-73.96553039550781,40.710758209228516,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,,7.55,1.0 +2,2016-01-11 21:19:13,2016-01-11 21:24:43,1,0.6,,,-73.9610595703125,40.71443176269531,-73.95452117919922,40.718841552734375,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-07 14:28:24,2016-01-07 14:34:34,1,1.14,,,-73.9503402709961,40.671146392822266,-73.96089172363281,40.680519104003906,1,N,1,6.0,0.0,0.5,0.3,5.0,0.0,,11.8,1.0 +2,2016-01-22 22:03:22,2016-01-22 22:11:23,1,1.67,,,-73.90228271484375,40.74568557739258,-73.8978042602539,40.729576110839844,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-19 22:01:02,2016-01-19 22:08:50,2,1.19,,,-73.95918273925781,40.80925369262695,-73.94755554199219,40.80481719970703,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-13 23:54:55,2016-01-14 00:18:11,1,5.39,,,-73.95316314697266,40.68061447143555,-73.8752212524414,40.66696548461914,1,N,2,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-01 04:41:43,2016-01-01 04:49:53,1,1.7,,,-73.93563842773438,40.841583251953125,-73.93998718261719,40.82621383666992,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-02 14:34:15,2016-01-02 14:59:01,1,4.1,,,-73.95928955078125,40.67701721191406,-74.01048278808594,40.645076751708984,1,Y,2,18.0,0.5,0.5,0.3,0.0,0.0,,19.3,1.0 +1,2016-01-01 04:21:25,2016-01-01 04:42:01,2,6.7,,,-73.96156311035156,40.71405792236328,-73.95304870605469,40.78031539916992,1,N,1,21.5,0.5,0.5,0.3,4.0,0.0,,26.8,1.0 +2,2016-01-29 21:08:13,2016-01-29 21:14:21,1,1.45,,,-73.95983123779297,40.813743591308594,-73.97144317626953,40.794803619384766,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,,9.3,1.0 +1,2016-01-28 16:12:07,2016-01-28 16:27:41,2,1.2,,,-73.95438385009766,40.78950881958008,-73.96011352539062,40.77613830566406,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-02 12:31:54,2016-01-02 12:34:52,1,0.67,,,-73.94513702392578,40.80803680419922,-73.93611145019531,40.8095703125,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-16 18:12:24,2016-01-16 18:29:42,1,2.1,,,-73.92182159423828,40.67905044555664,-73.96150970458984,40.68191146850586,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-21 14:05:11,2016-01-21 14:16:36,1,1.54,,,-73.80760192871094,40.7005615234375,-73.79962158203125,40.71412658691406,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-16 15:00:17,2016-01-16 15:07:25,1,1.34,,,-73.94380187988281,40.80992889404297,-73.9415512084961,40.825077056884766,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-09 03:11:41,2016-01-09 03:29:24,1,4.91,,,-73.91060638427734,40.68253707885742,-73.93778991699219,40.62493133544922,1,N,1,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-08 07:39:25,2016-01-08 07:55:37,1,2.57,,,-73.9549560546875,40.734214782714844,-73.95484924316406,40.73422622680664,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-01 18:07:10,2016-01-01 18:26:11,6,3.03,,,-73.86922454833984,40.735111236572266,-73.89900970458984,40.75654602050781,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-20 17:04:40,2016-01-20 17:12:29,1,1.2,,,-73.90345764160156,40.7453498840332,-73.89612579345703,40.73481369018555,1,N,1,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-26 20:12:00,2016-01-26 20:25:04,1,3.01,,,-73.96141052246094,40.80621337890625,-73.98553466796875,40.771934509277344,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,,15.36,1.0 +2,2016-01-09 14:06:32,2016-01-10 14:02:19,1,3.27,,,-73.98772430419922,40.66749954223633,-73.96051025390625,40.647300720214844,1,N,1,13.0,0.0,0.5,0.3,2.07,0.0,,15.87,1.0 +2,2016-01-27 15:44:05,2016-01-27 16:01:31,1,2.31,,,-73.96466827392578,40.8067512512207,-73.96002960205078,40.78232192993164,1,N,1,12.5,0.0,0.5,0.3,3.32,0.0,,16.62,1.0 +2,2016-01-30 10:00:22,2016-01-30 10:06:30,1,1.22,,,-73.84501647949219,40.72211456298828,-73.84934997558594,40.73631286621094,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-11 17:20:47,2016-01-11 17:38:52,3,2.64,,,-73.94705200195312,40.7882194519043,-73.95499420166016,40.814964294433594,1,N,1,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-05 00:55:16,2016-01-05 00:58:39,1,0.77,,,-73.91780853271484,40.77000427246094,-73.90689086914062,40.76581573486328,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-17 15:04:16,2016-01-17 15:06:15,1,0.4,,,-73.92263793945312,40.67742919921875,-73.92263793945312,40.677433013916016,1,N,3,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +1,2016-01-13 05:24:27,2016-01-13 05:46:00,2,10.4,,,-73.9432601928711,40.6907958984375,-73.86154174804688,40.7681770324707,1,N,1,30.5,0.5,0.5,0.3,3.0,0.0,,34.8,1.0 +2,2016-01-11 15:40:38,2016-01-11 15:57:32,2,2.75,,,-73.9168930053711,40.747291564941406,-73.95630645751953,40.74364471435547,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-30 04:08:57,2016-01-30 04:11:54,1,0.39,,,-73.92522430419922,40.86240768432617,-73.91915130615234,40.864349365234375,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-02 20:04:51,2016-01-02 20:11:40,1,3.88,,,-73.86087799072266,40.833595275878906,-73.86593627929688,40.87712860107422,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-22 11:04:08,2016-01-22 11:08:12,1,0.5,,,-73.95211029052734,40.786380767822266,-73.95791625976562,40.781341552734375,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-14 13:43:33,2016-01-14 13:51:49,1,3.2,,,-73.95872497558594,40.81494140625,-73.9361343383789,40.84979248046875,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-16 01:37:51,2016-01-16 01:45:27,1,1.34,,,-73.95758056640625,40.800350189208984,-73.94953918457031,40.787689208984375,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,,9.3,1.0 +2,2016-01-30 23:58:38,2016-01-31 00:16:39,5,9.66,,,-73.9391860961914,40.805145263671875,-73.90612030029297,40.90524673461914,1,N,1,28.0,0.5,0.5,0.3,5.86,0.0,,35.16,1.0 +2,2016-01-02 23:37:42,2016-01-02 23:47:22,1,2.65,,,-73.95073699951172,40.74363708496094,-73.95064544677734,40.71176528930664,1,N,1,10.0,0.5,0.5,0.3,2.82,0.0,,14.12,1.0 +1,2016-01-14 07:52:13,2016-01-14 07:56:54,1,1.2,,,-73.9513168334961,40.791290283203125,-73.93798065185547,40.800880432128906,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-16 10:19:23,2016-01-16 10:32:54,1,2.8,,,-73.94607543945312,40.79233932495117,-73.9801254272461,40.78071212768555,1,N,1,11.5,0.0,0.5,0.3,1.23,0.0,,13.53,1.0 +1,2016-01-02 11:38:56,2016-01-02 11:44:47,1,2.8,,,-73.9583740234375,40.815494537353516,-73.93924713134766,40.848716735839844,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-24 13:18:17,2016-01-24 13:33:12,1,4.26,,,-73.97274780273438,40.689666748046875,-73.96150970458984,40.717437744140625,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,,19.56,1.0 +2,2016-01-16 15:22:26,2016-01-16 15:28:41,1,0.87,,,-73.94105529785156,40.80598831176758,-73.95413970947266,40.80877685546875,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-21 15:45:29,2016-01-21 15:52:18,1,1.0,,,-73.95127868652344,40.7860221862793,-73.9665298461914,40.79258728027344,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-25 04:43:52,2016-01-25 04:51:19,1,1.43,,,-73.93305206298828,40.70304870605469,-73.95507049560547,40.709014892578125,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-04 00:52:04,2016-01-04 00:56:14,1,0.8,,,-73.95802307128906,40.72182083129883,-73.94734191894531,40.72685241699219,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-14 13:14:56,2016-01-14 13:18:22,1,0.6,,,-73.94145965576172,40.823387145996094,-73.94478607177734,40.816558837890625,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-16 20:57:36,2016-01-16 21:02:28,1,0.83,,,-73.8697738647461,40.73357009887695,-73.87489318847656,40.72867965698242,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-01 17:16:50,2016-01-01 17:42:03,1,9.19,,,-73.8281021118164,40.760093688964844,-73.96627807617188,40.76258087158203,1,N,1,29.0,0.0,0.5,0.3,7.45,0.0,,37.25,1.0 +2,2016-01-25 06:41:42,2016-01-25 06:42:06,1,0.03,,,-73.92127227783203,40.86117172241211,-73.92072296142578,40.86194610595703,5,N,1,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +2,2016-01-03 08:09:57,2016-01-03 08:25:47,1,9.4,,,-73.94488525390625,40.834251403808594,-73.98430633544922,40.73468017578125,1,N,1,26.5,0.0,0.5,0.3,3.7,0.0,,31.0,1.0 +1,2016-01-15 20:53:23,2016-01-15 21:29:55,2,7.9,,,-73.89804077148438,40.72567367553711,-73.97240447998047,40.76248550415039,5,N,3,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +2,2016-01-12 23:18:25,2016-01-12 23:18:27,1,0.0,,,-73.85932922363281,40.669769287109375,-73.85932922363281,40.66977310180664,5,N,1,7.0,0.0,0.0,0,0.0,0.0,,7.0,2.0 +2,2016-01-20 19:08:45,2016-01-20 19:14:12,1,0.68,,,-73.97850799560547,40.68938064575195,-73.97626495361328,40.683738708496094,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-27 23:02:53,2016-01-27 23:56:39,1,13.99,,,-73.83602142333984,40.76825714111328,-73.95498657226562,40.80494689941406,1,N,2,44.5,0.5,0.5,0.3,0.0,0.0,,45.8,1.0 +2,2016-01-05 20:58:17,2016-01-05 21:01:20,2,0.53,,,-73.91154479980469,40.775596618652344,-73.90691375732422,40.77107238769531,1,N,1,4.0,0.5,0.5,0.3,1.59,0.0,,6.89,1.0 +1,2016-01-04 14:26:03,2016-01-04 14:41:26,1,2.2,,,-73.9425277709961,40.68006134033203,-73.96541595458984,40.691925048828125,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,,14.75,1.0 +2,2016-01-09 11:41:58,2016-01-09 11:57:14,3,3.19,,,-73.93989562988281,40.80972671508789,-73.9735107421875,40.784664154052734,1,N,1,13.0,0.0,0.5,0.3,1.7,0.0,,15.5,1.0 +2,2016-01-18 01:52:01,2016-01-18 02:03:00,1,3.04,,,-73.96646118164062,40.804813385009766,-73.96204376220703,40.77385711669922,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,,15.36,1.0 +1,2016-01-04 04:57:38,2016-01-04 05:09:30,1,2.7,,,-73.8857421875,40.86595153808594,-73.86470031738281,40.84415817260742,5,N,2,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +2,2016-01-08 10:46:04,2016-01-08 10:52:07,1,1.36,,,-73.95709228515625,40.68780517578125,-73.97613525390625,40.68484115600586,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-18 12:53:28,2016-01-18 12:59:18,1,0.79,,,-73.96302032470703,40.80421829223633,-73.9554672241211,40.806884765625,1,N,1,6.0,0.0,0.5,0.3,1.7,0.0,,8.5,1.0 +1,2016-01-24 16:53:30,2016-01-24 16:57:29,1,1.0,,,-73.94017028808594,40.79371643066406,-73.94973754882812,40.78050231933594,1,N,1,5.0,0.0,0.5,0.3,1.7,0.0,,7.5,1.0 +2,2016-01-16 21:33:56,2016-01-16 22:04:41,2,11.03,,,-73.94341278076172,40.70855712890625,-73.78998565673828,40.64332580566406,1,N,1,35.0,0.5,0.5,0.3,7.26,0.0,,43.56,1.0 +1,2016-01-27 11:17:30,2016-01-27 11:27:25,1,2.0,,,-73.94075775146484,40.805965423583984,-73.94275665283203,40.82722854614258,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-30 20:44:30,2016-01-30 20:59:09,1,2.8,,,-73.99267578125,40.68921661376953,-73.94456481933594,40.67659378051758,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-26 22:36:54,2016-01-26 23:13:49,1,26.17,,,-73.90340423583984,40.74544143676758,-73.58723449707031,40.72392654418945,4,N,1,99.5,0.5,0.5,0.3,25.2,0.0,,126.0,1.0 +2,2016-01-29 23:55:10,2016-01-29 23:58:27,1,0.64,,,-73.84795379638672,40.729698181152344,-73.84465789794922,40.72039031982422,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-17 20:40:35,2016-01-17 20:45:37,5,0.93,,,-73.95115661621094,40.78605270385742,-73.96527862548828,40.792869567871094,1,N,1,6.0,0.5,0.5,0.3,1.82,0.0,,9.12,1.0 +2,2016-01-04 07:06:14,2016-01-04 07:45:28,1,10.67,,,-73.93202209472656,40.858158111572266,-73.86715698242188,40.77082443237305,1,N,2,37.5,0.0,0.5,0.3,0.0,5.54,,43.84,1.0 +2,2016-01-22 16:29:59,2016-01-22 17:31:13,1,9.48,,,-73.92514038085938,40.66811752319336,-73.99345397949219,40.752349853515625,1,N,2,41.0,1.0,0.5,0.3,0.0,0.0,,42.8,1.0 +2,2016-01-27 13:47:01,2016-01-27 13:54:55,1,2.73,,,-73.93778991699219,40.804508209228516,-73.92063903808594,40.79456329345703,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-07 22:16:25,2016-01-07 22:57:22,1,11.96,,,-73.95518493652344,40.80427932739258,-73.92958068847656,40.699806213378906,1,N,1,39.5,0.5,0.5,0.3,0.0,0.0,,40.8,1.0 +2,2016-01-19 11:31:36,2016-01-19 11:37:11,1,0.87,,,-73.935302734375,40.79604721069336,-73.93936920166016,40.79038619995117,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-25 12:45:52,2016-01-26 12:29:45,1,4.05,,,-73.92568969726562,40.752193450927734,-73.95033264160156,40.783668518066406,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-20 21:45:32,2016-01-20 21:54:08,1,2.13,,,-73.90324401855469,40.74574279785156,-73.91808319091797,40.767601013183594,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-03 10:50:37,2016-01-03 10:54:00,5,0.64,,,-73.86956787109375,40.76948165893555,-73.88053894042969,40.767276763916016,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-20 16:44:09,2016-01-20 17:12:51,1,4.2,,,-73.94872283935547,40.78593826293945,-73.94220733642578,40.83243179321289,1,N,2,20.0,1.0,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-17 14:45:37,2016-01-17 15:06:07,1,4.14,,,-73.92122650146484,40.763267517089844,-73.9581527709961,40.72172164916992,1,N,1,17.0,0.0,0.5,0.3,2.67,0.0,,20.47,1.0 +2,2016-01-28 20:45:38,2016-01-28 21:01:06,3,7.4,,,-73.89119720458984,40.74696731567383,-73.85005187988281,40.72333526611328,1,N,1,23.0,0.5,0.5,0.3,1.0,0.0,,25.3,1.0 +2,2016-01-10 07:04:31,2016-01-10 07:20:28,1,2.86,,,-73.9337158203125,40.715213775634766,-73.9313735961914,40.70719528198242,1,N,1,12.5,0.0,0.5,0.3,1.0,0.0,,14.3,1.0 +2,2016-01-16 08:14:35,2016-01-16 08:21:09,1,1.34,,,-73.9542465209961,40.8162956237793,-73.93852996826172,40.80491638183594,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-06 16:46:13,2016-01-06 17:04:11,1,6.39,,,-73.81680297851562,40.71287155151367,-73.78373718261719,40.64359664916992,1,N,2,20.5,1.0,0.5,0.3,0.0,0.0,,22.3,1.0 +2,2016-01-30 07:40:14,2016-01-30 08:00:12,1,8.4,,,-73.90876007080078,40.824195861816406,-73.97173309326172,40.79800033569336,1,N,1,25.0,0.0,0.5,0.3,0.0,0.0,,25.8,1.0 +2,2016-01-05 20:08:40,2016-01-05 20:17:16,1,1.72,,,-73.8401107788086,40.71918869018555,-73.8582992553711,40.733516693115234,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +1,2016-01-26 06:44:29,2016-01-26 07:21:05,1,4.1,,,-73.91783905029297,40.657875061035156,-73.94418334960938,40.69961929321289,1,N,1,22.5,0.0,0.5,0.3,4.65,0.0,,27.95,1.0 +1,2016-01-01 20:46:39,2016-01-01 20:53:54,2,1.3,,,-73.9149169921875,40.76392364501953,-73.91307830810547,40.777915954589844,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-03 15:39:51,2016-01-03 15:46:02,1,0.78,,,-73.98604583740234,40.689762115478516,-73.97650146484375,40.68359375,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-22 11:56:55,2016-01-22 12:04:57,1,3.23,,,-73.89083099365234,40.74686813354492,-73.87105560302734,40.774070739746094,1,N,1,11.5,0.0,0.5,0.3,0.01,0.0,,12.31,1.0 +1,2016-01-12 06:27:01,2016-01-12 07:02:24,2,12.7,,,-73.98170471191406,40.6673698425293,-73.77998352050781,40.64561080932617,1,N,1,39.5,0.0,0.5,0.3,8.05,0.0,,48.35,1.0 +2,2016-01-09 19:54:35,2016-01-09 20:02:17,6,1.29,,,-73.92549133300781,40.7618293762207,-73.9287109375,40.77570724487305,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-29 18:51:15,2016-01-29 19:15:18,1,3.16,,,-73.95521545410156,40.72024154663086,-73.99000549316406,40.719730377197266,1,N,1,16.5,1.0,0.5,0.3,3.66,0.0,,21.96,1.0 +2,2016-01-20 22:41:30,2016-01-20 23:02:40,1,13.8,,,-73.80756378173828,40.700416564941406,-73.73778533935547,40.79115676879883,4,N,1,45.0,0.5,0.5,0.3,7.0,0.0,,53.3,1.0 +2,2016-01-16 17:01:30,2016-01-16 17:43:20,1,6.16,,,-73.86991882324219,40.74995422363281,-73.86599731445312,40.75955581665039,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,,52.8,1.0 +1,2016-01-28 15:16:05,2016-01-28 15:34:00,1,2.1,,,-73.9620590209961,40.80569839477539,-73.95235443115234,40.78972625732422,1,N,1,12.0,0.0,0.5,0.3,1.5,0.0,,14.3,1.0 +1,2016-01-13 11:33:16,2016-01-13 11:36:14,1,0.5,,,-73.95735168457031,40.80181884765625,-73.95954132080078,40.80598831176758,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-03 01:51:39,2016-01-03 02:08:09,1,6.98,,,-73.95653533935547,40.71695327758789,-73.98611450195312,40.66057586669922,1,N,1,21.0,0.5,0.5,0.3,4.46,0.0,,26.76,1.0 +2,2016-01-14 22:22:25,2016-01-14 22:43:08,1,9.77,,,-73.96391296386719,40.67809295654297,-73.91500091552734,40.77519607543945,1,N,1,28.0,0.5,0.5,0.3,5.86,0.0,,35.16,1.0 +2,2016-01-20 08:11:48,2016-01-20 08:48:34,1,6.99,,,-73.98375701904297,40.66425704956055,-73.98736572265625,40.735042572021484,1,N,1,28.0,0.0,0.5,0.3,4.2,0.0,,33.0,1.0 +1,2016-01-21 11:04:16,2016-01-21 11:08:04,1,0.5,,,-73.94563293457031,40.83572769165039,-73.94206237792969,40.83861541748047,1,N,1,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-21 22:36:20,2016-01-21 23:01:38,1,3.81,,,-73.95079803466797,40.78587341308594,-73.98980712890625,40.747413635253906,1,N,2,18.0,0.5,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-29 22:57:32,2016-01-29 23:01:36,6,0.89,,,-73.92174530029297,40.76713562011719,-73.9329605102539,40.775508880615234,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-08 16:40:59,2016-01-08 16:44:25,1,0.51,,,-73.94727325439453,40.830963134765625,-73.94781494140625,40.82528305053711,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-29 16:04:22,2016-01-29 16:23:05,1,5.4,,,-73.95203399658203,40.82450866699219,-73.98766326904297,40.77006530761719,1,N,4,19.5,1.0,0.5,0.3,0.0,0.0,,21.3,1.0 +1,2016-01-09 17:57:29,2016-01-09 18:02:45,1,1.0,,,-73.95762634277344,40.71791458129883,-73.94181823730469,40.72591781616211,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-29 09:20:39,2016-01-29 09:34:07,1,3.38,,,-73.84391021728516,40.72099685668945,-73.80362701416016,40.69556427001953,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,,17.76,1.0 +2,2016-01-18 23:02:42,2016-01-18 23:16:44,1,2.55,,,-73.96208190917969,40.71598434448242,-73.9693603515625,40.69304656982422,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-02 17:09:01,2016-01-02 17:17:25,1,2.12,,,-73.93758392333984,40.797306060791016,-73.95439147949219,40.77054214477539,1,N,1,8.5,0.0,0.5,0.3,2.0,0.0,,11.3,1.0 +2,2016-01-13 16:04:15,2016-01-13 16:13:34,1,1.18,,,-73.96604919433594,40.805301666259766,-73.94906616210938,40.796958923339844,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-29 16:20:28,2016-01-29 16:56:11,1,4.62,,,-73.94789123535156,40.632755279541016,-73.88286590576172,40.65962600708008,1,N,1,24.5,1.0,0.5,0.3,0.0,0.0,,26.3,1.0 +2,2016-01-03 19:56:38,2016-01-03 20:03:56,1,1.33,,,-73.9784927368164,40.68455505371094,-74.00022888183594,40.692787170410156,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-17 01:51:19,2016-01-17 02:15:21,1,5.09,,,-73.95590209960938,40.714046478271484,-73.91900634765625,40.757625579833984,1,N,1,19.5,0.5,0.5,0.3,0.0,0.0,,20.8,1.0 +1,2016-01-01 16:28:14,2016-01-01 16:34:14,1,1.2,,,-73.98860931396484,40.689918518066406,-73.97171783447266,40.69355773925781,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-15 21:56:09,2016-01-15 22:03:05,1,2.9,,,-73.89093780517578,40.74694061279297,-73.8770523071289,40.7670783996582,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-11 14:48:33,2016-01-11 15:02:47,1,5.2,,,-73.939208984375,40.8017578125,-73.88689422607422,40.76646423339844,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-12 12:37:17,2016-01-12 12:57:52,1,3.97,,,-73.91692352294922,40.765621185302734,-73.9544448852539,40.76606750488281,1,N,1,17.0,0.0,0.5,0.3,5.34,0.0,,23.14,1.0 +1,2016-01-25 14:37:15,2016-01-25 14:51:43,2,1.6,,,-73.96389770507812,40.71046447753906,-73.96788024902344,40.71077346801758,1,N,1,9.5,0.0,0.5,0.3,1.0,0.0,,11.3,1.0 +1,2016-01-10 17:04:23,2016-01-10 17:17:05,1,2.5,,,-73.95757293701172,40.71153259277344,-73.97933197021484,40.715511322021484,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,,14.75,1.0 +2,2016-01-15 14:21:37,2016-01-15 14:30:01,1,1.68,,,-73.95315551757812,40.78889465332031,-73.9600601196289,40.804718017578125,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-09 02:29:52,2016-01-09 02:37:57,1,1.63,,,-73.93699645996094,40.69277572631836,-73.94291687011719,40.67652893066406,1,N,1,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-05 09:31:58,2016-01-05 09:38:28,1,1.18,,,-73.96224212646484,40.67981719970703,-73.9789047241211,40.683258056640625,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-21 12:49:11,2016-01-21 13:03:35,1,1.9,,,-73.84413146972656,40.721431732177734,-73.81269073486328,40.71685028076172,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-21 17:40:07,2016-01-21 18:02:57,1,2.8,,,-73.98985290527344,40.70248031616211,-73.98441314697266,40.67132568359375,1,N,1,15.5,1.0,0.5,0.3,3.45,0.0,,20.75,1.0 +2,2016-01-15 08:29:05,2016-01-15 08:52:21,1,1.78,,,-73.95510864257812,40.80482864379883,-73.95033264160156,40.7867431640625,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-11 20:21:07,2016-01-11 20:29:12,1,1.83,,,-73.94970703125,40.71403503417969,-73.95524597167969,40.73637390136719,1,N,1,8.0,0.5,0.5,0.3,2.32,0.0,,11.62,1.0 +2,2016-01-03 15:37:35,2016-01-03 15:43:27,1,1.43,,,-73.94091796875,40.67600631713867,-73.94398498535156,40.68470001220703,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-10 16:13:14,2016-01-10 16:25:57,1,1.3,,,-73.8921127319336,40.74694061279297,-73.88229370117188,40.754093170166016,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-25 21:11:01,2016-01-25 21:13:35,1,0.31,,,-73.99962615966797,40.69175720214844,-74.00144958496094,40.68768310546875,1,N,1,3.5,0.5,0.5,0.3,1.44,0.0,,6.24,1.0 +1,2016-01-28 19:08:32,2016-01-28 19:23:44,1,2.6,,,-73.96662139892578,40.69340133666992,-73.94200134277344,40.67478942871094,1,N,2,12.0,1.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-03 22:59:09,2016-01-03 23:05:28,2,1.11,,,-73.89064025878906,40.74687576293945,-73.88066864013672,40.75592803955078,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-20 15:35:47,2016-01-20 15:44:57,2,1.2,,,-73.96024322509766,40.65693664550781,-73.96088409423828,40.673160552978516,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-11 18:46:45,2016-01-11 18:51:06,1,0.66,,,-73.9533920288086,40.801612854003906,-73.94697570800781,40.801910400390625,5,N,1,7.0,0.0,0.0,0,0.0,0.0,,7.0,2.0 +2,2016-01-01 18:00:03,2016-01-01 18:14:10,2,2.81,,,-73.8722915649414,40.73428726196289,-73.92218780517578,40.743778228759766,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-19 21:04:05,2016-01-19 21:22:01,1,2.1,,,-73.8407211303711,40.84541702270508,-73.86824798583984,40.85369110107422,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +1,2016-01-01 03:01:04,2016-01-01 03:09:30,1,2.6,,,-73.86036682128906,40.75468063354492,-73.85819244384766,40.74189758300781,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-16 18:39:42,2016-01-16 18:43:47,1,0.4,,,-73.942626953125,40.79903793334961,-73.94918823242188,40.80183410644531,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-10 11:01:24,2016-01-10 11:13:52,1,2.43,,,-73.95578002929688,40.812721252441406,-73.94210815429688,40.787353515625,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-06 04:56:45,2016-01-06 04:59:23,5,0.4,,,-73.88406372070312,40.747798919677734,-73.87716674804688,40.74835968017578,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-17 00:39:45,2016-01-17 00:59:04,1,4.4,,,-73.95746612548828,40.729248046875,-73.95913696289062,40.68416213989258,1,N,1,17.5,0.5,0.5,0.3,3.75,0.0,,22.55,1.0 +2,2016-01-04 11:56:37,2016-01-04 12:06:24,2,1.14,,,-73.9256362915039,40.768917083740234,-73.91887664794922,40.759151458740234,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-01 22:18:14,2016-01-01 22:18:17,1,0.13,,,-73.93626403808594,40.71654510498047,-73.9354019165039,40.71462631225586,5,N,1,10.0,0.0,0.0,0,3.0,0.0,,13.0,2.0 +2,2016-01-26 18:48:51,2016-01-26 18:56:37,1,1.34,,,-73.85315704345703,40.75231170654297,-73.85746765136719,40.739837646484375,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-24 14:54:10,2016-01-24 15:03:39,1,1.14,,,-73.97917938232422,40.687774658203125,-73.9778823852539,40.67551040649414,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-21 19:18:24,2016-01-21 19:24:44,6,0.88,,,-73.94001007080078,40.805538177490234,-73.9539566040039,40.80897521972656,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,,52.8,1.0 +2,2016-01-15 19:47:23,2016-01-15 19:52:59,1,0.85,,,-73.89261627197266,40.7489013671875,-73.90303039550781,40.75319290161133,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-22 10:52:12,2016-01-22 10:56:36,1,1.0,,,-73.94318389892578,40.79362869262695,-73.93810272216797,40.80378341674805,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,,7.3,1.0 +1,2016-01-11 12:42:03,2016-01-11 13:05:24,1,6.9,,,-73.93872833251953,40.804996490478516,-73.86502838134766,40.77046585083008,1,N,2,23.0,0.0,0.5,0.3,0.0,5.54,,29.34,1.0 +2,2016-01-19 10:26:18,2016-01-19 10:39:26,1,2.19,,,-73.96289825439453,40.809146881103516,-73.94264221191406,40.837066650390625,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,,15.38,1.0 +2,2016-01-10 12:07:14,2016-01-10 12:11:57,4,0.91,,,-73.96833038330078,40.6908073425293,-73.97923278808594,40.68647384643555,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-17 20:13:58,2016-01-17 20:18:50,1,1.18,,,-73.99574279785156,40.687355041503906,-74.01006317138672,40.6797981262207,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-15 21:22:55,2016-01-15 21:30:11,1,1.5,,,-73.9759292602539,40.682159423828125,-73.97229766845703,40.69472885131836,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-19 11:43:21,2016-01-19 12:01:17,1,6.52,,,-73.93844604492188,40.80536651611328,-73.87516021728516,40.831642150878906,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,,21.3,1.0 +2,2016-01-02 04:08:35,2016-01-02 04:13:30,1,0.71,,,-73.844482421875,40.720481872558594,-73.84805297851562,40.73001480102539,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-20 17:54:26,2016-01-20 18:01:51,1,1.55,,,-73.9942855834961,40.681148529052734,-74.01412200927734,40.67635726928711,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-18 03:07:05,2016-01-18 03:32:13,3,6.27,,,-73.95750427246094,40.72224044799805,-74.00305938720703,40.7517204284668,1,N,1,23.0,0.5,0.5,0.3,4.86,0.0,,29.16,1.0 +2,2016-01-06 19:21:06,2016-01-06 19:29:38,1,1.33,,,-73.84441375732422,40.72145080566406,-73.85504150390625,40.705772399902344,1,N,1,7.5,1.0,0.5,0.3,3.0,0.0,,12.3,1.0 +2,2016-01-30 12:51:12,2016-01-30 13:06:57,1,2.77,,,-73.98321533203125,40.67723846435547,-74.00624084472656,40.64728546142578,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-05 15:14:21,2016-01-05 15:31:21,1,1.59,,,-73.95655059814453,40.699012756347656,-73.96529388427734,40.71039962768555,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-10 01:09:06,2016-01-10 01:38:27,1,11.38,,,-73.89549255371094,40.85166549682617,-73.99276733398438,40.723602294921875,5,N,2,40.0,0.0,0.0,0,0.0,0.0,,40.0,2.0 +1,2016-01-16 21:44:37,2016-01-16 21:56:06,1,1.5,,,-73.98734283447266,40.69212341308594,-74.00411987304688,40.6847038269043,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-01 16:30:43,2016-01-01 16:35:37,5,1.1,,,-73.94298553466797,40.78965377807617,-73.95439910888672,40.77899169921875,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-02 16:11:31,2016-01-02 16:42:06,2,12.9,,,-73.94547271728516,40.822872161865234,-73.82828521728516,40.70936584472656,1,N,1,38.5,0.0,0.5,0.3,8.97,5.54,,53.81,1.0 +2,2016-01-17 17:49:28,2016-01-17 18:05:20,1,2.24,,,-73.9034194946289,40.74577713012695,-73.92328643798828,40.76588821411133,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,,14.76,1.0 +1,2016-01-02 13:01:33,2016-01-02 13:11:46,1,1.7,,,-73.95964813232422,40.691463470458984,-73.97228240966797,40.68589401245117,1,N,1,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-25 11:37:40,2016-01-25 11:50:41,1,3.4,,,-73.90143585205078,40.8579216003418,-73.84595489501953,40.8559455871582,1,N,1,13.0,0.0,0.5,0.3,4.0,0.0,,17.8,1.0 +2,2016-01-13 15:55:40,2016-01-13 16:04:39,1,1.86,,,-73.93151092529297,40.76529312133789,-73.91352844238281,40.781673431396484,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-08 21:29:16,2016-01-08 21:54:03,1,11.38,,,-73.7993392944336,40.703773498535156,-73.69520568847656,40.67487335205078,1,N,1,33.5,0.5,0.5,0.3,0.0,0.0,,34.8,1.0 +2,2016-01-15 19:21:51,2016-01-15 19:35:26,5,3.69,,,-73.84427642822266,40.72132110595703,-73.81951141357422,40.68650436401367,1,N,2,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-30 11:43:37,2016-01-30 12:02:43,1,6.5,,,-73.94731903076172,40.80116653442383,-73.98505401611328,40.73237991333008,1,N,1,21.5,0.0,0.5,0.3,6.65,0.0,,28.95,1.0 +2,2016-01-23 12:27:27,2016-01-23 12:42:23,1,2.8,,,-73.84427642822266,40.72139358520508,-73.88513946533203,40.71244430541992,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-11 08:07:15,2016-01-11 08:46:15,1,11.9,,,-73.93510437011719,40.62583541870117,-73.7899398803711,40.646942138671875,1,N,1,41.5,0.0,0.5,0.3,0.0,0.0,,42.3,1.0 +2,2016-01-26 21:33:32,2016-01-26 21:44:23,1,2.21,,,-73.95867156982422,40.65030288696289,-73.96168518066406,40.667686462402344,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-27 01:06:44,2016-01-27 01:29:27,1,9.0,,,-73.95626068115234,40.67319869995117,-73.97775268554688,40.74565124511719,1,N,1,27.5,0.5,0.5,0.3,0.0,0.0,,28.8,1.0 +2,2016-01-15 23:32:00,2016-01-15 23:47:19,1,6.4,,,-73.99732208251953,40.679439544677734,-73.94972229003906,40.7222785949707,1,N,1,19.5,0.5,0.5,0.3,5.2,0.0,,26.0,1.0 +2,2016-01-17 11:44:23,2016-01-17 11:50:06,1,0.99,,,-73.95574951171875,40.80122756958008,-73.95195007324219,40.81149673461914,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-10 17:18:57,2016-01-10 18:06:20,1,11.52,,,-73.96014404296875,40.685096740722656,-73.98179626464844,40.77889633178711,1,N,1,39.5,0.0,0.5,0.3,6.0,0.0,,46.3,1.0 +2,2016-01-09 23:36:47,2016-01-09 23:58:56,1,4.9,,,-73.98320007324219,40.672855377197266,-73.99830627441406,40.73525619506836,1,N,1,18.5,0.5,0.5,0.3,3.96,0.0,,23.76,1.0 +1,2016-01-19 22:00:54,2016-01-19 22:15:08,1,3.5,,,-73.92460632324219,40.761592864990234,-73.97135925292969,40.75676727294922,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-17 13:05:01,2016-01-17 13:13:22,1,1.6,,,-73.94302368164062,40.79383850097656,-73.95134735107422,40.80980682373047,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-12 00:07:15,2016-01-12 00:15:35,1,1.96,,,-73.92243194580078,40.75537109375,-73.94960021972656,40.74421310424805,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-28 11:33:52,2016-01-28 11:44:43,1,1.38,,,-73.88198852539062,40.88202667236328,-73.89654541015625,40.86709213256836,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-01 10:05:12,2016-01-01 10:30:28,1,14.3,,,-73.95675659179688,40.74799346923828,-73.77989196777344,40.76286315917969,1,N,1,41.5,0.0,0.5,0.3,8.45,0.0,,50.75,1.0 +2,2016-01-21 17:00:06,2016-01-21 17:04:53,5,0.72,,,-73.95601654052734,40.80366516113281,-73.96622467041016,40.80413818359375,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,,8.76,1.0 +1,2016-01-13 20:18:38,2016-01-13 20:57:58,1,17.5,,,-73.8663330078125,40.84524917602539,-73.986328125,40.69206237792969,1,N,2,48.5,0.5,0.5,0.3,0.0,0.0,,49.8,1.0 +2,2016-01-22 20:18:47,2016-01-22 20:24:49,1,0.67,,,-73.95218658447266,40.82379150390625,-73.94226837158203,40.82323455810547,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-27 11:20:49,2016-01-27 11:26:21,1,1.49,,,-73.9814682006836,40.66678237915039,-73.97306823730469,40.65095520019531,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-30 11:04:44,2016-01-30 11:11:26,1,1.66,,,-73.9496078491211,40.714054107666016,-73.9595718383789,40.69549560546875,1,N,1,7.5,0.0,0.5,0.3,2.49,0.0,,10.79,1.0 +2,2016-01-28 09:37:26,2016-01-28 09:49:12,1,3.37,,,-73.83038330078125,40.75960159301758,-73.81233978271484,40.79123306274414,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-29 15:58:09,2016-01-29 16:00:55,1,0.54,,,-73.95757293701172,40.7180061340332,-73.95088958740234,40.72370147705078,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-14 17:07:42,2016-01-14 17:13:24,1,1.01,,,-73.95384216308594,40.787208557128906,-73.96830749511719,40.79170227050781,1,N,1,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-02 15:01:29,2016-01-02 15:06:58,1,0.75,,,-73.86203002929688,40.73042678833008,-73.87116241455078,40.73401641845703,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-04 07:48:15,2016-01-04 08:08:22,1,2.5,,,-73.9390640258789,40.80547332763672,-73.96137237548828,40.7745361328125,1,N,1,14.0,0.0,0.5,0.3,2.95,0.0,,17.75,1.0 +2,2016-01-01 01:58:56,2016-01-01 02:07:45,1,2.01,,,-73.96300506591797,40.71174621582031,-73.94774627685547,40.694828033447266,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-22 18:56:46,2016-01-22 19:49:14,1,15.19,,,-73.9571762084961,40.71849060058594,-73.79013061523438,40.64362716674805,1,N,2,48.0,1.0,0.5,0.3,0.0,0.0,,49.8,1.0 +2,2016-01-16 17:39:58,2016-01-16 17:55:19,1,2.94,,,-73.9542236328125,40.821327209472656,-73.97935485839844,40.7837028503418,1,N,1,13.0,0.0,0.5,0.3,2.2,0.0,,16.0,1.0 +2,2016-01-09 23:59:15,2016-01-10 00:01:42,1,0.29,,,-73.91937255859375,40.75857925415039,-73.92235565185547,40.7548713684082,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-11 22:57:51,2016-01-11 23:13:00,1,3.63,,,-73.99324798583984,40.692562103271484,-73.98025512695312,40.65703201293945,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-03 07:46:45,2016-01-03 08:00:09,1,4.32,,,-73.92139434814453,40.76674270629883,-73.97806549072266,40.75282287597656,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-19 22:14:22,2016-01-19 22:47:24,5,11.97,,,-73.95217895507812,40.78963088989258,-73.95415496826172,40.68435287475586,1,N,2,37.0,0.5,0.5,0.3,0.0,0.0,,38.3,1.0 +2,2016-01-28 11:15:38,2016-01-28 11:21:47,1,0.97,,,-73.8074951171875,40.69999313354492,-73.79633331298828,40.6895637512207,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-03 00:59:56,2016-01-03 01:07:20,5,1.25,,,-73.90322875976562,40.74592971801758,-73.92076873779297,40.74143981933594,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,,10.38,1.0 +2,2016-01-01 09:31:24,2016-01-01 09:55:43,1,5.68,,,-73.95018005371094,40.69981384277344,-73.95496368408203,40.62374496459961,1,N,2,21.0,0.0,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-15 22:58:48,2016-01-15 23:10:45,1,5.54,,,-73.94692993164062,40.79711151123047,-73.91858673095703,40.86494064331055,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-14 12:16:25,2016-01-14 13:00:03,1,14.52,,,-73.89657592773438,40.851802825927734,-73.99256134033203,40.71503448486328,1,N,1,45.0,0.0,0.5,0.3,0.0,0.0,,45.8,1.0 +2,2016-01-19 07:26:32,2016-01-19 07:35:27,1,1.46,,,-73.95045471191406,40.8262825012207,-73.93901062011719,40.844261169433594,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-06 20:47:30,2016-01-06 20:55:23,1,1.75,,,-73.9390869140625,40.8052864074707,-73.9532241821289,40.78273010253906,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-27 01:01:07,2016-01-27 01:07:51,1,3.1,,,-73.83018493652344,40.713722229003906,-73.81043243408203,40.678836822509766,1,N,1,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-03 20:17:24,2016-01-03 20:28:55,1,2.88,,,-73.94509887695312,40.80815887451172,-73.974853515625,40.78274154663086,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,,15.36,1.0 +2,2016-01-09 00:54:12,2016-01-09 01:02:38,1,2.3,,,-73.96190643310547,40.71586990356445,-73.99006652832031,40.719417572021484,1,N,1,9.5,0.5,0.5,0.3,1.0,0.0,,11.8,1.0 +1,2016-01-11 18:31:09,2016-01-11 18:49:35,1,2.3,,,-73.94940185546875,40.68044662475586,-73.95066833496094,40.6541862487793,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-17 19:18:39,2016-01-17 19:25:31,1,1.08,,,-73.94491577148438,40.80852127075195,-73.96025848388672,40.817466735839844,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-09 12:54:49,2016-01-09 13:14:25,1,7.08,,,-73.98426818847656,40.69612121582031,-73.98102569580078,40.75558853149414,1,N,1,23.0,0.0,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-29 14:07:25,2016-01-29 14:10:19,1,0.52,,,-73.96440124511719,40.8075065612793,-73.96720886230469,40.8010139465332,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,,6.0,1.0 +2,2016-01-16 21:21:13,2016-01-16 21:29:21,1,1.42,,,-73.97931671142578,40.688228607177734,-74.0000228881836,40.69188690185547,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-27 11:19:49,2016-01-27 11:28:19,1,4.46,,,-73.82684326171875,40.71272659301758,-73.83143615722656,40.76331329345703,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-10 09:30:00,2016-01-10 09:32:45,1,0.41,,,-73.92137908935547,40.76669692993164,-73.91500854492188,40.76388931274414,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-29 20:41:13,2016-01-29 20:49:27,1,1.5,,,-73.92484283447266,40.75583267211914,-73.90186309814453,40.75104522705078,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,,11.15,1.0 +2,2016-01-07 19:26:17,2016-01-07 19:32:26,1,0.77,,,-73.96492004394531,40.68316650390625,-73.96931457519531,40.680419921875,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 19:30:11,2016-01-01 19:38:56,1,1.99,,,-73.88737487792969,40.755401611328125,-73.92375183105469,40.754478454589844,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-06 00:11:22,2016-01-06 00:14:52,1,0.82,,,-73.99079132080078,40.69255065917969,-73.99956512451172,40.68717956542969,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-03 20:11:28,2016-01-03 20:13:44,1,0.48,,,-73.95557403564453,40.804176330566406,-73.96050262451172,40.799835205078125,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-30 21:48:39,2016-01-30 21:56:18,1,0.84,,,-73.95629119873047,40.71416473388672,-73.9469223022461,40.711341857910156,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-20 07:27:50,2016-01-20 07:46:21,1,10.75,,,-74.0184326171875,40.64069747924805,-73.93971252441406,40.58980941772461,1,N,1,29.5,0.0,0.5,0.3,6.06,0.0,,36.36,1.0 +1,2016-01-07 09:37:01,2016-01-07 09:43:51,1,1.5,,,-73.97611236572266,40.687042236328125,-73.98905944824219,40.70158767700195,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,,9.75,1.0 +2,2016-01-16 01:34:24,2016-01-16 01:53:19,1,3.32,,,-73.95111846923828,40.711490631103516,-73.9964599609375,40.72539138793945,1,N,1,15.0,0.5,0.5,0.3,3.0,0.0,,19.3,1.0 +2,2016-01-05 07:17:35,2016-01-05 07:30:19,1,2.6,,,-73.93946838378906,40.821346282958984,-73.95394897460938,40.790428161621094,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-28 19:13:19,2016-01-28 19:27:00,1,2.63,,,-73.93607330322266,40.803802490234375,-73.9469223022461,40.82834243774414,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-28 14:41:58,2016-01-28 14:52:19,1,1.1,,,-73.86959838867188,40.748985290527344,-73.86520385742188,40.73515319824219,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-05 14:03:46,2016-01-05 14:14:02,1,2.5,,,-73.94470977783203,40.808963775634766,-73.9222640991211,40.827205657958984,1,N,1,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-28 16:43:21,2016-01-28 16:56:09,1,1.52,,,-73.88031005859375,40.741268157958984,-73.8603515625,40.735992431640625,1,N,1,9.5,1.0,0.5,0.3,2.26,0.0,,13.56,1.0 +1,2016-01-10 17:09:20,2016-01-10 17:22:24,1,2.5,,,-73.97900390625,40.683876037597656,-73.95317077636719,40.6989631652832,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,,13.55,1.0 +2,2016-01-06 08:14:39,2016-01-06 08:26:01,1,1.0,,,-73.97602844238281,40.69341278076172,-73.990966796875,40.6916618347168,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-06 13:29:16,2016-01-06 13:41:02,1,2.21,,,-73.93958282470703,40.75065231323242,-73.91932678222656,40.746742248535156,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-15 17:53:00,2016-01-15 18:01:09,1,0.95,,,-73.82874298095703,40.713226318359375,-73.8296890258789,40.70393753051758,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-15 23:08:34,2016-01-15 23:31:08,1,4.31,,,-73.96165466308594,40.718441009521484,-73.99641418457031,40.73789596557617,1,N,1,18.0,0.5,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-01 01:05:37,2016-01-02 00:00:00,1,1.88,,,-73.92522430419922,40.758140563964844,-73.9032211303711,40.74555206298828,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-02 10:08:26,2016-01-02 10:14:20,1,1.01,,,-73.91954803466797,40.76602554321289,-73.93319702148438,40.766876220703125,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-15 18:47:52,2016-01-15 18:56:51,1,1.64,,,-73.9451904296875,40.71664047241211,-73.96797180175781,40.710845947265625,1,N,1,8.5,1.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-25 15:01:57,2016-01-25 15:11:17,1,1.21,,,-73.93213653564453,40.757694244384766,-73.9150161743164,40.756988525390625,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-13 03:55:09,2016-01-13 04:04:08,1,3.06,,,-73.96221923828125,40.80495834350586,-73.9859390258789,40.76984786987305,1,N,1,10.5,0.5,0.5,0.3,1.0,0.0,,12.8,1.0 +1,2016-01-14 01:09:47,2016-01-14 01:09:53,1,0.8,,,-73.88959503173828,40.83625030517578,-73.88919067382812,40.8365592956543,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-30 19:52:49,2016-01-30 20:02:47,1,2.1,,,-73.94992065429688,40.71700668334961,-73.95243835449219,40.69487762451172,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-01 00:30:58,2016-01-01 00:38:29,1,1.09,,,-73.95896911621094,40.650333404541016,-73.94078063964844,40.65312194824219,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-12 17:53:57,2016-01-12 18:07:53,1,2.5,,,-73.84434509277344,40.72132873535156,-73.88412475585938,40.70548629760742,1,N,1,11.0,1.0,0.5,0.3,3.84,0.0,,16.64,1.0 +2,2016-01-11 08:00:32,2016-01-11 08:40:10,1,5.38,,,-73.9549331665039,40.73396682739258,-73.98458862304688,40.73687744140625,1,N,1,26.5,0.0,0.5,0.3,5.46,0.0,,32.76,1.0 +1,2016-01-07 13:04:23,2016-01-07 13:20:07,1,2.1,,,-73.98838806152344,40.66987228393555,-73.96428680419922,40.68462371826172,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-09 15:33:49,2016-01-09 15:45:29,1,1.91,,,-73.98515319824219,40.66257095336914,-73.97917175292969,40.684715270996094,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-10 04:31:29,2016-01-10 04:35:50,1,0.04,,,-73.86278533935547,40.749942779541016,-73.86479187011719,40.74974060058594,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-15 22:06:44,2016-01-15 22:11:31,2,0.6,,,-73.9560546875,40.71697998046875,-73.95719909667969,40.72210693359375,1,Y,1,5.0,0.5,0.5,0.3,1.85,0.0,,8.15,1.0 +2,2016-01-13 23:05:30,2016-01-13 23:14:22,2,1.87,,,-73.97876739501953,40.678924560546875,-73.9961166381836,40.69447326660156,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-03 04:10:43,2016-01-03 04:16:44,1,1.18,,,-73.96097564697266,40.71894454956055,-73.9508056640625,40.70838165283203,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-11 10:53:31,2016-01-11 10:56:05,1,0.5,,,-73.96149444580078,40.80216979980469,-73.9555892944336,40.80450439453125,1,N,1,4.0,0.0,0.5,0.3,1.4,0.0,,6.2,1.0 +2,2016-01-30 23:36:34,2016-01-30 23:37:13,1,0.0,,,-73.91098022460938,40.76878356933594,-73.90808868408203,40.768428802490234,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-16 11:59:34,2016-01-16 12:03:39,1,0.51,,,-73.95032501220703,40.80988693237305,-73.95733642578125,40.814762115478516,1,N,1,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-08 19:17:20,2016-01-08 19:20:58,1,0.45,,,-73.94198608398438,40.798828125,-73.94966888427734,40.80194854736328,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-21 08:11:46,2016-01-21 08:18:34,1,0.58,,,-73.94700622558594,40.7968635559082,-73.94742584228516,40.803775787353516,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-13 19:23:59,2016-01-13 19:41:43,1,3.63,,,-73.95528411865234,40.71824645996094,-73.97466278076172,40.68324661254883,1,N,1,15.0,1.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-20 16:21:26,2016-01-20 16:36:29,3,1.42,,,-73.9742431640625,40.68620681762695,-73.95048522949219,40.68397521972656,1,N,1,10.5,1.0,0.5,0.3,1.0,0.0,,13.3,1.0 +2,2016-01-10 18:33:53,2016-01-10 18:38:20,1,0.48,,,-73.88077545166016,40.7481689453125,-73.88623809814453,40.74454116821289,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-26 22:24:32,2016-01-26 22:29:56,1,1.01,,,-73.91034698486328,40.7758674621582,-73.89537048339844,40.7683219909668,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-09 16:40:22,2016-01-09 16:49:01,6,0.66,,,-73.99436950683594,40.68558120727539,-73.98709106445312,40.68768310546875,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-21 19:08:39,2016-01-21 19:13:18,1,0.88,,,-73.94308471679688,40.823280334472656,-73.94068908691406,40.814476013183594,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-14 10:12:36,2016-01-14 10:15:22,1,0.68,,,-73.95689392089844,40.74832534790039,-73.95439910888672,40.74274826049805,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-05 18:05:50,2016-01-05 18:34:08,1,6.94,,,-73.99066925048828,40.70268630981445,-73.96904754638672,40.759117126464844,1,N,1,26.5,1.0,0.5,0.3,5.66,0.0,,33.96,1.0 +2,2016-01-25 05:49:23,2016-01-25 06:16:11,1,4.72,,,-73.92122650146484,40.7668342590332,-73.9811782836914,40.74982833862305,1,N,1,19.0,0.5,0.5,0.3,4.06,0.0,,24.36,1.0 +2,2016-01-15 22:16:48,2016-01-15 22:29:39,1,2.02,,,-73.93921661376953,40.842281341552734,-73.91962432861328,40.86471176147461,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-14 08:50:57,2016-01-14 08:52:32,1,0.34,,,-73.94647979736328,40.80624771118164,-73.94660186767578,40.81150436401367,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-05 17:07:34,2016-01-05 17:19:40,1,1.36,,,-73.9829330444336,40.69211959838867,-73.98123168945312,40.68632125854492,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-09 14:08:08,2016-01-09 14:31:08,1,2.64,,,-73.91352081298828,40.765403747558594,-73.88288116455078,40.743011474609375,1,N,1,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-02 11:22:18,2016-01-02 11:25:29,1,0.59,,,-73.94499206542969,40.832489013671875,-73.94851684570312,40.82665252685547,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-15 13:46:57,2016-01-15 14:13:55,1,7.66,,,-73.9424057006836,40.841407775878906,-73.95448303222656,40.76590347290039,1,N,1,26.5,0.0,0.5,0.3,5.46,0.0,,32.76,1.0 +2,2016-01-30 13:20:15,2016-01-30 13:48:22,1,4.26,,,-73.97422790527344,40.676536560058594,-73.99842071533203,40.729583740234375,1,N,1,21.0,0.0,0.5,0.3,4.36,0.0,,26.16,1.0 +2,2016-01-15 23:17:41,2016-01-15 23:27:42,1,2.59,,,-73.9679946899414,40.69328689575195,-73.93742370605469,40.679954528808594,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-21 19:58:00,2016-01-21 20:03:58,1,0.87,,,-73.94000244140625,40.84120559692383,-73.94502258300781,40.83491134643555,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-09 01:47:36,2016-01-09 02:10:06,1,5.6,,,-73.9450912475586,40.80839538574219,-73.91121673583984,40.76216506958008,1,N,1,21.5,0.5,0.5,0.3,3.0,5.54,,31.34,1.0 +2,2016-01-14 14:02:33,2016-01-14 14:12:57,3,2.01,,,-73.95052337646484,40.68048858642578,-73.92997741699219,40.690853118896484,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-08 01:44:10,2016-01-08 01:58:43,2,4.74,,,-73.90233612060547,40.868770599365234,-73.93802642822266,40.84701156616211,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-04 09:00:15,2016-01-04 09:03:03,5,0.46,,,-73.98113250732422,40.67176818847656,-73.98553466796875,40.66615676879883,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-13 11:27:14,2016-01-13 11:33:52,1,1.5,,,-73.94113159179688,40.81399917602539,-73.93339538574219,40.79882049560547,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,,8.8,1.0 +2,2016-01-03 22:17:42,2016-01-03 22:32:43,1,5.99,,,-73.93802642822266,40.84756851196289,-73.96038818359375,40.799278259277344,1,N,1,19.5,0.5,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-11 22:15:11,2016-01-11 22:28:15,2,2.22,,,-73.9625015258789,40.71006774902344,-73.97080993652344,40.69321060180664,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-25 18:58:26,2016-01-25 19:04:21,1,0.78,,,-73.85481262207031,40.70273971557617,-73.86674499511719,40.70457458496094,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-23 03:19:59,2016-01-23 03:27:26,1,1.71,,,-73.99234771728516,40.68971633911133,-73.96248626708984,40.68684387207031,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-22 22:43:20,2016-01-22 22:59:58,1,2.9,,,-73.95738220214844,40.68148422241211,-73.92935180664062,40.69691467285156,1,Y,1,12.5,0.5,0.5,0.3,2.0,0.0,,15.8,1.0 +2,2016-01-27 17:24:26,2016-01-27 17:39:09,1,1.42,,,-73.95113372802734,40.79115295410156,-73.93708038330078,40.79756546020508,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-29 18:57:00,2016-01-29 19:03:55,1,1.07,,,-73.9942398071289,40.69037628173828,-73.98475646972656,40.700748443603516,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-01 00:36:22,2016-01-01 00:47:05,1,1.58,,,-73.9685287475586,40.693180084228516,-73.95413208007812,40.70796203613281,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-13 20:42:48,2016-01-13 20:46:34,1,0.93,,,-74.02865600585938,40.622947692871094,-74.01547241210938,40.61945343017578,1,N,1,5.5,0.5,0.5,0.3,3.0,0.0,,9.8,1.0 +2,2016-01-22 19:02:11,2016-01-23 18:41:58,1,9.73,,,-73.86383819580078,40.73290252685547,-73.75137329101562,40.663795471191406,1,N,2,34.5,1.0,0.5,0.3,0.0,0.0,,36.3,1.0 +2,2016-01-08 18:00:22,2016-01-08 18:06:27,1,0.77,,,-73.9369125366211,40.802337646484375,-73.94187927246094,40.80958557128906,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-15 20:50:40,2016-01-15 20:53:51,1,0.46,,,-73.99095916748047,40.69232177734375,-73.99486541748047,40.68440628051758,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-11 17:38:20,2016-01-11 17:49:20,1,1.91,,,-73.84718322753906,40.837093353271484,-73.8796157836914,40.831199645996094,5,N,2,8.0,0.0,0.0,0,0.0,0.0,,8.0,2.0 +1,2016-01-30 22:19:23,2016-01-30 22:30:29,1,1.9,,,-73.884521484375,40.74729919433594,-73.86107635498047,40.75815200805664,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-02 01:28:28,2016-01-02 01:39:14,1,2.97,,,-73.95809936523438,40.67087936401367,-73.94324493408203,40.655006408691406,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-27 17:25:39,2016-01-27 17:31:47,1,1.27,,,-73.95033264160156,40.792476654052734,-73.93673706054688,40.803226470947266,1,N,1,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-22 16:08:28,2016-01-22 16:22:19,3,1.43,,,-73.96038055419922,40.80142593383789,-73.93814849853516,40.797157287597656,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-07 10:03:27,2016-01-07 10:31:34,1,6.59,,,-73.95186614990234,40.80915832519531,-73.99503326416016,40.75001525878906,1,N,1,24.5,0.0,0.5,0.3,6.32,0.0,,31.62,1.0 +2,2016-01-25 23:15:55,2016-01-25 23:20:54,1,0.97,,,-73.80742645263672,40.69926834106445,-73.79450988769531,40.693397521972656,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-08 22:04:10,2016-01-08 22:14:21,1,2.28,,,-73.94505310058594,40.808101654052734,-73.94709777832031,40.78410339355469,1,N,1,10.0,0.5,0.5,0.3,1.0,0.0,,12.3,1.0 +2,2016-01-22 00:02:30,2016-01-22 00:07:25,1,1.05,,,-73.93301391601562,40.670658111572266,-73.92621612548828,40.68002700805664,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 02:15:27,2016-01-22 02:21:03,1,1.01,,,-73.95123291015625,40.81000518798828,-73.94738006591797,40.79945373535156,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-04 10:49:58,2016-01-04 10:52:54,1,0.49,,,-73.92535400390625,40.768798828125,-73.93146514892578,40.774085998535156,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-22 19:43:50,2016-01-22 19:53:00,1,1.64,,,-73.94183349609375,40.822723388671875,-73.91584777832031,40.8134765625,1,N,1,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-10 14:58:02,2016-01-10 15:05:37,1,1.2,,,-73.92132568359375,40.766666412353516,-73.90677642822266,40.77939987182617,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-18 16:18:01,2016-01-18 16:24:55,2,1.57,,,-73.9151382446289,40.76382827758789,-73.93204498291016,40.77371597290039,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-08 01:11:33,2016-01-08 01:17:24,1,0.92,,,-73.95303344726562,40.788387298583984,-73.94678497314453,40.78169631958008,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-29 18:28:30,2016-01-29 18:30:16,1,0.27,,,-73.87757873535156,40.754638671875,-73.87688446044922,40.750492095947266,1,N,2,3.0,1.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-30 21:55:51,2016-01-30 22:03:32,1,2.0,,,-73.9600830078125,40.81382369995117,-73.96890258789062,40.79088592529297,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,,10.8,1.0 +2,2016-01-09 19:03:49,2016-01-09 19:08:52,5,0.75,,,-73.98058319091797,40.676490783691406,-73.99024963378906,40.672000885009766,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-07 19:09:11,2016-01-07 19:14:14,2,0.9,,,-73.86178588867188,40.73053741455078,-73.86028289794922,40.73830795288086,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-14 18:43:59,2016-01-14 18:47:57,2,0.56,,,-73.95853424072266,40.71746063232422,-73.96593475341797,40.716331481933594,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-25 00:25:25,2016-01-25 00:41:23,1,2.34,,,-73.94032287597656,40.84050369262695,-73.95836639404297,40.813148498535156,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-06 03:50:03,2016-01-06 04:09:04,1,7.84,,,-73.93151092529297,40.69748306274414,-73.91351318359375,40.76314163208008,1,N,2,24.5,0.5,0.5,0.3,0.0,0.0,,25.8,1.0 +2,2016-01-02 11:20:55,2016-01-02 11:22:47,1,0.46,,,-73.91132354736328,40.678321838378906,-73.91993713378906,40.67880630493164,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-26 20:51:57,2016-01-26 21:00:53,1,1.84,,,-73.94241333007812,40.816978454589844,-73.94259643554688,40.837379455566406,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-21 07:19:31,2016-01-21 07:33:50,2,1.47,,,-73.9294204711914,40.81275939941406,-73.95055389404297,40.810848236083984,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-30 08:31:05,2016-01-30 08:53:31,1,5.4,,,-73.93684387207031,40.848846435546875,-73.9120864868164,40.85916519165039,1,Y,2,20.5,0.0,0.5,0.3,0.0,0.0,,21.3,1.0 +1,2016-01-22 08:05:13,2016-01-22 08:41:09,1,8.2,,,-73.97635650634766,40.673072814941406,-73.97265625,40.7527961730957,1,N,1,30.5,0.0,0.5,0.3,2.7,0.0,,34.0,1.0 +1,2016-01-01 02:26:35,2016-01-01 02:48:51,1,8.4,,,-73.84441375732422,40.72138595581055,-73.91582489013672,40.760765075683594,1,N,1,26.5,0.5,0.5,0.3,7.0,0.0,,34.8,1.0 +2,2016-01-12 07:34:30,2016-01-12 07:47:53,1,2.18,,,-73.95557403564453,40.6690673828125,-73.93635559082031,40.688629150390625,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-22 00:27:04,2016-01-22 00:38:50,1,2.1,,,-73.95270538330078,40.742557525634766,-73.92426300048828,40.761348724365234,1,N,1,10.5,0.5,0.5,0.3,2.0,0.0,,13.8,1.0 +2,2016-01-11 23:50:33,2016-01-11 23:56:53,1,2.08,,,-73.97769927978516,40.684783935546875,-73.94414520263672,40.69142532348633,1,N,1,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-10 12:18:42,2016-01-10 12:35:48,1,3.41,,,-73.90343475341797,40.74586868286133,-73.87842559814453,40.71288299560547,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-18 22:54:53,2016-01-18 23:05:09,1,1.9,,,-73.94742584228516,40.830387115478516,-73.9207992553711,40.83450698852539,1,N,1,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-05 14:12:19,2016-01-05 14:17:22,1,0.91,,,-73.93460845947266,40.766822814941406,-73.92855834960938,40.758209228515625,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-06 18:50:12,2016-01-06 18:57:22,1,1.16,,,-73.95606994628906,40.8033561706543,-73.96934509277344,40.79728698730469,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-10 16:36:47,2016-01-10 16:43:00,1,0.89,,,-73.98551177978516,40.69609069824219,-73.99309539794922,40.68772888183594,1,N,1,6.0,0.0,0.5,0.3,2.04,0.0,,8.84,1.0 +2,2016-01-30 03:54:49,2016-01-30 04:12:28,1,3.43,,,-73.96446990966797,40.68302917480469,-73.91597747802734,40.70401382446289,1,N,1,14.5,0.5,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-16 17:48:03,2016-01-16 18:12:38,1,9.1,,,-73.95284271240234,40.81083679199219,-73.98593139648438,40.71574020385742,1,N,2,28.0,0.0,0.5,0.3,0.0,0.0,,28.8,1.0 +2,2016-01-02 18:59:01,2016-01-02 19:06:29,1,1.15,,,-73.95951843261719,40.71900939941406,-73.94916534423828,40.710426330566406,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-30 18:21:49,2016-01-30 18:36:08,1,2.16,,,-73.9531478881836,40.7454719543457,-73.92313385009766,40.75927734375,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-17 16:05:13,2016-01-17 16:16:05,1,2.33,,,-73.99083709716797,40.70254135131836,-74.01455688476562,40.71528625488281,1,N,1,10.0,0.0,0.5,0.3,2.7,0.0,,13.5,1.0 +1,2016-01-19 11:32:45,2016-01-19 11:41:03,1,1.6,,,-73.95480346679688,40.5860595703125,-73.93819427490234,40.57835388183594,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-20 20:29:33,2016-01-20 20:36:35,1,1.21,,,-73.90333557128906,40.745941162109375,-73.89080047607422,40.75404357910156,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-01 04:47:33,2016-01-01 05:14:12,2,8.45,,,-73.95502471923828,40.68104934692383,-73.99115753173828,40.75135803222656,1,N,1,27.0,0.5,0.5,0.3,5.66,0.0,,33.96,1.0 +2,2016-01-15 23:42:49,2016-01-16 00:06:39,1,7.17,,,-73.94339752197266,40.80765151977539,-73.88160705566406,40.75027084350586,1,N,1,24.0,0.5,0.5,0.3,0.0,5.54,,30.84,1.0 +2,2016-01-24 20:29:29,2016-01-24 20:47:24,1,9.66,,,-73.98961639404297,40.70323181152344,-73.91968536376953,40.7677116394043,1,N,1,27.5,0.5,0.5,0.3,5.76,0.0,,34.56,1.0 +2,2016-01-08 19:12:10,2016-01-08 19:16:57,1,1.0,,,-73.96109008789062,40.71464157104492,-73.95074462890625,40.721832275390625,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-09 22:01:43,2016-01-09 22:05:28,1,0.59,,,-73.87276458740234,40.84101104736328,-73.86618041992188,40.83659744262695,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-22 19:17:58,2016-01-22 19:29:17,1,2.49,,,-73.93698120117188,40.79806137084961,-73.9600601196289,40.770263671875,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-15 18:00:49,2016-01-15 18:27:37,1,3.79,,,-73.83007049560547,40.71320724487305,-73.82099914550781,40.670448303222656,1,N,2,18.5,1.0,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-27 15:26:14,2016-01-27 15:49:49,2,3.09,,,-73.90312194824219,40.7458381652832,-73.90314483642578,40.745750427246094,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-08 23:08:01,2016-01-08 23:14:09,1,0.96,,,-73.98211669921875,40.67898178100586,-73.99376678466797,40.68244552612305,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-12 12:09:05,2016-01-12 12:13:29,1,0.99,,,-73.94762420654297,40.8028564453125,-73.93695831298828,40.80998611450195,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-29 14:49:54,2016-01-29 15:08:28,3,4.1,,,-73.9325942993164,40.74457931518555,-73.85608673095703,40.73265075683594,1,N,4,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-19 09:38:15,2016-01-19 09:51:13,1,4.29,,,-73.95367431640625,40.78779220581055,-73.9876708984375,40.7696533203125,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-20 18:27:06,2016-01-20 18:29:22,1,0.38,,,-73.9529037475586,40.8104362487793,-73.95844268798828,40.81056213378906,1,N,1,3.5,1.0,0.5,0.3,1.0,0.0,,6.3,1.0 +2,2016-01-08 03:44:56,2016-01-08 04:03:22,1,5.21,,,-73.99202728271484,40.66254806518555,-74.01129150390625,40.7134895324707,1,N,1,18.5,0.5,0.5,0.3,5.0,0.0,,24.8,1.0 +1,2016-01-04 19:43:09,2016-01-04 19:49:43,1,1.2,,,-73.96968841552734,40.67601013183594,-73.9590072631836,40.67658615112305,1,N,1,6.5,0.5,0.5,0.3,1.55,0.0,,9.35,1.0 +2,2016-01-23 00:04:51,2016-01-23 00:24:44,1,3.63,,,-73.95855712890625,40.72123718261719,-73.97911071777344,40.731040954589844,1,N,1,15.0,0.5,0.5,0.3,3.26,0.0,,19.56,1.0 +2,2016-01-26 21:32:08,2016-01-26 21:42:26,6,1.45,,,-73.92083740234375,40.76874923706055,-73.9347915649414,40.7520637512207,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-03 09:45:09,2016-01-03 10:10:55,1,12.01,,,-73.87782287597656,40.756431579589844,-73.98397827148438,40.664024353027344,1,N,2,35.0,0.0,0.5,0.3,0.0,0.0,,35.8,1.0 +1,2016-01-17 17:42:59,2016-01-17 17:49:27,1,1.1,,,-73.9578857421875,40.72193908691406,-73.94676971435547,40.717899322509766,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,,8.15,1.0 +2,2016-01-29 18:18:10,2016-01-29 18:23:01,1,0.96,,,-73.96003723144531,40.81360626220703,-73.96810150146484,40.80131149291992,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-20 19:27:07,2016-01-20 19:52:21,1,5.0,,,-73.98110961914062,40.66737747192383,-73.91720581054688,40.70282745361328,1,N,2,19.5,1.0,0.5,0.3,0.0,0.0,,21.3,1.0 +1,2016-01-01 14:03:11,2016-01-01 14:11:24,1,2.6,,,-73.91195678710938,40.77509689331055,-73.90311431884766,40.74631881713867,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,,12.95,1.0 +2,2016-01-03 13:47:06,2016-01-03 13:49:49,6,0.51,,,-73.95067596435547,40.785789489746094,-73.95608520507812,40.77973937988281,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-08 22:24:44,2016-01-08 22:45:44,1,5.84,,,-73.94889068603516,40.81542205810547,-73.97810363769531,40.763946533203125,1,N,1,21.5,0.5,0.5,0.3,4.56,0.0,,27.36,1.0 +2,2016-01-27 16:27:45,2016-01-27 16:39:29,1,4.67,,,-74.02131652832031,40.63274383544922,-74.00241088867188,40.677162170410156,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,,16.3,1.0 +1,2016-01-10 01:57:59,2016-01-10 02:10:38,1,2.8,,,-73.95521545410156,40.804691314697266,-73.94156646728516,40.83848571777344,1,N,4,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-11 00:56:14,2016-01-11 01:08:55,1,1.62,,,-73.79822540283203,40.704193115234375,-73.82536315917969,40.70034408569336,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-16 20:24:09,2016-01-16 20:41:46,1,4.09,,,-73.99227905273438,40.689876556396484,-73.9597396850586,40.72016143798828,1,N,1,16.0,0.5,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-06 18:59:35,2016-01-06 19:00:57,1,0.3,,,-73.9402084350586,40.78949737548828,-73.93692016601562,40.79246520996094,1,N,2,3.0,1.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-20 18:33:37,2016-01-20 18:44:08,1,1.7,,,-73.96206665039062,40.80535888671875,-73.9390869140625,40.805118560791016,1,Y,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-02 20:34:05,2016-01-02 20:42:26,1,1.75,,,-73.9461669921875,40.82325744628906,-73.95620727539062,40.803321838378906,1,N,1,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-16 21:53:23,2016-01-16 21:55:32,1,0.2,,,-73.95425415039062,40.73005294799805,-73.9527816772461,40.72724533081055,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-04 12:08:51,2016-01-04 12:10:17,1,0.1,,,-73.9486083984375,40.80907440185547,-73.95054626464844,40.809932708740234,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-17 11:38:23,2016-01-17 11:42:44,1,1.47,,,-73.94593048095703,40.74580764770508,-73.94927978515625,40.72638702392578,1,N,1,6.5,0.0,0.5,0.3,1.82,0.0,,9.12,1.0 +1,2016-01-14 10:57:39,2016-01-14 11:00:01,1,0.8,,,-73.94332122802734,40.78532409667969,-73.93531036376953,40.794349670410156,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-02 07:44:39,2016-01-02 07:56:34,1,4.98,,,-73.94186401367188,40.84183883666992,-73.97490692138672,40.790557861328125,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-28 15:01:25,2016-01-28 15:10:25,1,0.53,,,-73.9565658569336,40.71696472167969,-73.96440887451172,40.71739196777344,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-13 21:40:26,2016-01-13 21:42:22,5,0.7,,,-73.99889373779297,40.68089294433594,-73.99435424804688,40.690067291259766,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,,6.36,1.0 +1,2016-01-15 21:55:52,2016-01-15 22:04:31,1,2.3,,,-73.99176025390625,40.690650939941406,-73.99625396728516,40.71638870239258,1,N,1,10.0,0.5,0.5,0.3,1.0,0.0,,12.3,1.0 +1,2016-01-30 18:43:07,2016-01-30 18:45:06,3,0.5,,,-73.94962310791016,40.80209732055664,-73.94453430175781,40.80888748168945,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-09 12:02:05,2016-01-09 12:19:39,1,5.17,,,-73.8839340209961,40.74794387817383,-73.94960021972656,40.71108627319336,1,N,1,18.0,0.0,0.5,0.3,3.76,0.0,,22.56,1.0 +2,2016-01-21 10:34:46,2016-01-21 10:44:00,1,1.84,,,-73.94725036621094,40.805572509765625,-73.94598388671875,40.785560607910156,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +1,2016-01-02 10:11:37,2016-01-02 10:15:17,1,1.2,,,-73.94208526611328,40.79125213623047,-73.95243072509766,40.776763916015625,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-15 00:54:47,2016-01-15 01:00:48,1,1.41,,,-73.95805358886719,40.72182846069336,-73.9560317993164,40.7358283996582,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,,10.38,1.0 +1,2016-01-22 08:29:11,2016-01-22 08:47:41,1,3.4,,,-73.83552551269531,40.69782257080078,-73.86959838867188,40.724266052246094,5,N,2,12.0,0.0,0.0,0,0.0,0.0,,12.0,2.0 +1,2016-01-07 15:52:11,2016-01-07 16:07:35,1,4.8,,,-73.93568420410156,40.803932189941406,-73.92217254638672,40.86546325683594,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-06 20:54:51,2016-01-06 20:58:53,1,1.03,,,-73.95077514648438,40.66208267211914,-73.9394760131836,40.65496826171875,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-06 10:55:07,2016-01-06 11:51:00,1,7.14,,,-73.99986267089844,40.683597564697266,-73.97328186035156,40.75861358642578,1,N,1,35.5,0.0,0.5,0.3,7.26,0.0,,43.56,1.0 +2,2016-01-09 07:54:42,2016-01-09 07:54:48,1,0.0,,,-73.86580657958984,40.85060119628906,-73.86583709716797,40.8505973815918,5,N,1,11.0,0.0,0.0,0,0.0,0.0,,11.0,2.0 +2,2016-01-15 14:48:57,2016-01-15 14:55:42,1,0.88,,,-73.93685913085938,40.68783187866211,-73.94195556640625,40.68001174926758,1,N,1,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-16 17:25:17,2016-01-16 17:28:26,2,0.5,,,-73.89085388183594,40.845733642578125,-73.88525390625,40.851165771484375,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-30 18:21:51,2016-01-30 18:27:48,1,1.0,,,-73.99420166015625,40.69089889526367,-73.99820709228516,40.68315887451172,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,,7.3,1.0 +1,2016-01-22 12:47:48,2016-01-22 13:07:34,1,5.0,,,-73.90360260009766,40.745548248291016,-73.95101928710938,40.709716796875,1,N,2,19.0,0.0,0.5,0.3,0.0,0.0,,19.8,1.0 +1,2016-01-01 02:06:22,2016-01-01 02:18:12,3,1.8,,,-73.99370574951172,40.686920166015625,-73.97895812988281,40.67245101928711,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,,12.95,1.0 +2,2016-01-25 21:47:26,2016-01-25 22:04:18,1,5.1,,,-73.92404174804688,40.75612258911133,-73.97615814208984,40.73590850830078,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-13 09:01:53,2016-01-13 09:09:54,1,1.17,,,-73.94259643554688,40.82182312011719,-73.94482421875,40.8338737487793,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-13 20:35:54,2016-01-13 20:41:26,1,1.2,,,-73.95816040039062,40.810665130615234,-73.95120239257812,40.824989318847656,1,N,1,6.5,0.5,0.5,0.3,1.17,0.0,,8.97,1.0 +2,2016-01-11 20:34:25,2016-01-11 20:47:31,1,3.23,,,-73.84432220458984,40.72135543823242,-73.81673431396484,40.68983840942383,1,N,1,13.0,0.5,0.5,0.3,1.25,0.0,,15.55,1.0 +2,2016-01-05 18:02:08,2016-01-05 18:08:27,1,1.15,,,-73.95763397216797,40.71787643432617,-73.95187377929688,40.72917175292969,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-06 08:53:01,2016-01-06 08:59:53,1,1.07,,,-73.95599365234375,40.80364990234375,-73.96829223632812,40.79977035522461,1,N,1,6.5,0.0,0.5,0.3,2.19,0.0,,9.49,1.0 +2,2016-01-30 00:53:26,2016-01-30 00:59:03,1,0.89,,,-73.91361999511719,40.765716552734375,-73.902587890625,40.77381134033203,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-28 00:15:30,2016-01-28 00:19:43,1,0.8,,,-73.95317077636719,40.80746078491211,-73.94245147705078,40.80896759033203,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-01 16:54:13,2016-01-01 17:10:50,1,2.87,,,-73.9451675415039,40.800209045410156,-73.94120788574219,40.83140563964844,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-09 18:45:12,2016-01-09 18:48:27,1,0.6,,,-73.95692443847656,40.8125114440918,-73.96012878417969,40.81934356689453,1,N,1,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-22 22:24:55,2016-01-22 22:37:19,1,1.79,,,-73.942138671875,40.786685943603516,-73.95879364013672,40.79981994628906,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,,12.96,1.0 +2,2016-01-13 21:40:31,2016-01-13 21:43:55,1,0.57,,,-73.92967224121094,40.68616485595703,-73.940185546875,40.6851806640625,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-09 10:49:46,2016-01-09 11:03:54,1,2.54,,,-73.95494842529297,40.734127044677734,-73.9527816772461,40.709068298339844,1,N,1,12.0,0.0,0.5,0.3,3.84,0.0,,16.64,1.0 +1,2016-01-24 10:27:49,2016-01-24 10:38:02,1,1.4,,,-73.90360260009766,40.745506286621094,-73.90042114257812,40.734710693359375,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-24 17:52:40,2016-01-24 17:57:43,1,0.49,,,-73.8909683227539,40.74684524536133,-73.88359069824219,40.743446350097656,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-19 11:18:17,2016-01-19 11:34:10,1,2.33,,,-73.99274444580078,40.6934814453125,-74.0079116821289,40.71172332763672,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-04 19:05:11,2016-01-04 19:13:50,1,1.41,,,-73.95794677734375,40.71757507324219,-73.9691162109375,40.709327697753906,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-22 17:24:30,2016-01-22 17:28:31,1,0.52,,,-73.94255065917969,40.753971099853516,-73.9475326538086,40.74763107299805,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-07 18:54:54,2016-01-07 19:01:23,1,2.59,,,-73.94264221191406,40.84044647216797,-73.92694854736328,40.86342239379883,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-16 20:51:19,2016-01-16 21:16:03,1,8.14,,,-73.937744140625,40.74906539916992,-73.83247375488281,40.759952545166016,1,N,1,26.5,0.5,0.5,0.3,2.22,0.0,,30.02,1.0 +2,2016-01-17 14:27:59,2016-01-17 14:34:43,1,1.12,,,-73.98141479492188,40.685630798339844,-73.98906707763672,40.67531204223633,1,N,1,6.5,0.0,0.5,0.3,1.82,0.0,,9.12,1.0 +2,2016-01-19 14:55:26,2016-01-19 14:59:36,1,0.86,,,-73.94823455810547,40.7422981262207,-73.93717956542969,40.7363166809082,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-10 18:03:21,2016-01-10 18:23:32,1,4.37,,,-73.94944763183594,40.68045425415039,-74.00515747070312,40.680416107177734,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-13 18:43:17,2016-01-13 18:48:21,1,0.61,,,-73.93357849121094,40.79851150512695,-73.93739318847656,40.80437088012695,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-28 10:09:40,2016-01-28 10:17:05,1,1.3,,,-73.94991302490234,40.806640625,-73.93828582763672,40.82305908203125,1,N,1,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-13 11:08:03,2016-01-13 11:14:03,1,1.22,,,-73.97779083251953,40.66682815551758,-73.98653411865234,40.67377853393555,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-28 06:30:00,2016-01-28 06:55:18,1,5.91,,,-73.9524917602539,40.72666549682617,-74.00975036621094,40.73747253417969,1,N,1,22.0,0.0,0.5,0.3,3.0,0.0,,25.8,1.0 +2,2016-01-07 18:24:23,2016-01-07 18:37:51,2,3.11,,,-73.88677215576172,40.8432502746582,-73.85456085205078,40.87164306640625,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-07 21:44:13,2016-01-07 21:48:15,1,0.72,,,-73.9214096069336,40.766597747802734,-73.91158294677734,40.76270294189453,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-25 11:42:49,2016-01-25 11:50:56,1,1.08,,,-73.9471664428711,40.81889724731445,-73.94424438476562,40.8339729309082,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-09 00:37:19,2016-01-09 00:45:13,1,1.3,,,-73.98249053955078,40.68844223022461,-73.97735595703125,40.696598052978516,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-04 16:56:43,2016-01-04 17:14:32,1,1.82,,,-73.99803161621094,40.68981170654297,-73.9720687866211,40.678218841552734,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-16 23:29:48,2016-01-16 23:36:13,1,0.85,,,-73.91942596435547,40.75837326049805,-73.91658020019531,40.766883850097656,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-10 08:45:26,2016-01-10 08:54:55,2,2.36,,,-73.9378433227539,40.84807586669922,-73.9131088256836,40.87299346923828,1,N,1,10.0,0.0,0.5,0.3,2.0,0.0,,12.8,1.0 +1,2016-01-19 19:03:28,2016-01-19 19:20:59,3,2.4,,,-73.91323852539062,40.838436126708984,-73.88941955566406,40.818939208984375,5,N,2,12.0,0.0,0.0,0,0.0,0.0,,12.0,2.0 +2,2016-01-06 07:45:38,2016-01-06 07:57:32,1,2.5,,,-73.84405517578125,40.72174835205078,-73.81553649902344,40.69681930541992,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-19 20:19:59,2016-01-19 20:51:21,1,5.9,,,-73.95037078857422,40.66962814331055,-73.90538787841797,40.666259765625,1,N,1,25.0,0.5,0.5,0.3,26.3,0.0,,52.6,1.0 +2,2016-01-02 18:36:31,2016-01-02 18:40:09,2,0.88,,,-73.95579528808594,40.692726135253906,-73.95941162109375,40.70057678222656,1,N,1,5.0,0.0,0.5,0.3,0.2,0.0,,6.0,1.0 +2,2016-01-10 15:49:44,2016-01-10 16:01:12,1,1.5,,,-73.86962890625,40.733890533447266,-73.87005615234375,40.74501419067383,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-08 10:52:51,2016-01-08 11:14:23,1,2.6,,,-73.94744873046875,40.790611267089844,-73.96070098876953,40.7687873840332,1,N,1,14.0,0.0,0.5,0.3,2.95,0.0,,17.75,1.0 +2,2016-01-29 12:35:55,2016-01-29 12:52:48,1,3.51,,,-73.95098114013672,40.81037521362305,-73.9280014038086,40.85484313964844,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-29 13:31:23,2016-01-29 13:46:04,1,3.7,,,-73.92752075195312,40.81843948364258,-73.937744140625,40.841209411621094,1,N,1,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-06 19:24:45,2016-01-06 19:25:36,1,0.15,,,-73.94970703125,40.81221008300781,-73.95111846923828,40.81025314331055,1,N,2,3.0,1.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-15 12:33:06,2016-01-15 12:37:07,1,1.2,,,-73.9546127319336,40.587459564208984,-73.9719467163086,40.58412551879883,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-01 04:45:08,2016-01-01 04:51:58,1,1.08,,,-73.92147827148438,40.76661682128906,-73.91160583496094,40.76266860961914,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-05 09:22:27,2016-01-05 09:23:36,1,2.9,,,-73.93868255615234,40.80512619018555,-73.93821716308594,40.80478286743164,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-16 16:44:57,2016-01-16 16:56:37,1,2.6,,,-73.9540023803711,40.742637634277344,-73.93128967285156,40.77402877807617,1,N,1,11.0,0.0,0.5,0.3,2.95,0.0,,14.75,1.0 +2,2016-01-14 18:06:19,2016-01-14 18:34:05,5,5.39,,,-73.95223236083984,40.78962707519531,-73.99058532714844,40.758140563964844,1,N,2,23.5,1.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-30 11:54:19,2016-01-30 11:57:36,1,0.38,,,-73.88860321044922,40.74733352661133,-73.88978576660156,40.753929138183594,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-09 22:08:47,2016-01-09 22:21:30,1,2.4,,,-73.94551849365234,40.8074951171875,-73.91443634033203,40.81169128417969,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-02 18:11:12,2016-01-02 18:20:07,1,1.59,,,-73.84412384033203,40.72114181518555,-73.8545150756836,40.742591857910156,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,,11.62,1.0 +2,2016-01-17 13:32:39,2016-01-17 13:47:10,2,3.0,,,-73.97654724121094,40.6822509765625,-74.0086441040039,40.64874267578125,1,N,1,12.5,0.0,0.5,0.3,3.99,0.0,,17.29,1.0 +2,2016-01-25 20:04:33,2016-01-25 20:12:18,1,0.92,,,-73.9125747680664,40.68963623046875,-73.91270446777344,40.68947982788086,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-12 16:54:42,2016-01-12 17:10:09,1,2.42,,,-73.98724365234375,40.69241714477539,-73.9656982421875,40.70952606201172,1,N,2,12.0,1.0,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-01 16:21:10,2016-01-01 16:27:55,1,2.0,,,-73.83433532714844,40.757835388183594,-73.86286163330078,40.745330810546875,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-29 13:01:24,2016-01-29 13:11:30,1,0.91,,,-73.9233627319336,40.81683349609375,-73.91170501708984,40.819583892822266,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 22:36:49,2016-01-09 22:37:36,1,0.24,,,-73.95724487304688,40.66387176513672,-73.95318603515625,40.66374206542969,1,N,1,3.0,0.5,0.5,0.3,0.0,0.0,,4.3,1.0 +1,2016-01-10 01:26:07,2016-01-10 01:37:12,1,2.2,,,-73.978759765625,40.68394088745117,-73.9459457397461,40.67951583862305,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-20 17:45:42,2016-01-20 17:52:42,1,1.17,,,-73.9411392211914,40.81391143798828,-73.93928527832031,40.82518768310547,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-29 14:38:52,2016-01-29 14:45:48,1,0.77,,,-73.90125274658203,40.838287353515625,-73.91339874267578,40.83866882324219,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-04 16:53:39,2016-01-04 16:57:22,1,0.76,,,-73.9155502319336,40.76326370239258,-73.92579650878906,40.7622184753418,1,N,1,4.5,1.0,0.5,0.3,1.58,0.0,,7.88,1.0 +2,2016-01-18 02:20:06,2016-01-18 02:28:33,1,2.82,,,-73.93190002441406,40.6973762512207,-73.95873260498047,40.67911148071289,1,N,1,10.0,0.5,0.5,0.3,2.82,0.0,,14.12,1.0 +2,2016-01-14 09:04:30,2016-01-14 09:19:37,1,2.51,,,-73.94478607177734,40.803001403808594,-73.96561431884766,40.77185821533203,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-19 14:39:46,2016-01-19 14:46:33,1,1.18,,,-73.94044494628906,40.805667877197266,-73.94135284423828,40.818294525146484,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-22 21:00:07,2016-01-22 21:11:55,1,2.8,,,-73.88661193847656,40.747413635253906,-73.91194152832031,40.72101593017578,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-25 18:53:26,2016-01-25 19:02:24,3,1.01,,,-73.91663360595703,40.76472091674805,-73.90662384033203,40.77128601074219,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-05 08:44:35,2016-01-05 09:03:57,1,4.51,,,-73.85929107666016,40.83790588378906,-73.88910675048828,40.873291015625,5,N,2,15.0,0.0,0.0,0,0.0,0.0,,15.0,2.0 +2,2016-01-25 20:58:32,2016-01-25 21:09:22,1,1.55,,,-73.97530364990234,40.674705505371094,-73.99310302734375,40.68278121948242,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-25 12:34:15,2016-01-25 12:41:12,1,0.94,,,-73.9213638305664,40.766746520996094,-73.90780639648438,40.76594161987305,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-29 18:10:02,2016-01-29 18:33:01,1,2.45,,,-73.98639678955078,40.703895568847656,-74.00336456298828,40.72315216064453,1,N,1,16.0,1.0,0.5,0.3,5.34,0.0,,23.14,1.0 +2,2016-01-15 19:50:21,2016-01-15 20:01:07,1,1.66,,,-73.96021270751953,40.688838958740234,-73.94544219970703,40.68906021118164,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-03 19:43:56,2016-01-03 19:52:11,1,3.25,,,-73.91758728027344,40.83994674682617,-73.88455963134766,40.830936431884766,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-04 15:12:05,2016-01-04 15:25:31,1,2.01,,,-73.99208068847656,40.690494537353516,-73.99210357666016,40.66603088378906,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-27 21:33:24,2016-01-27 21:42:21,1,2.04,,,-73.93924713134766,40.81047821044922,-73.9435043334961,40.78774642944336,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-01 00:13:38,2016-01-01 00:26:26,1,3.37,,,-73.9858627319336,40.67771530151367,-73.98703002929688,40.714420318603516,1,N,1,13.0,0.5,0.5,0.3,2.0,0.0,,16.3,1.0 +2,2016-01-04 11:38:03,2016-01-04 11:42:27,2,0.63,,,-73.91878509521484,40.759315490722656,-73.9212875366211,40.7530517578125,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-25 08:16:07,2016-01-25 08:22:42,1,1.28,,,-73.92085266113281,40.85203170776367,-73.92821502685547,40.835784912109375,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-20 19:30:57,2016-01-20 19:50:25,1,2.3,,,-73.97785949707031,40.68514633178711,-73.98458099365234,40.659725189208984,1,N,1,14.0,1.0,0.5,0.3,3.0,0.0,,18.8,1.0 +2,2016-01-17 03:06:10,2016-01-17 03:18:35,1,3.07,,,-73.994384765625,40.645233154296875,-74.03217315673828,40.61737823486328,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-01 11:14:29,2016-01-01 11:21:14,1,1.64,,,-73.9933090209961,40.687740325927734,-74.01350402832031,40.676910400390625,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-29 21:33:21,2016-01-29 21:38:08,1,0.8,,,-73.95722961425781,40.71827697753906,-73.95315551757812,40.7279052734375,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-27 00:41:05,2016-01-27 00:41:08,1,0.0,,,-73.94662475585938,40.826690673828125,-73.94661712646484,40.82667541503906,5,N,1,300.0,0.0,0.0,0,0.0,0.0,,300.0,2.0 +1,2016-01-01 13:45:26,2016-01-01 14:07:14,1,5.1,,,0.0,0.0,-74.0023422241211,40.734413146972656,1,N,1,19.0,0.0,0.5,0.3,3.95,0.0,,23.75,1.0 +1,2016-01-22 16:24:34,2016-01-22 16:33:18,1,1.3,,,-73.9052505493164,40.74542999267578,-73.9171142578125,40.7581672668457,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-14 18:30:59,2016-01-14 18:52:10,1,3.58,,,-73.82991790771484,40.713783264160156,-73.87350463867188,40.72981262207031,1,N,2,17.0,1.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-27 11:32:05,2016-01-27 11:40:18,1,1.14,,,-73.94252014160156,40.81705856323242,-73.93907928466797,40.80503463745117,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-26 20:02:14,2016-01-26 20:21:04,1,4.36,,,-73.90582275390625,40.745452880859375,-73.95287322998047,40.76787567138672,1,N,1,17.0,0.5,0.5,0.3,3.66,0.0,,21.96,1.0 +2,2016-01-02 10:42:00,2016-01-02 10:48:33,1,0.93,,,-73.92153930664062,40.76663589477539,-73.92929077148438,40.7682991027832,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-10 13:05:51,2016-01-10 13:14:39,1,1.38,,,-73.91895294189453,40.74309158325195,-73.9083251953125,40.75724411010742,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-11 21:10:33,2016-01-11 21:14:27,1,0.75,,,-73.89147186279297,40.74665832519531,-73.8988265991211,40.7448616027832,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-30 21:52:43,2016-01-30 21:58:19,1,1.2,,,-73.96268463134766,40.682613372802734,-73.94810485839844,40.68276596069336,1,N,1,6.5,0.5,0.5,0.3,1.55,0.0,,9.35,1.0 +1,2016-01-21 04:01:08,2016-01-21 04:07:26,1,0.7,,,-73.88233947753906,40.747806549072266,-73.89598846435547,40.746429443359375,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-12 21:48:40,2016-01-12 21:56:16,1,2.5,,,-73.95291137695312,40.67840576171875,-73.96272277832031,40.71207809448242,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,,12.95,1.0 +2,2016-01-19 19:36:33,2016-01-19 20:37:36,1,9.95,,,-73.96526336669922,40.71419143676758,-73.92528533935547,40.81215286254883,1,N,2,44.5,0.5,0.5,0.3,0.0,0.0,,45.8,1.0 +2,2016-01-29 03:46:01,2016-01-29 04:05:20,2,7.8,,,-73.88638305664062,40.74736785888672,-73.986572265625,40.7259407043457,1,N,2,24.0,0.5,0.5,0.3,0.0,0.0,,25.3,1.0 +1,2016-01-04 19:27:51,2016-01-04 19:46:11,1,4.6,,,-73.94181060791016,40.798709869384766,-73.93651580810547,40.85049819946289,1,N,1,17.0,1.0,0.5,0.3,4.7,0.0,,23.5,1.0 +1,2016-01-25 17:17:11,2016-01-25 17:24:59,1,0.8,,,-73.95230865478516,40.78987121582031,-73.94136810302734,40.788509368896484,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-04 08:34:14,2016-01-04 08:45:46,1,1.13,,,-73.86896514892578,40.74928283691406,-73.89069366455078,40.74695587158203,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-16 01:14:27,2016-01-16 01:22:45,2,1.9,,,-73.98052978515625,40.67634963989258,-73.99030303955078,40.68997573852539,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-11 00:59:42,2016-01-11 01:04:08,1,1.0,,,-73.86983489990234,40.74909210205078,-73.85884857177734,40.7408561706543,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-03 22:59:56,2016-01-03 23:34:51,1,14.1,,,-73.87584686279297,40.750118255615234,-73.92280578613281,40.66804122924805,1,N,2,42.0,0.5,0.5,0.3,0.0,0.0,,43.3,1.0 +2,2016-01-06 23:37:53,2016-01-06 23:42:05,1,0.61,,,-73.88948822021484,40.74717330932617,-73.89009094238281,40.73940658569336,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-10 09:12:04,2016-01-10 09:19:44,1,1.83,,,-73.94428253173828,40.82469177246094,-73.93698120117188,40.804866790771484,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-12 19:28:12,2016-01-12 19:47:21,2,6.6,,,-73.94019317626953,40.8407096862793,-73.95817565917969,40.778377532958984,1,N,1,21.5,1.0,0.5,0.3,4.66,0.0,,27.96,1.0 +1,2016-01-08 21:25:30,2016-01-08 21:27:40,1,0.3,,,-73.91956329345703,40.8682975769043,-73.91874694824219,40.87168502807617,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-12 12:44:00,2016-01-12 12:58:00,1,1.86,,,-73.95320129394531,40.78890609741211,0.0,0.0,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-01 12:18:43,2016-01-01 12:27:45,1,2.15,,,-73.9328384399414,40.75267791748047,-73.9033203125,40.745704650878906,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-30 11:29:14,2016-01-30 11:43:41,1,2.42,,,-73.95794677734375,40.800987243652344,-73.94661712646484,40.7889518737793,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-22 21:04:25,2016-01-22 21:13:24,1,1.6,,,-73.91876220703125,40.759647369384766,-73.91499328613281,40.777305603027344,1,N,1,8.0,0.5,0.5,0.3,3.0,0.0,,12.3,1.0 +2,2016-01-29 17:21:08,2016-01-29 17:40:08,6,2.35,,,-73.9152603149414,40.76374435424805,-73.91838836669922,40.735572814941406,1,N,2,13.0,1.0,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-25 06:46:40,2016-01-25 07:02:21,1,2.4,,,-73.9104995727539,40.83578109741211,-73.8824234008789,40.82176971435547,5,N,2,13.0,0.0,0.0,0,0.0,0.0,,13.0,2.0 +2,2016-01-09 17:27:26,2016-01-09 17:35:11,1,2.58,,,-73.83026885986328,40.71422576904297,-73.78551483154297,40.72968673706055,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-15 16:29:43,2016-01-15 16:39:59,1,1.59,,,-73.90046691894531,40.67251205444336,-73.91989135742188,40.66379928588867,1,N,1,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-24 17:32:07,2016-01-24 17:44:52,1,2.54,,,-73.8705062866211,40.73382568359375,-73.91661834716797,40.743141174316406,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-08 18:09:58,2016-01-08 18:19:11,1,0.86,,,-73.84488677978516,40.72164535522461,-73.85057830810547,40.714595794677734,1,N,1,7.5,1.0,0.5,0.3,2.32,0.0,,11.62,1.0 +1,2016-01-03 00:56:07,2016-01-03 01:14:29,1,5.6,,,-73.92566680908203,40.76158142089844,-73.96916198730469,40.79069519042969,1,N,1,19.5,0.5,0.5,0.3,4.15,0.0,,24.95,1.0 +2,2016-01-18 18:59:47,2016-01-18 19:15:24,1,1.44,,,-73.94974517822266,40.680545806884766,-73.96448516845703,40.68299102783203,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,,14.16,1.0 +1,2016-01-06 17:14:32,2016-01-06 17:27:50,1,2.1,,,-73.93666076660156,40.83013916015625,-73.94734954833984,40.805397033691406,1,N,2,11.0,1.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-23 04:20:39,2016-01-23 04:23:19,1,0.49,,,-73.90030670166016,40.74583053588867,-73.8910903930664,40.74644088745117,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-18 14:12:04,2016-01-18 14:30:02,1,3.91,,,-73.94072723388672,40.712093353271484,-73.98585510253906,40.73124313354492,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,,19.56,1.0 +1,2016-01-19 10:29:10,2016-01-19 10:31:15,1,0.4,,,-73.9830551147461,40.66525650024414,-73.984130859375,40.6602783203125,1,N,1,4.0,0.0,0.5,0.3,1.4,0.0,,6.2,1.0 +2,2016-01-15 09:59:16,2016-01-15 10:03:46,1,0.55,,,-73.9325942993164,40.7999382019043,-73.93627166748047,40.80559158325195,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-01 05:44:03,2016-01-01 05:50:08,1,1.31,,,-73.89149475097656,40.74671173095703,-73.88176727294922,40.735198974609375,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-30 19:26:52,2016-01-30 19:34:42,1,2.35,,,-73.95228576660156,40.80305862426758,-73.95233917236328,40.77826690673828,1,N,1,8.5,0.0,0.5,0.3,2.79,0.0,,12.09,1.0 +1,2016-01-11 12:10:38,2016-01-11 12:19:33,1,1.2,,,-73.97781372070312,40.685123443603516,-73.98609161376953,40.697235107421875,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-21 22:10:16,2016-01-21 22:18:43,5,1.3,,,-73.9832763671875,40.67912673950195,-73.99006652832031,40.69126510620117,1,N,1,7.5,0.5,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-01 00:25:55,2016-01-01 00:31:20,1,1.06,,,-73.97138214111328,40.68639373779297,-73.98334503173828,40.68558120727539,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 16:53:52,2016-01-22 17:11:35,1,3.06,,,-73.98750305175781,40.69123077392578,-73.93853759765625,40.68544387817383,1,N,2,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-06 14:23:56,2016-01-06 14:27:35,1,0.6,,,-73.95567321777344,40.812591552734375,-73.95072937011719,40.806602478027344,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-29 23:31:12,2016-01-30 00:21:09,1,16.7,,,-73.96432495117188,40.71925735473633,-73.89387512207031,40.882904052734375,1,N,2,52.5,0.5,0.5,0.3,0.0,0.0,,53.8,1.0 +2,2016-01-22 21:46:42,2016-01-22 22:03:34,1,6.27,,,-73.94198608398438,40.81780242919922,-73.9903335571289,40.76245880126953,1,N,1,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-13 09:20:50,2016-01-13 09:26:54,5,1.95,,,-73.95637512207031,40.71906661987305,-73.95140075683594,40.74324417114258,1,N,1,8.0,0.0,0.5,0.3,2.0,0.0,,10.8,1.0 +2,2016-01-09 00:07:43,2016-01-09 00:19:16,1,3.65,,,-73.9581298828125,40.72164535522461,-73.983154296875,40.6938362121582,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-26 13:28:27,2016-01-26 13:31:20,1,0.6,,,-73.94918060302734,40.80260467529297,-73.94367980957031,40.81014633178711,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-03 23:47:28,2016-01-03 23:53:25,1,1.33,,,-73.96401977539062,40.80311584472656,-73.95140838623047,40.80111312866211,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-27 08:08:22,2016-01-27 08:30:14,1,2.41,,,-73.91284942626953,40.814510345458984,-73.93871307373047,40.804046630859375,5,N,2,18.0,0.0,0.0,0,0.0,0.0,,18.0,2.0 +1,2016-01-02 20:14:35,2016-01-02 20:22:25,4,1.0,,,-73.97805786132812,40.68489456176758,-73.97300720214844,40.69393539428711,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-01 09:40:59,2016-01-01 09:49:13,1,2.1,,,-73.89083099365234,40.74652862548828,-73.85871887207031,40.735408782958984,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-13 08:54:04,2016-01-13 08:57:18,1,0.36,,,-73.95121002197266,40.786094665527344,-73.95235443115234,40.78966522216797,1,N,1,4.0,0.0,0.5,0.3,0.5,0.0,,5.3,1.0 +2,2016-01-14 21:30:40,2016-01-14 21:38:27,1,1.74,,,-73.9482421875,40.82924270629883,-73.93510437011719,40.851497650146484,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-02 05:33:50,2016-01-02 05:49:53,1,12.4,,,-73.99370574951172,40.69005584716797,-73.96492004394531,40.58081817626953,1,N,2,34.5,0.5,0.5,0.3,0.0,0.0,,35.8,1.0 +2,2016-01-09 13:30:54,2016-01-09 13:46:31,5,8.9,,,-73.93867492675781,40.80834197998047,-73.86528015136719,40.8769645690918,1,N,2,25.5,0.0,0.5,0.3,0.0,0.0,,26.3,1.0 +1,2016-01-11 00:33:48,2016-01-11 01:01:51,2,11.2,,,-73.92385864257812,40.659698486328125,-73.99396514892578,40.573524475097656,1,N,1,33.5,0.5,0.5,0.3,6.95,0.0,,41.75,1.0 +2,2016-01-12 21:22:05,2016-01-12 21:46:00,4,4.87,,,-73.92387390136719,40.75598907470703,-73.88243865966797,40.72767639160156,1,N,1,20.0,0.5,0.5,0.3,4.26,0.0,,25.56,1.0 +1,2016-01-08 14:24:24,2016-01-08 14:37:55,1,1.2,,,-73.97747039794922,40.693443298339844,-73.9916000366211,40.69396209716797,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-10 13:08:49,2016-01-10 13:10:32,1,0.36,,,-73.99282836914062,40.68880844116211,-73.997314453125,40.687965393066406,1,N,1,3.5,0.0,0.5,0.3,1.29,0.0,,5.59,1.0 +2,2016-01-27 19:05:59,2016-01-27 19:11:38,1,0.82,,,-73.93535614013672,40.796138763427734,-73.94496154785156,40.79418182373047,1,N,1,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-30 16:38:34,2016-01-30 16:49:14,1,0.82,,,-73.89098358154297,40.74687576293945,-73.89037322998047,40.75712585449219,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +1,2016-01-14 17:21:31,2016-01-14 17:26:04,1,1.0,,,-73.95452880859375,40.80028533935547,-73.94557189941406,40.812599182128906,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-21 16:05:43,2016-01-21 16:25:46,5,2.2,,,-73.9527587890625,40.79169845581055,-73.95841217041016,40.76719665527344,1,N,1,13.5,1.0,0.5,0.3,2.0,0.0,,17.3,1.0 +2,2016-01-04 09:11:03,2016-01-04 09:20:59,1,3.26,,,-73.9118423461914,40.775245666503906,-73.8711929321289,40.77421188354492,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,,15.96,1.0 +1,2016-01-12 23:15:54,2016-01-12 23:23:13,1,1.0,,,-73.9903793334961,40.671199798583984,-74.00631713867188,40.67713165283203,1,N,1,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-03 02:19:49,2016-01-03 02:20:18,1,0.01,,,-73.98486328125,40.68283462524414,-73.98487854003906,40.682701110839844,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,,52.8,1.0 +2,2016-01-14 22:40:53,2016-01-14 22:46:01,1,1.42,,,-73.82965850830078,40.7140007019043,-73.81689453125,40.71780014038086,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-26 18:59:45,2016-01-26 19:10:50,5,1.8,,,-73.9477767944336,40.63329315185547,-73.96676635742188,40.64024353027344,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-16 03:19:08,2016-01-16 03:27:51,1,1.63,,,-73.89108276367188,40.747066497802734,-73.88298034667969,40.763099670410156,1,N,1,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-03 21:18:13,2016-01-03 21:22:44,1,0.77,,,-73.94564056396484,40.81610107421875,-73.94010162353516,40.815277099609375,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-18 18:32:51,2016-01-18 18:37:30,1,1.0,,,-73.95374298095703,40.78799057006836,-73.96855163574219,40.7913703918457,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-09 11:54:07,2016-01-09 11:59:39,1,1.2,,,-73.95587921142578,40.68113708496094,-73.97566986083984,40.68354034423828,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,,8.75,1.0 +2,2016-01-19 15:29:04,2016-01-19 16:05:51,1,8.64,,,-73.94202423095703,40.84199523925781,-73.97200012207031,40.7498664855957,1,N,1,33.0,0.0,0.5,0.3,6.76,0.0,,40.56,1.0 +2,2016-01-30 00:13:18,2016-01-30 00:35:14,1,5.99,,,-73.91368103027344,40.75358581542969,-73.94488525390625,40.791725158691406,1,N,1,20.5,0.5,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-27 07:14:15,2016-01-27 08:32:22,1,13.23,,,-73.90664672851562,40.8641471862793,-73.89784240722656,40.85251235961914,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +2,2016-01-13 22:07:58,2016-01-13 22:13:06,1,0.75,,,-73.88859558105469,40.747047424316406,-73.89550018310547,40.750701904296875,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-09 04:58:06,2016-01-09 05:04:15,1,1.8,,,-73.95467376708984,40.69477081298828,-73.95751953125,40.71158218383789,1,N,1,7.5,0.5,0.5,0.3,1.0,0.0,,9.8,1.0 +2,2016-01-05 09:32:01,2016-01-05 09:32:24,1,0.07,,,-73.87146759033203,40.77430725097656,-73.87264251708984,40.77439880371094,2,N,1,52.0,0.0,0.5,0.3,1.2,0.0,,54.0,1.0 +2,2016-01-11 09:13:35,2016-01-11 09:19:51,1,1.11,,,-73.96783447265625,40.68367004394531,-73.95634460449219,40.69080352783203,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-08 13:22:01,2016-01-08 13:29:19,1,0.95,,,-73.94485473632812,40.79425811767578,-73.95155334472656,40.78282165527344,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-16 08:28:46,2016-01-16 08:42:56,1,3.5,,,-73.9420166015625,40.817848205566406,-73.9769058227539,40.78017044067383,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,,17.15,1.0 +1,2016-01-19 11:15:32,2016-01-19 11:29:08,2,1.1,,,-73.9515380859375,40.79091262817383,-73.95146179199219,40.78120803833008,1,N,1,9.5,0.0,0.5,0.3,2.55,0.0,,12.85,1.0 +1,2016-01-30 20:19:00,2016-01-30 20:28:44,1,1.9,,,-73.91708374023438,40.76124954223633,-73.89331817626953,40.77294158935547,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-26 20:17:54,2016-01-26 20:36:02,1,5.53,,,-73.90716552734375,40.81694412231445,-73.86933135986328,40.8701286315918,1,N,2,18.5,0.5,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-29 14:40:53,2016-01-29 15:00:47,1,2.76,,,-73.86204528808594,40.73041915893555,-73.86922454833984,40.708984375,1,N,1,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +1,2016-01-24 21:07:50,2016-01-24 21:13:15,1,0.8,,,-73.97608947753906,40.68377685546875,-73.96398162841797,40.67884826660156,1,N,1,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-05 17:54:30,2016-01-05 17:54:33,1,0.0,,,-73.76873779296875,40.75993347167969,-73.76873779296875,40.75993347167969,5,N,2,221.0,0.0,0.0,0,0.0,0.0,,221.0,2.0 +2,2016-01-01 21:05:59,2016-01-01 21:19:34,1,2.7,,,-73.95842742919922,40.71022033691406,-73.92028045654297,40.68842697143555,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,,14.76,1.0 +1,2016-01-01 04:12:58,2016-01-01 04:18:47,1,1.2,,,-73.9872817993164,40.69231414794922,-73.97599792480469,40.689170837402344,1,N,1,6.0,0.5,0.5,0.3,1.8,0.0,,9.1,1.0 +2,2016-01-01 23:11:47,2016-01-01 23:33:19,1,4.63,,,-73.91121673583984,40.67836380004883,-73.95639038085938,40.63623809814453,1,N,2,18.0,0.5,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-27 23:37:48,2016-01-27 23:42:30,1,0.83,,,-73.95979309082031,40.72011947631836,-73.9579086303711,40.73200225830078,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-17 06:39:28,2016-01-17 06:44:42,1,1.42,,,-73.98055267333984,40.68869400024414,-73.95530700683594,40.69084548950195,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-14 07:37:04,2016-01-14 07:40:30,1,0.52,,,-73.94091796875,40.81237030029297,-73.94599914550781,40.807029724121094,1,N,1,4.5,0.0,0.5,0.3,1.32,0.0,,6.62,1.0 +2,2016-01-01 20:50:09,2016-01-01 21:03:24,1,3.04,,,-73.9576644897461,40.71780776977539,-73.96524047851562,40.68509292602539,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-01 17:55:12,2016-01-01 18:00:33,2,1.1,,,-73.948974609375,40.794578552246094,-73.93323516845703,40.795127868652344,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-05 12:06:43,2016-01-05 12:15:48,1,1.83,,,-73.96082305908203,40.80706787109375,-73.94428253173828,40.829833984375,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-15 07:55:50,2016-01-15 07:58:06,1,0.51,,,-73.84407806396484,40.72173309326172,-73.85292053222656,40.72188186645508,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-21 10:00:36,2016-01-21 10:23:08,1,2.74,,,-73.9547119140625,40.789276123046875,-73.97505187988281,40.75470733642578,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +1,2016-01-11 09:44:54,2016-01-11 09:52:42,1,0.9,,,-73.95866394042969,40.716915130615234,-73.9456787109375,40.725406646728516,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-06 15:43:39,2016-01-06 16:01:34,1,2.5,,,-73.96615600585938,40.803890228271484,-73.95536041259766,40.779380798339844,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-05 19:08:59,2016-01-05 19:17:04,1,1.96,,,-73.98957061767578,40.70241165161133,-73.96795654296875,40.68879699707031,1,N,1,8.5,1.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-15 08:30:10,2016-01-15 08:58:15,1,4.64,,,-73.96675872802734,40.69342803955078,-73.99365997314453,40.740848541259766,1,N,1,20.5,0.0,0.5,0.3,3.0,0.0,,24.3,1.0 +2,2016-01-09 18:00:49,2016-01-09 18:14:55,1,2.5,,,-73.98876953125,40.693382263183594,-73.95500183105469,40.68860626220703,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-27 08:16:45,2016-01-27 08:43:35,5,3.37,,,-73.90299987792969,40.72108840942383,-73.95108032226562,40.6996955871582,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-07 08:45:14,2016-01-07 08:59:26,1,3.38,,,-73.9405517578125,40.84758377075195,-73.964111328125,40.807926177978516,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-12 18:16:00,2016-01-12 18:38:32,1,4.31,,,-73.97850036621094,40.684120178222656,-73.91484069824219,40.656368255615234,1,N,2,18.0,1.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-06 19:11:24,2016-01-06 19:24:01,1,1.95,,,-73.92427062988281,40.8236198425293,-73.94033813476562,40.83618927001953,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-24 21:30:49,2016-01-24 21:56:35,2,7.07,,,-73.99291229248047,40.688499450683594,-73.91375732421875,40.7442741394043,1,N,1,25.0,0.5,0.5,0.3,6.58,0.0,,32.88,1.0 +2,2016-01-11 20:46:44,2016-01-11 20:57:53,1,1.52,,,-73.992431640625,40.68949890136719,-73.97696685791016,40.678436279296875,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-22 23:55:28,2016-01-23 00:04:41,1,1.48,,,-73.95208740234375,40.80897903442383,-73.94064331054688,40.797027587890625,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-17 16:29:42,2016-01-17 16:37:54,1,1.28,,,-73.98384857177734,40.668052673339844,-73.9979476928711,40.679725646972656,1,N,1,7.5,0.0,0.5,0.3,2.08,0.0,,10.38,1.0 +2,2016-01-01 03:12:45,2016-01-01 03:15:54,1,0.77,,,-73.9146957397461,40.769447326660156,-73.92129516601562,40.76026153564453,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +1,2016-01-07 22:59:17,2016-01-07 23:08:23,1,1.7,,,-73.90354919433594,40.74576187133789,-73.88846588134766,40.733890533447266,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-05 19:25:15,2016-01-05 19:31:56,1,0.94,,,-73.97673034667969,40.67267990112305,-73.9881820678711,40.67791748046875,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-02 08:59:12,2016-01-02 09:07:52,1,3.34,,,-73.99728393554688,40.67938232421875,-73.98046875,40.7002067565918,1,N,1,11.0,0.0,0.5,0.3,1.5,0.0,,13.3,1.0 +2,2016-01-09 02:05:59,2016-01-09 02:14:54,1,1.98,,,-73.90428161621094,40.74539566040039,-73.89139556884766,40.757568359375,1,N,1,9.0,0.5,0.5,0.3,2.58,0.0,,12.88,1.0 +2,2016-01-23 00:10:26,2016-01-23 00:31:40,2,2.89,,,-73.93315124511719,40.7068977355957,-73.96542358398438,40.71365737915039,1,N,1,13.5,0.5,0.5,0.3,2.5,0.0,,17.3,1.0 +2,2016-01-19 14:26:37,2016-01-20 00:00:00,1,1.04,,,-73.8917007446289,40.74700927734375,-73.87555694580078,40.75065612792969,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-03 02:54:24,2016-01-03 03:03:08,1,1.94,,,-73.938720703125,40.80514144897461,-73.91737365722656,40.81187438964844,1,N,1,8.5,0.5,0.5,0.3,0.11,0.0,,9.91,1.0 +1,2016-01-11 16:18:53,2016-01-11 16:25:44,1,1.0,,,-73.93467712402344,40.801353454589844,-73.94800567626953,40.79841232299805,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-29 07:47:57,2016-01-29 07:58:06,4,1.41,,,-73.99740600585938,40.67456817626953,-73.97930908203125,40.66969680786133,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-30 01:01:25,2016-01-30 01:25:00,1,4.4,,,-73.88442993164062,40.747474670410156,-73.90657806396484,40.700523376464844,1,N,2,18.5,0.5,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-09 06:43:36,2016-01-09 07:02:05,1,6.49,,,-73.95390319824219,40.73021697998047,-73.95238494873047,40.78968048095703,1,N,2,21.0,0.0,0.5,0.3,0.0,0.0,,21.8,1.0 +2,2016-01-06 02:11:40,2016-01-06 02:33:43,5,8.28,,,-73.99456787109375,40.62188720703125,-73.94266510009766,40.64006423950195,1,N,2,26.0,0.5,0.5,0.3,0.0,0.0,,27.3,1.0 +1,2016-01-08 09:59:59,2016-01-08 10:26:17,1,5.2,,,-73.93775177001953,40.81264877319336,-73.90142822265625,40.77655029296875,1,N,1,22.0,0.0,0.5,0.3,5.65,5.54,,33.99,1.0 +2,2016-01-30 00:22:07,2016-01-30 00:50:00,5,14.85,,,-73.9134292602539,40.76587677001953,-73.97561645507812,40.647804260253906,1,N,1,42.0,0.5,0.5,0.3,8.66,0.0,,51.96,1.0 +2,2016-01-01 21:20:40,2016-01-01 21:21:35,1,0.12,,,-73.95830535888672,40.71342849731445,-73.95616149902344,40.7140998840332,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-29 06:33:32,2016-01-29 06:35:45,1,0.95,,,-73.9455795288086,40.798858642578125,-73.93958282470703,40.810306549072266,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-28 14:41:40,2016-01-28 14:54:59,1,1.56,,,-73.95734405517578,40.811824798583984,-73.96854400634766,40.794456481933594,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-19 13:40:23,2016-01-19 13:56:46,1,2.86,,,-73.9643783569336,40.710453033447266,-73.99710845947266,40.72562789916992,1,N,1,13.5,0.0,0.5,0.3,2.0,0.0,,16.3,1.0 +1,2016-01-16 22:00:41,2016-01-16 22:06:40,1,1.4,,,-73.92893981933594,40.83359146118164,-73.9272689819336,40.819114685058594,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-17 00:48:34,2016-01-17 00:54:09,1,1.05,,,-73.99749755859375,40.6745719909668,-74.01217651367188,40.67793655395508,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-07 09:08:26,2016-01-07 09:16:11,1,1.2,,,-73.95979309082031,40.67577362060547,-73.98016357421875,40.68164825439453,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-27 17:57:34,2016-01-27 18:38:56,1,3.16,,,-73.94879913330078,40.68032455444336,-73.9145736694336,40.66189956665039,1,N,2,24.5,1.0,0.5,0.3,0.0,0.0,,26.3,1.0 +2,2016-01-17 23:15:47,2016-01-17 23:23:45,1,1.68,,,-73.90895080566406,40.77837371826172,-73.92029571533203,40.76142883300781,1,N,1,7.5,0.5,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-30 02:08:07,2016-01-30 02:12:56,1,1.08,,,-73.95243835449219,40.81096267700195,-73.94841766357422,40.823875427246094,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-26 06:12:18,2016-01-26 06:25:26,1,2.94,,,-73.88363647460938,40.747894287109375,-73.92362976074219,40.74691390991211,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-11 09:45:46,2016-01-11 10:02:52,1,3.28,,,-73.9729232788086,40.68962097167969,-73.99995422363281,40.724281311035156,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-15 16:22:53,2016-01-15 16:43:05,2,2.53,,,-73.95234680175781,40.789852142333984,-73.9227066040039,40.80926513671875,1,N,1,14.0,1.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-27 00:24:28,2016-01-27 00:32:55,1,1.8,,,-73.89149475097656,40.74665832519531,-73.89440155029297,40.72652053833008,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-16 20:14:52,2016-01-16 20:27:34,1,2.93,,,-73.94883728027344,40.784828186035156,-73.97967529296875,40.76108169555664,1,N,1,11.5,0.5,0.5,0.3,1.92,0.0,,14.72,1.0 +2,2016-01-11 03:42:55,2016-01-11 03:49:52,1,2.25,,,-73.98189544677734,40.685726165771484,-73.95270538330078,40.693363189697266,1,N,1,8.5,0.5,0.5,0.3,4.0,0.0,,13.8,1.0 +2,2016-01-15 01:37:40,2016-01-15 01:44:51,2,1.3,,,-73.91424560546875,40.77531814575195,-73.92481231689453,40.761741638183594,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-24 14:12:19,2016-01-24 14:24:33,1,1.52,,,-73.95285034179688,40.810386657714844,-73.96522521972656,40.79191970825195,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-17 17:31:01,2016-01-17 17:35:40,1,0.6,,,-73.94467163085938,40.68015670776367,-73.93795776367188,40.682838439941406,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-19 22:02:20,2016-01-19 22:20:01,5,8.42,,,-73.91490936279297,40.763893127441406,-73.96815490722656,40.689876556396484,1,N,2,25.5,0.5,0.5,0.3,0.0,0.0,,26.8,1.0 +2,2016-01-04 11:08:04,2016-01-04 11:17:55,1,2.76,,,-73.98461151123047,40.69651412963867,-74.00706481933594,40.705230712890625,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-27 00:13:13,2016-01-27 00:27:32,1,6.5,,,-73.92842864990234,40.82914352416992,-73.96643829345703,40.764381408691406,5,N,1,25.0,0.0,0.0,0,5.0,0.0,,30.0,2.0 +2,2016-01-15 12:58:45,2016-01-15 13:19:00,1,2.23,,,-73.9654541015625,40.71077346801758,-73.99044036865234,40.717140197753906,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-08 18:02:59,2016-01-08 18:06:24,1,0.49,,,-73.91896057128906,40.75910568237305,-73.91358184814453,40.76564025878906,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-16 19:45:26,2016-01-16 19:58:07,1,2.42,,,-73.98143005371094,40.68954849243164,-73.99626159667969,40.6619987487793,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-16 19:25:09,2016-01-16 19:41:37,1,7.03,,,-73.8442153930664,40.721412658691406,-73.76651763916016,40.665916442871094,1,N,2,21.5,0.0,0.5,0.3,0.0,0.0,,22.3,1.0 +1,2016-01-10 18:05:13,2016-01-10 18:19:54,2,3.4,,,-73.9468002319336,40.74546813964844,-73.93309020996094,40.706939697265625,1,N,1,13.5,0.0,0.5,0.3,3.55,0.0,,17.85,1.0 +2,2016-01-29 19:59:02,2016-01-29 20:09:33,1,2.0,,,-73.95189666748047,40.72323226928711,-73.95726013183594,40.74544143676758,1,N,1,9.5,1.0,0.5,0.3,1.0,0.0,,12.3,1.0 +2,2016-01-28 22:38:48,2016-01-28 22:48:06,1,2.18,,,-73.89581298828125,40.741058349609375,-73.90081787109375,40.713623046875,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-10 16:34:42,2016-01-10 16:47:31,4,1.3,,,-73.86390686035156,40.732994079589844,-73.8683853149414,40.75001907348633,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-02 19:20:18,2016-01-02 19:25:46,1,1.15,,,-73.95361328125,40.7907829284668,-73.97150421142578,40.7950553894043,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-04 10:18:25,2016-01-04 10:30:59,1,2.1,,,-73.95503234863281,40.688812255859375,-73.9398193359375,40.707767486572266,1,N,1,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-28 01:19:12,2016-01-28 01:21:07,1,0.58,,,-73.95234680175781,40.789878845214844,-73.9486083984375,40.796817779541016,1,N,1,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-16 23:45:21,2016-01-16 23:58:06,1,2.8,,,-73.82998657226562,40.75945281982422,-73.81278991699219,40.786590576171875,1,N,1,12.0,0.5,0.5,0.3,1.0,0.0,,14.3,1.0 +1,2016-01-10 06:25:05,2016-01-10 06:53:58,2,5.7,,,-73.95276641845703,40.72702407836914,-73.91999053955078,40.68821716308594,1,N,2,23.0,0.0,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-19 14:54:45,2016-01-19 15:12:24,1,3.54,,,-73.9217529296875,40.76681900024414,-73.87095642089844,40.75157928466797,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-17 00:41:14,2016-01-17 01:00:30,5,2.92,,,-73.95014190673828,40.721946716308594,-73.98170471191406,40.72128677368164,1,N,1,14.5,0.5,0.5,0.3,2.0,0.0,,17.8,1.0 +1,2016-01-20 08:14:05,2016-01-20 09:12:33,1,11.8,,,-73.99850463867188,40.69320297241211,-73.86320495605469,40.767234802246094,1,N,1,45.5,0.0,0.5,0.3,11.55,0.0,,57.85,1.0 +1,2016-01-21 18:08:19,2016-01-21 18:23:09,1,2.0,,,-73.97850036621094,40.683837890625,-73.99111938476562,40.660980224609375,1,N,1,10.5,1.0,0.5,0.3,3.05,0.0,,15.35,1.0 +1,2016-01-04 10:14:17,2016-01-04 10:24:35,2,2.2,,,-73.95914459228516,40.81351089477539,-73.94328308105469,40.83834457397461,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-01 23:32:00,2016-01-01 23:40:19,1,2.9,,,-73.9924545288086,40.702571868896484,-73.99829864501953,40.68197250366211,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-26 23:49:22,2016-01-27 00:06:47,1,2.91,,,-73.9657211303711,40.71443557739258,-73.94476318359375,40.68756866455078,1,N,1,13.0,0.5,0.5,0.3,1.5,0.0,,15.8,1.0 +2,2016-01-22 21:54:41,2016-01-22 21:57:26,1,0.71,,,-73.99208068847656,40.69940185546875,-73.99949645996094,40.69348907470703,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-09 02:20:41,2016-01-09 02:24:11,2,1.2,,,-73.93707275390625,40.69296646118164,-73.93140411376953,40.679603576660156,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 19:36:01,2016-01-22 19:42:31,1,0.8,,,-73.92138671875,40.76654815673828,-73.92001342773438,40.757789611816406,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-24 13:15:52,2016-01-24 13:24:37,1,1.24,,,-73.97927856445312,40.66073989868164,-73.98762512207031,40.67154312133789,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-25 16:19:24,2016-01-25 17:07:22,1,4.8,,,-73.84398651123047,40.72172164916992,-73.87261199951172,40.772029876708984,1,N,2,30.5,1.0,0.5,0.3,0.0,0.0,,32.3,1.0 +2,2016-01-24 12:55:20,2016-01-24 13:02:46,1,1.51,,,-73.86534881591797,40.82778549194336,-73.85581970214844,40.84218215942383,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-13 08:05:35,2016-01-13 08:36:18,1,5.58,,,-73.93164825439453,40.76808166503906,-73.99089050292969,40.73392105102539,1,N,1,23.0,0.0,0.5,0.3,4.76,0.0,,28.56,1.0 +2,2016-01-17 00:44:58,2016-01-17 00:49:15,1,0.74,,,-73.90310668945312,40.74555587768555,-73.90825653076172,40.736717224121094,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-01 06:03:28,2016-01-01 06:15:03,1,3.15,,,-73.91938781738281,40.86815643310547,-73.89656829833984,40.906517028808594,1,N,1,12.0,0.0,0.5,0.3,3.2,0.0,,16.0,1.0 +2,2016-01-13 22:59:51,2016-01-13 23:05:02,1,1.74,,,-73.9765853881836,40.68281555175781,-73.95283508300781,40.66978454589844,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,,10.38,1.0 +2,2016-01-16 22:00:00,2016-01-16 22:14:29,1,2.34,,,-73.93904113769531,40.80517578125,-73.96783447265625,40.8019905090332,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,,14.76,1.0 +2,2016-01-07 08:21:46,2016-01-07 08:35:03,1,2.58,,,-73.84820556640625,40.819419860839844,-73.86663055419922,40.82084655761719,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-20 12:38:05,2016-01-20 12:56:57,1,4.18,,,-73.826904296875,40.712745666503906,-73.88522338867188,40.747711181640625,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-01 13:55:46,2016-01-01 14:00:58,1,0.78,,,-73.90618896484375,40.7728157043457,-73.91521453857422,40.763729095458984,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,,7.3,1.0 +1,2016-01-12 09:29:26,2016-01-12 09:44:25,1,4.0,,,-73.86994171142578,40.733604431152344,-73.94388580322266,40.746665954589844,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-28 21:39:17,2016-01-28 21:41:58,1,0.65,,,-73.90515899658203,40.83998489379883,-73.89946746826172,40.847023010253906,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-01 01:21:13,2016-01-01 01:45:55,3,8.0,,,-73.892822265625,40.861873626708984,-73.94458770751953,40.78465270996094,1,N,2,26.5,0.5,0.5,0.3,0.0,0.0,,27.8,1.0 +2,2016-01-02 15:59:31,2016-01-02 16:02:03,1,0.69,,,-73.95584106445312,40.69084167480469,-73.96650695800781,40.69163131713867,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-27 13:45:57,2016-01-28 00:00:00,1,3.26,,,-73.96287536621094,40.71723556518555,-74.0011215209961,40.72414779663086,1,N,1,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-22 21:15:02,2016-01-22 21:15:27,3,0.1,,,-73.93724822998047,40.80448532104492,-73.936767578125,40.804039001464844,1,N,3,2.5,0.5,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-24 18:56:31,2016-01-24 19:06:23,1,2.2,,,-73.93915557861328,40.80521011352539,-73.96549987792969,40.792903900146484,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-10 15:54:04,2016-01-10 16:10:51,5,1.96,,,-73.8694076538086,40.73458480834961,-73.87520599365234,40.75724792480469,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,,15.38,1.0 +2,2016-01-27 22:17:30,2016-01-27 22:43:55,1,7.43,,,-73.96183013916016,40.80556869506836,-73.91632843017578,40.76634979248047,1,N,1,24.5,0.5,0.5,0.3,5.16,0.0,,30.96,1.0 +1,2016-01-03 02:57:04,2016-01-03 03:01:29,1,0.8,,,-73.9041976928711,40.753700256347656,-73.9186019897461,40.75886535644531,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,,7.8,1.0 +2,2016-01-20 13:50:11,2016-01-20 14:08:10,1,3.26,,,-73.97891235351562,40.693458557128906,-73.94428253173828,40.7139778137207,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-12 16:38:57,2016-01-12 16:44:59,2,0.71,,,-73.90345001220703,40.745445251464844,-73.90312194824219,40.73967361450195,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-06 00:35:16,2016-01-06 00:57:22,1,6.54,,,-73.97872161865234,40.683963775634766,-73.89314270019531,40.69744873046875,1,N,2,22.0,0.5,0.5,0.3,0.0,0.0,,23.3,1.0 +2,2016-01-02 17:43:38,2016-01-02 17:50:28,1,0.95,,,-73.94757843017578,40.80860900878906,-73.95494842529297,40.799354553222656,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-26 21:49:40,2016-01-26 22:02:46,1,2.76,,,-73.9215316772461,40.76669692993164,-73.87345123291016,40.7625732421875,1,N,1,12.0,0.5,0.5,0.3,3.32,0.0,,16.62,1.0 +2,2016-01-05 17:34:24,2016-01-05 17:46:06,3,1.59,,,-73.84416198730469,40.72096633911133,-73.85448455810547,40.74259567260742,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-09 22:35:22,2016-01-09 22:40:49,1,1.12,,,-73.94140625,40.679954528808594,-73.94541931152344,40.69081497192383,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-29 08:34:23,2016-01-29 08:37:04,1,0.65,,,-73.9561538696289,40.81309509277344,-73.94808197021484,40.81681823730469,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-13 19:48:47,2016-01-13 19:59:30,1,1.3,,,-73.88504028320312,40.744178771972656,-73.86959075927734,40.749080657958984,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-27 14:46:31,2016-01-27 15:00:04,1,1.82,,,-73.87983703613281,40.737457275390625,-73.9089584350586,40.74496841430664,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-27 18:00:07,2016-01-27 18:12:28,1,1.41,,,-73.87113952636719,40.73400115966797,-73.86951446533203,40.72433090209961,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-22 19:39:07,2016-01-22 19:55:55,1,3.16,,,-73.9393539428711,40.80495071411133,-73.96847534179688,40.76491165161133,1,N,1,14.0,1.0,0.5,0.3,3.95,0.0,,19.75,1.0 +2,2016-01-10 15:43:49,2016-01-10 15:52:36,1,0.96,,,-73.97858428955078,40.68442916870117,-73.99079132080078,40.686180114746094,1,N,1,7.0,0.0,0.5,0.3,2.34,0.0,,10.14,1.0 +2,2016-01-02 15:31:04,2016-01-02 15:35:03,1,0.88,,,-73.92998504638672,40.86235046386719,-73.92794799804688,40.85480880737305,1,N,1,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-04 12:52:51,2016-01-04 12:53:54,1,0.17,,,-73.99453735351562,40.66032791137695,-73.99689483642578,40.658050537109375,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-13 06:59:26,2016-01-13 07:01:51,1,0.67,,,-73.95256042480469,40.810829162597656,-73.94985961914062,40.81794738769531,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,,6.0,1.0 +1,2016-01-05 17:38:53,2016-01-05 17:52:15,1,1.8,,,-73.94434356689453,40.79491424560547,-73.96997833251953,40.79483413696289,1,N,1,10.5,1.0,0.5,0.3,1.0,0.0,,13.3,1.0 +2,2016-01-16 20:28:19,2016-01-16 20:36:48,1,1.29,,,-73.95713806152344,40.718360900878906,-73.96839141845703,40.71112823486328,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-22 21:44:10,2016-01-22 21:48:51,1,0.63,,,-73.9432373046875,40.80693435668945,-73.94432067871094,40.81397247314453,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-27 18:47:43,2016-01-27 18:49:50,1,0.0,,,-73.92826080322266,40.763633728027344,-73.92833709716797,40.763526916503906,5,N,3,-9.0,0.0,0.0,0,0.0,0.0,,-9.0,2.0 +2,2016-01-28 21:05:39,2016-01-28 21:11:56,1,0.71,,,-73.91187286376953,40.77522277832031,-73.90062713623047,40.77183532714844,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-26 01:51:11,2016-01-26 02:06:53,2,3.76,,,-73.88946533203125,40.74711608886719,-73.90584564208984,40.70695877075195,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-02 14:37:11,2016-01-02 14:40:49,1,0.6,,,-73.95811462402344,40.80088424682617,-73.95257568359375,40.80296325683594,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-09 20:40:50,2016-01-10 20:26:54,1,0.83,,,-73.95117950439453,40.710975646972656,-73.96266174316406,40.7150993347168,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-22 20:17:08,2016-01-22 20:19:33,1,0.67,,,-73.94694519042969,40.80839538574219,-73.94031524658203,40.80908203125,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-05 21:11:18,2016-01-05 21:18:38,1,1.16,,,-73.87637329101562,40.74840545654297,-73.86543273925781,40.7557373046875,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 18:59:49,2016-01-09 19:04:34,1,0.89,,,-73.9506607055664,40.785850524902344,-73.94755554199219,40.79585647583008,1,N,1,5.5,0.0,0.5,0.3,1.58,0.0,,7.88,1.0 +2,2016-01-07 19:41:50,2016-01-07 19:48:21,1,0.89,,,-73.9574203491211,40.71805191040039,-73.9445571899414,40.72557830810547,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-18 21:02:57,2016-01-18 21:17:30,1,3.11,,,-73.98482513427734,40.673583984375,-73.95204162597656,40.68761444091797,1,N,1,12.5,0.5,0.5,0.3,3.45,0.0,,17.25,1.0 +2,2016-01-16 14:10:51,2016-01-16 14:25:03,1,2.15,,,-73.91546630859375,40.754180908203125,-73.94783782958984,40.763916015625,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-11 08:57:04,2016-01-11 09:09:30,1,1.37,,,-73.96904754638672,40.69313430786133,-73.98965454101562,40.692317962646484,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-08 18:23:34,2016-01-08 18:37:14,1,3.43,,,-73.89128875732422,40.746826171875,-73.87252807617188,40.77445602416992,1,N,1,14.0,1.0,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-02 21:23:05,2016-01-02 21:28:59,1,0.74,,,-73.97100067138672,40.681270599365234,-73.97791290283203,40.68684768676758,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-02 15:57:31,2016-01-02 16:14:24,1,5.77,,,-73.92062377929688,40.743614196777344,-73.98331451416016,40.728328704833984,1,N,1,18.5,0.0,0.5,0.3,2.8,0.0,,22.1,1.0 +2,2016-01-09 23:12:23,2016-01-09 23:25:03,1,2.56,,,-73.95423126220703,40.68516540527344,-73.95582580566406,40.714046478271484,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,,14.16,1.0 +2,2016-01-22 18:18:17,2016-01-22 18:30:27,1,1.16,,,-73.86927795410156,40.73396301269531,-73.86742401123047,40.742244720458984,1,N,1,9.0,1.0,0.5,0.3,1.0,0.0,,11.8,1.0 +2,2016-01-09 18:12:51,2016-01-09 18:23:41,3,1.86,,,-73.97769165039062,40.684627532958984,-73.98987579345703,40.70258712768555,1,N,1,9.5,0.0,0.5,0.3,2.0,0.0,,12.3,1.0 +2,2016-01-25 09:48:25,2016-01-25 09:54:43,5,0.97,,,-73.82984924316406,40.71369171142578,-73.8138656616211,40.70967102050781,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-27 10:16:29,2016-01-27 10:28:40,1,1.63,,,-73.9589614868164,40.681861877441406,-73.9820327758789,40.69203186035156,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-01 10:41:54,2016-01-01 10:52:21,1,2.91,,,-73.94718170166016,40.80567169189453,-73.97899627685547,40.781761169433594,1,N,1,11.0,0.0,0.5,0.3,3.54,0.0,,15.34,1.0 +2,2016-01-22 20:42:47,2016-01-22 20:50:36,1,1.74,,,-73.95116424560547,40.73050308227539,-73.94313049316406,40.70674133300781,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +2,2016-01-02 17:03:56,2016-01-02 17:18:40,1,2.1,,,-73.94083404541016,40.80587387084961,-73.9502944946289,40.82640838623047,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-01 22:46:17,2016-01-01 22:58:30,1,2.69,,,-73.93524932861328,40.79612731933594,-73.95600128173828,40.8222770690918,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-08 05:25:53,2016-01-08 05:43:25,1,7.01,,,-73.9566650390625,40.74850845336914,-74.01229095458984,40.701351165771484,1,N,1,21.5,0.5,0.5,0.3,5.67,5.54,,34.01,1.0 +2,2016-01-30 10:15:58,2016-01-30 10:26:48,1,2.97,,,-73.92571258544922,40.76181411743164,-73.95939636230469,40.76308822631836,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-12 17:05:45,2016-01-12 17:08:18,1,0.38,,,-73.90277099609375,40.74616622924805,-73.90643310546875,40.74582290649414,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-21 17:46:09,2016-01-21 18:05:55,2,1.93,,,-73.97595977783203,40.68392562866211,-73.94808959960938,40.67331314086914,1,N,1,13.0,1.0,0.5,0.3,2.0,0.0,,16.8,1.0 +2,2016-01-28 21:55:23,2016-01-28 22:10:25,1,3.76,,,-73.8743667602539,40.73504638671875,-73.91648864746094,40.70351791381836,1,N,1,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-12 07:13:25,2016-01-12 07:31:00,1,3.01,,,-73.935302734375,40.80051803588867,-73.95467376708984,40.765953063964844,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-20 01:25:59,2016-01-20 01:34:18,1,1.39,,,-73.9620132446289,40.81035614013672,-73.94759368896484,40.807289123535156,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +1,2016-01-12 20:27:37,2016-01-12 20:30:36,1,0.4,,,-73.84431457519531,40.72132110595703,-73.83997344970703,40.720157623291016,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-06 19:23:24,2016-01-06 19:33:15,1,1.38,,,-73.94358825683594,40.81047439575195,-73.93241882324219,40.79945373535156,1,N,1,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-20 22:48:06,2016-01-20 23:08:42,2,4.33,,,-73.977294921875,40.681190490722656,-73.91806030273438,40.70183181762695,1,N,1,17.0,0.5,0.5,0.3,3.66,0.0,,21.96,1.0 +1,2016-01-25 23:11:56,2016-01-25 23:19:37,2,1.3,,,-73.91217803955078,40.69956970214844,-73.91445922851562,40.685401916503906,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-30 23:42:53,2016-01-31 00:13:09,1,6.94,,,-73.95698547363281,40.7210807800293,-74.00886535644531,40.738895416259766,1,N,1,26.0,0.5,0.5,0.3,5.46,0.0,,32.76,1.0 +2,2016-01-04 17:59:42,2016-01-04 18:54:59,1,9.4,,,-73.86209106445312,40.73038864135742,-73.94129180908203,40.78514862060547,1,N,2,31.5,1.0,0.5,0.3,0.0,0.0,,33.3,1.0 +2,2016-01-28 08:02:46,2016-01-28 08:18:10,1,2.21,,,-73.94243621826172,40.81218338012695,-73.96531677246094,40.79110336303711,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-04 11:43:43,2016-01-04 11:45:16,1,0.35,,,-73.88518524169922,40.74409103393555,-73.8909912109375,40.746585845947266,1,N,1,3.5,0.0,0.5,0.3,1.29,0.0,,5.59,1.0 +2,2016-01-08 22:56:54,2016-01-08 23:00:19,1,0.84,,,-73.92324829101562,40.67902374267578,-73.93887329101562,40.6799201965332,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-18 17:55:17,2016-01-18 18:04:28,1,1.02,,,-73.87096405029297,40.73398208618164,-73.88246154785156,40.74169921875,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-12 20:14:13,2016-01-12 20:22:55,1,2.47,,,-73.9873275756836,40.692527770996094,-73.96844482421875,40.70866012573242,1,N,1,10.0,0.5,0.5,0.3,3.39,0.0,,14.69,1.0 +2,2016-01-19 11:08:46,2016-01-19 11:13:15,1,1.07,,,-73.96119689941406,40.72078323364258,-73.95464324951172,40.73235321044922,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-27 10:34:47,2016-01-27 10:59:53,3,2.98,,,-73.99093627929688,40.694698333740234,-73.94466400146484,40.68009567260742,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +1,2016-01-28 21:48:46,2016-01-28 22:00:39,1,1.7,,,-73.96074676513672,40.660194396972656,-73.9607162475586,40.66017532348633,1,N,3,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-05 20:05:53,2016-01-05 20:10:21,1,1.0,,,-73.98717498779297,40.702396392822266,-73.97464752197266,40.696998596191406,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-07 22:46:30,2016-01-07 22:53:48,1,1.68,,,-73.93152618408203,40.70366668701172,-73.94000244140625,40.68526077270508,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-30 05:30:38,2016-01-30 05:42:35,1,3.27,,,-73.96208190917969,40.716026306152344,-73.92909240722656,40.6894645690918,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-09 18:13:34,2016-01-09 18:28:58,1,3.25,,,-73.95844268798828,40.71720886230469,-73.91346740722656,40.702938079833984,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-14 10:36:59,2016-01-14 10:53:34,1,7.2,,,-73.9215087890625,40.766746520996094,-73.84162139892578,40.720462799072266,1,N,1,22.5,0.0,0.5,0.3,4.66,0.0,,27.96,1.0 +2,2016-01-07 00:11:14,2016-01-07 00:18:13,5,1.52,,,-73.9034423828125,40.74534606933594,-73.9002685546875,40.7279052734375,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-05 17:48:42,2016-01-05 17:51:24,1,0.48,,,-73.9111557006836,40.775787353515625,-73.91607666015625,40.772743225097656,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-21 16:58:57,2016-01-21 17:02:10,1,0.46,,,-73.9922866821289,40.69001388549805,-73.99174499511719,40.684932708740234,1,N,1,4.0,1.0,0.5,0.3,1.16,0.0,,6.96,1.0 +1,2016-01-30 21:35:46,2016-01-30 21:43:36,1,0.6,,,-73.96207427978516,40.684844970703125,-73.95865631103516,40.68196487426758,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-08 08:33:02,2016-01-08 08:58:28,1,2.73,,,-73.96607208251953,40.804161071777344,-73.95358276367188,40.77941131591797,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +1,2016-01-22 21:56:48,2016-01-22 22:00:45,1,0.6,,,-73.97715759277344,40.68144607543945,-73.9822998046875,40.67408752441406,1,Y,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-24 16:30:28,2016-01-24 16:46:54,1,4.6,,,-73.939208984375,40.80543899536133,-73.87458038330078,40.82926940917969,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-20 14:26:41,2016-01-20 14:47:37,1,4.11,,,-73.98645782470703,40.68986511230469,-73.95360565185547,40.63834762573242,1,N,1,16.5,0.0,0.5,0.3,2.0,0.0,,19.3,1.0 +2,2016-01-07 12:08:55,2016-01-07 12:16:09,1,1.19,,,-73.87499237060547,40.7352294921875,-73.87933349609375,40.73118209838867,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-01 22:47:25,2016-01-01 22:58:21,1,2.4,,,-73.99205780029297,40.694393157958984,-73.96896362304688,40.67487716674805,1,N,1,10.5,0.5,0.5,0.3,2.35,0.0,,14.15,1.0 +1,2016-01-21 07:51:35,2016-01-21 07:58:13,1,1.5,,,-73.99057006835938,40.702613830566406,-74.0042953491211,40.712860107421875,1,N,1,7.0,0.0,0.5,0.3,1.5,0.0,,9.3,1.0 +2,2016-01-07 16:15:11,2016-01-07 16:19:19,1,0.8,,,-73.96607208251953,40.805240631103516,-73.96929168701172,40.79545974731445,1,N,1,5.0,1.0,0.5,0.3,1.7,0.0,,8.5,1.0 +2,2016-01-01 03:07:07,2016-01-01 03:12:46,5,1.43,,,-73.8440933227539,40.721107482910156,-73.82268524169922,40.71365737915039,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-08 18:54:52,2016-01-08 19:07:27,1,2.07,,,-73.99201202392578,40.66260528564453,-73.98571014404297,40.68552017211914,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-16 08:40:09,2016-01-16 09:03:07,1,4.3,,,-73.94507598876953,40.807559967041016,-73.92593383789062,40.762603759765625,1,N,2,18.0,0.0,0.5,0.3,0.0,5.54,,24.34,1.0 +2,2016-01-27 23:03:59,2016-01-27 23:04:07,1,0.0,,,-73.94469451904297,40.834449768066406,-73.9447021484375,40.834449768066406,5,N,1,15.0,0.0,0.0,0,0.0,0.0,,15.0,2.0 +1,2016-01-01 17:28:28,2016-01-01 17:36:16,2,0.9,,,-73.88310241699219,40.74988555908203,-73.89117431640625,40.75625228881836,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-19 20:43:26,2016-01-19 20:47:46,3,0.97,,,-73.93229675292969,40.795536041259766,-73.9441146850586,40.79050827026367,1,N,1,5.5,0.5,0.5,0.3,1.2,0.0,,8.0,1.0 +2,2016-01-30 11:34:45,2016-01-30 11:47:50,1,2.29,,,-73.92826843261719,40.85672378540039,-73.91028594970703,40.87444305419922,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-02 10:16:21,2016-01-02 10:54:56,1,5.1,,,-73.87053680419922,40.73353576660156,-73.87056732177734,40.732940673828125,1,N,2,28.5,0.0,0.5,0.3,0.0,0.0,,29.3,1.0 +2,2016-01-30 16:01:46,2016-01-30 16:11:39,1,1.72,,,-73.97273254394531,40.685638427734375,-73.99754333496094,40.69118881225586,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +1,2016-01-03 19:27:49,2016-01-03 19:36:28,1,2.5,,,-73.86914825439453,40.73432922363281,-73.8794937133789,40.705177307128906,1,N,3,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-17 02:59:32,2016-01-17 03:04:49,1,0.88,,,-73.88263702392578,40.747703552246094,-73.87386322021484,40.75421142578125,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 16:49:10,2016-01-22 16:54:05,1,0.68,,,-73.93901062011719,40.805145263671875,-73.94257354736328,40.81181716918945,1,N,1,5.0,1.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-29 18:51:16,2016-01-29 18:58:55,1,1.22,,,-73.9535140991211,40.79079818725586,-73.95549774169922,40.77774429321289,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-14 23:29:08,2016-01-14 23:31:15,1,0.32,,,-73.87178039550781,40.73419189453125,-73.87369537353516,40.73849105834961,1,N,1,3.5,0.5,0.5,0.3,0.96,0.0,,5.76,1.0 +2,2016-01-01 15:45:21,2016-01-01 16:08:06,2,7.42,,,-73.94334411621094,40.81089782714844,-74.0000228881836,40.74592971801758,1,N,2,26.0,0.0,0.5,0.3,0.0,0.0,,26.8,1.0 +2,2016-01-18 21:51:18,2016-01-18 21:54:11,1,0.47,,,-73.83003234863281,40.713722229003906,-73.8299331665039,40.70945358276367,1,N,1,4.0,0.5,0.5,0.3,1.32,0.0,,6.62,1.0 +1,2016-01-04 11:55:20,2016-01-04 12:02:55,1,1.1,,,-73.99430084228516,40.694828033447266,-74.00357818603516,40.68325424194336,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,,8.75,1.0 +2,2016-01-30 11:12:17,2016-01-31 00:00:00,1,2.14,,,-73.8675765991211,40.757503509521484,-73.8692626953125,40.734256744384766,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-07 17:27:26,2016-01-07 17:40:40,1,1.62,,,-73.95355224609375,40.788818359375,-73.95784759521484,40.770423889160156,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,,14.76,1.0 +1,2016-01-29 18:44:25,2016-01-29 18:53:39,1,1.1,,,-73.87055969238281,40.75103759765625,-73.87157440185547,40.76316452026367,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-22 11:44:46,2016-01-22 11:52:28,1,1.23,,,-73.92225646972656,40.743797302246094,-73.94502258300781,40.746910095214844,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-04 14:03:32,2016-01-04 14:12:09,1,1.29,,,-73.92171478271484,40.766788482666016,-73.91775512695312,40.77813720703125,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-10 12:14:26,2016-01-10 12:43:10,1,7.6,,,-73.93781280517578,40.82361602783203,-73.99517059326172,40.74991989135742,1,N,1,27.0,0.0,0.5,0.3,1.5,0.0,,29.3,1.0 +2,2016-01-10 05:52:08,2016-01-10 06:28:53,1,13.61,,,-73.8881607055664,40.73908615112305,-73.90424346923828,40.86144256591797,1,N,2,41.0,0.5,0.5,0.3,0.0,0.0,,42.3,1.0 +1,2016-01-12 06:57:03,2016-01-12 07:05:11,1,0.4,,,-73.9813003540039,40.689979553222656,-73.9796371459961,40.69356918334961,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-17 17:47:43,2016-01-17 17:54:39,1,1.15,,,-73.95668029785156,40.67416000366211,-73.96065521240234,40.65949630737305,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 18:51:32,2016-01-01 18:59:27,1,1.68,,,-73.94514465332031,40.81834411621094,-73.93390655517578,40.80235290527344,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-22 18:22:49,2016-01-22 18:32:06,1,2.13,,,-73.94798278808594,40.824920654296875,-73.96549224853516,40.800376892089844,1,N,1,9.0,1.0,0.5,0.3,3.24,0.0,,14.04,1.0 +2,2016-01-16 10:44:55,2016-01-16 10:46:48,1,0.5,,,-73.93921661376953,40.80574035644531,-73.94351959228516,40.79948043823242,1,N,1,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-19 21:03:56,2016-01-19 21:21:57,1,2.86,,,-73.97357177734375,40.69801330566406,-73.98258972167969,40.66551971435547,1,N,1,14.0,0.5,0.5,0.3,4.59,0.0,,19.89,1.0 +2,2016-01-14 07:33:24,2016-01-14 08:01:51,1,3.76,,,-73.95870208740234,40.67873764038086,-74.00122833251953,40.66059112548828,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-01 21:11:58,2016-01-01 21:26:16,1,3.1,,,-73.93959045410156,40.81568145751953,-73.93846130371094,40.849273681640625,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,,17.16,1.0 +2,2016-01-16 18:22:00,2016-01-16 18:29:43,1,0.9,,,-73.94512176513672,40.800201416015625,-73.9525146484375,40.807945251464844,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 14:23:44,2016-01-01 14:28:49,1,1.21,,,-73.8944320678711,40.6666374206543,-73.9032974243164,40.67836380004883,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-25 17:33:05,2016-01-25 17:47:26,1,2.22,,,-73.95906066894531,40.80937194824219,-73.97924041748047,40.78425216674805,1,N,1,11.5,1.0,0.5,0.3,2.75,0.0,,16.05,1.0 +1,2016-01-11 18:13:05,2016-01-11 18:15:54,1,0.9,,,-73.84986114501953,40.82685089111328,-73.837890625,40.824134826660156,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-20 09:30:02,2016-01-20 09:37:12,1,1.2,,,-73.93795776367188,40.80065155029297,-73.9517822265625,40.79337692260742,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-16 10:47:57,2016-01-16 10:55:24,1,1.4,,,-73.95284271240234,40.80796432495117,-73.96649932861328,40.792484283447266,1,N,1,7.5,0.0,0.5,0.3,1.25,0.0,,9.55,1.0 +2,2016-01-19 03:28:49,2016-01-19 03:42:20,1,3.07,,,-73.95264434814453,40.71392059326172,-73.91556549072266,40.6986083984375,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +1,2016-01-02 23:18:54,2016-01-02 23:27:21,1,2.0,,,-73.94877624511719,40.80339050292969,-73.97064208984375,40.786651611328125,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-08 14:13:46,2016-01-08 14:42:42,1,5.29,,,-73.95452117919922,40.686302185058594,-73.93919372558594,40.748451232910156,1,N,2,22.5,0.0,0.5,0.3,0.0,0.0,,23.3,1.0 +2,2016-01-05 17:07:39,2016-01-05 17:14:38,1,1.6,,,-73.94237518310547,40.806217193603516,-73.94261169433594,40.7908935546875,1,N,1,7.0,1.0,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-01 19:05:15,2016-01-01 19:25:51,2,2.19,,,-73.87445068359375,40.7448844909668,-73.87093353271484,40.73357391357422,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-15 20:04:58,2016-01-15 20:08:49,1,0.75,,,-73.83023834228516,40.71370315551758,-73.82096862792969,40.71546936035156,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-01 00:57:32,2016-01-01 01:12:27,1,3.0,,,-73.9638671875,40.802913665771484,-73.9477767944336,40.834774017333984,1,N,1,12.5,0.5,0.5,0.3,2.0,0.0,,15.8,1.0 +2,2016-01-07 02:14:08,2016-01-07 02:17:52,1,0.87,,,-73.91081237792969,40.775970458984375,-73.89897155761719,40.77315902709961,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-11 18:41:55,2016-01-11 18:48:39,1,1.2,,,-73.95464324951172,40.69093322753906,-73.9773941040039,40.69000244140625,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-01 07:53:18,2016-01-01 07:59:36,1,1.54,,,-73.81507873535156,40.731075286865234,-73.8255844116211,40.74375915527344,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-26 21:51:44,2016-01-26 21:53:09,1,0.47,,,-73.9437026977539,40.82054901123047,-73.94406127929688,40.81500244140625,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-24 12:47:09,2016-01-24 12:58:51,6,1.49,,,-73.94309997558594,40.70160675048828,-73.9571533203125,40.68855667114258,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-29 00:40:07,2016-01-29 00:45:10,1,1.05,,,-73.89089965820312,40.74643325805664,-73.89689636230469,40.73548126220703,1,N,1,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-13 14:32:17,2016-01-13 15:11:34,1,4.44,,,-73.96094512939453,40.80685806274414,-73.97301483154297,40.758995056152344,1,N,1,25.5,0.0,0.5,0.3,0.0,0.0,,26.3,1.0 +2,2016-01-14 23:26:15,2016-01-14 23:48:57,1,9.03,,,-73.95585632324219,40.80464172363281,-73.86148071289062,40.89469528198242,1,N,1,28.0,0.5,0.5,0.3,0.0,0.0,,29.3,1.0 +2,2016-01-14 21:44:59,2016-01-14 22:00:52,1,2.84,,,-73.97816467285156,40.686012268066406,-73.93138885498047,40.69447326660156,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-05 22:54:21,2016-01-05 22:58:15,1,0.94,,,-73.94058990478516,40.8139533996582,-73.93938446044922,40.804298400878906,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-14 17:59:49,2016-01-14 18:01:40,1,0.2,,,-73.92169952392578,40.76666259765625,-73.92445373535156,40.764892578125,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-20 23:12:46,2016-01-20 23:54:03,1,12.02,,,-73.9558334350586,40.71415328979492,-73.95683288574219,40.82094955444336,1,N,2,40.0,0.5,0.5,0.3,0.0,0.0,,41.3,1.0 +1,2016-01-19 13:14:04,2016-01-19 13:23:26,1,1.5,,,-73.95922088623047,40.80923080444336,-73.94080352783203,40.81485366821289,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,,10.3,1.0 +2,2016-01-04 14:54:34,2016-01-04 15:04:09,1,2.66,,,-73.91358947753906,40.765586853027344,-73.87749481201172,40.75372314453125,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-18 03:33:49,2016-01-18 03:43:08,1,2.9,,,-73.96147918701172,40.71855163574219,-73.96279907226562,40.68479537963867,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-16 01:16:36,2016-01-16 01:21:54,1,1.5,,,-73.94219970703125,40.75426483154297,-73.92754364013672,40.77231979370117,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-20 08:28:30,2016-01-20 08:35:59,1,0.9,,,-73.96879577636719,40.689449310302734,-73.9840087890625,40.6922492980957,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,,8.75,1.0 +2,2016-01-07 15:11:48,2016-01-07 15:23:04,1,1.84,,,-73.93902587890625,40.80527877807617,-73.9490966796875,40.82321548461914,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-07 09:05:38,2016-01-07 09:14:18,1,2.63,,,-73.80753326416016,40.70035171508789,-73.80143737792969,40.67475891113281,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-10 00:35:58,2016-01-10 00:42:25,1,1.38,,,-73.93929290771484,40.805301666259766,-73.94356536865234,40.79022979736328,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-15 23:50:53,2016-01-15 23:58:49,1,1.49,,,-73.94486999511719,40.808555603027344,-73.92543029785156,40.80972671508789,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-21 22:24:27,2016-01-21 22:50:08,1,7.12,,,-73.94277954101562,40.74705123901367,-73.97647094726562,40.67313766479492,1,N,1,24.5,0.5,0.5,0.3,6.0,0.0,,31.8,1.0 +2,2016-01-25 12:24:35,2016-01-25 13:06:06,1,6.97,,,-74.00330352783203,40.65178298950195,-73.89688110351562,40.676029205322266,1,N,1,29.0,0.0,0.5,0.3,5.96,0.0,,35.76,1.0 +2,2016-01-02 21:06:22,2016-01-02 21:10:43,1,0.65,,,-73.94441223144531,40.71480941772461,-73.955322265625,40.71411895751953,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-14 00:14:23,2016-01-14 00:20:30,1,1.44,,,-73.89055633544922,40.74803161621094,-73.86998748779297,40.75471115112305,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-18 08:57:06,2016-01-18 09:00:38,1,0.8,,,-73.95558166503906,40.80455017089844,-73.9623794555664,40.804908752441406,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-06 15:37:32,2016-01-06 15:55:06,1,3.63,,,-73.88365936279297,40.747745513916016,-73.92498016357422,40.71593475341797,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,,15.3,1.0 +1,2016-01-20 11:43:13,2016-01-20 11:53:54,1,1.5,,,-73.94255065917969,40.832115173339844,-73.93486785888672,40.851966857910156,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-29 14:04:22,2016-01-29 14:10:19,1,0.82,,,-73.95238494873047,40.81064987182617,-73.95480346679688,40.801673889160156,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-13 06:18:16,2016-01-13 06:32:04,1,5.59,,,-74.16342163085938,40.638694763183594,-74.07250213623047,40.64350891113281,5,N,2,12.0,0.0,0.0,0,0.0,0.0,,12.0,2.0 +1,2016-01-21 19:44:18,2016-01-21 21:01:18,1,7.0,,,-73.93948364257812,40.820777893066406,-73.97343444824219,40.73064041137695,1,N,2,45.5,0.5,0.5,0.3,0.0,0.0,,46.8,1.0 +1,2016-01-06 13:34:39,2016-01-06 13:38:12,1,0.5,,,-73.9759750366211,40.68375778198242,-73.96768188476562,40.68165588378906,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-09 17:04:43,2016-01-09 17:09:20,1,0.89,,,-73.98421478271484,40.68016815185547,-73.97500610351562,40.675193786621094,1,N,1,5.0,0.0,0.5,0.3,1.45,0.0,,7.25,1.0 +2,2016-01-14 19:27:04,2016-01-14 19:49:54,1,5.57,,,-73.9580078125,40.71760177612305,-73.88516998291016,40.75456619262695,1,N,1,21.0,1.0,0.5,0.3,6.0,0.0,,28.8,1.0 +2,2016-01-25 18:28:51,2016-01-25 18:34:39,1,0.83,,,-73.95037078857422,40.80567932128906,-73.93822479248047,40.80382537841797,1,N,1,6.0,1.0,0.5,0.3,2.08,0.0,,9.88,1.0 +2,2016-01-30 17:39:23,2016-01-30 17:46:03,1,1.29,,,-73.9188003540039,40.75925827026367,-73.91596984863281,40.74717712402344,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-08 18:06:32,2016-01-08 18:16:05,1,1.23,,,-73.94913482666016,40.801822662353516,-73.9357681274414,40.80711364746094,1,N,1,8.0,1.0,0.5,0.3,2.0,0.0,,11.8,1.0 +2,2016-01-22 23:46:06,2016-01-22 23:54:35,1,1.38,,,-73.890869140625,40.7469482421875,-73.89483642578125,40.76078796386719,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-09 19:01:27,2016-01-09 19:35:26,1,5.2,,,-73.96928405761719,40.689537048339844,-73.89347076416016,40.663063049316406,1,N,2,24.5,1.0,0.5,0.3,0.0,0.0,,26.3,1.0 +2,2016-01-23 04:37:14,2016-01-23 05:02:46,1,2.93,,,-73.95160675048828,40.7138671875,-73.91650390625,40.69779586791992,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-15 23:45:16,2016-01-15 23:48:17,1,1.2,,,-73.95370483398438,40.790653228759766,-73.97205352783203,40.7946662902832,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-08 11:48:52,2016-01-08 12:05:04,1,3.54,,,-73.94702911376953,40.8105354309082,-73.92044067382812,40.85245132446289,1,N,1,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-20 21:40:19,2016-01-20 21:47:01,5,1.18,,,-73.97784423828125,40.685115814208984,-73.97636413574219,40.69544982910156,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-25 22:51:56,2016-01-25 22:56:04,1,0.77,,,-73.94489288330078,40.81386184692383,-73.95252990722656,40.803279876708984,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-27 23:41:25,2016-01-27 23:48:25,1,1.25,,,-73.95862579345703,40.7170295715332,-73.94598388671875,40.7202262878418,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +1,2016-01-13 17:06:47,2016-01-13 17:18:06,2,1.7,,,-73.9486312866211,40.809078216552734,-73.93212890625,40.79520797729492,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-28 08:53:50,2016-01-28 09:07:56,1,1.27,,,-73.93778228759766,40.80382537841797,-73.95191192626953,40.79150390625,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-06 22:23:51,2016-01-06 22:32:30,2,1.7,,,-73.94984436035156,40.71686935424805,-73.94027709960938,40.70994186401367,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,,11.15,1.0 +2,2016-01-13 16:31:57,2016-01-13 16:33:59,1,0.51,,,-73.94841003417969,40.79499053955078,-73.94825744628906,40.80046844482422,1,N,1,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-17 09:25:47,2016-01-17 09:48:53,1,4.7,,,-73.92444610595703,40.74361801147461,-73.98529052734375,40.77833938598633,1,N,1,19.5,0.0,0.5,0.3,3.0,0.0,,23.3,1.0 +2,2016-01-15 21:08:26,2016-01-15 21:16:19,1,1.39,,,-73.99140930175781,40.6854362487793,-73.98280334472656,40.67330551147461,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,,10.38,1.0 +1,2016-01-11 22:38:35,2016-01-11 22:46:46,1,1.6,,,-73.94603729248047,40.82465362548828,-73.95182800292969,40.80466079711914,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,,11.15,1.0 +1,2016-01-09 00:13:22,2016-01-09 00:35:27,4,6.4,,,-73.9681625366211,40.693153381347656,-73.89386749267578,40.746646881103516,1,N,2,21.5,0.5,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-16 19:11:58,2016-01-16 19:23:41,1,1.87,,,-73.95133972167969,40.7310676574707,-73.96530151367188,40.71691131591797,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-08 09:40:39,2016-01-08 09:58:59,5,3.22,,,-73.973388671875,40.690826416015625,-73.99661254882812,40.72355651855469,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-06 19:28:14,2016-01-06 19:35:20,1,1.22,,,-73.95869445800781,40.71498107910156,-73.94415283203125,40.707252502441406,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-01 20:21:33,2016-01-01 20:24:55,1,0.63,,,-73.96263885498047,40.7100715637207,-73.95821380615234,40.7172966003418,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-12 11:56:46,2016-01-12 12:20:02,1,9.52,,,-73.98992156982422,40.696048736572266,-73.86128234863281,40.7120361328125,1,N,2,29.0,0.0,0.5,0.3,0.0,0.0,,29.8,1.0 +2,2016-01-16 03:10:55,2016-01-16 03:19:11,1,1.26,,,-73.87828826904297,40.74821472167969,-73.87747192382812,40.73716735839844,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,,10.38,1.0 +2,2016-01-04 10:08:22,2016-01-04 10:13:41,1,1.07,,,-73.95568084716797,40.78804397583008,-73.95539855957031,40.77690124511719,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-21 06:52:17,2016-01-21 07:00:25,1,1.8,,,-73.93730163574219,40.797977447509766,-73.95246124267578,40.775882720947266,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-30 06:38:39,2016-01-30 07:13:43,1,11.8,,,-73.83012390136719,40.7137565612793,-73.95317077636719,40.76493835449219,1,N,1,39.0,0.0,0.5,0.3,2.0,0.0,,41.8,1.0 +1,2016-01-10 18:04:58,2016-01-10 18:10:55,1,1.1,,,-73.93871307373047,40.805076599121094,-73.94982147216797,40.81364059448242,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-09 17:36:24,2016-01-09 17:42:32,1,0.94,,,-73.97821044921875,40.670963287353516,-73.9866943359375,40.661861419677734,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-18 22:17:12,2016-01-18 22:29:08,1,2.84,,,-73.9542236328125,40.71924591064453,-73.979248046875,40.72190856933594,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-04 08:41:05,2016-01-04 08:46:10,1,1.37,,,-73.93356323242188,40.79849624633789,-73.93779754638672,40.81291580200195,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-20 19:54:35,2016-01-20 20:22:14,1,4.9,,,-73.96317291259766,40.71022415161133,-73.99633026123047,40.66896057128906,1,N,1,21.0,1.0,0.5,0.3,5.7,0.0,,28.5,1.0 +2,2016-01-04 19:36:24,2016-01-04 19:56:11,1,5.15,,,-73.87136840820312,40.73433303833008,-73.8250732421875,40.70298385620117,1,N,2,18.0,1.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-13 23:27:16,2016-01-13 23:44:26,1,4.21,,,-73.92677307128906,40.701297760009766,-73.95223999023438,40.661476135253906,1,N,1,16.0,0.5,0.5,0.3,5.19,0.0,,22.49,1.0 +2,2016-01-27 14:59:00,2016-01-27 15:13:11,6,1.77,,,-73.94703674316406,40.80582046508789,-73.95113372802734,40.785858154296875,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-08 11:25:38,2016-01-08 11:28:07,1,0.65,,,-73.96472930908203,40.80683135986328,-73.97058868408203,40.7986946105957,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-25 04:34:01,2016-01-25 04:55:48,1,7.42,,,-73.99764251708984,40.678855895996094,-73.92267608642578,40.70877456665039,1,N,2,24.0,0.5,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-17 23:59:28,2016-01-18 00:05:18,5,1.21,,,-73.89080810546875,40.74700164794922,-73.88371276855469,40.75699234008789,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-07 10:30:52,2016-01-07 10:45:17,1,2.26,,,-73.95320892333984,40.68063735961914,-73.96009063720703,40.705848693847656,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-21 01:16:03,2016-01-21 01:28:42,1,3.23,,,-73.90682983398438,40.67033386230469,-73.86665344238281,40.6655387878418,1,N,1,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-12 17:11:42,2016-01-12 17:44:07,1,7.8,,,-73.95238494873047,40.810726165771484,-73.86165618896484,40.76833724975586,1,N,1,29.0,1.0,0.5,0.3,4.0,5.54,,40.34,1.0 +1,2016-01-01 00:17:01,2016-01-01 00:23:32,1,2.0,,,-73.9394760131836,40.81028747558594,-73.95207977294922,40.790225982666016,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-05 13:39:08,2016-01-05 13:46:31,1,1.6,,,-73.9466552734375,40.80082321166992,-73.93568420410156,40.81855392456055,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-17 00:56:13,2016-01-17 00:58:16,1,0.2,,,-73.95524597167969,40.80431365966797,-73.95381164550781,40.80647277832031,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-24 15:09:09,2016-01-24 15:33:04,1,3.84,,,-73.93933868408203,40.80514907836914,-73.9766616821289,40.779090881347656,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +1,2016-01-13 15:03:11,2016-01-13 15:09:44,1,0.9,,,-73.96377563476562,40.68284225463867,-73.97772979736328,40.6845817565918,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-17 16:46:53,2016-01-17 17:02:17,2,2.27,,,-73.8693618774414,40.73452377319336,-73.84845733642578,40.736446380615234,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +1,2016-01-16 20:12:57,2016-01-16 20:13:52,3,0.2,,,-73.98661041259766,40.66496658325195,-73.9895248413086,40.6635627746582,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-21 19:19:54,2016-01-21 19:25:13,1,0.61,,,-73.94387817382812,40.81016540527344,-73.95386505126953,40.811344146728516,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 10:29:52,2016-01-01 10:44:21,1,7.71,,,-73.94147491455078,40.79887771606445,-73.99031066894531,40.725154876708984,1,N,1,23.0,0.0,0.5,0.3,2.0,0.0,,25.8,1.0 +2,2016-01-29 08:40:27,2016-01-29 08:51:50,1,4.14,,,-73.86961364746094,40.733455657958984,-73.80516052246094,40.73877716064453,1,N,1,14.5,0.0,0.5,0.3,2.0,0.0,,17.3,1.0 +1,2016-01-21 22:25:18,2016-01-21 22:48:28,1,6.2,,,-73.95472717285156,40.73317337036133,-73.97232818603516,40.674495697021484,1,N,1,22.0,0.5,0.5,0.3,4.65,0.0,,27.95,1.0 +1,2016-01-01 20:07:54,2016-01-01 20:25:01,3,3.0,,,-73.95716094970703,40.68885040283203,-73.9853286743164,40.67833709716797,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-06 11:19:42,2016-01-06 11:43:51,1,4.76,,,-73.96012115478516,40.71933364868164,-73.96765899658203,40.68128967285156,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-22 16:07:54,2016-01-22 16:21:43,1,2.11,,,-73.99124145507812,40.691890716552734,-74.0098648071289,40.67198181152344,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-05 18:49:39,2016-01-05 19:11:36,1,4.1,,,-73.94955444335938,40.6507453918457,-73.92487335205078,40.62694549560547,1,N,2,18.0,1.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-30 17:31:53,2016-01-30 17:44:12,1,2.86,,,-73.87222290039062,40.734195709228516,-73.92405700683594,40.743995666503906,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-16 04:47:42,2016-01-16 04:51:40,1,1.03,,,-73.90328979492188,40.74562072753906,-73.88846588134766,40.74610900878906,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-30 14:27:35,2016-01-30 14:36:57,1,4.16,,,-73.95552062988281,40.71409225463867,-73.99952697753906,40.693538665771484,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,,17.16,1.0 +1,2016-01-17 19:32:42,2016-01-17 19:39:59,1,1.5,,,-73.91584777832031,40.7601432800293,-73.9067153930664,40.745243072509766,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-25 08:26:41,2016-01-25 09:07:43,1,5.27,,,-73.90135955810547,40.74575424194336,-73.89900970458984,40.74855041503906,1,N,2,25.5,0.0,0.5,0.3,0.0,0.0,,26.3,1.0 +1,2016-01-13 20:30:51,2016-01-13 20:42:50,1,1.9,,,-73.95628356933594,40.81871795654297,-73.94400024414062,40.79960250854492,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +1,2016-01-07 22:51:39,2016-01-07 23:09:23,1,7.8,,,-73.97809600830078,40.684898376464844,-74.03485870361328,40.61985778808594,1,N,1,24.0,0.5,0.5,0.3,5.05,0.0,,30.35,1.0 +2,2016-01-27 01:44:15,2016-01-27 01:51:54,1,1.99,,,-73.94780731201172,40.80470657348633,-73.94891357421875,40.783199310302734,1,N,1,8.5,0.5,0.5,0.3,1.2,0.0,,11.0,1.0 +1,2016-01-08 18:13:55,2016-01-08 18:18:51,1,1.1,,,-73.94578552246094,40.80776596069336,-73.93531799316406,40.821720123291016,1,N,1,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-13 18:14:25,2016-01-13 18:27:53,1,5.8,,,-73.82733154296875,40.852630615234375,-73.89246368408203,40.83177185058594,1,N,2,18.5,1.0,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-26 07:12:20,2016-01-26 07:16:53,1,1.13,,,-73.86603546142578,40.89598083496094,-73.87870788574219,40.8890266418457,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-02 15:00:48,2016-01-02 15:10:46,1,2.23,,,-73.9968032836914,40.661476135253906,-73.973876953125,40.6707763671875,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-27 08:33:27,2016-01-28 00:00:00,1,1.73,,,-73.96188354492188,40.66791915893555,-73.94682312011719,40.657283782958984,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-28 14:10:55,2016-01-28 14:20:08,1,1.56,,,-73.96502685546875,40.693702697753906,-73.98715209960938,40.69347381591797,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,,11.62,1.0 +2,2016-01-10 17:56:46,2016-01-10 18:05:10,1,2.02,,,-73.9882583618164,40.68834686279297,-73.98600006103516,40.66973876953125,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-11 23:07:47,2016-01-11 23:20:17,1,4.93,,,-73.97774505615234,40.68471145629883,-73.95449829101562,40.73181915283203,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-23 11:18:32,2016-01-23 11:31:43,1,1.63,,,-73.90726470947266,40.753211975097656,-73.87806701660156,40.756263732910156,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +1,2016-01-10 16:57:36,2016-01-10 17:14:33,1,4.7,,,-73.89077758789062,40.712154388427734,-73.89032745361328,40.712154388427734,1,N,1,10.5,0.0,0.5,0.3,2.8,0.0,,14.1,1.0 +1,2016-01-25 13:14:15,2016-01-25 13:37:42,1,0.6,,,-73.88300323486328,40.74765396118164,-73.87153625488281,40.74882125854492,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-13 17:14:42,2016-01-13 17:21:49,1,0.5,,,-73.9423828125,40.842018127441406,-73.94669342041016,40.83631896972656,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-10 00:21:35,2016-01-10 00:38:16,2,5.35,,,-73.97872161865234,40.68396759033203,-74.03231048583984,40.63495635986328,1,N,1,18.5,0.5,0.5,0.3,3.96,0.0,,23.76,1.0 +2,2016-01-06 18:34:03,2016-01-06 19:25:30,1,15.47,,,-73.91265869140625,40.7668571472168,-73.78996276855469,40.64694595336914,1,N,2,47.5,1.0,0.5,0.3,0.0,0.0,,49.3,1.0 +1,2016-01-16 18:37:13,2016-01-16 18:44:33,1,1.1,,,-73.96233367919922,40.71284866333008,-73.94998168945312,40.72243881225586,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-29 18:35:25,2016-01-29 19:01:48,3,4.0,,,-73.96112060546875,40.806793212890625,-73.9627456665039,40.76240158081055,1,N,1,19.0,1.0,0.5,0.3,3.5,0.0,,24.3,1.0 +1,2016-01-29 19:24:49,2016-01-29 19:25:45,1,0.2,,,-73.95770263671875,40.7179069519043,-73.95538330078125,40.720096588134766,1,N,3,3.0,1.0,0.5,0.3,0.0,0.0,,4.8,1.0 +1,2016-01-07 09:35:43,2016-01-07 09:38:14,1,0.4,,,-73.95527648925781,40.80448532104492,-73.95304870605469,40.81005859375,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-27 19:08:45,2016-01-27 19:17:51,1,1.83,,,-73.9594497680664,40.80940246582031,-73.97372436523438,40.789764404296875,1,N,1,8.0,1.0,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-01 00:32:37,2016-01-01 00:42:44,1,1.82,,,-73.94446563720703,40.8245735168457,-73.95060729980469,40.802459716796875,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-16 19:37:07,2016-01-16 19:46:50,3,1.1,,,-73.95811462402344,40.72184371948242,-73.95319366455078,40.70842361450195,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-04 18:55:08,2016-01-04 19:14:49,1,6.86,,,-73.85181427001953,40.834083557128906,-73.95325469970703,40.807273864746094,1,N,2,22.0,1.0,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-22 21:01:33,2016-01-22 21:06:25,1,0.65,,,-73.91740417480469,40.840187072753906,-73.92573547363281,40.84111785888672,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-06 12:18:03,2016-01-06 12:23:19,1,0.98,,,-73.9904556274414,40.68667221069336,-73.99658203125,40.67719268798828,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-30 12:47:09,2016-01-30 12:50:49,1,0.49,,,-73.92520904541016,40.76223373413086,-73.92652130126953,40.75643539428711,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-16 19:28:22,2016-01-16 19:40:07,1,5.12,,,-73.8604507446289,40.833736419677734,-73.921875,40.81289291381836,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-05 19:50:38,2016-01-05 19:53:38,5,0.5,,,-73.92549896240234,40.76167678833008,-73.9255142211914,40.767738342285156,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-27 22:26:51,2016-01-27 22:47:21,6,9.3,,,-73.99091339111328,40.66380310058594,-73.96411895751953,40.75468826293945,1,N,2,27.0,0.5,0.5,0.3,0.0,0.0,,28.3,1.0 +2,2016-01-06 21:52:23,2016-01-06 21:54:23,1,0.54,,,-73.82919311523438,40.71217346191406,-73.83177947998047,40.70604705810547,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-16 18:05:44,2016-01-16 18:12:51,5,1.23,,,-73.85345458984375,40.72711181640625,-73.8619613647461,40.7249870300293,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-07 22:19:45,2016-01-07 22:38:59,1,4.8,,,-73.9688949584961,40.693145751953125,-73.91748046875,40.74650192260742,1,N,1,17.5,0.5,0.5,0.3,2.0,0.0,,20.8,1.0 +2,2016-01-02 21:14:31,2016-01-02 21:18:16,1,0.59,,,-73.91876983642578,40.75913619995117,-73.91297149658203,40.76633834838867,1,N,1,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-09 23:29:02,2016-01-09 23:42:08,1,2.7,,,-73.97747039794922,40.6875,-73.93647003173828,40.67693328857422,1,N,1,11.5,0.5,0.5,0.3,2.0,0.0,,14.8,1.0 +2,2016-01-29 09:25:32,2016-01-29 09:29:59,3,0.48,,,-73.95206451416016,40.674381256103516,-73.95780181884766,40.67107391357422,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-03 00:59:03,2016-01-03 01:05:39,1,1.26,,,-73.95780181884766,40.67109680175781,-73.94693756103516,40.67232894897461,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-13 13:03:05,2016-01-13 13:11:06,1,1.3,,,-73.96482849121094,40.803524017333984,-73.95516967773438,40.81984329223633,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-16 19:13:02,2016-01-16 19:40:21,1,7.95,,,-73.93896484375,40.805816650390625,-73.98541259765625,40.72343063354492,1,N,1,27.5,0.0,0.5,0.3,5.66,0.0,,33.96,1.0 +2,2016-01-12 04:34:25,2016-01-12 04:47:54,5,10.56,,,-73.87020874023438,40.733726501464844,-74.01280975341797,40.67918395996094,1,N,1,29.0,0.5,0.5,0.3,0.0,0.0,,30.3,1.0 +2,2016-01-06 04:13:55,2016-01-06 04:37:15,1,9.45,,,-73.92142486572266,40.76663589477539,-74.00936889648438,40.7045783996582,1,N,1,29.5,0.5,0.5,0.3,6.16,0.0,,36.96,1.0 +2,2016-01-13 08:06:25,2016-01-13 08:18:05,1,1.96,,,-73.97061157226562,40.68704605102539,-73.97174835205078,40.67519760131836,1,N,1,10.0,0.0,0.5,0.3,2.0,0.0,,12.8,1.0 +1,2016-01-22 15:45:13,2016-01-22 15:57:54,1,1.6,,,-73.94989013671875,40.78551483154297,-73.95967102050781,40.76675796508789,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-02 12:21:02,2016-01-02 12:21:28,1,2.4,,,-73.90553283691406,40.81547927856445,-73.90553283691406,40.81547927856445,5,N,1,7.0,0.0,0.0,0,0.0,0.0,,7.0,2.0 +2,2016-01-19 19:10:08,2016-01-19 20:06:02,1,18.27,,,-73.80789184570312,40.70051193237305,-73.96076202392578,40.81407165527344,1,N,1,58.0,1.0,0.5,0.3,3.0,5.54,,68.34,1.0 +2,2016-01-19 02:39:40,2016-01-19 02:44:43,1,1.42,,,-73.91123962402344,40.744537353515625,-73.88644409179688,40.74730682373047,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-30 21:23:06,2016-01-30 21:39:05,1,2.04,,,-73.95328521728516,40.72807693481445,-73.94286346435547,40.713951110839844,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,,15.36,1.0 +1,2016-01-04 22:16:08,2016-01-04 22:27:15,1,4.3,,,-73.8343505859375,40.75770950317383,-73.78056335449219,40.73833084106445,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-08 21:20:55,2016-01-08 21:50:22,2,8.51,,,-73.95137023925781,40.71247100830078,-73.97406005859375,40.650596618652344,1,N,2,28.5,0.5,0.5,0.3,0.0,0.0,,29.8,1.0 +2,2016-01-09 16:16:38,2016-01-09 16:30:19,1,3.05,,,-73.95111846923828,40.71112060546875,-73.9836196899414,40.693721771240234,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,,16.56,1.0 +1,2016-01-19 09:50:59,2016-01-19 09:54:44,1,0.6,,,-73.97674560546875,40.68692398071289,-73.96879577636719,40.68280029296875,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-06 21:12:30,2016-01-06 21:19:48,1,1.5,,,-73.94009399414062,40.8095588684082,-73.94953918457031,40.82020568847656,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-15 10:31:07,2016-01-15 10:37:50,1,1.0,,,-73.89093017578125,40.7468376159668,-73.90049743652344,40.74156951904297,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-21 18:50:55,2016-01-21 18:59:23,1,2.45,,,-73.9864730834961,40.70399475097656,-73.99471282958984,40.721256256103516,1,N,1,9.5,1.0,0.5,0.3,2.26,0.0,,13.56,1.0 +2,2016-01-02 09:16:33,2016-01-02 09:20:17,1,1.2,,,-73.9384536743164,40.80891036987305,-73.93074798583984,40.821956634521484,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-08 23:06:34,2016-01-08 23:09:59,1,0.8,,,-73.94708251953125,40.81563949584961,-73.93817138671875,40.82271194458008,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-01 03:40:19,2016-01-01 03:49:31,1,2.07,,,-73.95706176757812,40.6732177734375,-73.97135162353516,40.6754035949707,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-02 21:04:26,2016-01-02 21:17:16,1,2.01,,,-73.9715576171875,40.67579650878906,-73.9999008178711,40.682762145996094,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-13 16:20:26,2016-01-13 16:28:23,1,0.77,,,-73.89664459228516,40.74618911743164,-73.88188171386719,40.74781036376953,1,N,1,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-22 13:39:13,2016-01-22 13:44:10,1,0.89,,,-73.94396209716797,40.815162658691406,-73.94564056396484,40.80464172363281,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-28 16:44:49,2016-01-28 17:23:14,3,3.1,,,-73.94508361816406,40.807647705078125,-73.90888977050781,40.83344268798828,1,Y,1,23.0,1.0,0.5,0.3,0.0,0.0,,24.8,1.0 +2,2016-01-11 19:12:43,2016-01-11 19:19:23,1,0.88,,,-73.90327453613281,40.745811462402344,-73.90287017822266,40.738277435302734,1,N,1,6.0,1.0,0.5,0.3,0.62,0.0,,8.42,1.0 +2,2016-01-15 14:55:46,2016-01-15 15:26:00,5,5.9,,,-73.93769073486328,40.79862594604492,-73.99400329589844,40.75240707397461,1,N,2,24.0,0.0,0.5,0.3,0.0,0.0,,24.8,1.0 +2,2016-01-13 13:05:52,2016-01-13 13:29:24,1,3.67,,,-73.89679718017578,40.74623107910156,-73.85055541992188,40.74182891845703,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-17 02:04:19,2016-01-17 02:13:37,1,4.97,,,-73.99100494384766,40.692195892333984,-73.94874572753906,40.709938049316406,1,N,1,15.5,0.5,0.5,0.3,4.2,0.0,,21.0,1.0 +1,2016-01-28 06:40:53,2016-01-28 06:57:50,1,2.7,,,-73.86241912841797,40.840362548828125,-73.89046478271484,40.861289978027344,5,N,2,0.0,0.0,0.0,0,0.0,0.0,,0.0,2.0 +2,2016-01-19 22:40:59,2016-01-19 22:49:13,1,2.29,,,-73.9760513305664,40.68956756591797,-73.95736694335938,40.67334747314453,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-14 16:15:29,2016-01-14 16:29:39,1,2.43,,,-73.96210479736328,40.66278839111328,-73.98758697509766,40.69041061401367,1,N,2,12.0,1.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-20 22:29:58,2016-01-20 22:33:48,1,0.48,,,-73.9378662109375,40.804527282714844,-73.93763732910156,40.80977249145508,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-13 13:00:37,2016-01-13 13:00:42,1,0.0,,,-73.90135955810547,40.76384353637695,-73.9013671875,40.76385498046875,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-28 21:18:34,2016-01-28 21:21:59,1,0.61,,,-73.91209411621094,40.77509689331055,-73.90440368652344,40.77170181274414,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-10 17:06:31,2016-01-10 17:11:40,1,0.97,,,-73.9449234008789,40.81883239746094,-73.95354461669922,40.806884765625,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-01 02:24:21,2016-01-01 02:45:24,1,5.7,,,-74.02437591552734,40.63858413696289,-73.97040557861328,40.646934509277344,1,N,1,21.5,0.5,0.5,0.3,5.0,0.0,,27.8,1.0 +2,2016-01-28 10:03:06,2016-01-28 10:09:08,1,1.15,,,-73.88408660888672,40.7643928527832,-73.87214660644531,40.75394821166992,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-29 21:19:03,2016-01-29 21:33:26,1,3.1,,,-73.87957763671875,40.740806579589844,-73.85511016845703,40.721248626708984,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-29 18:22:49,2016-01-29 18:31:33,2,1.42,,,-73.95269012451172,40.78942108154297,-73.93885803222656,40.80485534667969,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-20 13:03:40,2016-01-20 13:05:12,1,0.48,,,-73.94233703613281,40.78644561767578,-73.9441909790039,40.79142761230469,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-27 19:22:27,2016-01-27 19:29:54,1,1.19,,,-73.83021545410156,40.713687896728516,-73.81085968017578,40.712642669677734,1,N,1,7.0,1.0,0.5,0.3,2.64,0.0,,11.44,1.0 +2,2016-01-29 18:07:34,2016-01-29 18:16:53,2,1.62,,,-73.9434585571289,40.747276306152344,-73.9386215209961,40.73496627807617,1,N,1,8.0,1.0,0.5,0.3,2.45,0.0,,12.25,1.0 +2,2016-01-16 10:28:58,2016-01-16 10:38:53,1,1.63,,,-73.83056640625,40.75955581665039,-73.80941009521484,40.7645263671875,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-05 08:06:03,2016-01-05 08:21:29,1,3.0,,,-73.9568099975586,40.748104095458984,-73.98587036132812,40.74992370605469,1,N,1,12.5,0.0,0.5,0.3,4.7,5.54,,23.54,1.0 +2,2016-01-21 16:39:08,2016-01-21 17:06:15,1,6.7,,,-73.9466552734375,40.79179763793945,-73.9844970703125,40.72037887573242,1,N,2,23.5,1.0,0.5,0.3,0.0,0.0,,25.3,1.0 +2,2016-01-09 12:29:35,2016-01-09 12:33:02,1,0.45,,,-73.93450164794922,40.848140716552734,-73.92965698242188,40.85232162475586,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-01 01:16:55,2016-01-01 01:22:20,1,1.15,,,-73.99443817138672,40.680816650390625,-74.0042953491211,40.681793212890625,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-05 17:07:22,2016-01-05 17:09:44,1,0.65,,,-73.95442199707031,40.78984069824219,-73.96450805664062,40.791866302490234,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-16 23:54:07,2016-01-17 00:00:30,1,1.19,,,-73.99549102783203,40.683189392089844,-73.98072814941406,40.68517303466797,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-15 14:15:48,2016-01-15 14:21:43,1,1.03,,,-73.8442611694336,40.721370697021484,-73.84671020507812,40.710693359375,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-30 08:38:35,2016-01-30 08:58:49,1,3.26,,,-73.95682525634766,40.74805450439453,-73.96177673339844,40.7182731628418,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-17 17:23:05,2016-01-17 17:42:52,1,3.71,,,-73.9629135131836,40.712005615234375,-73.9344253540039,40.75347900390625,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +1,2016-01-30 18:01:06,2016-01-30 18:21:57,1,2.8,,,-73.950439453125,40.821224212646484,-73.91813659667969,40.84185028076172,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-10 12:49:32,2016-01-10 12:57:34,1,1.31,,,-73.9188461303711,40.75908660888672,-73.90374755859375,40.774696350097656,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-13 13:50:56,2016-01-13 14:15:36,1,6.14,,,-73.94654846191406,40.80647277832031,-73.9819564819336,40.763675689697266,1,N,1,23.0,0.0,0.5,0.3,5.95,0.0,,29.75,1.0 +1,2016-01-06 13:38:59,2016-01-06 13:47:53,1,2.0,,,-73.99061584472656,40.70262908935547,-74.00658416748047,40.70986557006836,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,,11.75,1.0 +2,2016-01-27 18:45:47,2016-01-27 18:52:41,1,1.25,,,-73.90364074707031,40.745975494384766,-73.89457702636719,40.75836181640625,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-07 03:00:10,2016-01-07 03:07:53,1,1.89,,,-73.94015502929688,40.75031280517578,-73.92108154296875,40.735450744628906,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-26 12:50:54,2016-01-26 13:03:40,1,2.1,,,-73.97692108154297,40.672508239746094,-74.00044250488281,40.6546630859375,1,N,1,10.0,0.5,0.5,0.3,2.8,0.0,,14.1,1.0 +2,2016-01-09 21:18:30,2016-01-09 21:28:13,1,1.59,,,-73.89068603515625,40.74671173095703,-73.87088012695312,40.73390579223633,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-28 22:02:55,2016-01-28 22:14:38,1,5.53,,,-73.93912506103516,40.79096603393555,-73.91911315917969,40.853790283203125,1,N,1,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-05 23:10:54,2016-01-05 23:30:39,1,4.41,,,-73.98017883300781,40.668540954589844,-73.93965148925781,40.6390266418457,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-13 08:59:15,2016-01-13 09:00:24,1,0.53,,,-73.95525360107422,40.788719177246094,-73.96295928955078,40.793983459472656,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,,4.3,1.0 +2,2016-01-02 13:14:59,2016-01-02 13:22:42,1,1.85,,,-73.94313049316406,40.754398345947266,-73.93310546875,40.77470016479492,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-10 02:33:12,2016-01-10 03:02:46,1,7.37,,,-73.95664978027344,40.720882415771484,-73.97607421875,40.76539993286133,1,N,1,26.5,0.5,0.5,0.3,2.0,0.0,,29.8,1.0 +2,2016-01-13 20:38:08,2016-01-13 20:46:28,1,1.13,,,-73.89176940917969,40.74867630004883,-73.8833236694336,40.754661560058594,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-17 12:26:26,2016-01-17 12:37:54,1,6.0,,,-73.91761016845703,40.76996994018555,-73.95298767089844,40.765506744384766,1,N,1,18.0,0.0,0.5,0.3,7.3,5.54,,31.64,1.0 +2,2016-01-29 21:23:25,2016-01-29 21:28:34,1,0.79,,,-73.84630584716797,40.72273254394531,-73.85979461669922,40.72828674316406,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-01 21:58:54,2016-01-01 22:11:19,1,5.67,,,-73.95639038085938,40.813621520996094,-73.89404296875,40.84229278564453,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-03 21:37:15,2016-01-03 21:40:58,2,0.72,,,-73.89361572265625,40.74644088745117,-73.90311431884766,40.7457160949707,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,,6.96,1.0 +2,2016-01-20 16:08:49,2016-01-20 16:14:27,3,0.77,,,-73.98112487792969,40.66845703125,-73.98397827148438,40.663116455078125,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-05 16:19:32,2016-01-05 16:20:50,1,0.0,,,-73.93907928466797,40.805503845214844,-73.93883514404297,40.80520248413086,5,N,2,9.0,0.0,0.0,0,0.0,0.0,,9.0,2.0 +2,2016-01-13 08:38:04,2016-01-13 09:11:28,1,6.36,,,-73.98670959472656,40.70286178588867,-73.9865493774414,40.745826721191406,1,N,1,25.5,0.0,0.5,0.3,5.26,0.0,,31.56,1.0 +2,2016-01-02 13:05:36,2016-01-02 13:13:10,1,1.67,,,-73.91117095947266,40.77576446533203,-73.93073272705078,40.766387939453125,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-25 10:44:05,2016-01-25 10:55:44,1,4.82,,,-73.9428939819336,40.83669662475586,-73.9814224243164,40.78276443481445,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +1,2016-01-11 07:52:07,2016-01-11 08:04:29,1,3.2,,,-73.87361907958984,40.756900787353516,-73.91034698486328,40.77593994140625,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-08 22:35:17,2016-01-08 22:39:40,1,0.68,,,-73.93968200683594,40.79874038696289,-73.95087432861328,40.8025016784668,1,N,1,5.0,0.5,0.5,0.3,0.5,0.0,,6.8,1.0 +2,2016-01-24 16:09:22,2016-01-24 16:13:14,1,0.49,,,-73.94884490966797,40.81342697143555,-73.95236206054688,40.814029693603516,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-29 21:12:22,2016-01-29 21:25:22,3,2.58,,,-73.97969818115234,40.66917037963867,-73.93708801269531,40.666439056396484,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-20 18:21:39,2016-01-20 18:33:45,1,4.42,,,-73.8290786743164,40.71348571777344,-73.8151626586914,40.66722869873047,1,N,1,14.5,1.0,0.5,0.3,2.7,0.0,,19.0,1.0 +2,2016-01-26 21:43:58,2016-01-26 22:20:34,1,13.21,,,-73.96231079101562,40.67024612426758,-73.96422576904297,40.79896926879883,1,N,1,40.5,0.5,0.5,0.3,3.0,0.0,,44.8,1.0 +2,2016-01-10 16:54:35,2016-01-10 16:59:47,1,0.87,,,-73.95700073242188,40.67332077026367,-73.94794464111328,40.6677131652832,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-20 03:39:52,2016-01-20 03:48:52,2,2.0,,,-73.88297271728516,40.74782180786133,-73.87623596191406,40.770320892333984,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-16 07:06:13,2016-01-16 07:09:08,1,0.7,,,-73.93518829345703,40.80066680908203,-73.94473266601562,40.80028533935547,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +1,2016-01-02 11:19:23,2016-01-02 11:27:26,2,3.2,,,-73.88471221923828,40.74778747558594,-73.91439056396484,40.77535629272461,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,,14.15,1.0 +2,2016-01-13 19:01:32,2016-01-13 19:08:48,1,1.2,,,-73.97772979736328,40.68459701538086,-73.96014404296875,40.68962860107422,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-26 10:17:12,2016-01-26 10:26:59,1,0.95,,,-73.98678588867188,40.70243453979492,-73.99050903320312,40.6933479309082,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +1,2016-01-15 16:30:17,2016-01-15 16:33:38,1,0.5,,,-73.89637756347656,40.74608612060547,-73.89952087402344,40.741485595703125,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-07 18:56:40,2016-01-07 19:02:23,1,1.27,,,-73.919189453125,40.75910186767578,-73.93148803710938,40.76921844482422,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-30 23:47:37,2016-01-30 23:53:22,1,1.1,,,-73.96141052246094,40.7164421081543,-73.94732666015625,40.721527099609375,1,N,1,6.0,0.5,0.5,0.3,2.15,0.0,,9.45,1.0 +2,2016-01-03 05:54:58,2016-01-03 05:55:05,1,0.49,,,-73.865966796875,40.83477020263672,-73.85589599609375,40.83174514770508,5,N,1,17.8,0.0,0.0,0,0.0,0.0,,17.8,2.0 +2,2016-01-15 16:04:27,2016-01-15 16:19:18,1,2.24,,,-73.9246597290039,40.86642074584961,-73.9311294555664,40.859588623046875,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-06 14:57:57,2016-01-06 15:25:59,1,2.46,,,-73.95289611816406,40.78928756713867,-73.95728302001953,40.76665115356445,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-10 10:52:23,2016-01-10 11:07:04,1,3.53,,,-73.91381072998047,40.6755485534668,-73.970947265625,40.675376892089844,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-19 17:21:08,2016-01-19 17:27:27,1,0.88,,,-73.99324798583984,40.68276596069336,-73.99710845947266,40.684722900390625,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-02 18:08:51,2016-01-02 18:12:00,1,0.96,,,-73.9423599243164,40.79490280151367,-73.9417724609375,40.80626678466797,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-29 08:38:33,2016-01-29 08:47:00,1,1.05,,,-74.00088500976562,40.68379211425781,-73.98541259765625,40.67669677734375,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-02 20:44:56,2016-01-02 20:48:29,1,0.7,,,-73.91874694824219,40.76215362548828,-73.92371368408203,40.75456619262695,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-13 08:55:58,2016-01-13 09:05:36,1,1.45,,,-73.84416961669922,40.72134017944336,-73.85014343261719,40.7341423034668,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,,11.16,1.0 +1,2016-01-29 23:02:41,2016-01-29 23:19:34,1,2.5,,,-73.89904022216797,40.74613952636719,-73.85688018798828,40.74317169189453,1,N,1,12.5,0.5,0.5,0.3,3.0,0.0,,16.8,1.0 +2,2016-01-17 16:39:05,2016-01-17 16:59:57,1,4.12,,,-74.01029205322266,40.672115325927734,-73.95850372314453,40.67911911010742,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-18 03:38:40,2016-01-18 03:56:20,1,4.2,,,-73.95773315429688,40.72206115722656,-74.0108642578125,40.72026824951172,1,N,1,16.5,0.5,0.5,0.3,1.0,0.0,,18.8,1.0 +2,2016-01-14 20:35:24,2016-01-14 20:51:44,1,3.99,,,-73.9677963256836,40.688201904296875,-74.01554870605469,40.71147155761719,1,N,1,15.0,0.5,0.5,0.3,3.26,0.0,,19.56,1.0 +1,2016-01-18 07:54:35,2016-01-18 08:00:28,1,1.7,,,-73.93917846679688,40.80499267578125,-73.95500183105469,40.788818359375,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,,9.95,1.0 +2,2016-01-05 16:48:25,2016-01-05 16:51:21,1,0.48,,,-73.95799255371094,40.60887145996094,-73.95404815673828,40.613182067871094,1,N,1,4.0,1.0,0.5,0.3,1.01,0.0,,6.81,1.0 +2,2016-01-19 05:10:15,2016-01-19 05:24:55,1,6.93,,,-73.95742797851562,40.714412689208984,-73.91362762451172,40.774871826171875,1,N,2,21.5,0.5,0.5,0.3,0.0,0.0,,22.8,1.0 +1,2016-01-14 21:47:40,2016-01-14 22:10:21,1,7.0,,,-73.98827362060547,40.670719146728516,-73.98564910888672,40.7238883972168,1,N,1,23.5,0.5,0.5,0.3,4.0,0.0,,28.8,1.0 +1,2016-01-23 06:56:24,2016-01-23 07:27:03,1,3.7,,,-73.94285583496094,40.78578567504883,-73.98811340332031,40.76902770996094,1,N,1,18.5,0.0,0.5,0.3,4.83,0.0,,24.13,1.0 +2,2016-01-09 10:39:01,2016-01-09 10:44:06,1,1.28,,,-73.93729400634766,40.8043212890625,-73.92640686035156,40.81065368652344,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-07 23:39:30,2016-01-07 23:47:49,1,1.14,,,-73.8802261352539,40.74815368652344,-73.87657165527344,40.7593879699707,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-30 01:09:58,2016-01-30 01:15:02,1,0.75,,,-73.82843780517578,40.713294982910156,-73.83331298828125,40.70670700073242,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-04 08:01:01,2016-01-04 08:06:51,2,0.79,,,-73.90617370605469,40.77280044555664,-73.91622924804688,40.76241683959961,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-11 21:09:59,2016-01-11 21:30:13,1,6.86,,,-73.98902130126953,40.69325637817383,-73.9849624633789,40.75188446044922,1,N,2,22.5,0.5,0.5,0.3,0.0,0.0,,23.8,1.0 +2,2016-01-11 07:51:08,2016-01-11 07:59:12,1,1.66,,,-73.95423126220703,40.742767333984375,-73.94049072265625,40.76124572753906,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,,9.8,1.0 +1,2016-01-05 17:09:48,2016-01-05 17:12:36,1,0.4,,,-73.94815826416016,40.79834747314453,-73.94239807128906,40.79908752441406,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-02 15:04:43,2016-01-02 15:05:17,1,0.2,,,-73.93867492675781,40.795814514160156,-73.94025421142578,40.79361343383789,1,N,1,2.5,0.0,0.5,0.3,0.1,0.0,,3.4,1.0 +2,2016-01-13 18:24:47,2016-01-13 18:31:42,1,0.77,,,-73.94215393066406,40.842098236083984,-73.93537139892578,40.850013732910156,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-16 01:55:31,2016-01-16 02:04:45,2,1.87,,,-73.99463653564453,40.68064880371094,-73.98063659667969,40.66566848754883,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-14 10:03:16,2016-01-14 10:09:16,1,1.26,,,-73.94650268554688,40.78545379638672,-73.9439468383789,40.798580169677734,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-01 16:57:58,2016-01-01 17:06:13,1,1.22,,,-73.93875122070312,40.8054313659668,-73.95735931396484,40.81474685668945,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-14 16:37:42,2016-01-14 17:22:53,1,13.77,,,-73.98872375488281,40.66526794433594,-73.8619613647461,40.76853561401367,1,N,1,41.0,1.0,0.5,0.3,8.56,0.0,,51.36,1.0 +2,2016-01-07 00:22:50,2016-01-07 00:31:09,1,1.38,,,-73.93917083740234,40.81075668334961,-73.95292663574219,40.80091094970703,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-15 05:39:42,2016-01-15 05:45:11,1,1.26,,,-73.95465087890625,40.73230743408203,-73.95641326904297,40.71712875366211,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-03 01:31:34,2016-01-03 01:33:44,1,0.53,,,-73.92452239990234,40.761512756347656,-73.92562103271484,40.75461959838867,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-12 15:54:19,2016-01-12 16:00:23,1,1.13,,,-73.96834564208984,40.70889663696289,-73.95757293701172,40.71778869628906,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-07 16:41:40,2016-01-07 17:00:01,6,2.52,,,-73.97994232177734,40.66889190673828,-73.95025634765625,40.68043518066406,1,N,2,13.5,1.0,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-12 10:04:25,2016-01-12 10:05:09,1,0.22,,,-73.93639373779297,40.79905700683594,-73.93843078613281,40.79623794555664,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-02 01:41:53,2016-01-02 01:49:27,1,1.38,,,-73.90741729736328,40.697418212890625,-73.90779876708984,40.70970916748047,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +1,2016-01-25 15:10:19,2016-01-25 15:25:15,2,4.3,,,-73.93746185302734,40.804264068603516,-73.8703384399414,40.82443618774414,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +1,2016-01-03 21:59:34,2016-01-03 22:12:06,1,3.8,,,-73.95824432373047,40.68172836303711,-73.94746398925781,40.7248420715332,1,N,1,13.5,0.5,0.5,0.3,2.95,0.0,,17.75,1.0 +2,2016-01-04 18:32:10,2016-01-04 18:38:45,3,1.27,,,-73.9893569946289,40.70249557495117,-73.98213958740234,40.6882438659668,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +1,2016-01-02 20:24:11,2016-01-02 20:32:16,1,0.8,,,-73.87435150146484,40.73508071899414,-73.86304473876953,40.73681640625,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-04 20:09:22,2016-01-04 20:12:19,1,0.55,,,-73.98272705078125,40.66563034057617,-73.99026489257812,40.66092300415039,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-24 22:34:29,2016-01-24 22:57:29,1,6.49,,,-73.9446029663086,40.7144889831543,-73.99288177490234,40.7542724609375,1,N,1,22.5,0.5,0.5,0.3,5.95,0.0,,29.75,1.0 +2,2016-01-27 16:28:07,2016-01-27 16:34:22,1,2.29,,,-73.80709075927734,40.699398040771484,-73.80580139160156,40.67485427856445,5,N,1,15.0,0.0,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-08 19:06:23,2016-01-08 19:29:19,1,4.32,,,-73.93417358398438,40.79750442504883,-73.9817886352539,40.76834487915039,1,N,1,18.0,1.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-26 18:02:03,2016-01-26 18:07:30,1,0.86,,,-73.99246978759766,40.69412612915039,-73.99913024902344,40.68485641479492,1,N,1,5.5,1.0,0.5,0.3,1.7,0.0,,9.0,1.0 +2,2016-01-09 22:51:03,2016-01-09 22:59:33,1,2.01,,,-73.896728515625,40.746185302734375,-73.8789291381836,40.73611831665039,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-08 05:12:28,2016-01-08 05:35:21,1,6.36,,,-73.95244598388672,40.67780685424805,-73.99032592773438,40.73777389526367,1,N,2,22.0,0.5,0.5,0.3,0.0,0.0,,23.3,1.0 +1,2016-01-08 18:47:18,2016-01-08 18:51:47,1,0.6,,,-73.95137023925781,40.809532165527344,-73.9547348022461,40.802520751953125,1,N,1,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-16 20:37:45,2016-01-16 20:44:13,1,1.07,,,-73.8697280883789,40.73358154296875,-73.86396026611328,40.72587585449219,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-29 07:51:40,2016-01-29 08:03:53,1,1.6,,,-73.88951110839844,40.74701690673828,-73.86353302001953,40.74562072753906,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-08 00:14:07,2016-01-08 00:24:36,2,2.5,,,-73.98619079589844,40.66932678222656,-73.95681762695312,40.673946380615234,1,N,1,10.5,0.5,0.5,0.3,2.0,0.0,,13.8,1.0 +2,2016-01-12 00:14:23,2016-01-12 01:10:22,3,10.46,,,-73.78560638427734,40.594966888427734,-73.8095932006836,40.692203521728516,5,N,1,35.0,0.0,0.0,0,0.0,0.0,,35.0,2.0 +2,2016-01-14 17:10:21,2016-01-14 17:15:37,1,0.75,,,-73.87508392333984,40.735286712646484,-73.88802337646484,40.738990783691406,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-14 08:38:35,2016-01-14 08:48:11,1,1.2,,,-73.92855834960938,40.769161224365234,-73.94221496582031,40.7543830871582,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,,9.8,1.0 +2,2016-01-08 23:14:42,2016-01-08 23:57:51,1,13.1,,,-73.91814422607422,40.69879150390625,-73.8650894165039,40.74962615966797,1,N,2,41.0,0.5,0.5,0.3,0.0,0.0,,42.3,1.0 +2,2016-01-10 02:18:28,2016-01-10 02:22:36,1,0.95,,,-73.9962158203125,40.690895080566406,-73.98484802246094,40.68366622924805,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,,7.56,1.0 +2,2016-01-21 07:42:42,2016-01-21 08:02:49,1,2.71,,,-73.85675048828125,40.84031677246094,-73.8663330078125,40.8456916809082,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-15 19:19:16,2016-01-15 19:21:44,1,0.5,,,-73.95085144042969,40.66292190551758,-73.94538879394531,40.65989685058594,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-08 18:33:16,2016-01-08 18:47:06,1,2.1,,,-73.9868392944336,40.68767547607422,-73.9564437866211,40.675048828125,1,N,2,11.0,1.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-03 09:38:29,2016-01-03 09:46:28,1,1.99,,,-73.91917419433594,40.83514404296875,-73.90809631347656,40.85390090942383,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-11 10:30:59,2016-01-11 10:39:34,1,0.82,,,-73.93915557861328,40.80550003051758,-73.95038604736328,40.811622619628906,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-21 21:48:00,2016-01-21 22:08:42,1,3.83,,,-73.99251556396484,40.689491271972656,-73.93363952636719,40.68069839477539,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-01 00:13:46,2016-01-01 00:31:57,1,4.19,,,-73.89212036132812,40.7466926574707,-73.90043640136719,40.69689178466797,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-16 16:02:23,2016-01-16 16:08:45,3,0.91,,,-73.9561996459961,40.714298248291016,-73.9578857421875,40.72194290161133,1,N,1,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-08 16:25:45,2016-01-08 16:32:33,1,0.89,,,-73.92486572265625,40.81802749633789,-73.9412612915039,40.8226318359375,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-01 02:07:27,2016-01-01 02:14:08,1,1.1,,,-73.93016052246094,40.86186599731445,-73.9384536743164,40.846519470214844,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-21 07:14:52,2016-01-21 07:22:00,1,1.4,,,-73.94794464111328,40.80141830444336,-73.96050262451172,40.807586669921875,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,,9.3,1.0 +1,2016-01-01 02:54:22,2016-01-01 03:00:47,1,1.4,,,-73.99310302734375,40.68279266357422,-73.983642578125,40.679256439208984,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-27 14:30:56,2016-01-27 14:43:08,1,2.1,,,-73.95209503173828,40.82414245605469,-73.9349594116211,40.85182571411133,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-28 09:23:11,2016-01-28 09:34:21,1,2.09,,,-73.93878936767578,40.80534362792969,-73.95246124267578,40.81070327758789,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-18 10:26:31,2016-01-18 10:39:18,1,2.01,,,-73.88221740722656,40.830257415771484,-73.9156723022461,40.8175163269043,5,N,2,10.0,0.0,0.0,0,0.0,0.0,,10.0,2.0 +1,2016-01-28 20:21:11,2016-01-28 20:27:43,1,0.9,,,-73.89152526855469,40.746681213378906,-73.9029769897461,40.7447624206543,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-26 10:24:36,2016-01-26 10:27:40,1,0.42,,,-73.94497680664062,40.834197998046875,-73.94400787353516,40.83014678955078,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-19 17:28:13,2016-01-19 17:38:33,1,1.81,,,-73.84536743164062,40.85573196411133,-73.87126159667969,40.84223175048828,5,N,2,12.0,0.0,0.0,0,0.0,0.0,,12.0,2.0 +2,2016-01-30 20:49:23,2016-01-30 21:05:08,1,4.84,,,-73.8442153930664,40.72100067138672,-73.87847900390625,40.75953674316406,1,N,1,17.0,0.5,0.5,0.3,5.49,0.0,,23.79,1.0 +1,2016-01-22 17:38:08,2016-01-22 18:22:29,1,7.8,,,-73.99345397949219,40.68214797973633,-73.98257446289062,40.75701141357422,1,N,1,33.0,1.0,0.5,0.3,10.4,0.0,,45.2,1.0 +2,2016-01-13 18:22:34,2016-01-13 18:41:50,1,3.57,,,-73.94815063476562,40.79536437988281,-73.93840789794922,40.82969284057617,1,N,2,16.0,1.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-14 00:51:43,2016-01-14 00:59:15,1,1.36,,,-73.95773315429688,40.72211456298828,-73.95869445800781,40.708675384521484,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-22 10:14:33,2016-01-22 10:17:08,1,0.38,,,-73.97364044189453,40.69325256347656,-73.97087860107422,40.693626403808594,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-11 19:16:23,2016-01-11 19:24:11,1,1.57,,,-73.8714599609375,40.733821868896484,-73.85005187988281,40.72443389892578,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-18 08:30:05,2016-01-18 08:34:22,1,0.66,,,-73.99295806884766,40.69765853881836,-73.98942565917969,40.703338623046875,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-11 09:26:41,2016-01-11 09:33:09,1,1.08,,,-73.94535827636719,40.82011795043945,-73.94495391845703,40.80866622924805,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-13 20:57:26,2016-01-13 21:02:36,1,1.35,,,-73.90348052978516,40.74538803100586,-73.90135955810547,40.73224639892578,1,N,1,6.0,0.5,0.5,0.3,1.82,0.0,,9.12,1.0 +2,2016-01-30 14:48:02,2016-01-30 15:07:28,1,7.82,,,-73.85613250732422,40.73702621459961,-73.9853286743164,40.74481964111328,1,N,2,24.5,0.0,0.5,0.3,0.0,5.54,,30.84,1.0 +2,2016-01-17 21:27:52,2016-01-17 21:34:30,1,3.98,,,-73.89118194580078,40.746490478515625,-73.85971069335938,40.76057052612305,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-12 11:36:31,2016-01-12 11:51:55,1,2.91,,,-73.97994995117188,40.668758392333984,-73.95177459716797,40.688316345214844,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-11 18:28:00,2016-01-11 18:42:44,5,3.04,,,-73.99076843261719,40.69249725341797,-73.95032501220703,40.67195129394531,1,N,1,13.0,1.0,0.5,0.3,2.96,0.0,,17.76,1.0 +2,2016-01-30 02:57:57,2016-01-30 03:02:02,1,1.11,,,-73.9538345336914,40.730220794677734,-73.93778991699219,40.73415756225586,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-16 01:19:36,2016-01-16 01:34:33,1,4.41,,,-73.9556884765625,40.71963882446289,-73.93339538574219,40.77198791503906,1,N,1,15.5,0.5,0.5,0.3,3.2,0.0,,20.0,1.0 +2,2016-01-29 20:02:08,2016-01-29 20:13:31,1,1.88,,,-73.91129302978516,40.76570129394531,-73.92778778076172,40.74523162841797,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,,12.96,1.0 +1,2016-01-10 15:11:13,2016-01-10 15:34:07,2,4.5,,,-73.95655822753906,40.674896240234375,-73.94596862792969,40.62721633911133,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +2,2016-01-30 16:51:37,2016-01-30 17:00:44,1,1.21,,,-73.93110656738281,40.8215217590332,-73.94947814941406,40.8260612487793,1,N,1,8.0,0.0,0.5,0.3,1.5,0.0,,10.3,1.0 +1,2016-01-13 20:23:41,2016-01-13 20:37:00,3,2.8,,,-73.9735107421875,40.68326950073242,-73.93727111816406,40.690093994140625,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-09 04:28:54,2016-01-09 04:39:38,5,1.97,,,-73.98748779296875,40.66773986816406,-73.99311828613281,40.68775939941406,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-01 19:42:43,2016-01-01 20:06:36,1,6.52,,,-73.97091674804688,40.67536926269531,-73.98338317871094,40.729949951171875,1,N,1,23.0,0.0,0.5,0.3,5.95,0.0,,29.75,1.0 +2,2016-01-14 21:46:45,2016-01-14 21:53:24,1,1.61,,,-73.95406341552734,40.805946350097656,-73.94037628173828,40.82636642456055,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-15 21:08:25,2016-01-15 21:24:25,1,3.41,,,-73.97713470458984,40.687435150146484,-73.98489379882812,40.72807693481445,1,N,1,14.0,0.5,0.5,0.3,3.06,0.0,,18.36,1.0 +2,2016-01-02 14:23:58,2016-01-02 14:42:42,1,4.93,,,-73.94995880126953,40.7972412109375,-73.99464416503906,40.75062561035156,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-25 19:03:36,2016-01-25 19:06:25,2,0.33,,,-73.93846893310547,40.80607986450195,-73.93876647949219,40.80837631225586,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-22 07:34:42,2016-01-22 07:44:45,1,2.59,,,-73.85523223876953,40.661720275878906,-73.84580993652344,40.6839485168457,1,N,1,10.5,0.0,0.5,0.3,2.82,0.0,,14.12,1.0 +2,2016-01-26 07:45:59,2016-01-26 08:01:06,1,2.14,,,-73.98678588867188,40.7024040222168,-74.01461791992188,40.714508056640625,1,N,1,11.5,0.0,0.5,0.3,3.69,0.0,,15.99,1.0 +2,2016-01-30 17:21:15,2016-01-30 17:49:27,1,5.14,,,-73.93693542480469,40.697933197021484,-73.99344635009766,40.6990966796875,1,N,1,20.5,0.0,0.5,0.3,2.0,0.0,,23.3,1.0 +2,2016-01-03 07:06:26,2016-01-03 07:10:01,1,0.78,,,-73.9421615600586,40.7541618347168,-73.93342590332031,40.759586334228516,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-20 13:56:41,2016-01-20 14:02:57,1,0.95,,,-73.95038604736328,40.79234313964844,-73.93701171875,40.802120208740234,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-30 18:19:41,2016-01-30 18:27:28,1,1.26,,,-73.95706176757812,40.71843338012695,-73.94094848632812,40.72108459472656,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,,8.8,1.0 +2,2016-01-30 19:51:49,2016-01-30 20:03:00,1,2.63,,,-73.86382293701172,40.73284149169922,-73.85702514648438,40.702857971191406,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-21 16:42:38,2016-01-21 16:55:06,1,1.78,,,-73.94987487792969,40.680477142333984,-73.97785186767578,40.68510437011719,1,N,1,10.0,1.0,0.5,0.3,2.2,0.0,,14.0,1.0 +2,2016-01-30 04:27:47,2016-01-30 04:36:16,1,1.5,,,-73.95110321044922,40.723968505859375,-73.95013427734375,40.70746612548828,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-01 05:20:50,2016-01-01 05:32:07,1,3.74,,,-73.94026947021484,40.83697509765625,-73.92524719238281,40.861328125,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +2,2016-01-30 22:04:27,2016-01-30 22:08:50,3,0.59,,,-73.9188003540039,40.76569747924805,-73.91112518310547,40.7673225402832,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-22 03:59:10,2016-01-22 04:18:40,1,6.63,,,-73.9213638305664,40.76666259765625,-73.86804962158203,40.722469329833984,1,N,2,21.5,0.5,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-21 10:12:29,2016-01-21 10:35:23,1,3.68,,,-73.95634460449219,40.745399475097656,-73.97045135498047,40.75908660888672,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-30 01:43:35,2016-01-31 01:26:23,5,1.33,,,-73.92572021484375,40.761802673339844,-73.93986511230469,40.751285552978516,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-25 20:04:32,2016-01-25 20:25:01,1,4.29,,,-73.93915557861328,40.80546951293945,-73.98790740966797,40.77968978881836,1,N,1,16.5,0.5,0.5,0.3,2.0,0.0,,19.8,1.0 +2,2016-01-09 20:35:25,2016-01-09 20:53:27,5,4.85,,,-73.91200256347656,40.7752685546875,-73.9588394165039,40.772281646728516,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-19 14:16:00,2016-01-19 14:22:51,1,0.78,,,-73.95125579833984,40.791141510009766,-73.94166564941406,40.78937530517578,1,N,1,6.0,0.0,0.5,0.3,0.7,0.0,,7.5,1.0 +2,2016-01-07 00:58:39,2016-01-07 01:08:12,1,2.25,,,-73.95791625976562,40.72186279296875,-73.93299865722656,40.70921325683594,1,N,1,9.5,0.5,0.5,0.3,2.2,0.0,,13.0,1.0 +2,2016-01-02 07:02:20,2016-01-02 07:15:51,1,6.05,,,-73.95037078857422,40.82676696777344,-73.9902572631836,40.757686614990234,1,N,2,19.0,0.0,0.5,0.3,0.0,0.0,,19.8,1.0 +2,2016-01-09 21:45:21,2016-01-09 21:55:18,1,1.39,,,-73.87577819824219,40.73552322387695,-73.89537048339844,40.72618865966797,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-19 17:39:56,2016-01-19 17:43:59,1,0.93,,,-73.94197082519531,40.78706359863281,-73.93267822265625,40.79501724243164,1,N,1,5.0,1.0,0.5,0.3,1.0,0.0,,7.8,1.0 +2,2016-01-28 17:49:50,2016-01-28 18:02:57,2,2.81,,,-73.99275970458984,40.69784164428711,-74.01038360595703,40.72285079956055,1,N,1,11.5,1.0,0.5,0.3,2.66,0.0,,15.96,1.0 +2,2016-01-26 14:10:51,2016-01-26 14:28:49,1,5.68,,,-73.99588775634766,40.687129974365234,-73.97940063476562,40.727508544921875,1,N,1,19.0,0.0,0.5,0.3,4.95,0.0,,24.75,1.0 +2,2016-01-08 13:01:10,2016-01-08 13:01:37,1,0.12,,,-73.91426086425781,40.87099075317383,-73.91276550292969,40.872310638427734,5,N,1,8.0,0.0,0.0,0,2.0,0.0,,10.0,2.0 +2,2016-01-28 16:06:39,2016-01-28 16:17:17,2,1.07,,,-73.97599029541016,40.683692932128906,-73.98320007324219,40.69499969482422,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-02 17:15:32,2016-01-02 17:24:09,2,1.5,,,-73.97590637207031,40.67372131347656,-73.99198913574219,40.65871810913086,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-25 17:18:42,2016-01-25 17:27:04,2,0.87,,,-73.9502182006836,40.71254348754883,-73.96137237548828,40.71644973754883,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,,10.56,1.0 +1,2016-01-02 15:49:22,2016-01-02 16:00:49,1,2.1,,,-73.90696716308594,40.75080490112305,-73.87110900878906,40.75190734863281,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-03 18:47:49,2016-01-03 18:56:45,1,1.7,,,-73.94707489013672,40.676910400390625,-73.91937255859375,40.67636489868164,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-18 14:11:44,2016-01-18 14:14:54,1,1.37,,,-73.89158630371094,40.766666412353516,-73.91903686523438,40.77213668823242,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-16 14:14:58,2016-01-16 14:19:07,1,0.47,,,-73.92298126220703,40.760746002197266,-73.9151611328125,40.757118225097656,1,N,1,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-01 22:38:09,2016-01-01 22:43:22,1,0.97,,,-73.88948822021484,40.7470703125,-73.89778137207031,40.755558013916016,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-27 22:40:00,2016-01-27 22:51:04,1,3.32,,,-73.97663879394531,40.682861328125,-73.98542785644531,40.72349166870117,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-07 22:33:41,2016-01-07 22:49:48,1,6.51,,,-73.99024200439453,40.67247772216797,-73.9798583984375,40.713905334472656,1,N,1,20.5,0.5,0.5,0.3,5.45,0.0,,27.25,1.0 +2,2016-01-24 14:33:47,2016-01-24 14:55:11,1,4.4,,,-73.97796630859375,40.6903190612793,-73.97480010986328,40.74232864379883,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,,18.8,1.0 +1,2016-01-22 11:45:13,2016-01-22 11:51:43,1,0.7,,,-73.9521484375,40.798797607421875,-73.96001434326172,40.80453872680664,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-16 16:29:51,2016-01-16 16:46:04,1,3.41,,,-73.8343505859375,40.75783157348633,-73.88870239257812,40.74557113647461,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-02 16:14:45,2016-01-02 16:36:00,1,2.46,,,-73.89423370361328,40.75460433959961,-73.86975860595703,40.7354736328125,1,N,1,14.5,0.0,0.5,0.3,1.0,0.0,,16.3,1.0 +1,2016-01-02 12:11:39,2016-01-02 12:19:37,1,1.3,,,-73.95185089111328,40.7254524230957,-73.9499740600586,40.711090087890625,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-09 22:42:14,2016-01-09 22:44:14,1,0.4,,,-73.9519271850586,40.81049728393555,-73.94408416748047,40.807212829589844,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-14 23:27:10,2016-01-14 23:33:22,1,2.69,,,-73.82963562011719,40.71366882324219,-73.81806945800781,40.685604095458984,1,N,1,9.5,0.5,0.5,0.3,1.0,0.0,,11.8,1.0 +2,2016-01-06 23:08:21,2016-01-06 23:17:44,1,2.05,,,-73.89041900634766,40.746822357177734,-73.86293029785156,40.757713317871094,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-04 07:48:24,2016-01-04 08:11:25,1,14.6,,,-73.90339660644531,40.7453498840332,-73.83834075927734,40.838768005371094,1,N,1,40.0,0.0,0.5,0.3,12.2,0.0,,53.0,1.0 +2,2016-01-16 00:43:11,2016-01-16 00:55:10,2,2.77,,,-73.9584732055664,40.71908187866211,-73.95484161376953,40.688751220703125,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-01 10:39:14,2016-01-01 11:10:32,1,6.1,,,-73.90973663330078,40.67392349243164,-73.91239166259766,40.671573638916016,1,N,1,26.0,0.0,0.5,0.3,0.0,0.0,,26.8,1.0 +2,2016-01-25 23:49:23,2016-01-25 23:56:48,1,1.36,,,-73.9600830078125,40.70320129394531,-73.94744873046875,40.70322036743164,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-11 23:28:20,2016-01-11 23:31:21,1,0.67,,,-73.95305633544922,40.68062973022461,-73.9654312133789,40.6832275390625,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-30 12:33:08,2016-01-30 12:48:48,5,6.25,,,-73.91156768798828,40.768035888671875,-73.92736053466797,40.70864486694336,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-22 20:21:41,2016-01-22 20:26:39,1,1.03,,,-73.94464874267578,40.83463668823242,-73.95447540283203,40.82248306274414,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-18 20:26:05,2016-01-18 20:34:11,1,1.48,,,-73.95946502685547,40.69478988647461,-73.94253540039062,40.703468322753906,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,,10.56,1.0 +1,2016-01-08 20:36:18,2016-01-08 20:40:09,1,0.6,,,-73.9442367553711,40.8094482421875,-73.93848419189453,40.811893463134766,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +1,2016-01-29 15:36:54,2016-01-29 15:49:21,1,1.4,,,-73.94803619384766,40.78997039794922,-73.9700698852539,40.79483413696289,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-01 13:04:25,2016-01-01 13:11:56,1,1.3,,,-73.91376495361328,40.82404327392578,-73.91695404052734,40.81148147583008,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-29 13:57:11,2016-01-29 14:33:20,1,8.28,,,-73.86750793457031,40.741981506347656,-73.87532043457031,40.652408599853516,1,N,2,31.0,0.0,0.5,0.3,0.0,0.0,,31.8,1.0 +2,2016-01-01 14:27:00,2016-01-01 14:31:18,1,1.64,,,-73.95360565185547,40.78800582885742,-73.9366455078125,40.80318832397461,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +1,2016-01-20 09:38:11,2016-01-20 09:42:41,1,1.2,,,-73.94002532958984,40.679954528808594,-73.95108032226562,40.68916702270508,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-27 08:30:02,2016-01-27 08:48:42,1,3.0,,,-73.90634155273438,40.82809829711914,-73.89697265625,40.86298370361328,1,N,1,14.0,0.0,0.5,0.3,0.2,0.0,,15.0,1.0 +2,2016-01-06 17:24:45,2016-01-06 17:35:16,1,1.25,,,-73.99382781982422,40.6959114074707,-73.98095703125,40.68535614013672,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-30 23:35:26,2016-01-30 23:38:03,1,0.85,,,-73.9354019165039,40.80036163330078,-73.94017791748047,40.7896842956543,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-25 11:44:23,2016-01-25 11:48:46,1,0.58,,,-73.95258331298828,40.80828857421875,-73.95234680175781,40.8138313293457,1,N,1,4.5,0.0,0.5,0.3,1.59,0.0,,6.89,1.0 +1,2016-01-03 16:53:40,2016-01-03 17:14:30,1,3.7,,,-73.93684387207031,40.63240432739258,-73.9304428100586,40.679420471191406,1,N,1,16.0,0.0,0.5,0.3,0.0,0.0,,16.8,1.0 +2,2016-01-29 21:04:32,2016-01-29 21:25:34,1,2.92,,,-73.9403076171875,40.679931640625,-73.91939544677734,40.65678024291992,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-11 16:12:06,2016-01-11 16:20:01,2,1.81,,,-73.94361877441406,40.78914260864258,-73.93899536132812,40.80455017089844,1,N,1,8.0,1.0,0.5,0.3,0.01,0.0,,9.81,1.0 +2,2016-01-16 14:33:11,2016-01-16 14:39:32,1,1.07,,,-73.94496154785156,40.78719711303711,-73.95486450195312,40.7736701965332,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,,7.8,1.0 +2,2016-01-07 16:26:50,2016-01-07 16:31:59,2,0.71,,,-73.97679138183594,40.68180847167969,-73.9761962890625,40.67343521118164,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-15 10:48:09,2016-01-15 11:01:30,2,2.95,,,-73.88157653808594,40.88020706176758,-73.91193389892578,40.84379577636719,5,N,2,12.0,0.0,0.0,0,0.0,0.0,,12.0,2.0 +2,2016-01-15 13:06:34,2016-01-15 13:37:13,1,7.25,,,-73.95518493652344,40.69090270996094,-74.0030746459961,40.756187438964844,1,N,1,26.5,0.0,0.5,0.3,3.0,0.0,,30.3,1.0 +2,2016-01-08 12:31:38,2016-01-08 12:36:43,1,1.0,,,-73.92550659179688,40.76167678833008,-73.93627166748047,40.74982833862305,1,N,1,5.5,0.0,0.5,0.3,1.89,0.0,,8.19,1.0 +2,2016-01-25 09:39:18,2016-01-25 10:10:36,1,3.34,,,-73.99684143066406,40.64701843261719,-73.94770812988281,40.642433166503906,1,N,1,19.0,0.0,0.5,0.3,5.94,0.0,,25.74,1.0 +2,2016-01-25 04:57:56,2016-01-25 05:01:44,1,0.39,,,-73.88373565673828,40.747737884521484,-73.8911361694336,40.747013092041016,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-02 11:39:25,2016-01-02 11:41:29,1,1.8,,,-73.92949676513672,40.83967590332031,-73.93133544921875,40.81388854980469,1,N,1,6.5,0.0,0.5,0.3,1.82,0.0,,9.12,1.0 +2,2016-01-21 22:26:18,2016-01-21 22:38:56,1,3.37,,,-73.9573745727539,40.65499496459961,-73.92478942871094,40.67020797729492,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-17 16:39:23,2016-01-17 16:47:14,2,2.0,,,-73.98682403564453,40.70244598388672,-73.97696685791016,40.683326721191406,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-26 20:05:54,2016-01-26 20:07:53,5,0.4,,,-73.94819641113281,40.80903625488281,-73.94486999511719,40.81416702270508,1,N,1,3.5,0.5,0.5,0.3,1.0,0.0,,5.8,1.0 +2,2016-01-01 05:38:20,2016-01-01 05:50:57,6,2.6,,,-73.91873931884766,40.75886535644531,-73.87903594970703,40.74403762817383,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-08 19:16:35,2016-01-08 19:39:03,1,3.76,,,-73.97610473632812,40.68367385864258,-73.9188003540039,40.69674301147461,1,N,1,16.5,1.0,0.5,0.3,5.49,0.0,,23.79,1.0 +2,2016-01-25 14:10:13,2016-01-25 14:39:51,2,3.67,,,-73.9416732788086,40.798641204833984,-73.94258117675781,40.83707046508789,1,N,1,19.5,0.0,0.5,0.3,2.0,0.0,,22.3,1.0 +1,2016-01-20 11:58:46,2016-01-20 12:03:03,1,0.5,,,-73.99219512939453,40.698951721191406,-73.99186706542969,40.70261001586914,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-13 18:33:53,2016-01-13 18:41:22,1,1.21,,,-73.84416961669922,40.72136688232422,-73.85807800292969,40.711360931396484,1,N,1,7.0,1.0,0.5,0.3,2.0,0.0,,10.8,1.0 +2,2016-01-12 18:31:29,2016-01-12 18:46:47,1,2.35,,,-73.95046997070312,40.82670211791992,-73.9473876953125,40.799278259277344,1,N,1,12.0,1.0,0.5,0.3,2.76,0.0,,16.56,1.0 +2,2016-01-22 18:28:55,2016-01-22 18:37:11,1,1.38,,,-73.95932006835938,40.677120208740234,-73.95967102050781,40.690338134765625,1,N,1,7.5,1.0,0.5,0.3,2.32,0.0,,11.62,1.0 +1,2016-01-21 10:26:18,2016-01-21 10:33:45,1,2.2,,,-73.89802551269531,40.852455139160156,-73.93120574951172,40.84831237792969,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-09 02:05:14,2016-01-09 02:09:10,5,1.0,,,-73.95771026611328,40.67117691040039,-73.94192504882812,40.67111587524414,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,,8.16,1.0 +2,2016-01-06 07:36:14,2016-01-06 07:59:30,1,2.55,,,-73.93915557861328,40.80550765991211,-73.96208953857422,40.77333450317383,1,N,1,15.0,0.0,0.5,0.3,1.0,0.0,,16.8,1.0 +2,2016-01-14 20:55:14,2016-01-14 21:02:17,5,0.88,,,-73.97673797607422,40.6819953918457,-73.9834976196289,40.67123031616211,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-08 09:05:47,2016-01-08 09:22:18,1,2.44,,,-73.97212982177734,40.67736053466797,-73.9345932006836,40.68075180053711,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-15 15:25:29,2016-01-15 15:32:44,1,0.93,,,-73.96875762939453,40.67335510253906,-73.9757308959961,40.6788215637207,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-07 22:57:30,2016-01-07 23:04:26,1,1.27,,,-73.90189361572266,40.74568557739258,-73.8897476196289,40.7359733581543,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-25 23:54:10,2016-01-25 23:58:02,1,0.9,,,-73.97667694091797,40.682861328125,-73.97807312011719,40.6712646484375,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-22 08:50:34,2016-01-22 08:59:07,1,2.75,,,-73.94026184082031,40.840084075927734,-73.92411041259766,40.86428451538086,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-08 11:26:15,2016-01-08 11:26:29,1,0.06,,,-73.92256164550781,40.690242767333984,-73.92268371582031,40.69215393066406,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-16 15:55:43,2016-01-16 16:06:24,1,2.16,,,-73.87107849121094,40.734039306640625,-73.84994506835938,40.72673416137695,1,N,1,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-04 23:57:37,2016-01-05 00:44:59,1,16.59,,,-73.945068359375,40.80815887451172,-73.95288848876953,40.6636848449707,1,N,1,52.0,0.5,0.5,0.3,0.0,0.0,,53.3,1.0 +2,2016-01-06 16:20:43,2016-01-06 16:29:44,1,1.32,,,-73.96190643310547,40.805625915527344,-73.94737243652344,40.80539321899414,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-09 23:42:53,2016-01-09 23:49:25,1,1.47,,,-73.99293518066406,40.6618537902832,-73.98110961914062,40.67750549316406,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-25 08:26:42,2016-01-25 08:32:13,1,1.01,,,-73.93357849121094,40.8543586730957,-73.92431640625,40.866573333740234,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-01 07:18:28,2016-01-01 07:53:05,1,13.64,,,-73.96598815917969,40.63465118408203,-73.92572784423828,40.764461517333984,1,N,1,42.0,0.0,0.5,0.3,6.0,0.0,,48.8,1.0 +1,2016-01-02 17:39:57,2016-01-02 17:45:28,1,0.9,,,-73.94636535644531,40.80080795288086,-73.95167541503906,40.80938720703125,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,,8.15,1.0 +2,2016-01-14 23:48:17,2016-01-15 00:05:10,1,7.89,,,-73.96236419677734,40.716190338134766,-73.92879486083984,40.75791931152344,1,N,1,23.5,0.5,0.5,0.3,4.96,0.0,,29.76,1.0 +2,2016-01-15 13:38:18,2016-01-15 13:57:31,1,3.73,,,-73.91193389892578,40.77520751953125,-73.86756134033203,40.743534088134766,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-18 08:01:01,2016-01-18 08:15:51,1,6.37,,,-73.9450912475586,40.82875061035156,-73.9661865234375,40.76306915283203,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,,20.8,1.0 +2,2016-01-26 17:41:47,2016-01-26 17:52:13,1,1.42,,,-73.94670104980469,40.82012176513672,-73.95122528076172,40.80266189575195,1,N,1,8.5,1.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-14 11:59:31,2016-01-14 12:06:02,1,0.97,,,-73.9628677368164,40.71196365356445,-73.9549789428711,40.718406677246094,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-09 10:15:28,2016-01-09 10:23:27,1,1.36,,,-73.91890716552734,40.74338150024414,-73.94345092773438,40.74760055541992,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,,10.56,1.0 +2,2016-01-29 18:16:10,2016-01-29 18:21:57,1,0.92,,,-73.93999481201172,40.84105682373047,-73.9478988647461,40.82963562011719,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-10 17:54:52,2016-01-10 18:00:58,1,1.7,,,-73.93917083740234,40.8055534362793,-73.95391082763672,40.78476333618164,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,,9.95,1.0 +1,2016-01-01 05:03:39,2016-01-01 05:20:41,1,8.8,,,-73.95170593261719,40.71492004394531,-73.9696044921875,40.75164031982422,1,N,1,25.5,0.5,0.5,0.3,5.0,0.0,,31.8,1.0 +2,2016-01-08 11:16:10,2016-01-08 11:38:06,1,3.95,,,-73.92664337158203,40.76068115234375,-73.96260833740234,40.776519775390625,1,N,1,17.5,0.0,0.5,0.3,3.66,0.0,,21.96,1.0 +2,2016-01-20 10:53:11,2016-01-20 10:55:46,1,0.76,,,-73.93402099609375,40.80296325683594,-73.9237289428711,40.80816650390625,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-17 12:04:06,2016-01-17 12:04:19,1,0.16,,,-73.93447875976562,40.80153274536133,-73.93971252441406,40.79783630371094,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,,3.3,1.0 +2,2016-01-25 09:49:55,2016-01-25 10:01:09,6,2.17,,,-73.96155548095703,40.701541900634766,-73.9892349243164,40.69135665893555,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-04 08:00:19,2016-01-04 08:17:09,1,4.1,,,-73.94376373291016,40.82377243041992,-73.96834564208984,40.78672409057617,1,N,1,15.5,0.0,0.5,0.3,3.2,0.0,,19.5,1.0 +2,2016-01-30 18:15:39,2016-01-30 18:26:00,1,1.76,,,-73.87092590332031,40.733890533447266,-73.89768981933594,40.730743408203125,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-24 13:43:10,2016-01-24 13:55:17,1,1.77,,,-73.95244598388672,40.72841262817383,-73.96566772460938,40.7105712890625,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +2,2016-01-29 23:45:39,2016-01-30 00:06:08,1,5.02,,,-73.9635009765625,40.67668914794922,-73.95674133300781,40.73354721069336,1,N,1,18.5,0.5,0.5,0.3,3.96,0.0,,23.76,1.0 +2,2016-01-15 08:45:09,2016-01-15 08:50:59,1,1.48,,,-73.91287231445312,40.7489128112793,-73.93643951416016,40.7452278137207,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-12 16:33:47,2016-01-12 17:04:22,1,5.87,,,-73.93950653076172,40.805335998535156,-73.92872619628906,40.86266326904297,1,N,1,23.0,1.0,0.5,0.3,4.96,0.0,,29.76,1.0 +2,2016-01-07 21:12:42,2016-01-07 21:28:27,1,3.3,,,-73.94441986083984,40.807315826416016,-73.91546630859375,40.83049011230469,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,,14.8,1.0 +1,2016-01-29 16:46:04,2016-01-29 17:07:56,2,1.6,,,-73.99246978759766,40.68943786621094,-73.9693374633789,40.69316864013672,1,N,1,14.0,1.0,0.5,0.3,3.15,0.0,,18.95,1.0 +2,2016-01-16 21:20:42,2016-01-16 21:31:51,1,2.48,,,-73.95502471923828,40.714054107666016,-73.99346160888672,40.72151184082031,1,N,1,11.0,0.5,0.5,0.3,1.88,0.0,,14.18,1.0 +1,2016-01-26 15:39:52,2016-01-26 16:02:56,1,2.5,,,-73.88631439208984,40.749473571777344,-73.8577880859375,40.735164642333984,1,N,1,15.0,1.0,0.5,0.3,1.0,0.0,,17.8,1.0 +2,2016-01-25 18:01:47,2016-01-25 18:15:57,1,1.6,,,-73.88317108154297,40.747737884521484,-73.9030990600586,40.75589370727539,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,,12.3,1.0 +1,2016-01-17 17:56:37,2016-01-17 18:09:51,1,2.5,,,-73.86294555664062,40.7373161315918,-73.84397888183594,40.721187591552734,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-08 19:08:28,2016-01-08 19:26:08,1,5.29,,,-73.94756317138672,40.81022644042969,-73.9872055053711,40.77119445800781,1,N,1,19.0,1.0,0.5,0.3,2.0,0.0,,22.8,1.0 +1,2016-01-12 23:48:37,2016-01-12 23:53:36,1,1.0,,,-73.95784759521484,40.72196578979492,-73.96404266357422,40.71027374267578,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-14 12:30:49,2016-01-14 12:40:24,6,2.02,,,-73.92768096923828,40.81080627441406,-73.95134735107422,40.79119110107422,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-05 16:25:25,2016-01-05 16:33:16,2,0.9,,,-73.97781372070312,40.68696212768555,-73.96322631835938,40.681793212890625,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,,9.96,1.0 +2,2016-01-18 16:46:33,2016-01-18 16:58:15,1,2.58,,,-73.80797576904297,40.70046615600586,-73.7910385131836,40.67250442504883,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,,12.3,1.0 +2,2016-01-10 19:28:52,2016-01-10 19:33:32,1,1.02,,,-73.95516204833984,40.80491638183594,-73.94566345214844,40.81770324707031,1,N,1,5.5,0.0,0.5,0.3,0.7,0.0,,7.0,1.0 +2,2016-01-05 14:56:09,2016-01-05 15:27:54,1,15.01,,,-73.94615173339844,40.61753463745117,-73.79002380371094,40.64691925048828,1,N,1,43.0,0.0,0.5,0.3,8.76,0.0,,52.56,1.0 +2,2016-01-11 00:07:39,2016-01-11 00:32:23,1,10.95,,,-73.97277069091797,40.67772674560547,-73.92578887939453,40.767051696777344,1,N,1,33.0,0.5,0.5,0.3,6.86,0.0,,41.16,1.0 +2,2016-01-05 14:13:10,2016-01-05 14:21:29,1,1.55,,,-73.92874145507812,40.822628021240234,-73.94482421875,40.82743453979492,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-10 21:35:00,2016-01-10 21:51:00,1,2.38,,,-73.94269561767578,40.72575759887695,-73.93207550048828,40.69575119018555,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-10 14:48:15,2016-01-10 15:01:27,5,1.47,,,-73.98545837402344,40.68901824951172,-73.96646881103516,40.683349609375,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-16 07:46:03,2016-01-16 08:03:14,1,3.94,,,-73.91754150390625,40.77003479003906,-73.96853637695312,40.76111602783203,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-25 22:29:34,2016-01-25 22:53:19,1,5.98,,,-73.95838928222656,40.71722412109375,-73.9801254272461,40.77046203613281,1,N,2,21.5,0.5,0.5,0.3,0.0,0.0,,22.8,1.0 +2,2016-01-18 09:53:21,2016-01-18 10:02:22,1,6.33,,,-73.8289794921875,40.713356018066406,-73.7811279296875,40.6447639465332,1,N,2,18.5,0.0,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-16 19:26:58,2016-01-16 19:39:42,1,2.8,,,-73.88514709472656,40.74409866333008,-73.91777801513672,40.77128982543945,1,N,1,12.0,0.0,0.5,0.3,2.0,0.0,,14.8,1.0 +2,2016-01-05 16:01:59,2016-01-05 16:08:46,1,1.43,,,-73.95609283447266,40.8189811706543,-73.94364166259766,40.835933685302734,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-14 19:11:07,2016-01-14 19:23:13,1,2.12,,,-73.84427642822266,40.721351623535156,-73.81448364257812,40.70893478393555,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-02 13:25:07,2016-01-02 13:30:22,1,1.25,,,-73.96929931640625,40.69308090209961,-73.98294830322266,40.700748443603516,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-16 11:09:11,2016-01-16 11:18:43,1,2.2,,,-73.95745086669922,40.80146026611328,-73.94427490234375,40.8297004699707,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-12 09:35:53,2016-01-12 09:45:42,1,1.5,,,-73.95452117919922,40.80562210083008,-73.94692993164062,40.791324615478516,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,,11.15,1.0 +2,2016-01-17 23:11:37,2016-01-17 23:17:40,1,1.12,,,-73.94181060791016,40.81769943237305,-73.95437622070312,40.81566619873047,1,N,1,6.5,0.5,0.5,0.3,1.95,0.0,,9.75,1.0 +2,2016-01-26 10:06:18,2016-01-26 11:25:25,1,11.25,,,-73.83003997802734,40.71327590942383,-73.95527648925781,40.76534652709961,1,N,1,53.0,0.0,0.5,0.3,10.76,0.0,,64.56,1.0 +2,2016-01-01 17:41:42,2016-01-01 18:05:37,1,4.2,,,-73.99427795410156,40.69035720825195,-73.98883056640625,40.72900390625,1,N,2,18.5,0.0,0.5,0.3,0.0,0.0,,19.3,1.0 +2,2016-01-06 21:50:39,2016-01-06 22:02:43,1,3.96,,,-73.95455169677734,40.71383285522461,-73.98487854003906,40.675140380859375,1,N,1,14.5,0.5,0.5,0.3,2.37,0.0,,18.17,1.0 +2,2016-01-03 00:52:31,2016-01-03 01:03:35,1,3.16,,,-73.86936950683594,40.749080657958984,-73.82609558105469,40.764251708984375,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-14 12:30:52,2016-01-14 16:31:40,1,28.27,,,-73.92631530761719,40.65854263305664,-73.9201889038086,40.670921325683594,5,N,1,3.0,0.0,0.0,0,10.0,0.0,,13.0,2.0 +2,2016-01-08 15:08:07,2016-01-08 15:25:21,1,1.9,,,-73.89092254638672,40.74687576293945,-73.88986206054688,40.73058319091797,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-15 21:10:57,2016-01-15 21:18:07,1,0.94,,,-73.9578857421875,40.67100524902344,-73.95687866210938,40.672367095947266,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-18 06:36:58,2016-01-18 06:50:38,1,3.6,,,-73.98323822021484,40.69677734375,-73.99154663085938,40.7387580871582,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,,17.76,1.0 +2,2016-01-16 20:00:10,2016-01-16 20:10:47,1,4.68,,,-73.95329284667969,40.58721160888672,-73.9218521118164,40.60951614379883,1,N,1,15.0,0.0,0.5,0.3,4.74,0.0,,20.54,1.0 +2,2016-01-09 09:07:04,2016-01-09 09:12:12,1,1.01,,,-73.94025421142578,40.798126220703125,-73.94550323486328,40.807533264160156,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-07 14:14:17,2016-01-07 14:21:12,1,2.64,,,-73.95620727539062,40.81878662109375,-73.97273254394531,40.794090270996094,1,N,1,9.5,0.0,0.5,0.3,1.2,0.0,,11.5,1.0 +2,2016-01-17 13:02:35,2016-01-17 13:04:39,1,0.55,,,-73.94908142089844,40.7853889465332,-73.94268035888672,40.790714263916016,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-30 21:04:07,2016-01-30 21:09:09,1,1.22,,,-73.98727416992188,40.692501068115234,-73.97087860107422,40.69337844848633,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-26 22:01:42,2016-01-26 22:12:08,1,1.9,,,-73.98729705810547,40.691349029541016,-74.0107421875,40.679256439208984,1,N,1,9.0,0.5,0.5,0.3,1.5,0.0,,11.8,1.0 +1,2016-01-07 08:28:14,2016-01-07 08:44:47,1,2.0,,,-73.9521255493164,40.78990173339844,-73.94918823242188,40.7731819152832,1,N,1,12.0,0.0,0.5,0.3,2.55,0.0,,15.35,1.0 +1,2016-01-09 01:35:25,2016-01-09 01:49:58,1,4.0,,,-73.94841003417969,40.69110107421875,-73.94766998291016,40.692623138427734,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,,15.3,1.0 +2,2016-01-22 18:45:33,2016-01-22 18:55:54,1,1.73,,,-73.96105194091797,40.8120002746582,-73.94805145263672,40.82710647583008,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-13 19:32:55,2016-01-13 19:41:31,1,1.4,,,-73.98674774169922,40.70392990112305,-73.99267578125,40.689090728759766,1,N,1,7.5,1.0,0.5,0.3,2.79,0.0,,12.09,1.0 +1,2016-01-30 14:50:41,2016-01-30 14:57:45,2,0.9,,,-73.9395523071289,40.798805236816406,-73.94390869140625,40.80712127685547,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-28 07:44:55,2016-01-28 08:05:26,2,1.53,,,-73.9134750366211,40.83955001831055,-73.91350555419922,40.839927673339844,1,N,1,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +1,2016-01-14 21:53:22,2016-01-14 22:08:05,1,3.4,,,-73.96601867675781,40.714508056640625,-73.98765563964844,40.728763580322266,1,N,1,13.5,0.5,0.5,0.3,2.95,0.0,,17.75,1.0 +1,2016-01-20 09:00:25,2016-01-20 09:05:45,1,0.4,,,-73.93923950195312,40.84858322143555,-73.94104766845703,40.84160232543945,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +1,2016-01-25 18:46:46,2016-01-25 18:46:49,1,0.6,,,-73.94474029541016,40.616634368896484,-73.94474029541016,40.616634368896484,1,N,1,2.5,1.0,0.5,0.3,30.0,0.0,,34.3,1.0 +1,2016-01-11 08:18:26,2016-01-11 08:47:27,1,4.9,,,-73.9677734375,40.69628143310547,-73.98107147216797,40.737518310546875,1,N,1,21.5,0.0,0.5,0.3,5.55,0.0,,27.85,1.0 +2,2016-01-17 10:05:48,2016-01-17 10:15:36,1,2.28,,,-73.87205505371094,40.748924255371094,-73.9090576171875,40.742252349853516,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +1,2016-01-14 15:14:26,2016-01-14 15:39:50,1,3.9,,,-73.95500946044922,40.71411895751953,-73.98269653320312,40.67328643798828,1,N,1,18.5,0.0,0.5,0.3,3.85,0.0,,23.15,1.0 +2,2016-01-04 17:37:55,2016-01-04 17:45:29,1,1.53,,,-73.86906433105469,40.73422622680664,-73.89070892333984,40.728275299072266,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-21 07:10:04,2016-01-21 07:11:11,1,0.9,,,-73.93924713134766,40.80528259277344,-73.9393539428711,40.8051872253418,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,,3.8,1.0 +2,2016-01-04 18:09:54,2016-01-04 18:14:52,5,1.07,,,-73.9406967163086,40.79297637939453,-73.95050048828125,40.77974319458008,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,,8.76,1.0 +2,2016-01-11 19:18:29,2016-01-11 19:29:28,1,1.91,,,-73.93880462646484,40.805015563964844,-73.96288299560547,40.79725646972656,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-11 14:19:21,2016-01-11 14:21:51,1,0.48,,,-73.95427703857422,40.81624221801758,-73.95286560058594,40.81082534790039,1,N,1,4.0,0.0,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-27 20:16:24,2016-01-27 20:21:22,1,0.78,,,-73.9577865600586,40.71770095825195,-73.94678497314453,40.725032806396484,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-13 10:25:32,2016-01-13 10:41:35,1,2.8,,,-73.93437957763672,40.751686096191406,-73.9550552368164,40.729434967041016,1,N,4,13.0,0.0,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-05 21:29:59,2016-01-05 21:44:33,1,2.57,,,-73.94786071777344,40.70006561279297,-73.90330505371094,40.7004280090332,1,N,1,12.0,0.5,0.5,0.3,3.99,0.0,,17.29,1.0 +1,2016-01-14 12:35:02,2016-01-14 13:01:02,1,5.8,,,-73.98973083496094,40.70077133178711,-73.99105072021484,40.760746002197266,1,N,1,22.5,0.0,0.5,0.3,4.65,0.0,,27.95,1.0 +2,2016-01-10 13:40:52,2016-01-10 13:56:55,1,3.13,,,-73.87825775146484,40.74827575683594,-73.9207534790039,40.74235534667969,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-21 20:59:26,2016-01-21 21:06:54,1,0.99,,,-73.9830551147461,40.689693450927734,-73.96900939941406,40.68932342529297,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-22 23:17:23,2016-01-22 23:59:38,1,7.33,,,-73.91482543945312,40.68855667114258,-74.00260925292969,40.739540100097656,1,N,1,30.0,0.5,0.5,0.3,0.0,0.0,,31.3,1.0 +2,2016-01-26 16:47:29,2016-01-26 16:54:29,1,1.35,,,-73.91478729248047,40.74340057373047,-73.89768981933594,40.738677978515625,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-13 21:25:44,2016-01-13 21:39:38,5,3.83,,,-73.97804260253906,40.680023193359375,-73.97305297851562,40.6364860534668,1,N,1,14.5,0.5,0.5,0.3,3.16,0.0,,18.96,1.0 +2,2016-01-09 18:24:04,2016-01-09 18:34:37,1,1.67,,,-73.96726989746094,40.68355178833008,-73.94452667236328,40.686363220214844,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,,11.76,1.0 +1,2016-01-02 05:47:04,2016-01-02 05:48:53,1,0.4,,,-73.88428497314453,40.74746322631836,-73.89085388183594,40.74684524536133,1,N,1,3.5,0.0,0.5,0.3,1.0,0.0,,5.3,1.0 +2,2016-01-30 04:08:01,2016-01-30 04:10:50,1,0.85,,,-73.92137908935547,40.766483306884766,-73.93119049072266,40.77399826049805,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-16 04:18:24,2016-01-16 04:22:50,1,1.38,,,-73.71549987792969,40.74349594116211,-73.72434997558594,40.73185729980469,1,N,1,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-07 20:13:52,2016-01-07 20:22:16,1,1.63,,,-73.96533203125,40.80595397949219,-73.94685363769531,40.80606460571289,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,,9.3,1.0 +2,2016-01-17 02:07:14,2016-01-17 02:18:08,1,3.8,,,-73.8071517944336,40.69940185546875,-73.74610900878906,40.70750427246094,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +2,2016-01-20 21:44:28,2016-01-20 21:51:21,1,2.25,,,-73.8908462524414,40.74700164794922,-73.90889739990234,40.77150344848633,1,N,1,9.0,0.5,0.5,0.3,2.0,0.0,,12.3,1.0 +2,2016-01-13 21:34:36,2016-01-13 21:39:34,1,1.17,,,-74.00425720214844,40.6547737121582,-74.00605010986328,40.643428802490234,1,N,1,6.0,0.5,0.5,0.3,2.19,0.0,,9.49,1.0 +2,2016-01-19 13:00:27,2016-01-19 13:26:17,1,2.75,,,-73.95445251464844,40.78901672363281,-73.97119903564453,40.7558708190918,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-04 16:21:15,2016-01-04 16:25:57,1,0.75,,,-73.96641540527344,40.80475616455078,-73.97181701660156,40.79484558105469,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-10 02:08:05,2016-01-10 02:19:43,1,1.75,,,-73.95826721191406,40.721683502197266,-73.93978881835938,40.70741271972656,1,N,1,9.5,0.5,0.5,0.3,5.0,0.0,,15.8,1.0 +2,2016-01-27 20:57:50,2016-01-28 00:00:00,1,1.28,,,-73.8624267578125,40.84004592895508,-73.8752670288086,40.829280853271484,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-21 22:00:15,2016-01-21 22:13:30,1,2.89,,,-73.95854187011719,40.71717071533203,-73.92391967773438,40.70429611206055,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,,12.8,1.0 +2,2016-01-02 23:54:30,2016-01-02 23:56:48,1,0.28,,,-73.96026611328125,40.688873291015625,-73.95484924316406,40.68946075439453,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,,4.8,1.0 +2,2016-01-01 02:32:31,2016-01-01 02:38:12,1,1.28,,,-73.90869903564453,40.68149185180664,-73.92859649658203,40.68133544921875,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-03 00:30:27,2016-01-03 00:33:53,1,0.82,,,-73.95552062988281,40.722896575927734,-73.95236206054688,40.7303466796875,1,N,1,4.5,0.5,0.5,0.3,1.45,0.0,,7.25,1.0 +1,2016-01-30 07:48:03,2016-01-30 08:04:20,1,3.9,,,-73.9677963256836,40.696075439453125,-73.98986053466797,40.73393630981445,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,,19.75,1.0 +2,2016-01-18 10:13:25,2016-01-19 10:03:12,1,1.25,,,-73.97895812988281,40.68984603881836,-73.96876525878906,40.6929817199707,1,N,1,7.0,0.0,0.5,0.3,0.78,0.0,,8.58,1.0 +2,2016-01-02 22:09:43,2016-01-02 22:22:23,1,3.46,,,-73.86114501953125,40.83365249633789,-73.9197998046875,40.83073043823242,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,,14.3,1.0 +1,2016-01-18 15:18:26,2016-01-18 15:39:44,1,2.3,,,-73.98676300048828,40.70245361328125,-73.98001098632812,40.67620849609375,1,N,1,14.5,0.0,0.5,0.3,3.05,0.0,,18.35,1.0 +2,2016-01-22 11:58:41,2016-01-22 12:48:17,1,5.93,,,-73.92158508300781,40.663822174072266,-73.8729248046875,40.650569915771484,1,N,1,31.5,0.0,0.5,0.3,6.46,0.0,,38.76,1.0 +1,2016-01-22 18:22:42,2016-01-22 18:29:28,1,1.0,,,-73.95720672607422,40.69029998779297,-73.94976043701172,40.680694580078125,1,N,1,6.0,1.0,0.5,0.3,1.0,0.0,,8.8,1.0 +2,2016-01-21 23:38:36,2016-01-21 23:55:04,2,3.88,,,-73.89251708984375,40.748844146728516,-73.8733139038086,40.7708625793457,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,,16.3,1.0 +2,2016-01-30 19:03:56,2016-01-30 19:16:00,1,1.99,,,-73.9766845703125,40.686981201171875,-73.93975830078125,40.68973159790039,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-13 09:59:38,2016-01-13 10:02:38,1,0.75,,,-73.95269012451172,40.81086349487305,-73.961181640625,40.812034606933594,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,,6.36,1.0 +2,2016-01-06 17:51:38,2016-01-06 17:58:19,1,1.35,,,-73.89910125732422,40.86224365234375,-73.9181900024414,40.85316848754883,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-01 00:19:51,2016-01-01 00:29:41,1,2.01,,,-73.96257019042969,40.68720626831055,-73.9887924194336,40.685184478759766,1,N,1,9.0,0.5,0.5,0.3,6.0,0.0,,16.3,1.0 +2,2016-01-22 09:41:39,2016-01-22 09:44:29,1,0.5,,,-73.94026947021484,40.79752731323242,-73.93378448486328,40.79875946044922,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,,6.0,1.0 +2,2016-01-30 17:09:37,2016-01-30 17:29:58,1,3.1,,,-73.95869445800781,40.63790512084961,-73.97572326660156,40.67463684082031,1,N,1,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-27 18:00:41,2016-01-27 18:06:36,2,0.87,,,-73.9138412475586,40.76546096801758,-73.92603302001953,40.7656364440918,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-27 16:25:03,2016-01-27 16:38:14,1,3.83,,,-73.81446075439453,40.742401123046875,-73.86434936523438,40.756256103515625,1,N,2,14.0,1.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-14 07:44:06,2016-01-14 07:56:03,1,1.49,,,-73.9549789428711,40.805171966552734,-73.95475006103516,40.7891845703125,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,,12.36,1.0 +2,2016-01-16 01:31:04,2016-01-16 01:45:32,1,5.93,,,-73.91560363769531,40.76310729980469,-73.94249725341797,40.719093322753906,1,N,1,19.0,0.5,0.5,0.3,4.06,0.0,,24.36,1.0 +2,2016-01-27 21:57:42,2016-01-27 22:04:39,1,1.01,,,-73.94511413574219,40.808006286621094,-73.95311737060547,40.81768035888672,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-01 05:49:18,2016-01-01 06:04:20,1,3.66,,,-73.9390869140625,40.79087448120117,-73.95262908935547,40.82483673095703,1,N,1,14.5,0.5,0.5,0.3,1.0,0.0,,16.8,1.0 +2,2016-01-27 19:15:31,2016-01-27 19:29:45,1,1.51,,,-73.9345703125,40.67954635620117,-73.90670013427734,40.677303314208984,1,N,1,10.0,1.0,0.5,0.3,1.0,0.0,,12.8,1.0 +1,2016-01-01 19:55:01,2016-01-01 20:00:47,1,1.0,,,-73.98139190673828,40.6749267578125,-73.99348449707031,40.66758728027344,1,N,1,6.0,0.0,0.5,0.3,1.7,0.0,,8.5,1.0 +2,2016-01-08 21:19:18,2016-01-08 21:28:36,1,0.9,,,-73.9562759399414,40.720558166503906,-73.96275329589844,40.711944580078125,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,,10.38,1.0 +1,2016-01-05 22:13:43,2016-01-05 22:16:11,1,0.6,,,-73.91764068603516,40.760581970214844,-73.91130065917969,40.768489837646484,1,N,1,4.0,0.5,0.5,0.3,1.05,0.0,,6.35,1.0 +1,2016-01-30 03:33:08,2016-01-30 03:41:16,1,1.1,,,-73.95748901367188,40.71784973144531,-73.94767761230469,40.72266387939453,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-29 08:18:42,2016-01-29 08:45:58,1,6.75,,,-73.98709106445312,40.697635650634766,-73.98224639892578,40.756858825683594,1,N,1,25.0,0.0,0.5,0.3,5.16,0.0,,30.96,1.0 +2,2016-01-22 20:21:11,2016-01-22 20:26:47,1,1.12,,,-73.84428405761719,40.721458435058594,-73.82927703857422,40.71242141723633,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-14 15:12:45,2016-01-14 15:45:49,1,5.88,,,-73.96440124511719,40.71040344238281,-73.98560333251953,40.75977325439453,1,N,1,25.0,0.0,0.5,0.3,6.27,5.54,,37.61,1.0 +2,2016-01-16 21:54:49,2016-01-16 21:59:38,1,0.8,,,-73.93919372558594,40.805328369140625,-73.93136596679688,40.80172348022461,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-02 15:43:16,2016-01-02 15:57:27,1,2.53,,,-73.92333221435547,40.816673278808594,-73.89093017578125,40.827728271484375,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-10 13:58:29,2016-01-10 14:09:32,1,1.73,,,-73.94398498535156,40.80112075805664,-73.9453353881836,40.81850051879883,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-13 21:20:57,2016-01-13 21:30:49,1,2.44,,,-73.83038330078125,40.75953674316406,-73.81069946289062,40.7358512878418,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,,12.96,1.0 +1,2016-01-25 18:17:12,2016-01-25 18:26:06,4,1.1,,,-73.99429321289062,40.681236267089844,-73.99229431152344,40.69487380981445,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-28 14:01:41,2016-01-28 14:19:26,1,2.2,,,-73.9700927734375,40.69320297241211,-73.95562744140625,40.669429779052734,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,,15.95,1.0 +1,2016-01-20 13:21:19,2016-01-20 13:55:31,1,5.3,,,-73.96652221679688,40.69109344482422,-73.98696899414062,40.74455261230469,1,N,1,24.5,0.0,0.5,0.3,5.05,0.0,,30.35,1.0 +2,2016-01-10 16:58:51,2016-01-10 17:23:38,1,5.21,,,-73.93199157714844,40.70684051513672,-73.97451782226562,40.75102615356445,1,N,1,20.5,0.0,0.5,0.3,4.26,0.0,,25.56,1.0 +2,2016-01-11 11:09:52,2016-01-11 11:30:13,1,3.71,,,-73.95221710205078,40.78990173339844,-73.98936462402344,40.762062072753906,1,N,1,16.0,0.0,0.5,0.3,3.36,0.0,,20.16,1.0 +1,2016-01-14 15:32:00,2016-01-14 15:36:07,1,0.6,,,-73.96656036376953,40.80455017089844,-73.96405029296875,40.80965042114258,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-03 01:28:09,2016-01-03 01:34:19,1,1.2,,,-73.94508361816406,40.80815887451172,-73.94731140136719,40.794349670410156,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +1,2016-01-04 17:03:49,2016-01-04 17:08:06,1,1.1,,,-73.94346618652344,40.78903579711914,-73.93392944335938,40.79811096191406,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-25 09:33:55,2016-01-25 09:58:39,1,5.95,,,-73.98367309570312,40.69672393798828,-73.96946716308594,40.74912643432617,1,N,1,23.5,0.0,0.5,0.3,4.86,0.0,,29.16,1.0 +2,2016-01-28 15:04:08,2016-01-28 15:11:52,1,1.54,,,-73.94921112060547,40.78547668457031,-73.93260192871094,40.79597473144531,1,N,1,7.5,0.0,0.5,0.3,2.08,0.0,,10.38,1.0 +2,2016-01-15 21:52:38,2016-01-15 21:59:11,1,1.23,,,-73.93563842773438,40.79619598388672,-73.94935607910156,40.80745315551758,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,,7.8,1.0 +2,2016-01-14 20:57:49,2016-01-14 21:04:01,1,1.59,,,-73.99264526367188,40.697715759277344,-73.99383544921875,40.68069839477539,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-30 10:51:24,2016-01-30 11:04:51,1,2.1,,,-73.9149169921875,40.83350372314453,-73.92818450927734,40.807228088378906,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-04 21:11:40,2016-01-04 21:52:14,1,10.24,,,-73.82688903808594,40.760501861572266,-73.98863983154297,40.74107360839844,1,N,2,36.0,0.5,0.5,0.3,0.0,0.0,,37.3,1.0 +1,2016-01-30 21:42:25,2016-01-30 22:09:58,1,5.1,,,-73.97904968261719,40.67843246459961,-74.0036392211914,40.742515563964844,1,N,1,21.5,0.5,0.5,0.3,4.55,0.0,,27.35,1.0 +2,2016-01-15 23:50:42,2016-01-16 00:01:48,1,2.23,,,-73.96932220458984,40.6895751953125,-73.93511962890625,40.69684600830078,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,,11.3,1.0 +1,2016-01-08 16:06:57,2016-01-08 16:11:39,1,0.8,,,-73.89134979248047,40.74650573730469,-73.88493347167969,40.75282669067383,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,,6.8,1.0 +2,2016-01-13 21:41:57,2016-01-13 22:01:21,1,5.69,,,-73.97665405273438,40.683040618896484,-73.98526000976562,40.7518310546875,1,N,1,19.0,0.5,0.5,0.3,0.0,0.0,,20.3,1.0 +2,2016-01-12 22:20:11,2016-01-12 22:23:13,1,0.63,,,-73.9480209350586,40.80918502807617,-73.94214630126953,40.81725311279297,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-19 11:09:12,2016-01-19 11:18:53,1,1.96,,,-73.95474243164062,40.671791076660156,-73.9203109741211,40.669254302978516,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,,10.3,1.0 +2,2016-01-16 21:41:19,2016-01-16 21:49:58,1,1.4,,,-73.8908920288086,40.746517181396484,-73.88330078125,40.75997543334961,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-08 07:39:12,2016-01-08 08:21:03,1,4.97,,,-73.9214096069336,40.81413269042969,-73.98135375976562,40.78082275390625,1,N,2,26.5,0.0,0.5,0.3,0.0,0.0,,27.3,1.0 +1,2016-01-03 15:57:08,2016-01-03 15:57:21,2,2.1,,,-73.92889404296875,40.681541442871094,-73.92890167236328,40.6815299987793,5,N,1,0.0,0.0,0.0,0,30.0,0.0,,30.0,2.0 +1,2016-01-26 10:25:52,2016-01-26 10:37:07,1,1.6,,,-73.87694549560547,40.748451232910156,-73.87629699707031,40.768672943115234,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,,9.3,1.0 +1,2016-01-08 16:01:56,2016-01-08 16:15:53,1,2.1,,,-73.93896484375,40.805057525634766,-73.96487426757812,40.79650115966797,1,N,1,11.0,1.0,0.5,0.3,3.8,0.0,,16.6,1.0 +2,2016-01-04 16:53:20,2016-01-04 17:03:38,1,1.16,,,-73.90751647949219,40.85381317138672,-73.9222640991211,40.852081298828125,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-08 09:46:59,2016-01-08 09:54:54,1,0.97,,,-73.9118423461914,40.77531814575195,-73.91563415527344,40.76449203491211,1,N,1,7.0,0.0,0.5,0.3,2.0,0.0,,9.8,1.0 +2,2016-01-29 21:06:51,2016-01-29 21:22:59,1,2.87,,,-73.94428253173828,40.83512496948242,-73.93971252441406,40.80711364746094,1,N,1,13.0,0.5,0.5,0.3,1.0,0.0,,15.3,1.0 +1,2016-01-06 10:12:26,2016-01-06 10:29:35,1,5.2,,,-73.91742706298828,40.769920349121094,-73.95396423339844,40.784847259521484,1,N,1,18.5,0.0,0.5,0.3,3.85,0.0,,23.15,1.0 +2,2016-01-25 16:21:26,2016-01-25 16:23:52,1,0.44,,,-73.9686508178711,40.693119049072266,-73.96329498291016,40.68849563598633,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-25 10:05:38,2016-01-25 10:42:39,1,10.02,,,-73.91718292236328,40.74485778808594,-73.8162841796875,40.75518035888672,1,N,1,33.5,0.0,0.5,0.3,6.86,0.0,,41.16,1.0 +2,2016-01-04 15:36:35,2016-01-04 15:53:19,1,2.21,,,-73.93892669677734,40.80525588989258,-73.96142578125,40.780765533447266,1,N,1,12.5,0.0,0.5,0.3,1.0,0.0,,14.3,1.0 +2,2016-01-03 00:25:45,2016-01-03 00:33:28,1,1.59,,,-73.92536926269531,40.761844635009766,-73.90727996826172,40.7729606628418,1,N,1,8.0,0.5,0.5,0.3,2.32,0.0,,11.62,1.0 +2,2016-01-16 15:23:11,2016-01-16 15:27:28,1,0.74,,,-73.98712921142578,40.692081451416016,-73.97599029541016,40.69432830810547,1,N,1,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-09 09:48:41,2016-01-09 09:56:01,1,1.0,,,-73.94068145751953,40.834632873535156,-73.94237518310547,40.84543228149414,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,,8.3,1.0 +2,2016-01-25 05:03:06,2016-01-25 05:15:21,1,2.6,,,-73.80459594726562,40.73799133300781,-73.78105163574219,40.71330261230469,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,,12.3,1.0 +2,2016-01-03 21:00:45,2016-01-03 21:04:16,1,0.55,,,-73.91492462158203,40.75196075439453,-73.91766357421875,40.75791931152344,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-10 02:30:42,2016-01-10 02:43:18,1,1.9,,,-73.9578628540039,40.721954345703125,-73.9402084350586,40.70399856567383,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,,11.8,1.0 +1,2016-01-20 15:31:38,2016-01-20 15:36:45,1,0.8,,,-73.97635650634766,40.67316818237305,-73.9771499633789,40.681053161621094,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-09 21:13:36,2016-01-09 21:25:24,1,1.97,,,-73.9029312133789,40.74660110473633,-73.8740463256836,40.74468231201172,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-05 20:22:16,2016-01-05 20:26:54,1,1.01,,,-73.95801544189453,40.7327995300293,-73.95234680175781,40.723323822021484,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 23:17:37,2016-01-22 23:32:11,1,2.9,,,-73.96485137939453,40.80662536621094,-73.94253540039062,40.786346435546875,1,N,1,12.5,0.5,0.5,0.3,3.45,0.0,,17.25,1.0 +1,2016-01-08 16:23:54,2016-01-08 16:28:00,1,0.8,,,-73.95195007324219,40.68055725097656,-73.94978332519531,40.68701934814453,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +1,2016-01-17 15:38:59,2016-01-17 15:43:04,1,0.6,,,-73.94671630859375,40.68901443481445,-73.93889617919922,40.68688201904297,1,N,1,5.0,0.0,0.5,0.3,1.45,0.0,,7.25,1.0 +2,2016-01-06 17:22:24,2016-01-06 17:46:53,1,6.86,,,-73.94268798828125,40.84123992919922,-73.98280334472656,40.76427459716797,1,N,1,24.0,1.0,0.5,0.3,5.16,0.0,,30.96,1.0 +2,2016-01-25 07:39:28,2016-01-25 07:45:25,1,1.13,,,-73.9127197265625,40.755916595458984,-73.92462921142578,40.74737548828125,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-08 06:33:29,2016-01-08 06:47:21,1,2.01,,,-73.80753326416016,40.70029830932617,-73.81784057617188,40.719112396240234,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,,11.8,1.0 +2,2016-01-14 11:43:30,2016-01-14 11:51:37,1,1.73,,,-73.91207122802734,40.775203704833984,-73.93053436279297,40.76454162597656,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,,9.8,1.0 +2,2016-01-30 05:38:49,2016-01-30 05:46:31,1,2.59,,,-73.98108673095703,40.667476654052734,-73.97048950195312,40.63637161254883,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,,10.8,1.0 +2,2016-01-17 01:41:53,2016-01-17 01:51:36,1,2.29,,,-73.946044921875,40.71154022216797,-73.91722869873047,40.702823638916016,1,N,1,9.5,0.5,0.5,0.3,2.7,0.0,,13.5,1.0 +2,2016-01-02 19:19:23,2016-01-02 19:39:49,1,4.2,,,-73.98334503173828,40.67267608642578,-73.92988586425781,40.686885833740234,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,,17.8,1.0 +2,2016-01-22 20:47:32,2016-01-22 20:59:15,1,1.99,,,-73.90314483642578,40.74565887451172,-73.92613983154297,40.76372528076172,1,N,1,9.5,0.5,0.5,0.3,5.0,0.0,,15.8,1.0 +2,2016-01-03 00:59:36,2016-01-03 01:05:52,1,1.58,,,-73.92095184326172,40.86775588989258,-73.93207550048828,40.8411865234375,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,,8.8,1.0 +2,2016-01-21 16:17:01,2016-01-21 16:23:37,5,2.76,,,-73.91753387451172,40.76997756958008,-73.87107849121094,40.77396011352539,1,N,1,10.0,1.0,0.5,0.3,3.0,0.0,,14.8,1.0 +2,2016-01-03 22:59:45,2016-01-03 23:03:40,1,0.71,,,-73.86933898925781,40.7490234375,-73.86629486083984,40.74034118652344,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,,6.3,1.0 +2,2016-01-30 23:38:36,2016-01-30 23:47:40,1,1.75,,,-73.97498321533203,40.688819885253906,-73.98487091064453,40.67185974121094,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,,11.16,1.0 +1,2016-01-13 10:07:46,2016-01-13 10:27:40,1,2.9,,,-73.93925476074219,40.805477142333984,-73.97433471679688,40.79343032836914,1,N,1,14.5,0.0,0.5,0.3,3.0,0.0,,18.3,1.0 +2,2016-01-08 23:09:48,2016-01-08 23:27:56,1,4.44,,,-73.8324966430664,40.715576171875,-73.90717315673828,40.7420768737793,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,,18.3,1.0 +2,2016-01-13 08:00:35,2016-01-13 08:04:26,1,0.76,,,-73.95521545410156,40.80450439453125,-73.94744873046875,40.81524658203125,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-16 08:34:18,2016-01-16 08:41:43,1,1.66,,,-73.9222412109375,40.75497055053711,-73.90406036376953,40.774497985839844,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-16 09:10:45,2016-01-16 09:16:50,1,1.17,,,-73.95965576171875,40.687259674072266,-73.97434997558594,40.68073654174805,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-22 16:39:21,2016-01-22 16:48:06,1,0.41,,,-73.85182189941406,40.83412170410156,-73.85015869140625,40.82813262939453,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-15 21:11:19,2016-01-15 21:36:54,6,6.24,,,-73.93016052246094,40.76686096191406,-73.95938110351562,40.801551818847656,1,N,2,22.5,0.5,0.5,0.3,0.0,5.54,,29.34,1.0 +2,2016-01-20 23:00:34,2016-01-20 23:03:57,1,0.97,,,-73.94132995605469,40.823795318603516,-73.9520263671875,40.81157302856445,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,,6.8,1.0 +2,2016-01-11 14:06:08,2016-01-11 14:16:03,1,1.34,,,-73.99251556396484,40.68943786621094,-73.9900131225586,40.70381546020508,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,,11.0,1.0 +2,2016-01-16 06:06:59,2016-01-16 06:42:21,2,16.82,,,-73.97067260742188,40.69219970703125,-73.78945922851562,40.64707565307617,1,N,1,47.5,0.0,0.5,0.3,7.24,0.0,,55.54,1.0 +2,2016-01-08 07:00:58,2016-01-08 07:01:41,1,0.3,,,-73.85545349121094,40.87126159667969,-73.85468292236328,40.87568664550781,5,N,1,10.0,0.0,0.0,0,2.0,0.0,,12.0,2.0 +2,2016-01-05 22:18:51,2016-01-05 22:47:50,1,5.98,,,-73.9803466796875,40.688621520996094,-73.89864349365234,40.66726303100586,1,N,2,23.0,0.5,0.5,0.3,0.0,0.0,,24.3,1.0 +2,2016-01-03 22:36:57,2016-01-03 22:56:47,5,3.85,,,-73.99258422851562,40.70332336425781,-73.95445251464844,40.67268753051758,1,N,1,16.0,0.5,0.5,0.3,3.46,0.0,,20.76,1.0 +2,2016-01-19 17:23:27,2016-01-19 17:45:02,1,3.47,,,-73.95602416992188,40.74715805053711,-73.96885681152344,40.75767135620117,1,N,2,15.5,1.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-19 19:05:31,2016-01-19 19:09:05,1,0.8,,,-73.94532775878906,40.80803298950195,-73.93838500976562,40.817989349365234,1,N,1,5.0,1.0,0.5,0.3,1.36,0.0,,8.16,1.0 +1,2016-01-05 16:09:57,2016-01-05 16:22:07,1,2.7,,,-73.99287414550781,40.702545166015625,-73.99959564208984,40.72343063354492,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-29 17:02:46,2016-01-29 17:12:08,1,1.34,,,-73.9351806640625,40.67610168457031,-73.94979095458984,40.68052291870117,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,,9.8,1.0 +1,2016-01-01 04:35:42,2016-01-01 04:49:44,1,7.8,,,-73.92471313476562,40.814453125,-73.86585235595703,40.865455627441406,1,N,2,23.0,0.5,0.5,0.3,0.0,0.0,,24.3,1.0 +1,2016-01-27 08:34:44,2016-01-27 08:41:19,1,1.6,,,-73.83001708984375,40.71436309814453,-73.80418395996094,40.717742919921875,1,N,1,7.5,0.0,0.5,0.3,0.0,0.0,,8.3,1.0 +2,2016-01-15 17:48:55,2016-01-15 17:52:18,1,0.57,,,-73.9117660522461,40.77538299560547,-73.91970825195312,40.777286529541016,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,,7.56,1.0 +1,2016-01-20 20:05:01,2016-01-20 20:20:19,1,2.9,,,-73.94383239746094,40.71173858642578,-73.90687561035156,40.70730972290039,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,,13.8,1.0 +2,2016-01-25 18:36:26,2016-01-25 18:42:40,1,0.96,,,-73.94344329833984,40.74720001220703,-73.95641326904297,40.74631118774414,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,,9.36,1.0 +2,2016-01-29 21:22:07,2016-01-29 22:01:05,1,7.79,,,-73.88545989990234,40.755645751953125,-73.98772430419922,40.72443389892578,1,N,1,33.0,0.5,0.5,0.3,0.0,0.0,,34.3,1.0 +1,2016-01-11 19:48:57,2016-01-11 19:58:28,1,2.0,,,-73.96151733398438,40.80612564086914,-73.9400863647461,40.825233459472656,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,,11.3,1.0 +2,2016-01-27 18:59:54,2016-01-27 19:02:09,1,0.45,,,-73.92164611816406,40.678688049316406,-73.92487335205078,40.68315505981445,1,N,1,3.5,1.0,0.5,0.3,0.0,0.0,,5.3,1.0 +2,2016-01-11 17:49:44,2016-01-11 18:01:58,1,2.28,,,-73.95455932617188,40.78952407836914,-73.97959899902344,40.771305084228516,1,N,1,11.0,1.0,0.5,0.3,1.5,0.0,,14.3,1.0 +2,2016-01-15 07:40:19,2016-01-15 07:46:57,1,1.25,,,-73.93904876708984,40.805458068847656,-73.95060729980469,40.79079818725586,1,N,1,6.5,0.0,0.5,0.3,1.82,0.0,,9.12,1.0 +2,2016-01-02 21:46:34,2016-01-02 22:16:54,1,10.1,,,-73.98408508300781,40.67399597167969,-73.94605255126953,40.77753448486328,1,N,1,32.0,0.5,0.5,0.3,0.0,0.0,,33.3,1.0 +2,2016-01-30 16:17:21,2016-01-30 16:33:30,1,3.88,,,-73.9103012084961,40.75267028808594,-73.87310028076172,40.73691177368164,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,,15.8,1.0 +2,2016-01-21 20:22:04,2016-01-21 20:27:11,1,1.23,,,-73.9451904296875,40.745975494384766,-73.92798614501953,40.74030303955078,1,N,1,6.0,0.5,0.5,0.3,1.7,0.0,,9.0,1.0 +2,2016-01-01 00:11:23,2016-01-01 00:20:25,1,1.9,,,-73.96439361572266,40.69367218017578,-73.94163513183594,40.687294006347656,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-14 22:43:35,2016-01-14 22:46:55,1,0.76,,,-73.92543029785156,40.76231384277344,-73.92521667480469,40.770347595214844,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-17 17:18:33,2016-01-17 17:18:35,1,0.0,,,-73.88468933105469,40.85027313232422,-73.8846664428711,40.850303649902344,5,N,1,8.0,0.0,0.0,0,0.0,0.0,,8.0,2.0 +2,2016-01-13 15:48:18,2016-01-13 16:07:58,1,4.38,,,-73.87138366699219,40.73411178588867,-73.90994262695312,40.70063400268555,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,,17.3,1.0 +2,2016-01-27 16:15:27,2016-01-27 16:18:32,1,0.52,,,-73.98751831054688,40.70016860961914,-73.99417114257812,40.70315170288086,1,N,1,4.0,1.0,0.5,0.3,0.0,0.0,,5.8,1.0 +2,2016-01-10 02:41:49,2016-01-10 02:50:26,1,2.02,,,-73.95213317871094,40.81053161621094,-73.93801879882812,40.79207229614258,1,N,1,8.5,0.5,0.5,0.3,0.0,0.0,,9.8,1.0 +2,2016-01-17 01:00:34,2016-01-17 01:11:34,1,3.27,,,-73.90472412109375,40.75346374511719,-73.88436126708984,40.73930740356445,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,,13.3,1.0 +2,2016-01-14 18:15:37,2016-01-14 18:20:11,1,0.83,,,-73.94327545166016,40.8360595703125,-73.93788146972656,40.8480110168457,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,,7.3,1.0 +2,2016-01-19 16:09:26,2016-01-19 16:21:26,1,2.21,,,-73.90038299560547,40.756134033203125,-73.85968780517578,40.75993728637695,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,,11.8,1.0 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/data/yellowTaxiData.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/data/yellowTaxiData.csv new file mode 100644 index 000000000000..4182c8d64200 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/data/yellowTaxiData.csv @@ -0,0 +1,5001 @@ +vendorID,tpepPickupDateTime,tpepDropoffDateTime,passengerCount,tripDistance,puLocationId,doLocationId,startLon,startLat,endLon,endLat,rateCodeId,storeAndFwdFlag,paymentType,fareAmount,extra,mtaTax,improvementSurcharge,tipAmount,tollsAmount,totalAmount +2,2016-01-06 12:09:13,2016-01-06 12:22:14,1,2.09,,,-73.98207092285156,40.74605941772461,-74.00462341308594,40.730628967285156,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +1,2016-01-03 17:57:48,2016-01-03 18:08:18,3,1.5,,,-73.96627044677734,40.764835357666016,-73.98455047607422,40.75786209106445,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-18 07:37:51,2016-01-18 07:47:01,1,1.8,,,0.0,0.0,0.0,0.0,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +2,2016-01-26 00:31:36,2016-01-26 00:38:47,1,1.96,,,-73.9906234741211,40.7553596496582,-73.97895812988281,40.78070831298828,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +2,2016-01-20 23:37:22,2016-01-20 23:51:09,1,3.6,,,-73.98528289794922,40.76026153564453,-74.01127624511719,40.7148323059082,1,N,1,13.5,0.5,0.5,0.3,2.5,0.0,17.3 +2,2016-01-01 04:42:46,2016-01-01 05:20:45,1,10.22,,,-73.98728942871094,40.7484130859375,-73.95806121826172,40.667781829833984,1,N,1,32.5,0.5,0.5,0.3,6.76,0.0,40.56 +1,2016-01-22 17:44:40,2016-01-22 18:44:33,1,14.6,,,-73.96099090576172,40.7717399597168,-74.0313949584961,40.6330451965332,1,N,1,48.5,1.0,0.5,0.3,10.05,0.0,60.35 +2,2016-01-01 02:31:00,2016-01-01 02:35:47,1,1.01,,,-73.98570251464844,40.73516845703125,-74.00009155273438,40.74277877807617,1,N,1,5.5,0.5,0.5,0.3,1.7,0.0,8.5 +2,2016-01-07 10:35:42,2016-01-07 10:52:06,1,3.87,,,-73.98209381103516,40.74245071411133,-73.99495697021484,40.71377944946289,1,N,1,16.0,0.0,0.5,0.3,1.5,0.0,18.3 +2,2016-01-01 05:47:11,2016-01-01 06:10:47,5,5.9,,,-73.95330047607422,40.788448333740234,-73.93463134765625,40.85462188720703,1,N,2,21.0,0.5,0.5,0.3,0.0,0.0,22.3 +1,2016-01-24 14:48:26,2016-01-24 15:32:40,2,11.8,,,-73.77669525146484,40.64527130126953,-73.88290405273438,40.74116516113281,1,N,2,44.0,0.0,0.5,0.3,0.0,0.0,44.8 +1,2016-01-13 18:22:38,2016-01-13 18:26:43,1,0.9,,,-73.95618438720703,40.77394485473633,-73.95372772216797,40.784854888916016,1,N,1,5.0,1.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-20 09:24:35,2016-01-20 09:39:40,1,1.04,,,-73.97830200195312,40.752349853515625,-73.98131561279297,40.7474365234375,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-26 06:39:39,2016-01-26 06:49:11,1,1.8,,,-73.95655059814453,40.78083419799805,-73.97078704833984,40.75873565673828,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-20 00:37:51,2016-01-20 00:54:26,1,5.7,,,-74.00001525878906,40.71797180175781,-73.94308471679688,40.661277770996094,1,N,1,19.0,0.5,0.5,0.3,4.05,0.0,24.35 +1,2016-01-12 09:17:06,2016-01-12 09:20:17,1,0.5,,,-74.00064086914062,40.737117767333984,-73.99329376220703,40.73897171020508,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-08 19:28:32,2016-01-08 19:45:46,1,2.84,,,-73.99546813964844,40.71998596191406,-74.004150390625,40.74949264526367,1,N,1,13.0,1.0,0.5,0.3,2.96,0.0,17.76 +2,2016-01-11 22:03:18,2016-01-11 22:16:48,4,2.9,,,-73.98863220214844,40.73686981201172,-73.96682739257812,40.77246856689453,1,N,1,12.5,0.5,0.5,0.3,1.0,0.0,14.8 +1,2016-01-15 20:43:41,2016-01-15 20:54:35,1,1.9,,,-73.97463989257812,40.79113006591797,-73.95391845703125,40.77485275268555,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,12.95 +2,2016-01-22 08:49:31,2016-01-22 09:01:14,1,1.27,,,-73.95458984375,40.76374053955078,-73.95513153076172,40.776859283447266,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-15 21:07:59,2016-01-15 21:21:50,5,4.18,,,-74.01505279541016,40.71485900878906,-73.97882843017578,40.723968505859375,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,16.3 +1,2016-01-26 20:12:52,2016-01-26 20:18:43,1,1.4,,,-73.9683837890625,40.770137786865234,-73.97103881835938,40.7828254699707,1,N,1,6.5,0.5,0.5,0.3,1.55,0.0,9.35 +2,2016-01-07 20:36:23,2016-01-07 21:03:01,2,3.18,,,-73.99295806884766,40.74263381958008,-73.9799575805664,40.75508499145508,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,18.8 +2,2016-01-19 21:06:46,2016-01-19 21:14:45,1,1.96,,,-73.95514678955078,40.773414611816406,-73.98129272460938,40.77595520019531,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +2,2016-01-04 09:53:27,2016-01-04 10:08:04,1,1.49,,,-73.98509979248047,40.72901153564453,-73.99890899658203,40.720211029052734,1,N,1,10.5,0.0,0.5,0.3,0.7,0.0,12.0 +2,2016-01-04 08:32:17,2016-01-04 08:37:28,6,0.71,,,-73.97496795654297,40.7930793762207,-73.97354125976562,40.78738021850586,1,N,1,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-06 15:47:40,2016-01-06 16:08:53,5,4.78,,,-74.01395416259766,40.71250534057617,-73.97935485839844,40.762046813964844,1,N,1,18.0,0.0,0.5,0.3,3.76,0.0,22.56 +2,2016-01-06 20:59:38,2016-01-06 21:12:27,2,2.68,,,-73.9713363647461,40.75851058959961,-73.98030090332031,40.78239822387695,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,15.36 +2,2016-01-21 12:11:38,2016-01-21 12:24:06,1,1.21,,,-73.98556518554688,40.75272750854492,-73.9712905883789,40.75898361206055,1,N,1,9.0,0.0,0.5,0.3,1.5,0.0,11.3 +1,2016-01-29 15:33:10,2016-01-29 15:43:44,1,1.5,,,-73.98204803466797,40.778480529785156,-73.96937561035156,40.788665771484375,1,N,1,8.5,0.0,0.5,0.3,2.75,0.0,12.05 +1,2016-01-16 17:50:42,2016-01-16 18:11:29,2,2.9,,,-73.98229217529297,40.72551727294922,-74.00563049316406,40.751033782958984,1,N,1,14.5,0.0,0.5,0.3,3.05,0.0,18.35 +1,2016-01-02 21:24:22,2016-01-02 21:30:58,1,1.1,,,-73.9749984741211,40.75738525390625,-73.98086547851562,40.76750946044922,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-04 11:14:18,2016-01-04 11:37:45,1,4.5,,,-73.99303436279297,40.75282287597656,-73.94447326660156,40.78786849975586,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,18.8 +1,2016-01-13 20:42:30,2016-01-13 21:06:20,1,5.4,,,-73.99211120605469,40.75023651123047,-73.98055267333984,40.68132019042969,1,N,1,20.0,0.5,0.5,0.3,3.2,0.0,24.5 +1,2016-01-04 13:33:33,2016-01-04 13:51:14,1,3.1,,,-73.98228454589844,40.76982498168945,-73.95033264160156,40.783695220947266,1,N,1,14.0,0.0,0.5,0.3,3.7,0.0,18.5 +1,2016-01-15 18:56:09,2016-01-15 19:18:00,2,4.8,,,-73.9949951171875,40.760520935058594,-74.01011657714844,40.711238861083984,1,N,1,19.0,1.0,0.5,0.3,4.15,0.0,24.95 +2,2016-01-27 07:43:35,2016-01-27 07:57:11,5,1.23,,,-73.96894073486328,40.76403045654297,-73.95245361328125,40.76866149902344,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-16 17:31:58,2016-01-16 17:32:03,1,0.0,,,0.0,0.0,0.0,0.0,5,N,1,12.5,0.0,0.5,0.3,1.5,0.0,14.8 +1,2016-01-17 17:36:47,2016-01-17 17:51:31,2,1.3,,,-73.98927307128906,40.74240493774414,-73.99783325195312,40.754127502441406,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-19 20:52:44,2016-01-19 21:09:30,5,2.79,,,-73.97582244873047,40.78200912475586,-73.9752197265625,40.751380920410156,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,17.16 +2,2016-01-18 17:12:34,2016-01-18 17:22:06,1,1.76,,,-73.97496795654297,40.7557487487793,-73.9930191040039,40.73982620239258,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-20 00:09:44,2016-01-20 00:19:34,1,1.71,,,-73.98434448242188,40.743038177490234,-73.9862060546875,40.75847625732422,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +2,2016-01-17 08:04:29,2016-01-17 08:10:02,1,1.59,,,-73.98072814941406,40.76478958129883,-74.00060272216797,40.757911682128906,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-11 15:30:40,2016-01-11 15:40:25,6,2.17,,,-73.99412536621094,40.746517181396484,-74.00517272949219,40.718727111816406,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,12.88 +1,2016-01-04 15:51:28,2016-01-04 16:02:17,3,1.7,,,-73.96519470214844,40.77535629272461,-73.9847640991211,40.75986862182617,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,11.3 +1,2016-01-28 09:56:58,2016-01-28 10:10:25,2,2.0,,,-73.9681167602539,40.79209518432617,-73.9470443725586,40.808433532714844,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,12.3 +2,2016-01-18 15:14:05,2016-01-18 15:25:00,1,2.02,,,-73.9529037475586,40.77634811401367,-73.97757720947266,40.76633834838867,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-12 15:56:54,2016-01-12 16:07:50,1,0.9,,,-73.95724487304688,40.769134521484375,-73.96733856201172,40.76332473754883,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-11 21:44:58,2016-01-11 21:50:50,1,1.5,,,-73.9746322631836,40.7514762878418,-73.97742462158203,40.7349739074707,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +2,2016-01-30 03:40:15,2016-01-30 03:45:53,1,1.61,,,0.0,0.0,0.0,0.0,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +2,2016-01-05 12:24:11,2016-01-05 12:40:35,1,1.74,,,-73.99815368652344,40.73380661010742,-73.99028015136719,40.72066879272461,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,14.76 +1,2016-01-30 14:37:58,2016-01-30 14:58:34,1,2.7,,,-73.97148132324219,40.75107192993164,-74.00304412841797,40.733558654785156,1,N,1,14.5,0.0,0.5,0.3,2.0,0.0,17.3 +1,2016-01-30 23:54:16,2016-01-31 00:04:41,2,1.4,,,-73.9963607788086,40.721717834472656,-74.01072692871094,40.70866012573242,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +2,2016-01-11 14:48:42,2016-01-11 14:54:25,2,1.38,,,-73.982177734375,40.773841857910156,-73.971923828125,40.791900634765625,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-09 22:22:36,2016-01-09 22:28:29,2,1.11,,,-73.97855377197266,40.78596115112305,-73.9781265258789,40.77320098876953,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-08 08:40:45,2016-01-08 08:56:34,2,2.4,,,-73.97816467285156,40.76324462890625,-73.96919250488281,40.79063034057617,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-24 13:16:51,2016-01-24 13:50:11,1,5.93,,,-73.98834228515625,40.73759841918945,-73.96678161621094,40.80397033691406,1,N,1,24.0,0.0,0.5,0.3,4.96,0.0,29.76 +1,2016-01-29 18:19:41,2016-01-29 18:26:33,1,0.7,,,-73.9598388671875,40.7738151550293,-73.95051574707031,40.771507263183594,1,N,1,6.0,1.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-19 14:40:01,2016-01-19 15:10:45,5,3.35,,,-73.97367858886719,40.75189971923828,-73.99947357177734,40.71775817871094,1,N,1,20.0,0.0,0.5,0.3,4.16,0.0,24.96 +2,2016-01-22 17:03:00,2016-01-22 17:15:18,1,2.4,,,-73.96263885498047,40.76985549926758,-73.98929595947266,40.760318756103516,1,N,1,11.0,1.0,0.5,0.3,2.0,0.0,14.8 +1,2016-01-16 23:59:46,2016-01-17 00:08:12,1,1.5,,,-73.98907470703125,40.75857925415039,-73.9778060913086,40.74552536010742,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-28 12:11:54,2016-01-28 12:31:14,1,1.54,,,-73.99215698242188,40.75918960571289,-74.00579833984375,40.74018096923828,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-14 23:59:51,2016-01-15 00:09:42,3,2.06,,,-73.98712921142578,40.757720947265625,-73.97901153564453,40.7363395690918,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-09 07:50:25,2016-01-09 08:03:10,1,3.1,,,-73.99002075195312,40.73455047607422,-73.95929718017578,40.771488189697266,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-29 19:49:52,2016-01-29 20:20:10,1,16.5,,,-73.7897720336914,40.64690017700195,-73.97124481201172,40.752925872802734,2,N,1,52.0,0.0,0.5,0.3,5.0,5.54,63.34 +1,2016-01-13 14:38:37,2016-01-13 14:42:41,1,0.6,,,-73.95714569091797,40.77084732055664,-73.95304107666016,40.776729583740234,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,6.3 +2,2016-01-20 10:09:22,2016-01-20 10:14:19,1,0.9,,,-73.96511840820312,40.755130767822266,-73.95703887939453,40.76625061035156,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-21 17:29:29,2016-01-21 17:37:46,1,1.3,,,-73.9892578125,40.73752212524414,-73.98130798339844,40.72492599487305,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-14 11:10:32,2016-01-14 11:22:13,1,1.5,,,-73.95199584960938,40.76927185058594,-73.96894836425781,40.757694244384766,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-08 06:28:37,2016-01-08 06:39:28,1,2.6,,,-73.94755554199219,40.775299072265625,-73.97598266601562,40.7553825378418,1,N,1,11.0,0.0,0.5,0.3,1.0,0.0,12.8 +1,2016-01-26 13:45:32,2016-01-26 14:28:05,1,14.0,,,-74.01421356201172,40.713951110839844,-73.86195373535156,40.76850128173828,1,N,1,43.5,0.0,0.5,0.3,11.05,0.0,55.35 +2,2016-01-01 06:34:36,2016-01-01 06:44:20,1,2.12,,,-73.99528503417969,40.764766693115234,-73.96990966796875,40.7503776550293,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-05 20:04:18,2016-01-05 20:07:52,1,0.6,,,-73.99908447265625,40.723167419433594,-74.00499725341797,40.72638702392578,1,N,1,4.5,0.5,0.5,0.3,0.5,0.0,6.3 +2,2016-01-19 11:50:45,2016-01-19 12:16:18,6,2.86,,,-73.98542785644531,40.74814987182617,-73.96273040771484,40.77838897705078,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,17.8 +1,2016-01-23 01:04:30,2016-01-23 01:17:11,1,3.0,,,-73.9565200805664,40.771202087402344,-73.99126434326172,40.74973678588867,1,N,1,11.5,0.5,0.5,0.3,2.55,0.0,15.35 +2,2016-01-22 19:45:42,2016-01-22 19:56:15,1,1.96,,,-73.95599365234375,40.78474044799805,-73.96007537841797,40.76301193237305,1,N,1,9.5,1.0,0.5,0.3,1.5,0.0,12.8 +1,2016-01-11 06:31:24,2016-01-11 06:46:58,3,6.3,,,-74.00719451904297,40.70363998413086,-73.97443389892578,40.760040283203125,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,21.3 +2,2016-01-09 12:24:44,2016-01-09 12:54:22,1,4.46,,,-74.00170135498047,40.746681213378906,-73.96379852294922,40.7712516784668,1,N,1,20.5,0.0,0.5,0.3,6.39,0.0,27.69 +2,2016-01-10 19:01:08,2016-01-10 19:11:45,1,2.66,,,-73.98859405517578,40.74519348144531,-73.9587173461914,40.7639045715332,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-15 17:52:22,2016-01-15 18:01:40,1,1.5,,,-73.99311065673828,40.74741744995117,-73.9810791015625,40.733821868896484,1,N,1,8.0,1.0,0.5,0.3,1.0,0.0,10.8 +2,2016-01-07 21:45:21,2016-01-07 21:54:01,1,1.52,,,-73.98220825195312,40.76805877685547,-74.00090789794922,40.76116943359375,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-21 03:12:47,2016-01-21 03:18:40,1,2.0,,,-73.97260284423828,40.7564582824707,-73.99075317382812,40.73466110229492,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-25 13:51:46,2016-01-25 14:12:49,1,2.15,,,-73.97207641601562,40.759666442871094,-73.99002838134766,40.77470016479492,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +1,2016-01-17 23:47:31,2016-01-17 23:53:52,1,1.3,,,-73.98992156982422,40.73512268066406,-73.99626922607422,40.72209548950195,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-16 04:25:00,2016-01-16 04:26:11,1,0.0,,,-73.78266906738281,40.64402389526367,-73.78267669677734,40.644012451171875,5,N,1,55.0,0.0,0.0,0.3,10.0,0.0,65.3 +1,2016-01-09 01:39:06,2016-01-09 01:49:31,1,1.6,,,-74.0080795288086,40.73762512207031,-73.98333740234375,40.72645568847656,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-12 16:16:51,2016-01-12 16:23:57,1,1.58,,,-73.98759460449219,40.73263931274414,-73.97354125976562,40.75169372558594,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-22 22:58:57,2016-01-22 23:13:06,1,2.3,,,-73.99161529541016,40.74995422363281,-73.965576171875,40.755184173583984,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +1,2016-01-06 22:23:15,2016-01-06 22:23:15,1,0.0,,,-73.7767105102539,40.64523696899414,0.0,0.0,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,3.8 +2,2016-01-08 15:55:01,2016-01-08 16:02:49,1,0.94,,,-73.99495697021484,40.74516677856445,-74.00579071044922,40.740413665771484,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,9.75 +2,2016-01-14 15:15:22,2016-01-15 14:42:31,1,4.17,,,-73.98753356933594,40.75044631958008,-73.98796081542969,40.71284103393555,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,17.8 +1,2016-01-02 09:20:35,2016-01-02 09:25:02,2,1.0,,,-73.95171356201172,40.77367401123047,-73.9626693725586,40.76277160644531,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +2,2016-01-17 02:17:27,2016-01-17 02:24:35,6,1.52,,,-74.00907897949219,40.70680618286133,-73.99371337890625,40.72098159790039,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-13 13:59:04,2016-01-13 14:20:14,2,3.0,,,-73.97460174560547,40.79085159301758,-73.9791488647461,40.754058837890625,1,N,1,15.5,0.0,0.5,0.3,4.89,0.0,21.19 +2,2016-01-22 20:27:20,2016-01-22 20:31:37,1,0.73,,,-73.9814682006836,40.7569694519043,-73.98564147949219,40.75307083129883,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-26 21:10:04,2016-01-26 21:21:23,1,2.55,,,-73.99156951904297,40.74502182006836,-73.98452758789062,40.76942825317383,1,N,1,10.5,0.5,0.5,0.3,3.54,0.0,15.34 +2,2016-01-09 02:57:32,2016-01-09 03:01:15,1,0.79,,,-74.0063705444336,40.74453353881836,-73.9969711303711,40.74297332763672,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-26 23:16:12,2016-01-26 23:30:32,1,3.16,,,-74.00718688964844,40.743412017822266,-74.0146713256836,40.7155647277832,1,N,1,13.5,0.5,0.5,0.3,4.44,0.0,19.24 +2,2016-01-02 15:17:25,2016-01-02 15:23:09,2,0.41,,,-73.9509048461914,40.78678512573242,-73.95203399658203,40.79050064086914,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-11 06:20:44,2016-01-11 07:20:47,1,16.05,,,-73.79154968261719,40.64531707763672,-73.98927307128906,40.77186965942383,2,N,1,52.0,0.0,0.5,0.3,5.0,0.0,57.8 +2,2016-01-14 23:14:25,2016-01-14 23:20:59,1,1.32,,,-74.00129699707031,40.727500915527344,-73.98362731933594,40.72996139526367,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +2,2016-01-29 23:45:50,2016-01-29 23:59:14,1,2.72,,,-73.98748016357422,40.68801498413086,-73.94823455810547,40.67829513549805,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +2,2016-01-02 23:40:58,2016-01-02 23:46:11,4,1.02,,,-73.98902130126953,40.74388122558594,-73.9786376953125,40.752777099609375,1,N,1,6.0,0.5,0.5,0.3,2.19,0.0,9.49 +2,2016-01-21 14:20:06,2016-01-21 14:42:23,1,2.98,,,-73.98550415039062,40.758087158203125,-74.00341796875,40.72039794921875,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-22 15:18:26,2016-01-22 15:26:10,1,0.7,,,-73.97319030761719,40.753875732421875,-73.97312927246094,40.76132583618164,1,N,1,6.5,0.0,0.5,0.3,1.25,0.0,8.55 +1,2016-01-14 09:58:33,2016-01-14 10:16:59,1,1.7,,,-73.9616470336914,40.773712158203125,-73.9802474975586,40.760684967041016,1,N,1,12.5,0.0,0.5,0.3,1.0,0.0,14.3 +2,2016-01-17 10:25:12,2016-01-17 10:29:00,1,0.69,,,-74.0042724609375,40.75261306762695,-74.00157165527344,40.74660873413086,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-15 18:43:31,2016-01-15 19:02:05,2,1.89,,,-73.99434661865234,40.71937942504883,-74.00859832763672,40.70951843261719,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,14.3 +2,2016-01-19 07:50:41,2016-01-19 07:55:41,1,1.2,,,-73.97334289550781,40.74756622314453,-73.97003936767578,40.75807571411133,1,N,1,6.0,0.0,0.5,0.3,1.7,0.0,8.5 +2,2016-01-10 18:05:42,2016-01-10 18:11:31,5,1.09,,,-73.9681625366211,40.76491165161133,-73.9568862915039,40.77507019042969,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +1,2016-01-11 20:18:22,2016-01-11 20:22:57,1,1.2,,,-73.98210144042969,40.76559066772461,-73.98213958740234,40.752994537353516,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,8.75 +2,2016-01-04 13:52:45,2016-01-04 13:55:59,1,0.64,,,-73.97236633300781,40.79132843017578,-73.96611785888672,40.79492950439453,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +2,2016-01-21 21:36:05,2016-01-21 21:44:16,1,1.11,,,-73.97518157958984,40.760887145996094,-73.98564910888672,40.747074127197266,1,N,1,7.0,0.5,0.5,0.3,1.2,0.0,9.5 +1,2016-01-17 18:41:27,2016-01-17 18:44:48,1,0.6,,,-73.98091125488281,40.730831146240234,-73.97904968261719,40.73722839355469,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-29 09:16:10,2016-01-29 09:26:57,1,1.21,,,-73.95278930664062,40.78288269042969,-73.95922088623047,40.769161224365234,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-30 14:45:27,2016-01-30 15:00:13,1,3.11,,,-73.97145080566406,40.75831985473633,-73.97942352294922,40.78871154785156,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-14 08:44:03,2016-01-14 09:00:26,1,4.42,,,-73.95066833496094,40.7765007019043,-73.97711944580078,40.738033294677734,1,N,1,16.0,0.0,0.5,0.3,3.36,0.0,20.16 +2,2016-01-11 22:45:35,2016-01-11 22:50:16,1,1.45,,,-73.99738311767578,40.75204086303711,-74.00402069091797,40.73297882080078,1,N,1,6.5,0.5,0.5,0.3,1.95,0.0,9.75 +1,2016-01-06 18:24:46,2016-01-06 18:35:30,1,1.2,,,-73.99220275878906,40.74916076660156,-73.98017883300781,40.751312255859375,1,N,1,8.5,1.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-10 23:52:51,2016-01-11 00:07:39,2,10.8,,,-73.7882308959961,40.64127731323242,-73.8514404296875,40.758487701416016,1,N,1,29.5,0.5,0.5,0.3,2.0,0.0,32.8 +1,2016-01-06 19:04:21,2016-01-06 19:28:26,1,4.2,,,-73.9724349975586,40.76496887207031,-74.00835418701172,40.721412658691406,1,N,1,17.5,1.0,0.5,0.3,3.85,0.0,23.15 +1,2016-01-21 13:08:49,2016-01-21 13:24:45,1,0.9,,,-73.96426391601562,40.76736831665039,-73.97368621826172,40.757503509521484,1,N,1,11.0,0.0,0.5,0.3,3.5,0.0,15.3 +2,2016-01-15 07:54:00,2016-01-15 08:09:58,5,1.75,,,-73.9467544555664,40.77290344238281,-73.96929931640625,40.78529739379883,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-25 22:30:10,2016-01-25 22:38:23,1,1.78,,,-73.98246765136719,40.762813568115234,-73.99958038330078,40.74243927001953,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +2,2016-01-20 11:10:38,2016-01-20 11:41:40,1,5.43,,,-74.00665283203125,40.705848693847656,-73.98204040527344,40.756431579589844,1,N,1,23.0,0.0,0.5,0.3,5.95,0.0,29.75 +2,2016-01-22 22:14:03,2016-01-22 22:20:14,1,0.68,,,-74.00592041015625,40.740081787109375,-73.99999237060547,40.73456954956055,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-12 08:48:16,2016-01-12 09:08:25,1,3.5,,,-73.98880767822266,40.727020263671875,-73.99575805664062,40.76382827758789,1,N,1,15.0,0.0,0.5,0.3,3.15,0.0,18.95 +1,2016-01-15 12:48:00,2016-01-15 13:21:23,1,13.4,,,-74.01599884033203,40.71505355834961,-73.87202453613281,40.774471282958984,1,N,1,39.5,0.0,0.5,0.3,8.05,0.0,48.35 +1,2016-01-28 17:50:30,2016-01-28 18:13:09,1,2.5,,,-74.00448608398438,40.74171447753906,-73.9781723022461,40.7523307800293,1,N,2,15.0,1.0,0.5,0.3,0.0,0.0,16.8 +2,2016-01-26 09:20:18,2016-01-26 09:31:58,1,0.9,,,-73.9651870727539,40.763919830322266,-73.9772720336914,40.76445770263672,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,11.62 +2,2016-01-18 10:25:11,2016-01-18 10:44:25,6,5.36,,,-73.86307525634766,40.76877975463867,-73.81197357177734,40.770023345947266,1,N,1,19.5,0.0,0.5,0.3,4.06,0.0,24.36 +2,2016-01-09 00:57:45,2016-01-09 01:12:10,5,5.41,,,-73.99469757080078,40.660118103027344,-74.01162719726562,40.70771026611328,1,N,1,17.5,0.5,0.5,0.3,5.64,0.0,24.44 +1,2016-01-16 09:02:46,2016-01-16 09:20:49,1,4.5,,,-73.90192413330078,40.746334075927734,-73.97008514404297,40.75214385986328,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,17.3 +1,2016-01-06 23:42:57,2016-01-07 00:02:17,1,5.6,,,-73.98081970214844,40.782325744628906,-73.91263580322266,40.764129638671875,1,N,2,19.0,0.5,0.5,0.3,0.0,0.0,20.3 +1,2016-01-15 07:26:07,2016-01-15 07:32:14,1,1.0,,,-74.01025390625,40.718650817871094,-73.99884033203125,40.719825744628906,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-17 16:38:28,2016-01-17 16:56:35,1,2.4,,,-73.98249053955078,40.734649658203125,-73.98703002929688,40.75743865966797,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-01 22:22:50,2016-01-01 22:55:35,1,18.45,,,-73.78089904785156,40.64509582519531,-73.9934310913086,40.735862731933594,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-07 18:03:55,2016-01-07 18:05:52,1,0.2,,,-73.98832702636719,40.758766174316406,-73.98625183105469,40.76179122924805,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-26 07:32:54,2016-01-26 07:49:59,1,3.4,,,-74.00660705566406,40.73166275024414,-73.98596954345703,40.77288055419922,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +2,2016-01-05 22:38:50,2016-01-05 22:45:17,1,1.3,,,-73.98224639892578,40.76836013793945,-73.99009704589844,40.756690979003906,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-24 14:56:17,2016-01-24 15:26:24,1,8.2,,,-73.95519256591797,40.764347076416016,-73.86442565917969,40.83171844482422,1,N,2,29.5,0.0,0.5,0.3,0.0,0.0,30.3 +2,2016-01-23 02:11:31,2016-01-23 02:33:12,1,6.12,,,-73.98800659179688,40.760040283203125,-73.90496063232422,40.72298049926758,1,N,1,20.5,0.5,0.5,0.3,0.0,5.54,27.34 +2,2016-01-19 07:24:13,2016-01-19 07:30:14,1,1.07,,,-73.95452117919922,40.784175872802734,-73.95890045166016,40.77247619628906,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +1,2016-01-09 11:52:23,2016-01-09 12:01:58,1,1.8,,,-73.97652435302734,40.7191047668457,-73.98918151855469,40.734153747558594,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-09 02:56:05,2016-01-09 03:09:22,1,2.47,,,-73.98770141601562,40.72098922729492,-74.00995635986328,40.705841064453125,1,N,1,11.0,0.5,0.5,0.3,1.0,0.0,13.3 +1,2016-01-24 18:19:06,2016-01-24 18:26:11,2,0.8,,,-73.98084259033203,40.764217376708984,-73.97286987304688,40.75657653808594,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-06 10:38:51,2016-01-06 10:49:54,1,2.03,,,-73.99821472167969,40.73554611206055,-73.97569274902344,40.750213623046875,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-22 15:44:28,2016-01-22 16:02:27,3,2.8,,,-73.99144744873047,40.74934387207031,-73.9634017944336,40.77275085449219,1,N,1,13.0,0.0,0.5,0.3,2.5,0.0,16.3 +2,2016-01-29 00:25:11,2016-01-29 00:33:52,1,2.1,,,-74.00303649902344,40.733341217041016,-74.00418090820312,40.70766830444336,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-17 14:59:28,2016-01-17 15:11:05,4,1.4,,,-73.98052978515625,40.73055648803711,-73.99515533447266,40.719844818115234,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-27 17:57:38,2016-01-27 18:35:33,1,3.8,,,-73.97317504882812,40.78262710571289,-73.99308776855469,40.737060546875,1,N,1,23.0,1.0,0.5,0.3,1.5,0.0,26.3 +1,2016-01-21 20:43:22,2016-01-21 20:49:04,1,1.1,,,-73.98347473144531,40.74412536621094,-73.99373626708984,40.732078552246094,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-04 12:57:09,2016-01-04 13:06:30,1,1.7,,,-73.95284271240234,40.77247619628906,-73.97954559326172,40.78371047973633,1,N,1,8.5,0.0,0.5,0.3,1.7,0.0,11.0 +2,2016-01-17 19:04:07,2016-01-17 19:09:29,1,1.25,,,-73.9932632446289,40.72249984741211,-74.0015869140625,40.70981216430664,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-16 20:38:48,2016-01-16 21:09:06,1,5.2,,,-74.0051040649414,40.720306396484375,-73.95761108398438,40.779232025146484,1,N,1,22.5,0.5,0.5,0.3,4.75,0.0,28.55 +2,2016-01-15 11:01:05,2016-01-15 11:12:10,1,1.46,,,-73.98764038085938,40.74101638793945,-74.00672912597656,40.7479362487793,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-11 10:56:20,2016-01-11 11:13:05,1,1.74,,,-73.98146057128906,40.768680572509766,-73.9533920288086,40.76670837402344,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +1,2016-01-27 20:35:39,2016-01-27 20:54:52,1,4.0,,,-73.98117065429688,40.76335906982422,-73.94947814941406,40.80214309692383,1,N,1,15.5,0.5,0.5,0.3,5.0,0.0,21.8 +2,2016-01-10 09:44:35,2016-01-10 09:53:28,2,2.34,,,-74.00148010253906,40.73112106323242,-74.0071792602539,40.709999084472656,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-08 22:05:59,2016-01-08 22:38:41,1,4.5,,,-73.98235321044922,40.77262878417969,-73.92095947265625,40.762088775634766,1,N,1,23.5,0.5,0.5,0.3,4.95,0.0,29.75 +1,2016-01-15 13:28:59,2016-01-15 13:42:31,1,1.7,,,-73.97347259521484,40.763526916503906,-73.99195098876953,40.74912643432617,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-30 23:15:39,2016-01-30 23:40:04,1,3.7,,,-73.96131896972656,40.76514434814453,-74.001220703125,40.7365837097168,1,N,1,17.5,0.5,0.5,0.3,3.75,0.0,22.55 +2,2016-01-04 22:26:32,2016-01-04 22:33:49,1,1.69,,,-73.99138641357422,40.72968673706055,-73.976318359375,40.749122619628906,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-12 07:20:37,2016-01-12 07:26:09,5,1.08,,,-73.97937774658203,40.77133560180664,-73.98058319091797,40.78306579589844,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-16 15:39:54,2016-01-16 16:06:07,3,4.9,,,-74.00221252441406,40.755760192871094,-73.95361328125,40.78288269042969,1,N,1,21.0,0.0,0.5,0.3,6.5,0.0,28.3 +2,2016-01-20 11:59:32,2016-01-20 12:15:13,1,0.88,,,-73.96499633789062,40.7716064453125,-73.97309875488281,40.764305114746094,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +1,2016-01-14 12:47:56,2016-01-14 12:52:21,1,0.5,,,-73.95401000976562,40.766361236572266,-73.9627685546875,40.769569396972656,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,6.35 +1,2016-01-04 18:34:53,2016-01-04 18:38:21,1,0.7,,,-73.94872283935547,40.77381896972656,-73.95539093017578,40.76863098144531,1,N,1,4.5,1.0,0.5,0.3,1.7,0.0,8.0 +2,2016-01-14 18:05:55,2016-01-14 18:18:25,1,1.2,,,-73.99211120605469,40.742523193359375,-73.97515869140625,40.74155807495117,1,N,1,9.0,1.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-30 11:19:56,2016-01-30 11:23:18,1,0.7,,,0.0,0.0,0.0,0.0,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +2,2016-01-26 05:43:23,2016-01-26 06:10:50,1,7.52,,,-73.97686004638672,40.76412582397461,-73.8718490600586,40.774330139160156,1,N,2,26.0,0.5,0.5,0.3,0.0,0.0,27.3 +2,2016-01-05 21:21:33,2016-01-05 21:42:00,1,9.41,,,-73.86355590820312,40.76985168457031,-73.9666976928711,40.78892135620117,1,N,1,27.5,0.5,0.5,0.3,6.0,5.54,40.34 +2,2016-01-30 01:42:12,2016-01-30 01:44:53,1,0.48,,,-73.99950408935547,40.738834381103516,-74.0037841796875,40.733497619628906,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,6.36 +1,2016-01-03 03:13:57,2016-01-03 03:28:55,1,4.7,,,-74.00257873535156,40.749935150146484,-73.94729614257812,40.772621154785156,1,N,1,16.0,0.5,0.5,0.3,3.45,0.0,20.75 +1,2016-01-07 19:27:49,2016-01-07 19:39:34,4,2.4,,,-73.98250579833984,40.739952087402344,-73.95744323730469,40.76560592651367,1,N,1,11.0,1.0,0.5,0.3,2.55,0.0,15.35 +1,2016-01-05 14:03:27,2016-01-05 14:11:32,1,1.5,,,-74.005859375,40.74016189575195,-74.00297546386719,40.723453521728516,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +1,2016-01-20 18:25:25,2016-01-20 18:37:18,1,1.8,,,-73.94469451904297,40.79146957397461,-73.947021484375,40.77177810668945,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,11.3 +1,2016-01-13 06:09:38,2016-01-13 06:41:09,1,17.7,,,-73.95714569091797,40.74547576904297,-73.77637481689453,40.64601135253906,1,N,1,49.5,0.0,0.5,0.3,12.55,0.0,62.85 +1,2016-01-08 17:42:26,2016-01-08 17:49:38,2,1.2,,,-73.96577453613281,40.77420425415039,-73.951171875,40.77880859375,1,N,1,7.0,1.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-29 20:13:16,2016-01-29 20:22:30,1,1.28,,,-73.97354888916016,40.763038635253906,-73.97853088378906,40.773929595947266,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-28 09:08:12,2016-01-28 09:21:59,1,1.31,,,-73.95511627197266,40.76919174194336,-73.96853637695312,40.76108169555664,1,N,1,9.5,0.0,0.5,0.3,1.7,0.0,12.0 +2,2016-01-23 06:15:20,2016-01-23 06:21:11,1,1.11,,,-73.96502685546875,40.766510009765625,-73.98191833496094,40.7705192565918,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-29 18:17:00,2016-01-29 19:06:40,2,18.9,,,-73.79227447509766,40.64516830444336,-73.95753479003906,40.779693603515625,2,N,1,52.0,0.0,0.5,0.3,14.55,5.54,72.89 +2,2016-01-12 07:38:24,2016-01-12 07:47:41,3,2.11,,,-74.0015869140625,40.73511505126953,-73.9736557006836,40.7435417175293,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-03 10:24:06,2016-01-03 10:31:47,1,2.5,,,-73.93156433105469,40.7599983215332,-73.96722412109375,40.756744384765625,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-21 21:16:09,2016-01-21 21:32:04,2,3.09,,,-73.9798812866211,40.73493576049805,-73.9513168334961,40.77405548095703,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,17.16 +1,2016-01-17 16:31:16,2016-01-17 16:36:06,1,1.0,,,0.0,0.0,-73.97595977783203,40.787986755371094,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,7.55 +2,2016-01-13 12:29:19,2016-01-13 12:39:22,6,1.19,,,-73.97770690917969,40.75714111328125,-73.99108123779297,40.74885940551758,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-29 19:17:15,2016-01-29 19:35:10,1,2.5,,,-73.95510864257812,40.689273834228516,-73.95439147949219,40.71896743774414,1,N,1,13.5,1.0,0.5,0.3,3.05,0.0,18.35 +2,2016-01-01 01:12:13,2016-01-01 01:21:03,1,1.91,,,-73.9853286743164,40.7473258972168,-73.96611785888672,40.763118743896484,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,10.8 +2,2016-01-30 03:58:49,2016-01-30 04:13:23,1,3.47,,,-73.99453735351562,40.71925735473633,-73.96500396728516,40.763431549072266,1,N,1,13.0,0.5,0.5,0.3,1.0,0.0,15.3 +1,2016-01-15 11:53:39,2016-01-15 12:15:18,1,2.3,,,-73.97908020019531,40.74430465698242,-73.95594024658203,40.76800537109375,1,N,1,15.0,0.0,0.5,0.3,2.0,0.0,17.8 +2,2016-01-11 07:46:18,2016-01-11 07:51:03,5,0.43,,,-73.95828247070312,40.800048828125,-73.96550750732422,40.80295944213867,1,N,1,5.0,0.0,0.5,0.3,1.45,0.0,7.25 +1,2016-01-23 00:18:27,2016-01-23 00:25:44,1,1.5,,,-73.9637451171875,40.706512451171875,-73.95533752441406,40.689456939697266,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +2,2016-01-19 20:18:46,2016-01-19 20:26:49,6,1.41,,,-73.97222900390625,40.759483337402344,-73.97454071044922,40.7442626953125,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +1,2016-01-30 16:51:21,2016-01-30 17:16:05,1,5.4,,,-73.91873168945312,40.75387954711914,-73.94544219970703,40.79069519042969,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,20.8 +1,2016-01-15 19:23:19,2016-01-15 19:30:03,1,1.2,,,-73.97766876220703,40.78904724121094,-73.98008728027344,40.77615737915039,1,N,1,7.0,1.0,0.5,0.3,2.2,0.0,11.0 +2,2016-01-11 21:45:47,2016-01-11 21:58:20,1,4.64,,,-73.97064971923828,40.758148193359375,-73.99414825439453,40.71048355102539,1,N,1,15.5,0.5,0.5,0.3,5.04,0.0,21.84 +1,2016-01-02 21:38:33,2016-01-02 21:48:31,1,1.8,,,-73.98798370361328,40.764915466308594,-73.98934936523438,40.743934631347656,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +1,2016-01-25 19:56:40,2016-01-25 20:06:38,1,1.8,,,-73.98017120361328,40.78066635131836,-73.96748352050781,40.803043365478516,1,N,1,8.5,1.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-04 09:37:52,2016-01-04 09:47:40,1,1.7,,,-73.97578430175781,40.787025451660156,-73.95220184326172,40.78408432006836,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-08 22:40:12,2016-01-08 22:42:09,1,0.5,,,-73.95677185058594,40.762847900390625,-73.95191955566406,40.76936721801758,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +2,2016-01-08 17:13:16,2016-01-08 17:16:14,1,0.41,,,-73.9787368774414,40.77754592895508,-73.98120880126953,40.781150817871094,1,N,1,4.0,1.0,0.5,0.3,1.04,0.0,6.84 +2,2016-01-14 08:31:06,2016-01-14 08:44:15,1,2.09,,,-73.96719360351562,40.80371856689453,-73.98226165771484,40.7767333984375,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-08 20:40:03,2016-01-08 20:52:19,1,2.28,,,-73.97860717773438,40.752540588378906,-73.98899841308594,40.77436828613281,1,N,1,10.5,0.5,0.5,0.3,1.0,0.0,12.8 +1,2016-01-13 18:05:47,2016-01-13 18:22:36,1,2.8,,,-73.99151611328125,40.74248504638672,-74.01031494140625,40.70902633666992,1,N,1,12.5,1.0,0.5,0.3,2.85,0.0,17.15 +1,2016-01-17 10:09:00,2016-01-17 10:36:11,1,17.5,,,-73.78196716308594,40.64458084106445,-73.98505401611328,40.71918869018555,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +2,2016-01-17 23:08:12,2016-01-17 23:29:38,4,15.71,,,-73.87491607666016,40.77405548095703,-74.01461029052734,40.708335876464844,1,N,1,42.5,0.5,0.5,0.3,12.34,5.54,61.68 +1,2016-01-21 21:04:42,2016-01-21 21:09:49,1,1.3,,,-73.99356842041016,40.741676330566406,-73.99014282226562,40.756675720214844,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,8.75 +2,2016-01-29 22:06:04,2016-01-29 22:16:09,5,1.72,,,-73.9813232421875,40.781158447265625,-73.9939193725586,40.761531829833984,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +2,2016-01-18 12:11:19,2016-01-18 12:20:22,1,1.03,,,-73.96997833251953,40.759456634521484,-73.9856948852539,40.7629508972168,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +1,2016-01-15 11:50:14,2016-01-15 12:28:44,1,15.2,,,-73.87297821044922,40.77423858642578,-74.00547790527344,40.714996337890625,1,N,1,47.0,0.0,0.5,0.3,10.65,5.54,63.99 +1,2016-01-08 22:47:27,2016-01-08 22:54:58,1,1.5,,,-73.99188232421875,40.769493103027344,-73.9941177368164,40.75257873535156,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +1,2016-01-18 13:23:26,2016-01-18 13:43:20,1,5.8,,,-74.00897979736328,40.7044792175293,-73.97703552246094,40.759239196777344,1,N,1,20.5,0.0,0.5,0.3,3.0,0.0,24.3 +1,2016-01-12 07:40:04,2016-01-12 08:05:22,1,6.1,,,-73.95639038085938,40.77584457397461,-73.9371566772461,40.849029541015625,1,N,1,24.5,0.0,0.5,0.3,5.06,0.0,30.36 +1,2016-01-14 20:00:38,2016-01-14 20:14:31,1,1.6,,,-73.96949768066406,40.753787994384766,-73.99038696289062,40.75270462036133,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +2,2016-01-21 19:42:19,2016-01-21 19:54:49,6,2.25,,,-73.97463989257812,40.757259368896484,-73.94982147216797,40.77635955810547,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-02 20:31:13,2016-01-02 20:43:23,2,2.4,,,-73.95648956298828,40.771297454833984,-73.97348022460938,40.79266357421875,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,11.8 +2,2016-01-05 18:37:56,2016-01-05 18:53:50,3,2.18,,,-74.00642395019531,40.75117111206055,-73.99156951904297,40.73029327392578,1,N,1,12.0,1.0,0.5,0.3,1.5,0.0,15.3 +2,2016-01-20 20:03:45,2016-01-20 20:30:12,1,5.7,,,-74.00714874267578,40.72746276855469,-73.95478057861328,40.78757858276367,1,N,2,21.0,0.5,0.5,0.3,0.0,0.0,22.3 +2,2016-01-22 16:44:28,2016-01-22 17:14:22,1,8.81,,,-73.86363983154297,40.76968765258789,-73.97416687011719,40.74413299560547,1,N,1,28.5,1.0,0.5,0.3,7.0,5.54,42.84 +1,2016-01-16 20:50:39,2016-01-16 20:59:21,2,2.2,,,-73.95439910888672,40.778079986572266,-73.95213317871094,40.80308532714844,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +1,2016-01-10 13:18:30,2016-01-10 13:33:56,4,3.9,,,-74.00569152832031,40.71160125732422,-74.0026626586914,40.75617218017578,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,15.3 +2,2016-01-20 17:34:46,2016-01-20 17:43:03,1,1.02,,,-74.00096893310547,40.7418098449707,-73.98648834228516,40.73479080200195,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-07 12:36:08,2016-01-07 12:45:05,1,1.12,,,-73.98421478271484,40.74336242675781,-73.97718048095703,40.75587463378906,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-07 15:20:17,2016-01-07 15:39:02,5,1.76,,,-73.96903991699219,40.78554153442383,-73.95189666748047,40.76938247680664,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +1,2016-01-13 12:53:04,2016-01-13 13:01:00,1,0.9,,,-73.98374938964844,40.74679183959961,-73.97551727294922,40.757789611816406,1,N,1,6.5,0.0,0.5,0.3,2.15,0.0,9.45 +2,2016-01-04 12:43:06,2016-01-04 12:44:57,1,0.15,,,-73.99150848388672,40.73257827758789,-73.9902114868164,40.73208236694336,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,3.8 +2,2016-01-15 23:12:33,2016-01-15 23:34:48,1,9.73,,,-73.87320709228516,40.77402114868164,-74.00167846679688,40.719207763671875,1,N,1,29.5,0.5,0.5,0.3,6.16,0.0,36.96 +1,2016-01-21 07:15:27,2016-01-21 07:27:49,1,1.9,,,-73.9760971069336,40.74831771850586,-73.9810562133789,40.76774215698242,1,N,1,10.0,0.0,0.5,0.3,2.7,0.0,13.5 +1,2016-01-08 15:14:52,2016-01-08 15:24:01,1,1.7,,,-73.97269439697266,40.749813079833984,-73.95513916015625,40.76561737060547,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-10 20:02:30,2016-01-10 20:12:46,1,1.73,,,-73.98922729492188,40.757511138916016,-73.96482849121094,40.75830078125,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-21 16:00:10,2016-01-21 16:02:31,1,0.64,,,-73.97144317626953,40.763736724853516,-73.9649887084961,40.769805908203125,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-11 14:30:06,2016-01-11 14:38:53,1,1.56,,,-73.98584747314453,40.73828887939453,-74.0044937133789,40.73067855834961,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-01 19:51:37,2016-01-01 20:05:40,1,4.73,,,-73.98583984375,40.73101043701172,-73.98970794677734,40.70246887207031,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,17.3 +1,2016-01-19 14:52:16,2016-01-19 15:10:15,1,1.8,,,-73.98217010498047,40.77854919433594,-73.97000122070312,40.76192855834961,1,N,1,12.5,0.0,0.5,0.3,3.3,0.0,16.6 +2,2016-01-19 23:02:31,2016-01-19 23:31:09,1,11.23,,,-73.88523864746094,40.772979736328125,-73.9845199584961,40.782470703125,1,N,1,34.5,0.5,0.5,0.3,7.16,0.0,42.96 +2,2016-01-27 16:50:58,2016-01-27 17:01:20,5,1.95,,,-73.95014953613281,40.772003173828125,-73.96570587158203,40.75414276123047,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-17 16:11:15,2016-01-17 16:23:25,6,1.95,,,-73.95308685302734,40.78010177612305,-73.97257995605469,40.76239013671875,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,11.8 +1,2016-01-08 10:08:41,2016-01-08 10:31:18,2,2.1,,,-73.96214294433594,40.77924346923828,-73.98231506347656,40.768741607666016,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +2,2016-01-12 22:25:17,2016-01-12 22:35:32,1,1.81,,,-74.01053619384766,40.70452117919922,-74.0028305053711,40.72351837158203,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-29 12:58:19,2016-01-29 13:08:48,1,1.0,,,-73.97438049316406,40.783355712890625,-73.98667907714844,40.77718734741211,1,N,1,8.0,0.0,0.5,0.3,2.0,0.0,10.8 +2,2016-01-07 21:57:31,2016-01-07 22:15:48,1,2.88,,,-73.98401641845703,40.78044891357422,-73.94734954833984,40.77272033691406,1,N,1,14.5,0.5,0.5,0.3,3.95,0.0,19.75 +1,2016-01-20 21:18:22,2016-01-20 21:32:43,1,7.5,,,-74.01496124267578,40.713584899902344,-73.95601654052734,40.770565032958984,1,N,1,22.0,0.5,0.5,0.3,4.65,0.0,27.95 +2,2016-01-28 23:33:01,2016-01-28 23:45:46,1,3.2,,,-74.00807189941406,40.74005889892578,-73.98882293701172,40.7741813659668,1,N,1,12.5,0.5,0.5,0.3,2.0,0.0,15.8 +2,2016-01-04 15:08:00,2016-01-04 15:11:47,5,1.11,,,-73.98223876953125,40.77301788330078,-73.98823547363281,40.75994873046875,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-19 08:33:52,2016-01-19 09:12:17,5,6.59,,,-74.01715087890625,40.705406188964844,-73.98657989501953,40.75519561767578,1,N,1,28.0,0.0,0.5,0.3,5.76,0.0,34.56 +2,2016-01-15 21:20:27,2016-01-15 21:59:49,1,12.26,,,-73.9939193725586,40.74652099609375,-73.82344818115234,40.750938415527344,1,N,2,40.0,0.5,0.5,0.3,0.0,0.0,41.3 +2,2016-01-22 23:34:58,2016-01-22 23:41:43,1,1.65,,,-73.9705581665039,40.76401901245117,-73.95501708984375,40.780250549316406,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-10 09:55:36,2016-01-10 10:02:19,5,1.68,,,-73.97454833984375,40.78334045410156,-73.95765686035156,40.779571533203125,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-30 14:06:38,2016-01-30 14:15:36,1,1.39,,,-73.99748992919922,40.72454833984375,-74.0066909790039,40.70867919921875,1,N,1,7.5,0.0,0.5,0.3,2.08,0.0,10.38 +2,2016-01-21 13:15:06,2016-01-21 13:33:01,1,1.3,,,-73.9637680053711,40.76546859741211,-73.98113250732422,40.76913833618164,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-29 08:35:28,2016-01-29 09:02:53,2,5.5,,,-73.9813232421875,40.769046783447266,-74.01471710205078,40.711524963378906,1,N,2,21.5,0.0,0.5,0.3,0.0,0.0,22.3 +1,2016-01-16 11:57:00,2016-01-16 12:07:03,1,1.2,,,-73.99021911621094,40.751548767089844,-73.97725677490234,40.75202178955078,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-03 03:40:45,2016-01-03 03:48:07,3,1.7,,,-73.97059631347656,40.76277542114258,-73.98703002929688,40.74692916870117,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-22 08:22:49,2016-01-22 08:29:31,1,0.8,,,-73.987060546875,40.771095275878906,-73.97949981689453,40.781612396240234,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-27 13:17:54,2016-01-27 13:50:41,1,7.92,,,-73.87450408935547,40.77400588989258,-73.94883728027344,40.773582458496094,1,N,1,29.5,0.0,0.5,0.3,7.17,5.54,43.01 +2,2016-01-05 19:22:01,2016-01-05 19:25:50,1,0.64,,,-73.98069763183594,40.75502014160156,-73.98175811767578,40.74734878540039,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-09 12:02:24,2016-01-09 12:08:45,2,1.27,,,-73.90428924560547,40.75226974487305,-73.91986083984375,40.74671936035156,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-11 16:22:11,2016-01-11 16:29:30,2,0.7,,,-73.98040771484375,40.75432586669922,-73.98983764648438,40.74715805053711,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-28 19:28:32,2016-01-28 19:45:46,1,2.32,,,-73.97830200195312,40.752410888671875,-74.00138092041016,40.731082916259766,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,14.3 +2,2016-01-11 12:13:36,2016-01-11 12:21:00,3,1.05,,,-73.96338653564453,40.765968322753906,-73.95413970947266,40.77886962890625,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +1,2016-01-22 00:43:19,2016-01-22 01:02:45,1,4.2,,,-74.0060806274414,40.73474884033203,-73.97004699707031,40.694374084472656,1,N,1,16.5,0.5,0.5,0.3,2.0,0.0,19.8 +2,2016-01-16 03:12:10,2016-01-16 03:22:38,2,3.42,,,-73.98551940917969,40.74462127685547,-73.98458862304688,40.78239822387695,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +1,2016-01-11 20:48:17,2016-01-11 20:58:06,1,1.3,,,-73.97728729248047,40.76454544067383,-73.98973846435547,40.760616302490234,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +2,2016-01-08 20:21:03,2016-01-08 20:26:52,1,0.4,,,0.0,0.0,0.0,0.0,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-21 17:24:04,2016-01-21 17:30:27,1,0.5,,,-73.97833251953125,40.741737365722656,-73.98677825927734,40.74545669555664,1,N,1,5.5,1.0,0.5,0.3,1.2,0.0,8.5 +2,2016-01-21 09:51:38,2016-01-21 09:58:50,1,0.6,,,-73.99263000488281,40.74306869506836,-73.996337890625,40.74834060668945,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-11 21:59:31,2016-01-11 22:06:54,1,0.95,,,-73.99488830566406,40.75271987915039,-73.98475646972656,40.74531936645508,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-01 00:16:41,2016-01-01 00:40:31,1,12.18,,,-73.9681625366211,40.7596435546875,-73.82514953613281,40.691619873046875,1,N,1,35.0,0.5,0.5,0.3,10.89,0.0,47.19 +1,2016-01-30 00:13:51,2016-01-30 00:20:12,2,0.8,,,-73.9675521850586,40.76021957397461,-73.98137664794922,40.765869140625,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-07 17:02:50,2016-01-07 17:07:02,1,1.2,,,-73.977294921875,40.7844352722168,-73.96635437011719,40.794437408447266,1,N,1,5.5,1.0,0.5,0.3,1.45,0.0,8.75 +1,2016-01-09 18:48:15,2016-01-09 18:54:21,1,1.1,,,-73.96662902832031,40.7646598815918,-73.97251892089844,40.751556396484375,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-26 20:08:44,2016-01-26 20:15:58,2,1.48,,,-73.99044036865234,40.7188835144043,-73.98806762695312,40.73517608642578,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,9.3 +1,2016-01-12 23:33:53,2016-01-12 23:35:12,1,0.5,,,-74.00530242919922,40.740108489990234,-74.0032730102539,40.73418045043945,1,N,1,3.5,0.5,0.5,0.3,1.2,0.0,6.0 +2,2016-01-10 14:47:03,2016-01-10 14:50:43,1,0.83,,,-73.95428466796875,40.778865814208984,-73.94725036621094,40.771728515625,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-11 11:35:28,2016-01-11 11:37:51,1,0.46,,,-73.98414611816406,40.737396240234375,-73.98389434814453,40.742393493652344,1,N,1,4.0,0.0,0.5,0.3,1.0,0.0,5.8 +1,2016-01-04 12:16:10,2016-01-04 12:18:37,1,0.6,,,-73.97991943359375,40.770938873291016,-73.97481536865234,40.77775955200195,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-17 14:02:26,2016-01-17 14:23:56,1,1.5,,,-73.99995422363281,40.72174072265625,-73.98749542236328,40.71150588989258,1,N,1,13.5,0.0,0.5,0.3,1.0,0.0,15.3 +2,2016-01-20 22:44:08,2016-01-20 23:05:00,4,4.4,,,-73.9851303100586,40.72357940673828,-73.99312591552734,40.76678466796875,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,18.3 +1,2016-01-30 22:50:29,2016-01-30 23:02:35,2,1.0,,,-73.98469543457031,40.728572845458984,-73.99885559082031,40.732032775878906,1,N,1,8.5,0.5,0.5,0.3,1.95,0.0,11.75 +2,2016-01-18 18:39:30,2016-01-18 19:06:53,1,9.22,,,-73.86332702636719,40.76982116699219,-73.9866714477539,40.75025177001953,1,N,2,28.5,0.0,0.5,0.3,0.0,5.54,34.84 +1,2016-01-20 18:03:15,2016-01-20 18:09:55,1,0.9,,,-73.9891586303711,40.741844177246094,-74.00537109375,40.74829864501953,1,Y,1,6.5,1.0,0.5,0.3,1.65,0.0,9.95 +1,2016-01-20 18:14:32,2016-01-20 18:58:35,1,6.5,,,-73.98970031738281,40.74178695678711,-73.93492889404297,40.690269470214844,1,N,1,29.5,1.0,0.5,0.3,6.25,0.0,37.55 +2,2016-01-29 20:29:57,2016-01-29 20:36:35,6,0.6,,,-73.99609375,40.73240280151367,-74.0027847290039,40.727264404296875,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +2,2016-01-13 14:44:54,2016-01-13 14:59:56,1,1.66,,,-73.99358367919922,40.73301696777344,-73.98119354248047,40.750205993652344,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-09 22:50:19,2016-01-09 22:54:48,1,1.33,,,-73.95291137695312,40.780418395996094,-73.94738006591797,40.79399871826172,1,N,1,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-11 05:54:17,2016-01-11 05:59:20,3,1.48,,,-73.9709701538086,40.74816131591797,-73.96708679199219,40.76398849487305,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-08 08:39:28,2016-01-08 08:53:15,2,3.5,,,-74.00051879882812,40.727291107177734,-73.95756530761719,40.72049331665039,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-25 16:54:49,2016-01-25 17:06:20,1,1.8,,,-74.01520538330078,40.71540069580078,-74.00218963623047,40.7346305847168,1,N,1,9.5,1.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-17 09:52:03,2016-01-17 10:15:27,1,6.51,,,-73.95928955078125,40.76796340942383,-73.87349700927734,40.74606704711914,1,N,1,22.5,0.0,0.5,0.3,5.82,0.0,29.12 +2,2016-01-09 11:46:59,2016-01-09 11:59:41,1,2.14,,,-73.97489929199219,40.790618896484375,-73.98377990722656,40.761741638183594,1,N,1,10.5,0.0,0.5,0.3,3.39,0.0,14.69 +2,2016-01-02 12:04:34,2016-01-02 12:05:25,2,0.25,,,-73.95183563232422,40.773681640625,-73.94832611083984,40.77824401855469,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,3.8 +1,2016-01-08 12:36:59,2016-01-08 13:20:30,1,9.7,,,-73.95940399169922,40.767478942871094,-73.875,40.87283706665039,1,N,1,35.0,0.0,0.5,0.3,2.0,0.0,37.8 +2,2016-01-06 18:21:15,2016-01-06 18:23:54,2,0.58,,,-73.95826721191406,40.778385162353516,-73.95338439941406,40.7835807800293,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-19 10:57:16,2016-01-19 11:06:09,1,1.11,,,-73.96732330322266,40.76610565185547,-73.9821548461914,40.775245666503906,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-20 19:01:21,2016-01-20 19:08:18,1,0.85,,,-73.98847961425781,40.77867126464844,-73.98226165771484,40.772098541259766,1,N,1,6.5,1.0,0.5,0.3,2.08,0.0,10.38 +1,2016-01-05 18:02:59,2016-01-05 18:11:43,1,1.4,,,-73.99079132080078,40.755645751953125,-73.98152923583984,40.772071838378906,1,N,1,8.0,1.0,0.5,0.3,2.9,0.0,12.7 +2,2016-01-06 16:14:34,2016-01-06 16:18:52,1,1.04,,,-73.97332763671875,40.75204849243164,-73.98001098632812,40.73937225341797,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-01 23:14:02,2016-01-01 23:20:05,1,1.53,,,-73.98007202148438,40.73896026611328,-73.982177734375,40.723785400390625,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,9.3 +1,2016-01-30 18:03:22,2016-01-30 18:32:40,1,6.0,,,-73.98213958740234,40.77124786376953,-73.90301513671875,40.77070617675781,1,N,1,23.5,0.0,0.5,0.3,4.85,0.0,29.15 +1,2016-01-09 02:09:34,2016-01-09 02:37:13,1,7.5,,,-73.99211120605469,40.748592376708984,-73.88636779785156,40.745609283447266,1,Y,2,26.0,0.5,0.5,0.3,0.0,0.0,27.3 +1,2016-01-28 09:28:27,2016-01-28 09:42:47,1,1.5,,,-73.99059295654297,40.756492614746094,-73.9847412109375,40.742042541503906,1,N,1,10.0,0.0,0.5,0.3,2.0,0.0,12.8 +1,2016-01-30 19:17:18,2016-01-30 19:25:50,1,1.0,,,-74.00052642822266,40.718326568603516,-74.00445556640625,40.708030700683594,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +2,2016-01-17 00:59:24,2016-01-17 01:16:52,1,5.63,,,-73.98182678222656,40.75600814819336,-73.94550323486328,40.8178596496582,1,N,1,18.0,0.5,0.5,0.3,3.86,0.0,23.16 +1,2016-01-30 18:06:44,2016-01-30 18:20:40,2,1.7,,,-74.00579071044922,40.74094009399414,-73.98394012451172,40.744476318359375,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-08 21:10:19,2016-01-08 21:14:15,1,0.98,,,-74.00125885009766,40.75690841674805,-73.99740600585938,40.747318267822266,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-10 23:26:29,2016-01-10 23:43:24,2,6.48,,,0.0,0.0,0.0,0.0,1,N,1,20.5,0.5,0.5,0.3,5.45,0.0,27.25 +2,2016-01-02 00:14:27,2016-01-02 00:29:29,1,3.14,,,-73.99346923828125,40.751983642578125,-74.0016860961914,40.71705627441406,1,N,1,13.5,0.5,0.5,0.3,2.96,0.0,17.76 +1,2016-01-23 00:42:39,2016-01-23 00:55:09,3,1.4,,,-73.98973846435547,40.7205810546875,-73.97828674316406,40.724937438964844,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +1,2016-01-08 05:07:44,2016-01-08 05:27:46,1,4.8,,,-73.98306274414062,40.76650619506836,-73.92205047607422,40.73597717285156,1,N,2,18.0,0.5,0.5,0.3,0.0,0.0,19.3 +2,2016-01-10 12:00:08,2016-01-10 12:00:12,1,0.0,,,0.0,0.0,-73.94397735595703,40.708038330078125,1,N,1,2.5,0.0,0.5,0.3,4.0,0.0,7.3 +2,2016-01-09 23:37:14,2016-01-09 23:47:00,4,1.63,,,-73.99642181396484,40.744380950927734,-73.98485565185547,40.75950241088867,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +2,2016-01-15 19:30:57,2016-01-15 19:45:05,2,1.86,,,-73.95635986328125,40.763118743896484,-73.98243713378906,40.76189041137695,1,N,1,10.5,1.0,0.5,0.3,1.0,0.0,13.3 +2,2016-01-03 16:52:26,2016-01-03 17:07:38,2,2.34,,,-73.9435806274414,40.8206787109375,-73.938232421875,40.79644012451172,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +2,2016-01-10 23:02:09,2016-01-10 23:19:15,3,2.87,,,-73.98155975341797,40.73271179199219,-73.98757934570312,40.76219177246094,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,15.3 +2,2016-01-02 10:27:35,2016-01-02 10:30:56,1,0.68,,,-73.97923278808594,40.729888916015625,-73.99012756347656,40.73040008544922,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-21 10:17:40,2016-01-21 10:40:00,6,2.05,,,-73.99382781982422,40.74165344238281,-73.99539947509766,40.76374435424805,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,19.75 +2,2016-01-02 09:41:44,2016-01-02 09:45:49,2,1.06,,,-73.99429321289062,40.75174331665039,-74.00472259521484,40.741668701171875,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-07 21:31:26,2016-01-07 21:42:38,1,1.9,,,-73.96833038330078,40.761356353759766,-73.98273468017578,40.7771110534668,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-28 16:58:38,2016-01-28 17:17:22,1,5.7,,,-73.94692993164062,40.772525787353516,-74.00019073486328,40.72498321533203,1,N,1,19.5,1.0,0.5,0.3,4.25,0.0,25.55 +2,2016-01-13 20:58:15,2016-01-13 21:23:33,1,10.51,,,-73.8709487915039,40.773738861083984,-74.00093841552734,40.731868743896484,1,N,1,32.0,0.5,0.5,0.3,6.66,0.0,39.96 +1,2016-01-01 16:02:07,2016-01-01 16:14:39,1,3.4,,,-73.9890365600586,40.73090744018555,-73.95574951171875,40.772464752197266,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-09 20:16:48,2016-01-09 20:22:30,1,0.7,,,-74.00143432617188,40.73115539550781,-73.9903335571289,40.72657012939453,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +1,2016-01-29 13:08:57,2016-01-29 13:17:51,2,1.2,,,-73.96154022216797,40.779972076416016,-73.97314453125,40.764095306396484,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-14 17:54:12,2016-01-14 18:07:46,1,1.72,,,-73.98479461669922,40.74248504638672,-73.99687194824219,40.7250862121582,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-20 22:26:35,2016-01-20 22:34:18,1,1.6,,,-73.97640991210938,40.785831451416016,-73.95590209960938,40.776023864746094,1,N,1,8.0,0.5,0.5,0.3,1.4,0.0,10.7 +1,2016-01-02 15:32:58,2016-01-02 15:44:54,1,1.5,,,0.0,0.0,0.0,0.0,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-21 06:36:56,2016-01-21 06:42:17,1,0.59,,,-73.95594787597656,40.77653121948242,-73.956787109375,40.78118133544922,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-30 10:56:05,2016-01-30 11:10:12,1,2.63,,,-73.98873138427734,40.76359176635742,-73.95658874511719,40.768978118896484,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,15.36 +1,2016-01-09 13:39:12,2016-01-09 13:43:43,3,0.5,,,-73.95457458496094,40.7696647644043,-73.9482421875,40.774662017822266,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-22 19:15:38,2016-01-22 19:26:15,2,1.07,,,-73.98206329345703,40.778785705566406,-73.98253631591797,40.764652252197266,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-04 18:06:58,2016-01-04 18:17:47,1,1.3,,,-73.9939956665039,40.74648666381836,-73.97815704345703,40.75236129760742,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-17 02:42:59,2016-01-17 02:56:46,1,4.1,,,-73.98387145996094,40.74075698852539,-73.9452133178711,40.788414001464844,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +1,2016-01-23 00:45:59,2016-01-23 00:55:10,1,1.9,,,-73.98785400390625,40.75815963745117,-73.9900131225586,40.77473831176758,1,N,1,8.5,0.5,0.5,0.3,1.95,0.0,11.75 +1,2016-01-21 05:22:14,2016-01-21 05:25:27,1,0.8,,,-73.9703140258789,40.78423309326172,-73.98100280761719,40.78089141845703,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,7.3 +2,2016-01-09 00:19:40,2016-01-09 00:25:58,1,1.23,,,-73.9798355102539,40.76578140258789,-73.99124145507812,40.75018310546875,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-07 08:27:34,2016-01-07 08:33:51,4,1.1,,,-74.00900268554688,40.71409606933594,-74.00233459472656,40.72947311401367,1,N,1,6.5,0.0,0.5,0.3,1.8,0.0,9.1 +2,2016-01-07 13:22:45,2016-01-07 13:32:35,2,1.82,,,-73.9963150024414,40.73188781738281,-74.00747680664062,40.714908599853516,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-26 12:56:11,2016-01-26 13:16:45,1,1.1,,,-73.98381805419922,40.76636505126953,-73.9887924194336,40.752357482910156,1,N,1,13.0,0.0,0.5,0.3,1.0,0.0,14.8 +2,2016-01-05 21:05:24,2016-01-05 21:21:19,2,4.08,,,-73.99144744873047,40.737518310546875,-73.99590301513672,40.69327163696289,1,N,1,14.5,0.5,0.5,0.3,3.16,0.0,18.96 +2,2016-01-03 04:03:58,2016-01-03 04:17:30,6,5.27,,,-73.9914779663086,40.75001907348633,-73.91475677490234,40.744510650634766,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,18.3 +1,2016-01-05 09:18:12,2016-01-05 09:20:07,1,0.1,,,-73.98193359375,40.77632522583008,-73.98200988769531,40.77377700805664,1,N,1,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +1,2016-01-30 00:59:32,2016-01-30 01:31:46,3,16.2,,,-73.99138641357422,40.75975799560547,-74.07330322265625,40.59897232055664,1,Y,2,45.5,0.5,0.5,0.3,0.0,16.62,63.42 +2,2016-01-21 15:45:06,2016-01-21 15:52:37,3,0.9,,,-73.98240661621094,40.76472091674805,-73.97480010986328,40.75672912597656,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-07 07:30:03,2016-01-07 07:40:39,1,2.1,,,-73.9649658203125,40.79155349731445,-73.98433685302734,40.76832580566406,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-26 10:12:57,2016-01-26 10:38:07,1,1.6,,,-73.9891586303711,40.747982025146484,-73.9711685180664,40.76142501831055,1,N,1,15.5,0.0,0.5,0.3,1.5,0.0,17.8 +2,2016-01-20 23:51:15,2016-01-21 00:06:22,1,3.02,,,-73.97405242919922,40.756778717041016,-73.99536895751953,40.721561431884766,1,N,1,13.0,0.5,0.5,0.3,3.58,0.0,17.88 +2,2016-01-24 13:42:29,2016-01-24 13:46:34,6,0.74,,,-73.98601531982422,40.74095916748047,-73.98016357421875,40.74924087524414,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-09 10:23:20,2016-01-09 10:39:24,1,5.21,,,-73.95230865478516,40.772850036621094,-73.99211883544922,40.71615982055664,1,N,1,17.5,0.0,0.5,0.3,3.0,0.0,21.3 +1,2016-01-29 22:37:36,2016-01-29 22:43:55,2,0.8,,,0.0,0.0,0.0,0.0,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-27 07:47:37,2016-01-27 07:52:05,1,0.4,,,-73.97284698486328,40.74373245239258,-73.98068237304688,40.746864318847656,1,N,1,5.0,0.0,0.5,0.3,1.7,0.0,7.5 +1,2016-01-26 18:42:22,2016-01-26 18:47:17,1,0.4,,,-73.97114562988281,40.76185989379883,-73.97481536865234,40.756507873535156,1,N,1,5.0,1.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-20 19:10:47,2016-01-20 19:25:57,1,2.4,,,-73.9809799194336,40.74174880981445,-73.98965454101562,40.76622772216797,1,N,1,11.5,1.0,0.5,0.3,3.0,0.0,16.3 +2,2016-01-24 23:41:44,2016-01-24 23:51:19,1,1.97,,,-73.99658966064453,40.73170852661133,-74.00619506835938,40.71007537841797,1,N,1,8.5,0.5,0.5,0.3,5.0,0.0,14.8 +2,2016-01-16 15:12:57,2016-01-16 15:33:19,4,3.42,,,-74.00762176513672,40.72501754760742,-73.97596740722656,40.765647888183594,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-10 00:59:50,2016-01-10 01:27:03,5,5.86,,,-73.9431381225586,40.707176208496094,-73.99066162109375,40.750587463378906,1,N,1,22.5,0.5,0.5,0.3,4.76,0.0,28.56 +2,2016-01-28 07:01:48,2016-01-28 07:07:42,1,0.73,,,-73.9891357421875,40.74540328979492,-73.97838592529297,40.741390228271484,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-21 15:45:19,2016-01-21 16:02:19,1,1.66,,,-73.9753646850586,40.77705001831055,-73.97624206542969,40.75953674316406,1,N,1,11.5,0.0,0.5,0.3,1.0,0.0,13.3 +1,2016-01-08 00:25:26,2016-01-08 00:31:35,1,1.7,,,-73.94343566894531,40.717559814453125,-73.9568099975586,40.732879638671875,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +1,2016-01-14 12:29:48,2016-01-14 12:38:15,1,0.7,,,-73.96624755859375,40.76481628417969,-73.96472930908203,40.772823333740234,1,N,1,7.0,0.0,0.5,0.3,1.17,0.0,8.97 +2,2016-01-15 21:20:31,2016-01-15 21:30:51,6,3.17,,,-74.00761413574219,40.724761962890625,-73.9966812133789,40.76347351074219,1,N,1,12.0,0.5,0.5,0.3,1.0,0.0,14.3 +1,2016-01-10 14:08:51,2016-01-10 14:13:58,1,0.7,,,-73.98825073242188,40.720088958740234,-73.98711395263672,40.729061126708984,1,N,1,5.5,0.0,0.5,0.3,1.55,0.0,7.85 +1,2016-01-08 09:45:22,2016-01-08 09:52:22,1,0.9,,,-73.96269989013672,40.75812530517578,-73.97533416748047,40.755496978759766,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-22 16:33:00,2016-01-22 16:40:53,6,1.01,,,-73.98779296875,40.74998092651367,-73.97138214111328,40.74665832519531,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-05 14:06:27,2016-01-05 14:10:49,1,0.7,,,-73.96099090576172,40.76484298706055,-73.9693832397461,40.76299285888672,1,N,1,5.0,0.0,0.5,0.3,2.0,0.0,7.8 +1,2016-01-12 22:17:33,2016-01-12 22:33:03,2,1.5,,,-73.98405456542969,40.7739372253418,-73.9671630859375,40.78857421875,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +1,2016-01-16 21:52:29,2016-01-16 22:09:03,2,2.4,,,-73.98912811279297,40.72130584716797,-73.98046875,40.74816131591797,1,N,1,12.0,0.5,0.5,0.3,2.65,0.0,15.95 +2,2016-01-05 15:19:56,2016-01-05 15:41:34,2,9.39,,,-73.99138641357422,40.746456146240234,-73.87066650390625,40.773860931396484,1,N,2,27.5,0.0,0.5,0.3,0.0,5.54,33.84 +1,2016-01-09 05:51:34,2016-01-09 05:56:37,1,1.9,,,-73.96903228759766,40.75816345214844,-73.95001983642578,40.7805061340332,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +1,2016-01-29 13:04:57,2016-01-29 13:21:10,1,0.8,,,-73.99004364013672,40.73741912841797,-73.98368072509766,40.74695587158203,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +1,2016-01-11 19:12:02,2016-01-11 19:16:19,1,1.0,,,-73.9671401977539,40.75654220581055,-73.97456359863281,40.74418258666992,1,N,1,5.5,1.0,0.5,0.3,1.45,0.0,8.75 +1,2016-01-30 13:07:02,2016-01-30 13:24:13,1,6.3,,,-74.01012420654297,40.70585632324219,-73.97057342529297,40.76495361328125,1,N,1,20.5,0.0,0.5,0.3,5.0,0.0,26.3 +2,2016-01-19 13:48:52,2016-01-19 14:24:28,5,17.92,,,-73.78398895263672,40.64868927001953,-73.98075103759766,40.73537826538086,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,70.01 +1,2016-01-05 20:15:19,2016-01-05 20:19:34,2,0.6,,,-73.98773193359375,40.75835418701172,-73.98159790039062,40.76082229614258,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-10 05:09:18,2016-01-10 05:46:30,2,17.0,,,-73.99072265625,40.75641632080078,-73.89067840576172,40.8648567199707,1,N,1,47.0,0.5,0.5,0.3,0.0,2.54,50.84 +2,2016-01-08 15:39:34,2016-01-08 16:21:44,1,11.05,,,-73.86305236816406,40.769630432128906,-73.97312927246094,40.755550384521484,1,N,1,37.0,0.0,0.5,0.3,4.0,5.54,47.34 +2,2016-01-09 21:10:20,2016-01-09 21:21:01,2,2.24,,,-73.98086547851562,40.7296257019043,-73.97069549560547,40.75172805786133,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-30 21:41:39,2016-01-30 21:49:49,1,1.92,,,-73.97240447998047,40.78630447387695,-73.96855926513672,40.7663459777832,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,12.25 +2,2016-01-13 13:00:58,2016-01-13 13:22:35,1,2.71,,,0.0,0.0,0.0,0.0,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,18.36 +2,2016-01-29 09:16:14,2016-01-29 09:20:25,1,0.94,,,-74.01500701904297,40.70972442626953,-74.01013946533203,40.72147750854492,1,N,1,5.0,0.0,0.5,0.3,2.0,0.0,7.8 +1,2016-01-05 17:33:26,2016-01-05 17:50:24,2,2.9,,,-73.97928619384766,40.77652359008789,-74.00392150878906,40.74761962890625,1,N,1,13.5,1.0,0.5,0.3,3.05,0.0,18.35 +1,2016-01-29 23:53:06,2016-01-30 00:13:34,1,3.6,,,-73.97681427001953,40.76481246948242,-73.92182159423828,40.74159622192383,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,18.3 +1,2016-01-20 10:46:31,2016-01-20 11:00:26,1,1.2,,,-73.98689270019531,40.75822448730469,-73.9865493774414,40.76829528808594,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-02 22:12:59,2016-01-02 22:35:43,6,2.59,,,-73.98737335205078,40.750301361083984,-73.98187255859375,40.7830810546875,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,16.8 +1,2016-01-15 15:30:32,2016-01-15 15:40:45,1,1.7,,,-73.98332977294922,40.75456619262695,-73.98223876953125,40.77436828613281,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +2,2016-01-09 18:38:27,2016-01-09 18:43:34,3,0.85,,,-73.9887466430664,40.73103332519531,-73.97779083251953,40.73405838012695,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-03 07:43:15,2016-01-03 07:49:48,1,1.79,,,-73.97103881835938,40.79800796508789,-73.95281219482422,40.78327178955078,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-16 20:57:55,2016-01-16 21:19:56,1,5.9,,,-73.98368072509766,40.76522445678711,-73.90869903564453,40.774742126464844,1,N,1,21.0,0.5,0.5,0.3,4.45,0.0,26.75 +1,2016-01-16 19:30:53,2016-01-16 19:40:21,1,1.3,,,-73.9896469116211,40.741451263427734,-74.00447845458984,40.73054122924805,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-01 13:42:49,2016-01-01 13:52:43,2,2.75,,,-73.998779296875,40.723140716552734,-73.9841537475586,40.754600524902344,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-26 22:48:22,2016-01-26 23:03:54,2,7.41,,,-73.8743896484375,40.77402877807617,-73.95616149902344,40.80302047729492,1,N,1,22.0,0.5,0.5,0.3,3.0,5.54,31.84 +1,2016-01-24 15:45:24,2016-01-24 15:55:49,1,1.4,,,-74.00272369384766,40.70869827270508,-73.99250030517578,40.71875,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-12 14:05:02,2016-01-12 14:12:11,5,1.61,,,-74.00836181640625,40.72119140625,-74.00718688964844,40.741661071777344,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-26 02:44:02,2016-01-26 03:00:04,1,5.4,,,-73.89806365966797,40.74613952636719,-73.85204315185547,40.68922805786133,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,18.8 +1,2016-01-01 20:53:49,2016-01-01 20:59:18,2,0.9,,,-73.96880340576172,40.76247024536133,-73.97148895263672,40.75657653808594,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-17 13:00:22,2016-01-17 13:11:02,1,2.3,,,-73.99209594726562,40.755859375,-73.9805679321289,40.78242874145508,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-09 12:29:15,2016-01-09 12:55:20,1,7.6,,,-73.96400451660156,40.76797103881836,-73.91943359375,40.70166015625,1,N,1,25.5,0.0,0.5,0.3,5.25,0.0,31.55 +2,2016-01-08 08:37:43,2016-01-08 08:57:17,1,3.88,,,-73.9471664428711,40.77608871459961,-73.99427032470703,40.76895523071289,1,N,1,16.0,0.0,0.5,0.3,3.36,0.0,20.16 +2,2016-01-15 10:51:06,2016-01-15 11:14:24,2,2.0,,,-74.00284576416016,40.760494232177734,-73.9772720336914,40.76525115966797,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,19.56 +2,2016-01-04 21:51:39,2016-01-04 21:56:42,1,1.14,,,-73.99446105957031,40.747581481933594,-73.99807739257812,40.73455047607422,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +1,2016-01-17 02:19:50,2016-01-17 02:28:06,1,2.1,,,-73.97064208984375,40.79352569580078,-73.94580078125,40.80712127685547,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +1,2016-01-21 08:55:04,2016-01-21 09:03:30,1,0.7,,,-73.98954772949219,40.752262115478516,-73.9803237915039,40.75110626220703,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +2,2016-01-30 01:37:38,2016-01-30 01:44:26,3,0.75,,,-73.98989868164062,40.72990798950195,-73.9878921508789,40.722591400146484,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +2,2016-01-12 16:05:34,2016-01-12 16:14:25,1,1.3,,,-73.984619140625,40.7452392578125,-73.98068237304688,40.759971618652344,1,N,1,7.5,1.0,0.5,0.3,2.32,0.0,11.62 +1,2016-01-05 20:47:58,2016-01-05 20:52:55,1,0.7,,,-73.98601531982422,40.74356460571289,-73.97948455810547,40.75296401977539,1,N,1,5.5,0.5,0.5,0.3,2.0,0.0,8.8 +2,2016-01-28 00:14:16,2016-01-28 00:21:20,1,1.75,,,-73.98465728759766,40.7526969909668,-74.01412200927734,40.72536087036133,1,N,1,7.5,0.5,0.5,0.3,1.0,0.0,9.8 +1,2016-01-17 14:59:26,2016-01-17 15:19:54,1,3.0,,,-73.99401092529297,40.74013137817383,-73.97222137451172,40.765296936035156,1,N,1,14.5,0.0,0.5,0.3,3.0,0.0,18.3 +2,2016-01-05 09:51:50,2016-01-05 09:54:08,1,0.45,,,-73.99901580810547,40.75468063354492,-73.99498748779297,40.760318756103516,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-10 19:52:00,2016-01-10 19:56:35,1,0.6,,,-73.99027252197266,40.7565803527832,-73.99788665771484,40.75453186035156,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-30 00:26:09,2016-01-30 00:52:40,2,8.24,,,-74.01052856445312,40.7114372253418,-74.03146362304688,40.62915802001953,1,N,2,28.5,0.5,0.5,0.3,0.0,0.0,29.8 +1,2016-01-25 12:11:03,2016-01-25 12:51:22,1,17.6,,,-73.99104309082031,40.749534606933594,-73.84232330322266,40.86275863647461,1,N,2,52.5,0.0,0.5,0.3,0.0,0.0,53.3 +1,2016-01-06 19:37:59,2016-01-06 19:55:24,1,3.6,,,-73.97994995117188,40.74888610839844,-73.97700500488281,40.78493118286133,1,N,1,15.0,1.0,0.5,0.3,3.36,0.0,20.16 +1,2016-01-03 01:45:43,2016-01-03 01:54:27,1,1.4,,,-73.98849487304688,40.72134017944336,-74.00587463378906,40.73317337036133,1,N,1,7.5,0.5,0.5,0.3,2.2,0.0,11.0 +2,2016-01-21 15:05:39,2016-01-21 15:14:25,1,1.16,,,-73.9437026977539,40.78879165649414,-73.94727325439453,40.79682159423828,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-10 21:36:32,2016-01-10 21:41:52,1,0.9,,,-73.99249267578125,40.7142219543457,-73.98893737792969,40.726829528808594,1,N,4,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-25 11:40:36,2016-01-25 11:48:54,1,0.88,,,-73.94969177246094,40.78064727783203,-73.95951843261719,40.773704528808594,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-26 01:29:28,2016-01-26 01:54:36,6,6.78,,,-74.00188446044922,40.73280334472656,-73.91707611083984,40.74634552001953,1,N,2,23.0,0.5,0.5,0.3,0.0,0.0,24.3 +2,2016-01-14 17:32:26,2016-01-14 17:49:49,1,2.87,,,-73.96430206298828,40.75624084472656,-73.95262908935547,40.78936004638672,1,N,1,13.5,1.0,0.5,0.3,2.0,0.0,17.3 +1,2016-01-13 16:12:53,2016-01-13 16:19:00,1,1.2,,,-73.97948455810547,40.78437805175781,-73.96784210205078,40.800289154052734,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-09 18:53:42,2016-01-09 19:05:55,1,1.56,,,-74.00009155273438,40.74607849121094,-74.00489807128906,40.739479064941406,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-16 15:51:40,2016-01-16 16:02:03,1,1.1,,,-74.00286865234375,40.730873107910156,-73.98854064941406,40.73418045043945,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-22 21:16:25,2016-01-22 21:31:04,1,1.24,,,-74.00651550292969,40.730308532714844,-73.9941635131836,40.721248626708984,1,N,1,10.0,0.5,0.5,0.3,1.75,0.0,13.05 +2,2016-01-25 17:37:25,2016-01-25 17:57:28,2,2.53,,,-73.97470092773438,40.75199890136719,-73.99920654296875,40.72190856933594,1,N,1,14.0,1.0,0.5,0.3,3.16,0.0,18.96 +2,2016-01-02 02:13:40,2016-01-02 02:16:37,1,0.77,,,-73.95452880859375,40.80552291870117,-73.94488525390625,40.79998016357422,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-03 01:21:32,2016-01-03 01:31:27,2,2.3,,,-73.98987579345703,40.73934555053711,-73.99739074707031,40.761356353759766,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-21 13:50:11,2016-01-21 13:56:34,1,0.5,,,-73.99197387695312,40.75456619262695,-73.98350524902344,40.750728607177734,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-16 23:43:39,2016-01-16 23:52:48,2,2.15,,,-73.97543334960938,40.744571685791016,-73.95699310302734,40.76628112792969,1,N,1,9.5,0.5,0.5,0.3,2.2,0.0,13.0 +2,2016-01-20 20:49:56,2016-01-20 20:56:35,1,1.8,,,-73.97852325439453,40.75277328491211,-73.97441101074219,40.73680877685547,1,N,1,7.5,0.5,0.5,0.3,2.64,0.0,11.44 +1,2016-01-23 01:38:58,2016-01-23 01:41:38,1,0.6,,,-73.98895263671875,40.76372146606445,-73.99034118652344,40.757293701171875,1,N,1,4.0,0.5,0.5,0.3,1.05,0.0,6.35 +1,2016-01-18 16:45:40,2016-01-18 16:47:43,2,0.3,,,-73.97813415527344,40.729530334472656,-73.98381042480469,40.73195266723633,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-02 12:09:40,2016-01-02 12:20:20,1,3.31,,,-73.96932983398438,40.75735092163086,-73.99087524414062,40.71855163574219,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-06 16:13:08,2016-01-06 16:21:33,2,1.3,,,-73.99003601074219,40.73459243774414,-73.97853088378906,40.75131607055664,1,N,1,7.5,1.0,0.5,0.3,2.0,0.0,11.3 +1,2016-01-21 11:47:06,2016-01-21 11:55:33,2,1.2,,,-73.99871063232422,40.7449951171875,-74.00807189941406,40.73958206176758,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-27 22:50:27,2016-01-27 23:00:04,1,2.0,,,-73.96546936035156,40.766048431396484,-73.95530700683594,40.785118103027344,1,N,1,9.0,0.5,0.5,0.3,2.0,0.0,12.3 +2,2016-01-02 10:31:50,2016-01-02 10:39:06,3,1.98,,,-73.97012329101562,40.756771087646484,-73.96212005615234,40.77933883666992,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,11.62 +2,2016-01-30 11:28:38,2016-01-30 11:33:08,1,0.72,,,-73.95663452148438,40.778282165527344,-73.95580291748047,40.77107620239258,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +1,2016-01-05 20:10:32,2016-01-05 20:26:44,1,4.3,,,-74.00469970703125,40.73048782348633,-73.9989013671875,40.67607879638672,1,N,1,15.0,0.5,0.5,0.3,4.05,0.0,20.35 +1,2016-01-06 13:30:59,2016-01-06 13:37:23,1,0.5,,,-73.98027801513672,40.7393798828125,-73.98558044433594,40.74382400512695,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +2,2016-01-19 20:31:07,2016-01-19 20:39:30,6,0.98,,,-73.98143768310547,40.7592887878418,-73.96968841552734,40.766021728515625,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,9.3 +1,2016-01-18 12:55:05,2016-01-18 13:00:35,1,0.4,,,-73.95760345458984,40.7818717956543,-73.94987487792969,40.7802734375,1,N,1,5.0,0.0,0.5,0.3,1.45,0.0,7.25 +1,2016-01-05 06:17:38,2016-01-05 06:27:23,1,4.6,,,-74.00657653808594,40.68383026123047,-73.99111938476562,40.755149841308594,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,15.3 +1,2016-01-21 22:55:43,2016-01-21 23:00:35,1,1.5,,,0.0,0.0,0.0,0.0,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,8.3 +1,2016-01-21 15:38:58,2016-01-21 16:14:17,1,5.6,,,-74.00045013427734,40.7186393737793,-73.97602844238281,40.78245162963867,1,N,1,24.0,0.0,0.5,0.3,2.2,0.0,27.0 +2,2016-01-26 19:37:33,2016-01-26 19:45:59,2,1.08,,,-73.99173736572266,40.73860168457031,-74.00540161132812,40.74591827392578,1,N,1,7.0,1.0,0.5,0.3,1.5,0.0,10.3 +2,2016-01-13 13:51:25,2016-01-13 13:59:42,1,1.91,,,-73.97603607177734,40.775943756103516,-73.95391845703125,40.78763961791992,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-26 17:03:14,2016-01-26 17:13:52,1,1.25,,,-74.0056381225586,40.73682403564453,-73.99991607666016,40.72248840332031,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-16 19:11:08,2016-01-16 19:24:43,1,1.6,,,-74.0049819946289,40.73005676269531,-73.98880767822266,40.73674392700195,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +2,2016-01-16 12:35:34,2016-01-16 12:37:51,2,0.6,,,-73.96072387695312,40.78107833862305,-73.96930694580078,40.78535079956055,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,6.0 +2,2016-01-22 12:33:59,2016-01-22 12:45:36,1,1.51,,,-73.98086547851562,40.78171157836914,-73.97063446044922,40.76734161376953,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-08 23:14:45,2016-01-08 23:29:35,1,3.5,,,-73.97642517089844,40.784080505371094,-73.94065856933594,40.82456588745117,1,N,1,14.5,0.5,0.5,0.3,3.95,0.0,19.75 +2,2016-01-14 16:32:21,2016-01-14 16:37:56,1,0.66,,,-73.99251556396484,40.73736572265625,-73.98775482177734,40.73244094848633,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-21 09:55:10,2016-01-21 09:57:43,1,0.5,,,-73.98880004882812,40.77400207519531,-73.98924255371094,40.768550872802734,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +2,2016-01-29 21:00:33,2016-01-29 21:14:54,1,1.25,,,-73.9528579711914,40.786476135253906,-73.95361328125,40.786865234375,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-12 21:58:18,2016-01-12 22:14:48,1,5.53,,,-73.98967742919922,40.741519927978516,-73.92462921142578,40.7398681640625,1,N,1,17.5,0.5,0.5,0.3,3.76,0.0,22.56 +2,2016-01-19 19:59:30,2016-01-19 20:13:10,1,1.71,,,-73.99344635009766,40.74203109741211,-73.99165344238281,40.72372817993164,1,N,1,10.0,1.0,0.5,0.3,2.0,0.0,13.8 +1,2016-01-08 15:42:12,2016-01-08 16:04:46,1,4.6,,,-73.99526977539062,40.718021392822266,-73.94444274902344,40.68574142456055,1,N,2,18.5,0.0,0.5,0.3,0.0,0.0,19.3 +2,2016-01-01 23:45:37,2016-01-01 23:51:00,6,0.93,,,-73.96369934082031,40.777061462402344,-73.96031951904297,40.76821517944336,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +1,2016-01-10 18:38:01,2016-01-10 18:41:37,1,0.7,,,-73.9974136352539,40.74082946777344,-74.00563049316406,40.733154296875,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-08 20:47:45,2016-01-08 21:19:41,1,4.4,,,-74.00514221191406,40.71890640258789,-73.97433471679688,40.761566162109375,1,N,2,22.0,0.5,0.5,0.3,0.0,0.0,23.3 +2,2016-01-07 20:51:36,2016-01-07 21:01:15,6,1.6,,,-73.98011779785156,40.761566162109375,-73.95866394042969,40.7641487121582,1,N,1,8.5,0.5,0.5,0.3,1.2,0.0,11.0 +1,2016-01-27 18:03:51,2016-01-27 18:16:51,1,1.2,,,-73.99125671386719,40.749820709228516,-73.97734832763672,40.752540588378906,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-16 01:08:06,2016-01-16 01:13:16,1,1.59,,,-73.99829864501953,40.76097106933594,-74.00389099121094,40.74309158325195,1,N,1,6.5,0.5,0.5,0.3,1.0,0.0,8.8 +2,2016-01-21 22:11:08,2016-01-21 22:22:01,1,1.34,,,-73.9898452758789,40.73426055908203,-73.98821258544922,40.7204475402832,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +2,2016-01-24 22:35:03,2016-01-24 22:40:58,1,1.43,,,-73.97447967529297,40.78316116333008,-73.95305633544922,40.77238845825195,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-07 11:41:01,2016-01-07 11:47:04,1,1.17,,,-73.98997497558594,40.76974105834961,-73.9817886352539,40.78342819213867,1,N,1,6.5,0.0,0.5,0.3,2.19,0.0,9.49 +2,2016-01-25 19:48:59,2016-01-25 20:06:56,1,3.0,,,-73.9571533203125,40.77463150024414,-73.96650695800781,40.80414962768555,1,N,1,14.0,1.0,0.5,0.3,4.74,0.0,20.54 +1,2016-01-19 09:19:04,2016-01-19 09:38:45,1,2.5,,,-73.92505645751953,40.74412155151367,-73.96377563476562,40.759803771972656,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +1,2016-01-01 01:25:33,2016-01-01 01:47:22,1,4.2,,,-73.95491027832031,40.73366165161133,-73.90475463867188,40.700313568115234,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,18.3 +2,2016-01-09 01:57:28,2016-01-09 02:06:28,5,1.15,,,-74.00067901611328,40.729713439941406,-73.99777221679688,40.718353271484375,1,N,1,7.5,0.5,0.5,0.3,11.0,0.0,19.8 +1,2016-01-16 02:02:04,2016-01-16 02:24:10,1,5.1,,,-73.95854949951172,40.713253021240234,-73.98856353759766,40.75352478027344,1,N,4,19.0,0.5,0.5,0.3,0.0,0.0,20.3 +2,2016-01-22 14:06:40,2016-01-22 14:15:51,5,0.62,,,-73.97289276123047,40.758907318115234,-73.96469116210938,40.757938385009766,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-07 11:02:14,2016-01-07 11:19:53,1,2.9,,,-73.97909545898438,40.77679443359375,-73.98763275146484,40.7474479675293,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,17.15 +1,2016-01-29 01:12:59,2016-01-29 01:28:37,1,4.2,,,-73.95425415039062,40.76426315307617,-73.95186614990234,40.75938415527344,1,N,1,14.5,0.5,0.5,0.3,2.5,0.0,18.3 +1,2016-01-26 19:13:00,2016-01-26 19:29:21,1,2.4,,,-73.98345184326172,40.76797866821289,-73.95401000976562,40.77901077270508,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,14.3 +2,2016-01-17 17:56:01,2016-01-17 18:02:13,2,0.96,,,-73.9742202758789,40.793861389160156,-73.97137451171875,40.7844123840332,1,N,1,6.0,0.0,0.5,0.3,1.7,0.0,8.5 +1,2016-01-04 12:54:06,2016-01-04 13:03:10,1,1.7,,,-73.95849609375,40.77263641357422,-73.98107147216797,40.77422332763672,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-05 17:12:43,2016-01-05 17:15:37,1,0.3,,,-73.96127319335938,40.774837493896484,-73.96420288085938,40.77127456665039,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-04 17:18:53,2016-01-04 17:34:43,1,2.3,,,-73.98645782470703,40.766754150390625,-73.9556884765625,40.76829147338867,1,N,1,12.0,1.0,0.5,0.3,2.5,0.0,16.3 +2,2016-01-01 20:21:12,2016-01-01 20:48:05,6,3.51,,,-73.98148345947266,40.767940521240234,-73.9916763305664,40.72983169555664,1,N,1,19.0,0.5,0.5,0.3,4.06,0.0,24.36 +2,2016-01-22 07:55:19,2016-01-22 08:07:45,1,1.78,,,-73.96222686767578,40.77626037597656,-73.97503662109375,40.75593566894531,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,11.8 +2,2016-01-28 22:49:26,2016-01-28 23:03:28,1,3.41,,,-73.95609283447266,40.771148681640625,-73.98308563232422,40.73893356323242,1,N,1,14.0,0.5,0.5,0.3,0.0,0.0,15.3 +2,2016-01-11 21:43:08,2016-01-11 21:58:48,1,2.99,,,-73.98554992675781,40.7729606628418,-73.97718811035156,40.74620819091797,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +1,2016-01-05 22:05:52,2016-01-05 22:14:31,1,1.3,,,-73.97105407714844,40.782958984375,-73.9749755859375,40.79286193847656,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +2,2016-01-25 15:18:32,2016-01-25 15:33:52,1,1.24,,,-73.95751190185547,40.770111083984375,-73.95613098144531,40.78213882446289,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +1,2016-01-14 08:04:57,2016-01-14 08:11:22,1,1.2,,,-73.9947509765625,40.725765228271484,-73.97559356689453,40.718833923339844,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-28 16:27:44,2016-01-28 16:32:57,2,1.11,,,-73.9575424194336,40.77389907836914,-73.95452117919922,40.78657913208008,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-22 15:59:23,2016-01-22 16:10:58,5,2.15,,,-73.96253967285156,40.778961181640625,-73.9837875366211,40.768009185791016,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-01 06:44:45,2016-01-01 06:52:23,2,1.49,,,-73.97341918945312,40.74885940551758,-73.99118041992188,40.74943923950195,1,N,1,7.5,0.0,0.5,0.3,2.08,0.0,10.38 +1,2016-01-11 12:16:55,2016-01-11 12:38:57,1,2.0,,,-73.96229553222656,40.767066955566406,-73.98047637939453,40.75125503540039,1,N,1,14.5,0.0,0.5,0.3,3.8,0.0,19.1 +2,2016-01-14 19:53:34,2016-01-14 20:36:35,1,7.06,,,-73.94950103759766,40.83509826660156,-73.94950103759766,40.83509826660156,1,N,1,30.5,1.0,0.5,0.3,6.46,0.0,38.76 +2,2016-01-13 21:35:35,2016-01-13 21:45:55,5,2.41,,,-73.971923828125,40.76573944091797,-74.00199890136719,40.7557487487793,1,N,1,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +2,2016-01-26 23:02:54,2016-01-26 23:14:46,1,2.56,,,-73.99861145019531,40.734840393066406,-73.97120666503906,40.75524139404297,1,N,1,10.5,0.5,0.5,0.3,1.75,0.0,13.55 +2,2016-01-04 08:29:04,2016-01-04 08:50:32,1,6.94,,,-73.93260192871094,40.744258880615234,-73.9905776977539,40.69343185424805,1,N,1,22.0,0.0,0.5,0.3,4.56,0.0,27.36 +2,2016-01-15 20:53:12,2016-01-15 20:57:44,2,1.03,,,-73.99424743652344,40.75120162963867,-73.99834442138672,40.760780334472656,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +2,2016-01-17 10:48:13,2016-01-17 11:07:11,1,9.42,,,-73.86260986328125,40.76884841918945,-73.97252655029297,40.75632858276367,1,N,1,27.5,0.0,0.5,0.3,8.46,5.54,42.3 +2,2016-01-29 21:20:14,2016-01-29 21:31:55,2,1.7,,,-73.95742797851562,40.774391174316406,-73.97898864746094,40.783443450927734,1,N,1,10.0,0.5,0.5,0.3,2.82,0.0,14.12 +2,2016-01-14 01:35:15,2016-01-14 02:06:23,2,9.75,,,-73.98345184326172,40.74384689331055,-73.92060089111328,40.76738739013672,1,N,2,31.0,0.5,0.5,0.3,0.0,0.0,32.3 +2,2016-01-04 12:51:10,2016-01-04 13:05:22,6,2.26,,,-74.00772857666016,40.70537185668945,-73.99747467041016,40.72981643676758,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-19 20:16:59,2016-01-19 20:25:16,6,0.98,,,-73.99365234375,40.72438049316406,-73.98975372314453,40.71406173706055,1,N,1,7.0,0.5,0.5,0.3,3.0,0.0,11.3 +1,2016-01-01 02:17:04,2016-01-01 02:17:56,1,0.1,,,-73.98151397705078,40.74690628051758,-73.98188781738281,40.74501037597656,1,N,3,2.5,0.5,0.5,0.3,0.0,0.0,3.8 +1,2016-01-18 17:36:56,2016-01-18 17:51:52,1,3.0,,,-73.99381256103516,40.757041931152344,-73.95755004882812,40.770301818847656,1,N,1,12.5,0.0,0.5,0.3,3.3,0.0,16.6 +1,2016-01-30 09:34:33,2016-01-30 09:43:39,1,1.0,,,-73.96477508544922,40.7616081237793,-73.97827911376953,40.756561279296875,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-19 18:16:49,2016-01-19 18:38:30,2,2.62,,,-73.99456787109375,40.72774124145508,-73.98542022705078,40.757991790771484,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-17 02:21:12,2016-01-17 02:31:35,1,2.62,,,-73.98049926757812,40.7217903137207,-73.97210693359375,40.75389862060547,1,N,1,10.5,0.5,0.5,0.3,0.0,0.0,11.8 +1,2016-01-05 18:27:31,2016-01-05 18:31:37,1,0.5,,,-73.9688949584961,40.75423812866211,-73.9766845703125,40.75765609741211,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-15 16:03:13,2016-01-15 16:12:04,1,1.0,,,-73.98150634765625,40.76351547241211,-73.99127197265625,40.74986267089844,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-21 08:49:00,2016-01-21 08:59:49,1,1.6,,,-73.9764404296875,40.74393081665039,-73.99842834472656,40.74014663696289,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-01 22:33:39,2016-01-01 22:41:32,2,0.7,,,-73.98871612548828,40.75674819946289,-73.98030853271484,40.750030517578125,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-06 09:07:46,2016-01-06 09:29:21,1,4.8,,,-73.98226165771484,40.7628059387207,-74.01422882080078,40.713985443115234,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,18.8 +2,2016-01-14 19:17:59,2016-01-14 19:21:06,1,0.97,,,-73.95384979248047,40.77899169921875,-73.94915771484375,40.7901496887207,1,N,1,5.0,1.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-04 18:28:36,2016-01-04 18:38:57,5,0.87,,,-73.99288177490234,40.729984283447266,-73.98200988769531,40.723106384277344,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-14 11:36:49,2016-01-14 12:03:50,1,4.1,,,-73.95770263671875,40.773956298828125,-73.99010467529297,40.74639892578125,1,N,1,20.0,0.0,0.5,0.3,5.0,0.0,25.8 +2,2016-01-11 22:59:44,2016-01-11 23:08:44,2,3.12,,,-73.98444366455078,40.7288818359375,-73.96405029296875,40.76633834838867,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +1,2016-01-30 16:45:12,2016-01-30 16:48:39,1,0.7,,,-73.98861694335938,40.71742630004883,-73.97775268554688,40.71324920654297,1,Y,1,4.5,0.0,0.5,0.3,1.55,0.0,6.85 +1,2016-01-03 00:00:07,2016-01-03 00:10:46,2,1.4,,,-73.98697662353516,40.753875732421875,-73.9777603149414,40.74840545654297,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-29 20:46:55,2016-01-29 20:59:40,1,0.5,,,-73.98546600341797,40.73564910888672,-73.983154296875,40.72990036010742,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +2,2016-01-18 21:51:43,2016-01-18 22:10:19,1,3.79,,,-73.97441864013672,40.79122543334961,-73.96755981445312,40.75369644165039,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,16.8 +2,2016-01-18 12:48:02,2016-01-18 12:56:21,1,1.35,,,-73.98319244384766,40.75613021850586,-73.96654510498047,40.761478424072266,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-02 10:31:10,2016-01-02 10:35:07,1,0.5,,,-74.01728820800781,40.70532989501953,-74.01372528076172,40.7094841003418,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,6.35 +1,2016-01-10 00:04:19,2016-01-10 00:07:49,1,0.7,,,-73.9956283569336,40.739288330078125,-74.0050277709961,40.73562240600586,1,N,1,4.5,0.5,0.5,0.3,1.2,0.0,7.0 +1,2016-01-25 19:22:49,2016-01-25 19:37:51,1,5.4,,,-73.7890625,40.64710235595703,-73.78731536865234,40.6476936340332,1,N,1,18.0,1.0,0.5,0.3,4.95,0.0,24.75 +1,2016-01-26 12:20:42,2016-01-26 12:37:16,1,1.0,,,-73.99304962158203,40.7527961730957,-73.98834991455078,40.763912200927734,1,N,1,10.5,0.0,0.5,0.3,1.5,0.0,12.8 +1,2016-01-15 17:48:45,2016-01-15 17:52:20,1,0.6,,,-74.0037841796875,40.747554779052734,-73.99313354492188,40.74298858642578,1,N,3,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-06 07:17:15,2016-01-06 07:26:13,1,2.0,,,0.0,0.0,0.0,0.0,1,N,1,9.5,0.0,0.5,0.3,1.6,0.0,11.9 +2,2016-01-28 15:31:44,2016-01-28 15:40:23,1,1.0,,,-73.97520446777344,40.792476654052734,-73.9638442993164,40.800010681152344,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-29 19:35:35,2016-01-29 19:45:39,1,0.77,,,-73.9977798461914,40.756649017333984,-73.98887634277344,40.76185989379883,1,N,1,7.5,1.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-06 08:54:09,2016-01-06 09:08:15,5,3.23,,,-73.98478698730469,40.73719024658203,-73.9545669555664,40.765621185302734,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,17.16 +2,2016-01-21 07:39:51,2016-01-21 07:55:58,2,3.18,,,-74.00846862792969,40.71443557739258,-73.98417663574219,40.75490188598633,1,N,1,13.0,0.0,0.5,0.3,3.45,0.0,17.25 +2,2016-01-10 11:19:21,2016-01-10 11:41:04,3,2.96,,,-73.954833984375,40.77751922607422,-73.95459747314453,40.77809143066406,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-04 08:53:28,2016-01-04 08:57:41,1,0.7,,,-73.98088836669922,40.74788284301758,-73.98986053466797,40.74531936645508,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +1,2016-01-11 17:23:23,2016-01-11 17:39:14,2,1.9,,,-74.00838470458984,40.70447540283203,-73.9989013671875,40.725181579589844,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-10 16:20:12,2016-01-10 16:31:58,1,1.9,,,-73.9628677368164,40.766597747802734,-73.98346710205078,40.74973678588867,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-17 11:46:06,2016-01-17 11:54:18,1,1.3,,,-73.99598693847656,40.752376556396484,-73.98269653320312,40.752685546875,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-28 23:16:49,2016-01-28 23:24:00,1,1.5,,,-73.99259948730469,40.75925064086914,-73.9808120727539,40.770938873291016,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +2,2016-01-26 09:39:48,2016-01-26 10:09:28,1,2.06,,,-73.9816665649414,40.74082946777344,-73.9629135131836,40.761619567871094,1,N,1,18.5,0.0,0.5,0.3,2.7,0.0,22.0 +2,2016-01-18 13:26:47,2016-01-18 13:30:09,1,0.89,,,-73.96578979492188,40.758827209472656,-73.97518920898438,40.75196075439453,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-20 15:44:48,2016-01-20 15:55:48,1,1.59,,,-73.96437072753906,40.80754089355469,-73.96602630615234,40.79001998901367,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,12.88 +1,2016-01-21 14:44:42,2016-01-21 14:54:10,1,0.9,,,-73.94962310791016,40.77700424194336,-73.96138000488281,40.7746696472168,1,N,1,7.5,0.0,0.5,0.3,1.25,0.0,9.55 +2,2016-01-16 13:00:49,2016-01-16 13:10:18,1,1.26,,,-73.99253845214844,40.73466873168945,-74.00279235839844,40.72356033325195,1,N,1,7.5,0.0,0.5,0.3,2.49,0.0,10.79 +1,2016-01-03 20:49:49,2016-01-03 20:56:55,1,1.1,,,-73.97818756103516,40.77809524536133,-73.96980285644531,40.78635025024414,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +1,2016-01-21 18:08:36,2016-01-21 18:10:53,2,0.5,,,-73.95033264160156,40.77965545654297,-73.9490737915039,40.774959564208984,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-01 22:55:21,2016-01-01 23:11:34,6,4.45,,,-73.99977111816406,40.726768493652344,-73.95562744140625,40.729408264160156,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,17.3 +2,2016-01-10 11:13:49,2016-01-10 11:18:38,1,0.86,,,-73.98538970947266,40.761329650878906,-73.99102783203125,40.755428314208984,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-27 10:55:53,2016-01-27 11:20:07,1,2.9,,,-73.97571563720703,40.744850158691406,-74.00985717773438,40.72598648071289,1,N,1,16.0,0.0,0.5,0.3,2.5,0.0,19.3 +1,2016-01-02 14:51:37,2016-01-02 14:56:35,1,0.9,,,-73.99435424804688,40.740753173828125,-74.0049057006836,40.7480583190918,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-25 17:00:07,2016-01-25 17:10:40,1,0.7,,,-73.98107147216797,40.78065872192383,-73.985107421875,40.774269104003906,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-27 06:37:20,2016-01-27 06:44:56,4,1.68,,,-73.9925765991211,40.730560302734375,-74.00981140136719,40.721519470214844,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,9.8 +2,2016-01-03 20:19:00,2016-01-03 21:05:55,1,18.93,,,-73.8015365600586,40.674251556396484,-73.98877716064453,40.76673889160156,2,N,1,52.0,0.0,0.5,0.3,10.0,5.54,68.34 +1,2016-01-02 22:56:30,2016-01-02 23:07:08,1,0.6,,,-73.98323059082031,40.76092529296875,-73.97267150878906,40.7558708190918,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-16 10:25:36,2016-01-16 10:35:12,5,2.28,,,-73.9301528930664,40.76703643798828,-73.92945861816406,40.74422073364258,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,12.88 +1,2016-01-28 22:48:21,2016-01-28 23:36:37,2,10.8,,,-73.97354125976562,40.792198181152344,-73.85337829589844,40.722110748291016,1,N,1,40.5,0.5,0.5,0.3,10.45,0.0,52.25 +2,2016-01-25 19:48:40,2016-01-25 19:58:17,2,1.24,,,-73.95540618896484,40.77967071533203,-73.95687103271484,40.766788482666016,1,N,1,8.0,1.0,0.5,0.3,1.0,0.0,10.8 +2,2016-01-04 09:33:41,2016-01-04 09:38:35,1,1.08,,,-73.98148345947266,40.741085052490234,-73.97639465332031,40.75270462036133,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-10 18:38:51,2016-01-10 18:51:48,1,1.3,,,-73.99441528320312,40.7503776550293,-73.97337341308594,40.743656158447266,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-29 08:16:43,2016-01-29 08:26:21,6,1.74,,,-73.98802185058594,40.75457000732422,-73.98696899414062,40.73640060424805,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-19 10:42:09,2016-01-19 10:56:00,2,1.71,,,-73.97865295410156,40.74496078491211,-73.98103332519531,40.76271057128906,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-22 09:09:37,2016-01-22 09:20:51,1,1.8,,,-73.98593139648438,40.757022857666016,-73.9935302734375,40.73640823364258,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-07 14:05:57,2016-01-07 14:30:23,1,2.35,,,-73.9629135131836,40.778297424316406,-73.984619140625,40.748497009277344,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +2,2016-01-20 18:54:25,2016-01-20 19:02:58,3,0.54,,,-74.00566101074219,40.72688293457031,-73.99937438964844,40.72236251831055,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-23 05:20:54,2016-01-23 05:24:59,5,0.84,,,-73.95050811767578,40.77985763549805,-73.95013427734375,40.7869873046875,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-22 19:00:09,2016-01-22 19:13:40,1,2.2,,,-73.99444580078125,40.765987396240234,-73.97889709472656,40.74595642089844,1,N,1,10.5,1.0,0.5,0.3,1.5,0.0,13.8 +2,2016-01-18 02:54:14,2016-01-18 03:14:07,6,5.29,,,-73.98722839355469,40.72881317138672,-73.94342041015625,40.67649841308594,1,N,1,19.0,0.5,0.5,0.3,1.7,0.0,22.0 +2,2016-01-30 19:49:20,2016-01-30 19:59:07,1,2.5,,,-73.97792053222656,40.78377151489258,-73.9469985961914,40.8008918762207,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-22 14:46:33,2016-01-22 14:57:39,2,1.89,,,-73.97623443603516,40.75156021118164,-73.99040985107422,40.72908020019531,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-04 20:08:24,2016-01-04 20:16:08,4,1.43,,,-74.00475311279297,40.73749923706055,-74.00775909423828,40.724727630615234,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-18 01:46:00,2016-01-18 01:52:36,1,1.74,,,-73.982177734375,40.745086669921875,-73.99945068359375,40.72746658325195,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-22 13:12:55,2016-01-22 13:25:46,1,1.23,,,-73.99143981933594,40.75010681152344,-73.98747253417969,40.757205963134766,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-18 06:22:45,2016-01-18 06:29:24,1,1.9,,,-73.97071075439453,40.7562255859375,-73.96214294433594,40.77813720703125,1,Y,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-09 17:59:28,2016-01-09 18:10:58,1,1.47,,,-73.98331451416016,40.755943298339844,-73.99362182617188,40.745628356933594,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-11 08:34:09,2016-01-11 08:53:27,1,2.0,,,-73.96528625488281,40.759429931640625,-73.98428344726562,40.73945617675781,1,N,1,13.0,0.0,0.5,0.3,2.75,0.0,16.55 +2,2016-01-03 19:42:14,2016-01-03 19:44:35,2,0.47,,,-73.96833801269531,40.75516891479492,-73.97242736816406,40.756500244140625,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-15 04:06:22,2016-01-15 04:09:59,5,0.6,,,-74.00125122070312,40.73188781738281,-73.99272155761719,40.730743408203125,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-26 20:05:46,2016-01-26 20:45:56,1,17.7,,,-73.78883361816406,40.64754867553711,-73.99927520751953,40.74483871459961,2,N,1,52.0,0.0,0.5,0.3,2.0,5.54,60.34 +1,2016-01-27 17:28:33,2016-01-27 17:36:22,1,0.7,,,-73.95842742919922,40.775638580322266,-73.96638488769531,40.76787185668945,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-21 17:20:43,2016-01-21 17:24:24,5,0.77,,,-73.9591064453125,40.76340103149414,-73.95890045166016,40.771568298339844,1,N,1,5.0,1.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-27 23:12:48,2016-01-27 23:20:02,5,1.41,,,-73.96788024902344,40.765228271484375,-73.95446014404297,40.78224182128906,1,N,1,7.5,0.5,0.5,0.3,1.0,0.0,9.8 +1,2016-01-17 00:55:51,2016-01-17 01:03:20,1,1.3,,,-73.9737777709961,40.74354934692383,-73.98821258544922,40.75334930419922,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-08 06:42:43,2016-01-08 06:50:02,1,1.0,,,0.0,0.0,0.0,0.0,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +2,2016-01-04 23:05:58,2016-01-04 23:12:09,1,2.06,,,-73.99427032470703,40.74041748046875,-73.9759750366211,40.76542663574219,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +2,2016-01-27 22:22:10,2016-01-27 22:51:14,1,15.44,,,-74.00892639160156,40.70600891113281,-73.830322265625,40.83290100097656,1,N,2,43.0,0.5,0.5,0.3,0.0,0.0,44.3 +1,2016-01-04 08:12:41,2016-01-04 08:28:57,1,3.3,,,-74.00264739990234,40.728782653808594,-73.96965026855469,40.761260986328125,1,N,1,14.0,0.0,0.5,0.3,2.95,0.0,17.75 +1,2016-01-28 16:48:13,2016-01-28 16:53:12,1,0.6,,,-73.98703002929688,40.745399475097656,-73.99179077148438,40.73836135864258,1,N,1,5.0,1.0,0.5,0.3,1.7,0.0,8.5 +1,2016-01-21 14:29:26,2016-01-21 14:41:55,1,1.7,,,-73.98531341552734,40.75338363647461,-73.99188995361328,40.77067184448242,1,N,1,9.5,0.0,0.5,0.3,3.05,0.0,13.35 +2,2016-01-26 07:29:12,2016-01-26 07:39:18,1,2.15,,,-74.00745391845703,40.732391357421875,-73.99539947509766,40.75473403930664,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,12.88 +2,2016-01-20 10:38:30,2016-01-20 10:46:38,5,1.24,,,-73.99220275878906,40.7519416809082,-74.0027084350586,40.73933029174805,1,N,1,7.5,0.0,0.5,0.3,2.49,0.0,10.79 +1,2016-01-26 23:41:56,2016-01-26 23:53:05,1,2.9,,,-73.97270965576172,40.758270263671875,-73.98521423339844,40.7244873046875,1,N,1,11.0,0.5,0.5,0.3,3.05,0.0,15.35 +1,2016-01-01 16:07:57,2016-01-01 16:17:26,1,1.9,,,-73.99234008789062,40.73771286010742,-73.97835540771484,40.720462799072266,1,N,1,8.5,0.0,0.5,0.3,2.0,0.0,11.3 +1,2016-01-21 20:47:08,2016-01-21 20:53:25,1,0.9,,,-74.00013732910156,40.737998962402344,-74.00051879882812,40.74797439575195,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-29 22:12:14,2016-01-29 22:49:09,1,9.4,,,-73.873046875,40.77415084838867,-73.99496459960938,40.720706939697266,1,N,1,35.0,0.5,0.5,0.3,7.25,0.0,43.55 +2,2016-01-08 11:49:41,2016-01-08 11:50:50,1,0.33,,,-73.9759521484375,40.78881072998047,-73.97244262695312,40.79154586791992,1,N,1,3.0,0.0,0.5,0.3,0.6,0.0,4.4 +1,2016-01-17 00:45:10,2016-01-17 00:51:21,2,1.4,,,-73.94486236572266,40.8339958190918,-73.93446350097656,40.853328704833984,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +1,2016-01-02 12:15:43,2016-01-02 12:41:37,2,6.1,,,0.0,0.0,0.0,0.0,1,N,1,22.5,0.0,0.5,0.3,2.0,0.0,25.3 +2,2016-01-22 11:59:26,2016-01-22 12:18:01,1,1.88,,,-74.00691986083984,40.741615295410156,-74.00178527832031,40.72063064575195,1,N,1,12.5,0.0,0.5,0.3,2.0,0.0,15.3 +1,2016-01-20 17:19:51,2016-01-20 17:32:08,1,0.9,,,-73.99051666259766,40.75635528564453,-73.99100494384766,40.75019073486328,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-29 09:35:17,2016-01-29 10:10:22,1,10.5,,,-73.99588775634766,40.74911117553711,-73.86186218261719,40.768455505371094,1,N,1,36.0,0.0,0.5,0.3,7.8,5.54,50.14 +1,2016-01-28 14:44:37,2016-01-28 14:53:01,1,0.7,,,-73.97602081298828,40.75227737426758,-73.98263549804688,40.75761032104492,1,N,1,6.5,0.0,0.5,0.3,2.15,0.0,9.45 +2,2016-01-01 18:23:07,2016-01-01 18:25:04,5,0.69,,,-73.99508666992188,40.725318908691406,-73.9898681640625,40.73421859741211,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,5.76 +1,2016-01-30 16:42:56,2016-01-30 16:49:34,1,0.8,,,-74.00039672851562,40.758140563964844,-73.99209594726562,40.76412582397461,1,N,1,6.0,0.0,0.5,0.3,2.0,0.0,8.8 +2,2016-01-13 08:31:53,2016-01-13 08:39:20,1,0.92,,,-73.98698425292969,40.7332649230957,-74.0013656616211,40.739322662353516,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-17 17:18:29,2016-01-17 17:40:18,1,4.0,,,-73.97399139404297,40.76382064819336,-73.95281219482422,40.72722244262695,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,18.3 +2,2016-01-17 14:17:18,2016-01-17 14:39:19,1,1.68,,,-73.99372100830078,40.758941650390625,-73.97693634033203,40.74617004394531,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +2,2016-01-26 11:37:59,2016-01-26 11:55:27,1,1.87,,,-73.96517181396484,40.76909255981445,-73.97804260253906,40.778472900390625,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-01 12:18:08,2016-01-01 12:25:22,1,1.77,,,-73.98129272460938,40.732540130615234,-73.98020935058594,40.72045135498047,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-29 02:17:31,2016-01-29 02:30:26,1,3.08,,,-74.00462341308594,40.72861099243164,-73.97221374511719,40.747520446777344,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,16.56 +1,2016-01-08 10:20:07,2016-01-08 10:34:56,2,5.6,,,-73.97509002685547,40.75578308105469,-74.01148223876953,40.70343017578125,1,N,1,18.0,0.0,0.5,0.3,3.75,0.0,22.55 +1,2016-01-05 08:47:40,2016-01-05 09:15:41,2,12.5,,,-73.8670654296875,40.770713806152344,-73.96878814697266,40.75862503051758,1,N,1,36.0,0.0,0.5,0.3,4.0,5.54,46.34 +2,2016-01-18 15:31:53,2016-01-18 16:09:40,1,17.33,,,-73.97484588623047,40.75769805908203,-73.79076385498047,40.64664077758789,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-07 15:46:12,2016-01-07 15:52:27,1,1.0,,,-73.96353149414062,40.77751541137695,-73.9682388305664,40.786712646484375,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +1,2016-01-10 17:16:00,2016-01-10 17:18:00,3,0.3,,,0.0,0.0,0.0,0.0,1,N,1,3.5,0.0,0.5,0.3,1.0,0.0,5.3 +2,2016-01-20 10:27:50,2016-01-20 10:32:00,4,0.88,,,-73.9832534790039,40.7558708190918,-73.97422790527344,40.76475143432617,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-27 17:52:48,2016-01-27 17:59:49,1,0.9,,,-73.95378875732422,40.76698303222656,-73.96305847167969,40.77349853515625,1,N,1,6.0,1.0,0.5,0.3,1.95,0.0,9.75 +2,2016-01-21 09:47:56,2016-01-21 10:00:16,1,0.93,,,-73.95513916015625,40.77323913574219,-73.96450805664062,40.76456832885742,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-15 13:45:37,2016-01-15 14:31:53,1,16.7,,,-73.99005889892578,40.74668502807617,-73.77628326416016,40.64516830444336,2,N,1,52.0,0.0,0.5,0.3,10.55,0.0,63.35 +1,2016-01-16 17:48:46,2016-01-16 17:55:37,1,1.2,,,-73.9966812133789,40.72521209716797,-74.0110092163086,40.71590042114258,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +1,2016-01-19 14:18:24,2016-01-19 14:34:11,1,2.9,,,-73.99162292480469,40.74916458129883,-74.01460266113281,40.714054107666016,1,N,1,13.0,0.0,0.5,0.3,2.75,0.0,16.55 +1,2016-01-06 10:08:31,2016-01-06 10:15:11,2,0.8,,,-73.99652862548828,40.73470687866211,-73.99472045898438,40.7437744140625,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-14 14:33:07,2016-01-14 15:14:10,1,17.33,,,-73.79002380371094,40.64393997192383,-73.95855712890625,40.70298385620117,1,N,2,49.5,0.0,0.5,0.3,0.0,0.0,50.3 +2,2016-01-29 18:20:20,2016-01-29 18:27:01,3,0.93,,,-74.0064926147461,40.73210906982422,-73.9989013671875,40.73571014404297,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-28 06:59:20,2016-01-28 07:05:18,1,1.2,,,-73.97545623779297,40.750099182128906,-73.98403930664062,40.76057815551758,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-18 19:13:30,2016-01-18 19:30:19,6,3.1,,,-73.99165344238281,40.750431060791016,-73.9927978515625,40.714900970458984,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +2,2016-01-17 10:45:27,2016-01-17 11:10:43,2,12.51,,,-73.86265563964844,40.76887512207031,-73.98881530761719,40.757774353027344,1,N,1,36.0,0.0,0.5,0.3,8.47,5.54,50.81 +1,2016-01-18 19:33:18,2016-01-18 19:44:32,1,2.0,,,-73.98213958740234,40.740230560302734,-73.97151184082031,40.764549255371094,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-06 21:28:02,2016-01-06 21:36:50,1,2.2,,,-73.97154235839844,40.757347106933594,-73.9863052368164,40.730438232421875,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +2,2016-01-09 11:39:11,2016-01-09 11:48:01,6,4.79,,,-73.95374298095703,40.767066955566406,-73.98409271240234,40.710731506347656,1,N,1,15.0,0.0,0.5,0.3,1.0,0.0,16.8 +1,2016-01-11 08:27:18,2016-01-11 08:33:02,1,1.0,,,-74.01636505126953,40.71049880981445,-74.01007843017578,40.72145080566406,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-26 09:21:18,2016-01-26 09:27:50,1,0.54,,,-73.96479797363281,40.76388931274414,-73.97135162353516,40.760780334472656,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-14 20:07:43,2016-01-14 20:11:41,1,0.6,,,-73.95648956298828,40.696739196777344,-73.9502182006836,40.702362060546875,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,7.3 +2,2016-01-05 16:37:27,2016-01-05 16:41:18,1,0.61,,,-73.97215270996094,40.786678314208984,-73.96752166748047,40.7879638671875,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-12 00:04:09,2016-01-12 00:20:37,1,6.38,,,-73.98658752441406,40.74277877807617,-73.94496154785156,40.818538665771484,1,N,1,19.0,0.5,0.5,0.3,6.09,0.0,26.39 +1,2016-01-08 09:38:37,2016-01-08 09:44:55,1,1.1,,,-73.96141052246094,40.76494598388672,-73.97225952148438,40.74992752075195,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +1,2016-01-03 19:36:43,2016-01-03 19:56:29,1,7.0,,,-73.96646881103516,40.7601432800293,-74.01045227050781,40.71619415283203,1,N,2,21.0,0.0,0.5,0.3,0.0,0.0,21.8 +2,2016-01-09 09:27:30,2016-01-09 09:34:49,1,1.26,,,-73.98908233642578,40.758541107177734,-73.98828887939453,40.750370025634766,1,N,1,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-26 04:55:41,2016-01-26 05:11:57,1,7.0,,,-73.9551010131836,40.77774429321289,-73.88525390625,40.77016830444336,1,N,1,21.0,0.5,0.5,0.3,6.96,5.54,34.8 +1,2016-01-12 12:18:20,2016-01-12 12:26:43,1,1.1,,,-73.97442626953125,40.76197814941406,-73.96307373046875,40.77511215209961,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +2,2016-01-05 04:37:12,2016-01-05 04:47:58,1,3.32,,,-73.97736358642578,40.63813018798828,-73.96456909179688,40.6003303527832,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,13.3 +1,2016-01-19 19:46:45,2016-01-19 20:04:32,1,3.6,,,-73.98477935791016,40.76873779296875,-73.9884262084961,40.72966766357422,1,N,1,14.0,1.0,0.5,0.3,3.15,0.0,18.95 +1,2016-01-16 09:51:43,2016-01-16 10:01:37,2,1.8,,,-73.99408721923828,40.75115203857422,-74.00898742675781,40.7393684387207,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-17 11:15:24,2016-01-17 11:59:12,2,11.9,,,-74.01496124267578,40.68183517456055,-73.98602294921875,40.75983810424805,1,N,2,41.0,0.0,0.5,0.3,0.0,0.0,41.8 +2,2016-01-15 08:09:41,2016-01-15 08:11:25,6,0.25,,,-74.01468658447266,40.70513153076172,-74.01792907714844,40.706050872802734,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +2,2016-01-09 23:47:04,2016-01-10 00:01:37,1,4.15,,,-73.99221801757812,40.725223541259766,-73.95719909667969,40.68859100341797,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,16.3 +2,2016-01-28 23:15:10,2016-01-28 23:41:18,1,16.12,,,-73.78993225097656,40.64345169067383,-73.95857238769531,40.7442512512207,1,N,1,44.5,0.5,0.5,0.3,9.16,0.0,54.96 +1,2016-01-28 07:58:27,2016-01-28 08:10:14,1,1.6,,,-73.9806137084961,40.783206939697266,-73.97368621826172,40.76360321044922,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-20 10:26:26,2016-01-20 10:33:27,4,0.6,,,-73.98397064208984,40.75413513183594,-73.97562408447266,40.75494384765625,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-11 20:51:12,2016-01-11 21:22:22,2,18.0,,,-73.7822036743164,40.64445495605469,-73.98893737792969,40.736541748046875,2,N,1,52.0,0.0,0.5,0.3,11.65,5.54,69.99 +2,2016-01-06 09:55:45,2016-01-06 10:06:10,6,2.57,,,-73.95154571533203,40.769744873046875,-73.9771957397461,40.75804901123047,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +2,2016-01-16 14:46:33,2016-01-16 14:51:01,1,0.55,,,-73.97968292236328,40.765380859375,-73.98908233642578,40.769309997558594,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-06 22:59:52,2016-01-06 23:02:42,1,0.4,,,-73.98506164550781,40.75997543334961,-73.97907257080078,40.7590217590332,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +1,2016-01-11 18:42:58,2016-01-11 18:44:56,1,0.6,,,-73.97880554199219,40.68388366699219,-73.98511505126953,40.67830276489258,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-08 07:11:13,2016-01-08 07:22:44,1,2.4,,,-73.9476318359375,40.775184631347656,-73.98108673095703,40.778419494628906,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-18 21:16:28,2016-01-18 21:21:11,4,0.82,,,-73.998046875,40.73582077026367,-74.00628662109375,40.73357009887695,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,7.3 +1,2016-01-20 15:25:04,2016-01-20 15:30:59,2,0.8,,,-73.97396087646484,40.74580764770508,-73.96406555175781,40.75699234008789,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-07 20:19:58,2016-01-07 20:28:18,4,1.1,,,-73.98115539550781,40.75061798095703,-73.98418426513672,40.76172637939453,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-19 06:38:11,2016-01-19 06:44:39,1,1.0,,,-73.97057342529297,40.75794982910156,-73.97333526611328,40.74742889404297,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-14 12:50:59,2016-01-14 13:02:10,1,1.4,,,-73.97183990478516,40.78639221191406,-73.9823989868164,40.77293014526367,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +2,2016-01-04 20:36:20,2016-01-04 21:04:08,3,9.71,,,-73.98234558105469,40.75865936279297,-73.85266876220703,40.7386474609375,1,N,2,31.5,0.5,0.5,0.3,0.0,0.0,32.8 +1,2016-01-27 05:51:16,2016-01-27 06:35:41,1,18.3,,,-73.77653503417969,40.64530944824219,-73.99287414550781,40.756107330322266,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-03 21:41:30,2016-01-03 21:49:47,2,1.7,,,-73.99247741699219,40.748538970947266,-73.98580932617188,40.73604965209961,1,N,1,8.0,0.5,0.5,0.3,2.3,0.0,11.6 +1,2016-01-01 20:24:49,2016-01-01 21:00:04,1,17.9,,,-73.98674774169922,40.7550163269043,-73.78289031982422,40.64888381958008,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +1,2016-01-11 16:14:02,2016-01-11 16:21:12,1,1.2,,,-73.96965026855469,40.76343536376953,-73.97938537597656,40.749691009521484,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-17 17:06:38,2016-01-17 17:12:17,1,1.02,,,-73.98915100097656,40.7420654296875,-74.00145721435547,40.7361946105957,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-01 00:21:19,2016-01-01 00:30:32,2,2.04,,,-73.9495620727539,40.78477478027344,-73.9548568725586,40.8050537109375,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +2,2016-01-07 22:09:36,2016-01-07 22:30:09,5,10.97,,,-73.97406768798828,40.74286651611328,-73.97212982177734,40.63127517700195,1,N,1,31.0,0.5,0.5,0.3,6.46,0.0,38.76 +2,2016-01-05 18:06:05,2016-01-05 18:12:45,2,1.76,,,-73.97025299072266,40.78398895263672,-73.96556854248047,40.80377960205078,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-29 15:05:17,2016-01-29 15:40:00,1,15.46,,,-73.78195190429688,40.64487075805664,-73.95697021484375,40.74475860595703,1,N,2,44.0,0.0,0.5,0.3,0.0,0.0,44.8 +2,2016-01-09 14:11:09,2016-01-09 14:19:05,2,1.68,,,-74.00110626220703,40.72032165527344,-73.9951400756836,40.73973846435547,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-09 14:15:38,2016-01-09 14:23:34,2,1.3,,,-73.9581298828125,40.77910614013672,-73.97086334228516,40.76425552368164,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-19 15:30:58,2016-01-19 15:44:46,2,1.73,,,-73.95162963867188,40.78701400756836,-73.97281646728516,40.7502326965332,1,N,1,10.0,0.0,0.5,0.3,2.0,0.0,12.8 +2,2016-01-18 15:53:04,2016-01-18 16:06:24,2,2.16,,,-73.95418548583984,40.787330627441406,-73.97135925292969,40.766761779785156,1,N,1,10.5,0.0,0.5,0.3,2.0,0.0,13.3 +2,2016-01-29 21:48:40,2016-01-29 21:52:57,1,0.56,,,-73.98075866699219,40.76008987426758,-73.98593139648438,40.75785827636719,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-29 15:55:54,2016-01-29 16:07:33,1,0.95,,,-73.95401763916016,40.76654815673828,-73.96556091308594,40.761959075927734,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,11.62 +2,2016-01-17 19:35:02,2016-01-17 19:42:17,5,1.09,,,-73.99604034423828,40.72520065307617,-73.98126220703125,40.72502899169922,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-22 18:50:58,2016-01-22 19:06:58,2,1.54,,,-73.99800872802734,40.682735443115234,-73.97846221923828,40.6879768371582,1,N,1,11.0,1.0,0.5,0.3,3.2,0.0,16.0 +1,2016-01-07 18:52:21,2016-01-07 18:57:24,1,1.2,,,-73.97571563720703,40.749141693115234,-73.96224975585938,40.7579345703125,1,N,1,6.0,1.0,0.5,0.3,3.0,0.0,10.8 +2,2016-01-29 15:59:23,2016-01-29 16:20:42,1,2.54,,,-73.949951171875,40.78028106689453,-73.98294067382812,40.77682113647461,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-26 13:53:50,2016-01-26 14:19:32,1,1.3,,,0.0,0.0,0.0,0.0,1,N,1,15.5,0.0,0.5,0.3,3.25,0.0,19.55 +1,2016-01-17 00:58:44,2016-01-17 01:04:47,1,1.3,,,-73.97591400146484,40.76031494140625,-73.97610473632812,40.74651336669922,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-10 23:23:04,2016-01-10 23:27:00,1,0.8,,,-74.00543975830078,40.7181282043457,-73.99444580078125,40.724639892578125,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,7.55 +2,2016-01-10 15:15:03,2016-01-10 16:06:18,6,21.91,,,-73.7817611694336,40.644779205322266,-73.98869323730469,40.77415084838867,2,N,1,52.0,0.0,0.5,0.3,10.0,5.54,68.34 +1,2016-01-05 16:55:31,2016-01-05 17:03:45,1,2.0,,,-73.95320892333984,40.788394927978516,-73.9419937133789,40.81234359741211,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-22 23:10:18,2016-01-22 23:22:23,1,6.5,,,-73.96560668945312,40.76287841796875,-74.01260375976562,40.701515197753906,1,N,2,20.0,0.5,0.5,0.3,0.0,0.0,21.3 +2,2016-01-30 16:02:04,2016-01-30 16:20:15,5,3.06,,,-73.98567199707031,40.7679557800293,-73.9879150390625,40.76435470581055,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +2,2016-01-18 18:25:57,2016-01-18 18:34:02,1,1.25,,,-73.97673034667969,40.74736785888672,-73.98282623291016,40.758758544921875,1,N,1,7.5,0.0,0.5,0.3,1.5,0.0,9.8 +1,2016-01-21 07:31:58,2016-01-21 07:38:48,1,1.0,,,-73.9721450805664,40.745880126953125,-73.98372650146484,40.75490951538086,1,N,1,6.5,0.0,0.5,0.3,1.8,0.0,9.1 +2,2016-01-14 10:10:14,2016-01-14 10:22:50,4,1.89,,,-73.96321105957031,40.808650970458984,-73.95301818847656,40.79164123535156,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-04 21:58:47,2016-01-04 22:04:12,6,1.3,,,-73.98726654052734,40.71841812133789,-73.98104858398438,40.73350143432617,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-28 18:03:32,2016-01-28 18:13:24,2,1.02,,,-73.98832702636719,40.73725891113281,-73.9974365234375,40.737796783447266,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-21 07:17:56,2016-01-21 07:28:17,1,2.3,,,-73.98678588867188,40.702457427978516,-74.00970458984375,40.72066879272461,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-29 20:23:49,2016-01-29 20:37:43,1,4.7,,,-73.97058868408203,40.79922866821289,-73.99667358398438,40.75027084350586,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,17.8 +2,2016-01-29 08:39:14,2016-01-29 08:48:17,6,2.01,,,-73.94393157958984,40.83539962768555,-73.95002746582031,40.81206130981445,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-07 03:45:32,2016-01-07 03:48:32,1,0.5,,,-73.98951721191406,40.76297378540039,-73.98836517333984,40.76927185058594,1,N,1,4.5,0.5,0.5,0.3,1.0,0.0,6.8 +1,2016-01-01 12:47:43,2016-01-01 12:49:24,1,0.3,,,-74.0172348022461,40.7054328918457,-74.01777648925781,40.70801544189453,1,N,1,3.5,0.0,0.5,0.3,1.25,0.0,5.55 +2,2016-01-20 17:23:34,2016-01-20 17:30:46,1,0.9,,,-73.9862289428711,40.762298583984375,-73.97090911865234,40.755760192871094,1,N,1,6.0,1.0,0.5,0.3,2.34,0.0,10.14 +2,2016-01-25 08:38:19,2016-01-25 08:43:17,1,0.89,,,-73.98234558105469,40.74576187133789,-73.98059844970703,40.7386589050293,1,N,1,5.5,0.0,0.5,0.3,1.58,0.0,7.88 +1,2016-01-21 17:53:18,2016-01-21 18:00:21,1,0.9,,,-73.965087890625,40.75931930541992,-73.9760513305664,40.75568771362305,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-14 20:49:16,2016-01-14 20:53:25,1,0.8,,,-74.00428009033203,40.74764633178711,-74.00743865966797,40.74099349975586,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-14 08:50:05,2016-01-14 08:52:19,1,0.44,,,-73.99880981445312,40.745548248291016,-74.00615692138672,40.74863052368164,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,5.76 +1,2016-01-25 16:51:02,2016-01-25 17:10:39,1,2.0,,,-73.99169921875,40.74393844604492,-73.96622467041016,40.75375747680664,1,N,1,13.5,1.0,0.5,0.3,4.7,0.0,20.0 +1,2016-01-08 17:51:29,2016-01-08 18:01:48,1,1.4,,,-73.95520782470703,40.776954650878906,-73.96548461914062,40.790653228759766,1,N,1,8.5,1.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-15 00:05:16,2016-01-15 00:15:14,1,1.6,,,-74.00888061523438,40.711021423339844,-73.98931884765625,40.71659851074219,1,N,1,8.5,0.5,0.5,0.3,1.95,0.0,11.75 +1,2016-01-14 21:55:22,2016-01-14 22:19:53,1,7.3,,,-73.97689819335938,40.759132385253906,-73.99232482910156,40.691097259521484,1,N,1,25.0,0.5,0.5,0.3,6.55,0.0,32.85 +2,2016-01-12 07:39:57,2016-01-12 07:42:52,1,0.67,,,-73.9499282836914,40.77193832397461,-73.95314025878906,40.77870178222656,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-01 03:33:12,2016-01-01 03:53:35,2,10.43,,,-73.95525360107422,40.77927780151367,-73.8603515625,40.87058639526367,1,N,1,30.0,0.5,0.5,0.3,9.21,5.54,46.05 +1,2016-01-05 17:13:40,2016-01-05 17:21:24,1,0.8,,,-73.97218322753906,40.75334930419922,-73.97276306152344,40.7615966796875,1,N,1,6.5,1.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-06 18:03:52,2016-01-06 18:24:29,1,2.4,,,-73.97503662109375,40.752349853515625,-73.95787048339844,40.777862548828125,1,N,1,14.0,1.0,0.5,0.3,2.2,0.0,18.0 +1,2016-01-16 01:12:36,2016-01-16 01:18:16,1,2.0,,,-73.95391845703125,40.770660400390625,-73.94219970703125,40.79475784301758,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-13 11:01:15,2016-01-13 11:10:34,1,4.77,,,-74.00364685058594,40.707698822021484,-73.96829223632812,40.7540397644043,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,18.96 +2,2016-01-15 23:13:43,2016-01-15 23:16:11,1,0.5,,,-73.9768295288086,40.78535079956055,-73.9721908569336,40.79166030883789,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +2,2016-01-30 01:35:08,2016-01-30 02:00:36,1,6.04,,,-73.98930358886719,40.726261138916016,-73.91910552978516,40.75878143310547,1,N,1,21.5,0.5,0.5,0.3,4.56,0.0,27.36 +1,2016-01-11 03:40:35,2016-01-11 03:49:53,1,1.9,,,-73.9766616821289,40.788265228271484,-73.94806671142578,40.7786750793457,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +2,2016-01-26 18:08:49,2016-01-26 18:53:24,1,8.22,,,-73.87299346923828,40.77394104003906,-73.98538970947266,40.75083923339844,1,N,1,35.0,1.0,0.5,0.3,8.47,5.54,50.81 +1,2016-01-20 09:39:50,2016-01-20 09:47:03,1,0.9,,,-73.98040771484375,40.74808120727539,-73.97274780273438,40.75898361206055,1,N,1,6.5,0.0,0.5,0.3,2.15,0.0,9.45 +2,2016-01-11 22:16:59,2016-01-11 22:26:28,1,1.53,,,-73.97472381591797,40.756778717041016,-73.98515319824219,40.76937484741211,1,N,1,8.5,0.5,0.5,0.3,1.2,0.0,11.0 +1,2016-01-26 16:22:02,2016-01-26 16:40:53,1,1.5,,,-73.98226928710938,40.77138137817383,-73.99589538574219,40.75440979003906,1,N,1,12.5,1.0,0.5,0.3,0.03,0.0,14.33 +2,2016-01-16 14:26:52,2016-01-16 14:40:48,1,3.83,,,-73.94844055175781,40.77628707885742,-73.98680114746094,40.74894714355469,1,N,1,13.5,0.0,0.5,0.3,3.58,0.0,17.88 +2,2016-01-22 20:11:16,2016-01-22 20:14:34,6,0.73,,,-73.9696044921875,40.78535842895508,-73.95944213867188,40.7799072265625,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-25 19:18:42,2016-01-25 19:47:54,2,3.43,,,-73.97882080078125,40.75278091430664,-73.94564056396484,40.79034423828125,1,N,1,19.0,1.0,0.5,0.3,2.0,0.0,22.8 +1,2016-01-28 11:33:46,2016-01-28 11:42:50,1,0.9,,,-73.97298431396484,40.79332733154297,-73.98130798339844,40.78089141845703,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-20 10:54:18,2016-01-20 11:03:02,1,1.27,,,-73.96305084228516,40.76806640625,-73.95416259765625,40.78225326538086,1,N,1,7.5,0.0,0.5,0.3,1.24,0.0,9.54 +1,2016-01-20 12:09:13,2016-01-20 12:34:45,1,3.9,,,-74.01527404785156,40.70476150512695,-73.99484252929688,40.75010681152344,1,N,1,19.5,0.0,0.5,0.3,5.05,0.0,25.35 +2,2016-01-10 09:18:53,2016-01-10 09:29:13,1,2.63,,,-74.01557922363281,40.70854949951172,-73.99815368652344,40.738929748535156,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +1,2016-01-06 22:00:12,2016-01-06 22:05:17,2,0.6,,,-73.97080993652344,40.75831985473633,-73.97454071044922,40.750980377197266,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,7.55 +1,2016-01-07 21:05:47,2016-01-07 21:22:14,2,2.4,,,-73.9767074584961,40.73937225341797,-73.9930648803711,40.714576721191406,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,13.8 +2,2016-01-14 16:21:35,2016-01-14 17:18:43,1,15.57,,,-73.78217315673828,40.64467239379883,-73.9423599243164,40.748722076416016,1,N,1,53.0,1.0,0.5,0.3,10.96,0.0,65.76 +1,2016-01-23 09:46:51,2016-01-23 09:53:45,1,0.9,,,-73.9666976928711,40.770118713378906,-73.97369384765625,40.76279067993164,1,N,1,6.5,0.0,0.5,0.3,2.15,0.0,9.45 +2,2016-01-01 22:59:11,2016-01-01 23:05:06,1,1.62,,,-73.96054077148438,40.77281188964844,-73.97537994384766,40.75263977050781,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-23 08:21:04,2016-01-23 08:27:49,2,1.0,,,-73.98332214355469,40.771244049072266,-73.99676513671875,40.76752853393555,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-10 04:13:22,2016-01-10 04:23:28,1,2.88,,,-73.99169921875,40.726322174072266,-73.95115661621094,40.7100715637207,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +1,2016-01-11 08:59:42,2016-01-11 09:17:49,1,2.0,,,-73.95073699951172,40.78605270385742,-73.97078704833984,40.764076232910156,1,N,1,12.5,0.0,0.5,0.3,2.5,0.0,15.8 +2,2016-01-17 13:11:24,2016-01-17 13:18:00,1,0.82,,,-73.95394897460938,40.78474044799805,-73.94483184814453,40.77891159057617,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-09 11:52:00,2016-01-09 12:00:09,4,2.0,,,-74.01427459716797,40.71395492553711,-74.00621032714844,40.73971176147461,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +1,2016-01-08 12:14:44,2016-01-08 12:21:03,1,1.3,,,-73.97264099121094,40.79095458984375,-73.96550750732422,40.80620574951172,1,N,1,6.5,0.0,0.5,0.3,1.8,0.0,9.1 +2,2016-01-12 16:31:17,2016-01-12 16:55:30,1,2.93,,,-73.96856689453125,40.76647186279297,-74.0007095336914,40.747188568115234,1,N,2,16.5,1.0,0.5,0.3,0.0,0.0,18.3 +2,2016-01-12 17:39:37,2016-01-12 17:49:56,2,1.55,,,-73.97225952148438,40.75857162475586,-73.98126983642578,40.7411994934082,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-21 20:05:53,2016-01-21 20:10:35,1,0.9,,,-73.95698547363281,40.766475677490234,-73.94740295410156,40.779457092285156,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-03 12:51:29,2016-01-03 13:07:02,1,4.0,,,-74.0127182006836,40.70211410522461,-73.9966049194336,40.74867248535156,1,N,1,15.0,0.0,0.5,0.3,4.7,0.0,20.5 +2,2016-01-19 13:55:43,2016-01-19 14:07:19,1,1.75,,,-73.96941375732422,40.75733947753906,-73.97753143310547,40.774391174316406,1,N,1,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-11 18:25:49,2016-01-11 18:29:16,2,0.39,,,-73.99163055419922,40.72977828979492,-73.99600219726562,40.72603988647461,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-18 13:09:13,2016-01-18 13:13:18,2,0.61,,,-73.98662567138672,40.73408889770508,-73.99158477783203,40.73890686035156,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-04 11:40:03,2016-01-04 12:05:09,1,3.6,,,-73.99021911621094,40.755882263183594,-73.9502944946289,40.783748626708984,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,18.8 +1,2016-01-16 19:02:20,2016-01-16 19:09:52,1,1.6,,,-73.99539184570312,40.74403762817383,-73.99861907958984,40.761043548583984,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-13 14:11:43,2016-01-13 14:27:49,1,2.9,,,-73.97909545898438,40.73627853393555,-73.96174621582031,40.77095031738281,1,N,1,13.0,0.0,0.5,0.3,2.75,0.0,16.55 +2,2016-01-19 09:48:13,2016-01-19 09:54:21,1,1.47,,,-73.97447967529297,40.791194915771484,-73.98007202148438,40.7755241394043,1,N,1,7.0,0.0,0.5,0.3,2.34,0.0,10.14 +2,2016-01-27 19:25:15,2016-01-27 19:32:21,1,1.03,,,-73.94608306884766,40.77555847167969,-73.95362854003906,40.78498077392578,1,N,1,6.5,1.0,0.5,0.3,2.08,0.0,10.38 +2,2016-01-04 09:38:47,2016-01-04 10:14:00,1,13.5,,,-73.8627700805664,40.76873016357422,-74.00116729736328,40.73585891723633,1,N,1,39.5,0.0,0.5,0.3,9.17,5.54,55.01 +1,2016-01-18 21:01:09,2016-01-18 21:02:49,1,0.6,,,-74.00550842285156,40.74054718017578,-74.00432586669922,40.747589111328125,1,N,1,4.0,0.5,0.5,0.3,1.05,0.0,6.35 +2,2016-01-19 18:15:40,2016-01-19 18:35:03,4,4.77,,,-73.98258972167969,40.76156234741211,-74.01387786865234,40.715232849121094,1,N,2,18.0,1.0,0.5,0.3,0.0,0.0,19.8 +2,2016-01-14 15:35:55,2016-01-14 15:43:21,3,1.76,,,-73.962646484375,40.75891876220703,-73.95401763916016,40.77988052368164,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-25 18:03:49,2016-01-25 18:19:47,1,1.8,,,-73.97453308105469,40.787044525146484,-73.98882293701172,40.77183151245117,1,N,1,11.5,1.0,0.5,0.3,2.65,0.0,15.95 +1,2016-01-24 19:29:01,2016-01-24 19:37:00,1,1.0,,,-73.99412536621094,40.74618911743164,-73.99378204345703,40.73613739013672,1,N,1,6.5,1.0,0.5,0.3,2.05,0.0,10.35 +1,2016-01-17 19:44:56,2016-01-17 19:52:45,1,1.4,,,-74.00179290771484,40.7322998046875,-73.99493408203125,40.7501106262207,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-13 16:16:59,2016-01-13 16:46:40,1,9.19,,,-73.87079620361328,40.773616790771484,-73.97401428222656,40.793174743652344,1,N,1,30.5,1.0,0.5,0.3,7.57,5.54,45.41 +2,2016-01-10 02:49:24,2016-01-10 02:51:48,2,0.38,,,-73.99089050292969,40.724361419677734,-73.99429321289062,40.72018051147461,1,N,1,3.5,0.5,0.5,0.3,0.96,0.0,5.76 +1,2016-01-02 16:17:25,2016-01-02 16:29:34,1,1.4,,,-73.97393035888672,40.763187408447266,-73.99005889892578,40.75074768066406,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-14 19:29:34,2016-01-14 19:42:40,1,4.1,,,-73.86353302001953,40.769901275634766,-73.92585754394531,40.76539993286133,1,N,1,15.0,1.0,0.5,0.3,5.0,0.0,21.8 +2,2016-01-14 13:33:49,2016-01-14 13:46:46,1,0.76,,,-73.99071502685547,40.7562255859375,-73.98225402832031,40.76167678833008,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +2,2016-01-04 16:18:15,2016-01-04 16:31:02,5,2.06,,,-73.97278594970703,40.780731201171875,-73.97586822509766,40.758338928222656,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-06 18:54:41,2016-01-06 19:07:39,2,1.6,,,-73.99002075195312,40.75600814819336,-73.98090362548828,40.744468688964844,1,N,1,9.5,1.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-03 11:09:10,2016-01-04 11:07:31,2,1.31,,,-73.99472045898438,40.75056838989258,-74.00919342041016,40.74668884277344,1,N,1,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-11 11:57:21,2016-01-11 12:16:44,2,1.94,,,-73.97329711914062,40.7462043762207,-74.00080108642578,40.75761795043945,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +1,2016-01-05 20:45:17,2016-01-05 20:55:42,1,1.9,,,-73.9800033569336,40.755577087402344,-73.9825210571289,40.77735900878906,1,N,1,9.0,0.5,0.5,0.3,1.8,0.0,12.1 +1,2016-01-21 19:52:47,2016-01-21 20:03:10,1,1.6,,,-73.9966049194336,40.73625946044922,-74.00838470458984,40.719886779785156,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +2,2016-01-11 08:02:13,2016-01-11 08:04:54,1,0.86,,,-73.95118713378906,40.78266906738281,-73.94336700439453,40.79331970214844,1,N,1,4.5,0.0,0.5,0.3,0.5,0.0,5.8 +2,2016-01-16 18:11:59,2016-01-16 18:20:10,2,1.74,,,-74.00756072998047,40.74094009399414,-74.01042938232422,40.71895980834961,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +1,2016-01-28 13:38:57,2016-01-28 13:57:54,1,6.0,,,-73.97969818115234,40.74681854248047,-74.01177978515625,40.714935302734375,1,N,1,20.5,0.0,0.5,0.3,4.26,0.0,25.56 +2,2016-01-03 22:20:26,2016-01-03 22:28:54,1,2.2,,,-74.01587677001953,40.71508026123047,-74.00764465332031,40.74078369140625,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +2,2016-01-15 13:54:34,2016-01-15 13:59:11,1,0.65,,,-73.98455810546875,40.759395599365234,-73.99091339111328,40.750732421875,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-20 13:08:27,2016-01-20 13:41:27,1,3.98,,,-73.99337005615234,40.75246810913086,-74.00668334960938,40.70555877685547,1,N,1,22.0,0.0,0.5,0.3,5.7,0.0,28.5 +2,2016-01-15 09:12:13,2016-01-15 09:40:11,2,9.28,,,-73.86344146728516,40.76963424682617,-73.97760009765625,40.75484085083008,1,N,1,30.0,0.0,0.5,0.3,6.0,5.54,42.34 +2,2016-01-21 16:23:06,2016-01-21 16:38:44,1,2.42,,,-73.95328521728516,40.785850524902344,-73.98403930664062,40.780521392822266,1,N,1,12.0,1.0,0.5,0.3,1.2,0.0,15.0 +2,2016-01-11 20:08:09,2016-01-11 20:09:56,1,0.65,,,-73.9599609375,40.77061462402344,-73.95398712158203,40.77872085571289,1,N,1,4.0,0.5,0.5,0.3,1.0,0.0,6.3 +1,2016-01-22 12:27:15,2016-01-22 12:29:37,1,0.5,,,-73.98138427734375,40.78108596801758,-73.97736358642578,40.77663803100586,1,N,1,4.0,0.0,0.5,0.3,0.5,0.0,5.3 +2,2016-01-22 08:38:34,2016-01-22 08:50:01,2,1.67,,,-73.99759674072266,40.74177169799805,-74.00576782226562,40.725379943847656,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-29 06:17:49,2016-01-29 06:27:18,5,3.07,,,-73.94132995605469,40.799278259277344,-73.97055053710938,40.762630462646484,1,N,1,10.5,0.0,0.5,0.3,3.39,0.0,14.69 +2,2016-01-08 23:09:23,2016-01-08 23:25:53,1,4.03,,,-74.01078033447266,40.71007537841797,-73.99036407470703,40.757720947265625,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,16.8 +1,2016-01-15 14:12:41,2016-01-15 14:22:32,1,1.1,,,-73.95995330810547,40.77355194091797,-73.97175598144531,40.760318756103516,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-28 00:37:36,2016-01-28 00:43:20,2,1.07,,,-73.99210357666016,40.729896545410156,-73.98418426513672,40.74320602416992,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-18 22:25:33,2016-01-18 22:31:40,1,1.7,,,-73.98255157470703,40.751705169677734,-73.98033142089844,40.733612060546875,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-07 09:50:56,2016-01-07 10:07:51,1,1.04,,,-73.9839096069336,40.74643325805664,-73.98724365234375,40.755767822265625,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-26 19:57:00,2016-01-26 20:29:23,5,22.25,,,-73.78177642822266,40.64472198486328,-73.55931854248047,40.7763557434082,1,N,1,59.0,1.0,0.5,0.3,12.16,0.0,72.96 +1,2016-01-07 20:41:52,2016-01-07 20:55:37,1,1.8,,,-73.9763412475586,40.74427032470703,-73.9872055053711,40.722232818603516,1,N,1,11.0,0.5,0.5,0.3,2.45,0.0,14.75 +2,2016-01-16 20:51:42,2016-01-16 20:55:56,1,0.63,,,-74.0108413696289,40.717281341552734,-74.01593780517578,40.71152114868164,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-23 01:04:22,2016-01-23 01:22:20,1,2.91,,,-73.984619140625,40.75908660888672,-73.97895812988281,40.72983169555664,1,N,1,13.5,0.5,0.5,0.3,2.96,0.0,17.76 +1,2016-01-30 13:32:19,2016-01-30 13:42:48,1,1.7,,,-73.97589111328125,40.6840705871582,-73.97504425048828,40.66712188720703,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +1,2016-01-08 14:52:24,2016-01-08 15:03:14,1,1.5,,,-73.96649932861328,40.773223876953125,-73.9789047241211,40.76678466796875,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-01 19:40:38,2016-01-01 19:46:12,1,0.7,,,-73.98502349853516,40.72834014892578,-73.98919677734375,40.7218132019043,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-27 00:54:37,2016-01-27 00:57:16,1,0.78,,,-73.95436096191406,40.77824020385742,-73.95214080810547,40.7711296081543,1,N,1,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +2,2016-01-10 18:25:46,2016-01-10 18:32:21,1,1.51,,,-73.96296691894531,40.76253890991211,-73.9767074584961,40.7434196472168,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-11 21:14:31,2016-01-11 21:25:47,1,2.5,,,-73.98158264160156,40.75901794433594,-73.9775619506836,40.7868537902832,1,N,1,10.5,0.5,0.5,0.3,2.0,0.0,13.8 +2,2016-01-13 13:59:53,2016-01-13 14:41:09,1,3.67,,,-73.9388427734375,40.79658126831055,-73.9769515991211,40.764671325683594,1,N,2,25.0,0.0,0.5,0.3,0.0,0.0,25.8 +2,2016-01-28 12:50:52,2016-01-28 13:20:16,1,2.26,,,-73.98587036132812,40.72686004638672,-74.00016784667969,40.74763870239258,1,N,1,18.0,0.0,0.5,0.3,2.0,0.0,20.8 +1,2016-01-18 11:18:01,2016-01-18 11:26:19,1,1.2,,,-73.98591613769531,40.761329650878906,-74.00040435791016,40.75809860229492,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-30 22:49:06,2016-01-30 23:03:28,4,1.0,,,-73.98844146728516,40.731605529785156,-73.99562072753906,40.71699142456055,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +1,2016-01-04 16:00:21,2016-01-04 16:06:19,3,0.9,,,-73.95573425292969,40.78471374511719,-73.9571304321289,40.77418518066406,1,N,1,6.0,1.0,0.5,0.3,1.1,0.0,8.9 +1,2016-01-30 23:15:21,2016-01-30 23:38:13,1,9.8,,,-73.86454010009766,40.77052688598633,-73.96990966796875,40.79893112182617,1,N,1,30.0,0.5,0.5,0.3,4.0,5.54,40.84 +2,2016-01-26 13:15:44,2016-01-26 13:55:51,1,3.78,,,-73.99160766601562,40.73311996459961,-73.95562744140625,40.7761116027832,1,N,1,24.5,0.0,0.5,0.3,5.06,0.0,30.36 +1,2016-01-16 14:32:10,2016-01-16 14:46:09,3,1.5,,,-73.97148132324219,40.75779724121094,-73.99016571044922,40.751548767089844,1,N,1,10.0,0.0,0.5,0.3,2.7,0.0,13.5 +2,2016-01-20 20:49:16,2016-01-20 20:54:33,4,1.52,,,-73.98175811767578,40.771060943603516,-73.97345733642578,40.79051971435547,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-10 23:42:43,2016-01-11 00:02:04,1,5.1,,,-74.00760650634766,40.70458221435547,-73.99270629882812,40.75841522216797,1,N,2,19.0,0.5,0.5,0.3,0.0,0.0,20.3 +1,2016-01-14 08:00:11,2016-01-14 08:23:59,1,3.3,,,-73.9607925415039,40.802642822265625,-73.96851348876953,40.764610290527344,1,N,1,16.5,0.0,0.5,0.3,3.45,0.0,20.75 +1,2016-01-17 15:16:19,2016-01-17 15:34:35,1,2.9,,,-74.00808715820312,40.739410400390625,-73.97422790527344,40.75965881347656,1,N,1,14.0,0.0,0.5,0.3,2.95,0.0,17.75 +2,2016-01-30 09:43:34,2016-01-30 09:49:02,1,1.39,,,-73.97860717773438,40.76245880126953,-73.96354675292969,40.77437973022461,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-08 18:49:07,2016-01-08 18:56:57,1,1.3,,,-73.96556854248047,40.79539489746094,-73.9485855102539,40.7978515625,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-09 19:23:00,2016-01-09 19:37:58,1,3.8,,,-73.98542022705078,40.73271179199219,-74.00792694091797,40.70442581176758,1,N,1,15.0,0.0,0.5,0.3,3.15,0.0,18.95 +1,2016-01-18 02:28:01,2016-01-18 02:52:31,2,11.0,,,-74.00411987304688,40.7525634765625,-73.92870330810547,40.83594512939453,1,Y,1,32.5,0.5,0.5,0.3,0.0,0.0,33.8 +1,2016-01-29 15:12:57,2016-01-29 15:33:59,1,1.8,,,-73.99202728271484,40.72945785522461,-73.99300384521484,40.74959945678711,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,17.15 +1,2016-01-06 13:40:10,2016-01-06 13:49:46,1,2.5,,,-73.94892883300781,40.77349853515625,-73.97411346435547,40.75111770629883,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-16 21:06:33,2016-01-16 21:15:47,1,1.0,,,-73.98983764648438,40.733863830566406,-73.9874038696289,40.74542999267578,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-17 10:23:32,2016-01-17 10:32:19,1,2.1,,,-73.94739532470703,40.77566146850586,-73.97098541259766,40.76080322265625,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-19 14:04:04,2016-01-19 14:14:22,1,1.08,,,-73.95211791992188,40.773258209228516,-73.95662689208984,40.783897399902344,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-18 17:54:47,2016-01-18 18:26:10,1,11.8,,,0.0,0.0,0.0,0.0,1,N,1,34.5,0.0,0.5,0.3,7.05,0.0,42.35 +2,2016-01-08 09:11:47,2016-01-08 09:20:41,1,1.31,,,-74.00406646728516,40.74204635620117,-74.00469970703125,40.75206756591797,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-18 17:32:33,2016-01-18 17:52:07,1,10.11,,,-73.87094116210938,40.77375411987305,-73.8434066772461,40.85274124145508,1,N,1,29.0,0.0,0.5,0.3,4.0,5.54,39.34 +2,2016-01-22 18:36:45,2016-01-22 18:39:05,5,0.3,,,-73.97335052490234,40.76410675048828,-73.97542572021484,40.76006317138672,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-07 13:24:40,2016-01-07 13:38:00,6,2.21,,,-73.96663665771484,40.80426025390625,-73.97991180419922,40.78049850463867,1,N,1,11.0,0.0,0.5,0.3,2.0,0.0,13.8 +1,2016-01-05 19:40:11,2016-01-05 19:49:07,1,1.5,,,-74.00556182861328,40.73828887939453,-74.0101089477539,40.71963882446289,1,N,1,8.0,1.0,0.5,0.3,1.0,0.0,10.8 +2,2016-01-18 23:11:56,2016-01-18 23:27:42,6,4.08,,,-73.96542358398438,40.76184844970703,-74.00894927978516,40.72758865356445,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,16.3 +1,2016-01-09 17:36:49,2016-01-09 18:07:13,1,5.5,,,-73.96854400634766,40.7911376953125,-73.92660522460938,40.76191329956055,1,N,1,23.0,0.0,0.5,0.3,4.75,0.0,28.55 +1,2016-01-15 12:19:56,2016-01-15 12:23:58,1,0.6,,,-73.94570922851562,40.777992248535156,-73.95561981201172,40.779319763183594,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-09 00:53:50,2016-01-09 01:04:28,1,3.67,,,-73.98921203613281,40.71818161010742,-73.97108459472656,40.751487731933594,1,N,1,13.0,0.5,0.5,0.3,1.0,0.0,15.3 +2,2016-01-09 21:55:50,2016-01-09 22:24:02,2,9.06,,,-74.00154876708984,40.73591995239258,-73.8899154663086,40.75120162963867,1,N,2,30.5,0.5,0.5,0.3,0.0,0.0,31.8 +1,2016-01-22 21:03:58,2016-01-22 21:12:48,1,1.1,,,-74.00048828125,40.732398986816406,-73.98884582519531,40.74540328979492,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-01 05:48:48,2016-01-01 06:17:39,5,9.88,,,-73.9832992553711,40.76401138305664,-73.92144775390625,40.69734191894531,1,N,1,31.0,0.5,0.5,0.3,6.46,0.0,38.76 +1,2016-01-09 22:58:09,2016-01-09 23:08:11,2,2.2,,,-73.99020385742188,40.738426208496094,-73.99443817138672,40.76074981689453,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +1,2016-01-30 00:26:44,2016-01-30 00:41:37,1,3.3,,,-73.9468994140625,40.741268157958984,-73.99492645263672,40.76008224487305,2,N,1,52.0,0.0,0.5,0.3,11.65,5.54,69.99 +1,2016-01-16 11:42:21,2016-01-16 11:53:57,1,2.9,,,-73.97781372070312,40.758731842041016,-73.97577667236328,40.78795623779297,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +1,2016-01-11 21:15:31,2016-01-11 21:38:47,1,5.4,,,-74.0019302368164,40.73045349121094,-73.95921325683594,40.68489456176758,1,N,1,20.5,0.5,0.5,0.3,4.35,0.0,26.15 +2,2016-01-19 11:54:20,2016-01-19 12:09:48,1,1.71,,,-73.97420501708984,40.759788513183594,-73.99348449707031,40.74692916870117,1,N,1,10.5,0.0,0.5,0.3,3.39,0.0,14.69 +2,2016-01-02 19:14:40,2016-01-02 19:19:23,2,1.08,,,-73.97492218017578,40.78774642944336,-73.9587631225586,40.780426025390625,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-07 14:05:17,2016-01-07 14:30:25,1,2.4,,,-73.95366668701172,40.784629821777344,-73.96147155761719,40.76032638549805,1,N,1,16.0,0.0,0.5,0.3,3.35,0.0,20.15 +2,2016-01-10 18:09:37,2016-01-10 18:17:33,1,1.6,,,-73.9715805053711,40.786163330078125,-73.98416900634766,40.7696533203125,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-07 22:06:15,2016-01-07 22:11:10,2,1.56,,,-73.9620590209961,40.7763557434082,-73.98052978515625,40.77497100830078,1,N,1,6.5,0.5,0.5,0.3,1.2,0.0,9.0 +1,2016-01-28 16:07:52,2016-01-28 16:30:59,1,2.4,,,-73.98924255371094,40.739566802978516,-73.99652862548828,40.763221740722656,1,N,1,15.0,1.0,0.5,0.3,3.35,0.0,20.15 +1,2016-01-12 07:36:25,2016-01-12 07:43:39,1,1.1,,,-73.98715209960938,40.744178771972656,-73.98648071289062,40.754451751708984,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +2,2016-01-09 01:01:10,2016-01-09 01:09:56,1,1.62,,,-73.97991180419922,40.74628829956055,-73.97830963134766,40.72893142700195,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +1,2016-01-12 15:12:24,2016-01-12 15:34:48,1,3.6,,,-73.9821548461914,40.76464080810547,-74.00218200683594,40.71895980834961,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,17.3 +1,2016-01-07 15:26:01,2016-01-07 15:29:05,1,0.4,,,-73.98696899414062,40.745174407958984,-73.98189544677734,40.74412536621094,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,6.0 +2,2016-01-29 14:45:44,2016-01-29 14:52:49,2,1.42,,,-73.96817016601562,40.7554817199707,-73.97682189941406,40.73937225341797,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +1,2016-01-21 13:31:45,2016-01-21 14:24:15,4,9.6,,,-73.8726577758789,40.77422332763672,-73.9854965209961,40.76324462890625,1,N,2,41.5,0.0,0.5,0.3,0.0,5.54,47.84 +2,2016-01-25 00:06:29,2016-01-25 00:19:15,6,2.61,,,-73.92176055908203,40.70589065551758,-73.95317840576172,40.715946197509766,1,N,1,11.0,0.5,0.5,0.3,3.69,0.0,15.99 +2,2016-01-08 16:12:24,2016-01-08 16:20:32,6,1.57,,,-73.97834777832031,40.76298904418945,-73.96058654785156,40.773155212402344,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-25 20:18:37,2016-01-25 20:22:48,1,0.53,,,-73.98590850830078,40.7270393371582,-73.99231719970703,40.73078155517578,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,6.96 +1,2016-01-26 08:38:55,2016-01-26 08:43:08,1,0.8,,,-73.98399353027344,40.77000427246094,-73.99442291259766,40.76642990112305,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +1,2016-01-22 01:41:20,2016-01-22 01:49:18,2,2.3,,,-73.95569610595703,40.779380798339844,-73.95904541015625,40.80176544189453,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,12.95 +2,2016-01-29 00:01:50,2016-01-29 00:12:46,1,1.96,,,-73.95854187011719,40.778568267822266,-73.97872924804688,40.76217269897461,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-05 06:08:01,2016-01-05 06:13:00,1,0.9,,,-73.99424743652344,40.75095748901367,-73.98516845703125,40.76019287109375,1,N,1,5.5,0.0,0.5,0.3,1.2,0.0,7.5 +2,2016-01-21 11:53:38,2016-01-21 11:57:49,2,0.64,,,-73.97211456298828,40.75127029418945,-73.96430969238281,40.754661560058594,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +2,2016-01-15 18:35:38,2016-01-15 18:54:25,1,2.9,,,-74.00048828125,40.742454528808594,-73.99091339111328,40.77508544921875,1,N,1,14.0,1.0,0.5,0.3,1.0,0.0,16.8 +2,2016-01-07 23:12:24,2016-01-07 23:17:38,1,1.01,,,-73.98979187011719,40.729923248291016,-74.00045776367188,40.72513198852539,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,8.3 +2,2016-01-01 00:55:11,2016-01-01 01:15:56,1,5.35,,,-73.98800659179688,40.74380111694336,-73.91307067871094,40.757511138916016,1,N,2,19.0,0.5,0.5,0.3,0.0,0.0,20.3 +2,2016-01-26 15:14:21,2016-01-26 15:38:17,1,2.1,,,-73.9660415649414,40.80509948730469,-73.93929290771484,40.80514144897461,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,19.56 +2,2016-01-17 00:59:05,2016-01-17 01:24:39,1,4.88,,,-73.98438262939453,40.74879837036133,-73.97276306152344,40.755741119384766,1,N,1,19.5,0.5,0.5,0.3,4.16,0.0,24.96 +1,2016-01-21 18:33:46,2016-01-21 18:41:04,2,0.9,,,-73.98421478271484,40.743186950683594,-73.99547576904297,40.739463806152344,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-29 07:48:51,2016-01-29 07:53:55,1,0.85,,,-73.99172973632812,40.73141098022461,-73.99768829345703,40.72304153442383,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-08 23:35:56,2016-01-08 23:41:56,1,1.16,,,-73.99784851074219,40.73588180541992,-73.99172973632812,40.749088287353516,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +2,2016-01-05 14:06:28,2016-01-05 14:18:53,1,1.97,,,-73.97476196289062,40.7906608581543,-73.98091888427734,40.76430130004883,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-09 21:54:44,2016-01-09 22:15:18,2,2.6,,,-73.98259735107422,40.739253997802734,-74.00426483154297,40.7212028503418,1,N,1,14.5,0.5,0.5,0.3,3.15,0.0,18.95 +2,2016-01-11 20:05:27,2016-01-11 20:11:21,1,0.96,,,-73.97975158691406,40.75176239013672,-73.97437286376953,40.74421691894531,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +2,2016-01-17 11:14:12,2016-01-17 11:28:18,1,4.76,,,-73.95481872558594,40.775848388671875,-73.99044799804688,40.72806930541992,1,N,1,16.5,0.0,0.5,0.3,1.73,0.0,19.03 +2,2016-01-21 23:15:03,2016-01-21 23:27:26,1,1.7,,,-73.97737884521484,40.759830474853516,-73.9999771118164,40.761451721191406,1,N,1,9.5,0.5,0.5,0.3,1.5,0.0,12.3 +2,2016-01-19 14:22:07,2016-01-19 14:40:49,1,1.96,,,-73.9998779296875,40.74137878417969,-73.98269653320312,40.76451873779297,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +1,2016-01-04 22:48:51,2016-01-04 22:54:55,1,1.6,,,-73.982177734375,40.77196502685547,-73.97522735595703,40.79240036010742,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +1,2016-01-12 20:22:21,2016-01-12 20:25:44,3,0.5,,,-73.99722290039062,40.74473571777344,-73.99462127685547,40.750465393066406,1,N,1,4.5,0.5,0.5,0.3,1.15,0.0,6.95 +1,2016-01-01 16:48:43,2016-01-01 17:17:46,1,3.0,,,-73.96544647216797,40.76915740966797,-73.99476623535156,40.73421859741211,1,N,1,19.5,0.0,0.5,0.3,3.0,0.0,23.3 +2,2016-01-24 15:29:18,2016-01-24 15:39:20,1,1.19,,,-73.97605895996094,40.77613067626953,-73.98262786865234,40.764060974121094,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-15 23:03:25,2016-01-15 23:35:13,1,3.88,,,-73.97106170654297,40.75541687011719,-73.99791717529297,40.71692657470703,1,N,1,20.5,0.5,0.5,0.3,4.36,0.0,26.16 +1,2016-01-02 13:52:45,2016-01-02 14:01:45,1,1.1,,,-73.9839859008789,40.72163772583008,-73.99668884277344,40.71519470214844,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-14 22:04:37,2016-01-14 22:31:08,1,8.8,,,-73.96855163574219,40.7545166015625,-73.97384643554688,40.66842269897461,1,N,1,27.5,0.5,0.5,0.3,6.0,0.0,34.8 +1,2016-01-19 18:11:26,2016-01-19 18:28:09,1,1.4,,,-74.00408935546875,40.741912841796875,-74.00654602050781,40.72441482543945,1,N,1,11.5,1.0,0.5,0.3,2.65,0.0,15.95 +1,2016-01-09 13:39:59,2016-01-09 13:53:02,2,5.4,,,-74.00496673583984,40.706966400146484,-73.97638702392578,40.757896423339844,1,N,1,17.5,0.0,0.5,0.3,3.65,0.0,21.95 +2,2016-01-18 20:22:01,2016-01-18 20:30:01,1,0.82,,,-73.96932220458984,40.76108169555664,-73.95848846435547,40.76445007324219,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-12 07:08:55,2016-01-12 07:10:30,1,0.3,,,-73.98145294189453,40.741207122802734,-73.98067474365234,40.744136810302734,1,N,1,3.5,0.0,0.5,0.3,0.05,0.0,4.35 +2,2016-01-12 13:57:10,2016-01-12 14:23:40,1,9.9,,,-73.99600219726562,40.74355697631836,-73.87088012695312,40.77413558959961,1,N,2,31.5,0.0,0.5,0.3,0.0,5.54,37.84 +1,2016-01-23 10:09:19,2016-01-23 10:20:39,1,1.3,,,-73.98933410644531,40.72621154785156,-74.00691986083984,40.73041534423828,1,N,1,8.5,0.0,0.5,0.3,2.3,0.0,11.6 +1,2016-01-05 23:31:49,2016-01-05 23:32:59,1,0.3,,,-73.98165130615234,40.76371383666992,-73.97589111328125,40.76112747192383,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,4.3 +2,2016-01-07 23:27:50,2016-01-07 23:33:57,1,1.23,,,-73.99987030029297,40.73316192626953,-73.98272705078125,40.73143768310547,1,N,1,6.5,0.5,0.5,0.3,2.0,0.0,9.8 +1,2016-01-07 23:02:35,2016-01-07 23:16:39,1,4.7,,,-73.9439697265625,40.71211624145508,-73.99481964111328,40.71599197387695,1,N,1,16.5,0.5,0.5,0.3,2.0,0.0,19.8 +2,2016-01-20 10:29:57,2016-01-20 11:03:45,5,8.54,,,-74.0101089477539,40.720645904541016,-73.94456481933594,40.74747848510742,1,N,1,30.0,0.0,0.5,0.3,1.0,0.0,31.8 +2,2016-01-14 07:16:01,2016-01-14 07:35:16,1,3.09,,,-73.9444808959961,40.77976608276367,-73.98101043701172,40.76057052612305,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,15.3 +1,2016-01-29 06:36:38,2016-01-29 06:43:26,1,1.4,,,-73.96163940429688,40.76460266113281,-73.9765853881836,40.75181579589844,1,N,1,7.0,0.0,0.5,0.3,2.0,0.0,9.8 +1,2016-01-15 22:15:19,2016-01-15 22:25:04,3,2.8,,,-73.98247528076172,40.74293518066406,-73.98538970947266,40.71848678588867,1,N,1,11.0,0.5,0.5,0.3,2.0,0.0,14.3 +2,2016-01-20 07:46:18,2016-01-20 07:59:28,2,2.5,,,-73.99369049072266,40.76696014404297,-73.96443176269531,40.77730941772461,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-13 15:05:55,2016-01-13 15:23:46,1,1.7,,,-73.95023345947266,40.77149200439453,-73.9774169921875,40.78290557861328,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,15.95 +1,2016-01-09 14:14:47,2016-01-09 14:17:27,1,0.5,,,-73.98098754882812,40.738155364990234,-73.98838806152344,40.736328125,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-21 15:03:18,2016-01-21 15:19:02,1,1.3,,,-73.97325897216797,40.75278091430664,-73.9920883178711,40.74921798706055,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-17 11:29:08,2016-01-17 11:46:52,1,3.92,,,-73.9901123046875,40.756778717041016,-73.9486083984375,40.78633117675781,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-06 15:56:31,2016-01-06 16:03:28,1,1.2,,,-73.97775268554688,40.74949645996094,-73.98279571533203,40.73469161987305,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-05 15:09:07,2016-01-05 15:24:10,1,2.7,,,-73.94548034667969,40.77973175048828,-73.97825622558594,40.77327346801758,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,15.95 +1,2016-01-07 10:16:19,2016-01-07 10:44:44,2,8.4,,,0.0,0.0,0.0,0.0,1,N,1,29.5,0.0,0.5,0.3,5.0,0.0,35.3 +1,2016-01-13 22:34:45,2016-01-13 22:49:15,1,3.4,,,0.0,0.0,0.0,0.0,1,N,1,13.0,0.5,0.5,0.3,3.55,0.0,17.85 +1,2016-01-30 18:42:24,2016-01-30 18:52:42,1,2.3,,,-73.99626159667969,40.76231002807617,-73.9744644165039,40.7908821105957,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +2,2016-01-05 05:40:09,2016-01-05 05:44:47,6,1.19,,,-73.99441528320312,40.73213577270508,-73.99259185791016,40.7432861328125,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-07 12:04:42,2016-01-07 12:13:51,1,0.7,,,-73.9891128540039,40.7450065612793,-73.9814682006836,40.74284744262695,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-13 12:00:58,2016-01-13 12:53:29,5,18.68,,,-73.78189849853516,40.64475631713867,-73.95832061767578,40.81053161621094,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-22 23:33:54,2016-01-22 23:52:52,1,4.83,,,-73.96222686767578,40.76216125488281,-73.96222686767578,40.76216125488281,1,N,1,17.0,0.5,0.5,0.3,3.66,0.0,21.96 +1,2016-01-20 17:47:23,2016-01-20 17:53:28,1,1.0,,,-73.96834564208984,40.76792526245117,-73.97599792480469,40.77717971801758,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-01 03:30:20,2016-01-01 04:05:07,1,9.41,,,-73.9906997680664,40.746158599853516,-73.95945739746094,40.80112075805664,1,N,2,30.0,0.5,0.5,0.3,0.0,0.0,31.3 +2,2016-01-22 12:16:42,2016-01-22 12:31:49,1,1.96,,,-73.99002075195312,40.73405838012695,-73.9728012084961,40.759281158447266,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-02 18:37:02,2016-01-02 19:08:36,1,3.32,,,-73.97512817382812,40.76533508300781,-73.99949645996094,40.730224609375,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,21.3 +2,2016-01-25 18:52:16,2016-01-25 18:58:02,1,0.9,,,-73.9736557006836,40.75070571899414,-73.96348571777344,40.75609588623047,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-09 02:38:44,2016-01-09 02:57:52,1,5.0,,,-74.00569152832031,40.7371711730957,-73.94918060302734,40.78110122680664,1,N,1,17.5,0.5,0.5,0.3,1.0,0.0,19.8 +1,2016-01-14 08:45:20,2016-01-14 08:53:51,1,1.4,,,-73.98847198486328,40.723114013671875,-73.97547149658203,40.740989685058594,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +1,2016-01-20 13:22:57,2016-01-20 13:27:12,1,0.8,,,-73.9972915649414,40.7220458984375,-74.00293731689453,40.73031234741211,1,N,1,5.0,0.0,0.5,0.3,1.7,0.0,7.5 +1,2016-01-21 07:33:24,2016-01-21 07:49:54,1,2.9,,,-73.94489288330078,40.787353515625,-73.97383117675781,40.754669189453125,1,N,1,13.5,0.0,0.5,0.3,3.0,0.0,17.3 +2,2016-01-03 07:42:39,2016-01-03 07:47:52,1,1.36,,,-73.97732543945312,40.753990173339844,-73.99748992919922,40.7538948059082,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-06 09:21:54,2016-01-06 09:25:45,1,0.9,,,-73.98661804199219,40.72574234008789,-73.99189758300781,40.73542404174805,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-10 00:05:44,2016-01-10 00:21:32,2,2.5,,,-73.98340606689453,40.72600555419922,-73.99138641357422,40.750274658203125,1,N,1,12.0,0.5,0.5,0.3,2.0,0.0,15.3 +1,2016-01-10 17:02:52,2016-01-10 17:11:07,1,1.5,,,-73.95774841308594,40.7738037109375,-73.97250366210938,40.78629684448242,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-11 20:07:35,2016-01-11 20:16:56,1,1.8,,,-73.97317504882812,40.792842864990234,-73.95799255371094,40.77632141113281,1,N,1,8.5,0.5,0.5,0.3,1.2,0.0,11.0 +1,2016-01-15 12:22:29,2016-01-15 12:28:20,1,0.7,,,-73.98418426513672,40.76017761230469,-73.99093627929688,40.752262115478516,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-11 15:38:17,2016-01-11 15:52:25,1,1.85,,,-73.958984375,40.76902389526367,-73.97786712646484,40.78300857543945,1,N,1,10.5,0.0,0.5,0.3,2.82,0.0,14.12 +2,2016-01-03 01:25:12,2016-01-03 01:36:00,1,2.57,,,-73.96823120117188,40.79985809326172,-73.96723937988281,40.77241134643555,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +2,2016-01-25 16:52:13,2016-01-25 16:55:50,1,0.5,,,-73.94880676269531,40.78486251831055,-73.95417022705078,40.78131103515625,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-22 16:54:42,2016-01-22 17:02:35,1,0.8,,,0.0,0.0,0.0,0.0,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-10 16:56:41,2016-01-10 17:11:48,1,2.86,,,-73.98220825195312,40.74001693725586,-73.99327850341797,40.75700378417969,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-08 23:43:56,2016-01-08 23:59:39,1,3.3,,,-74.00523376464844,40.721195220947266,-73.97359466552734,40.69681167602539,1,N,1,13.5,0.5,0.5,0.3,2.95,0.0,17.75 +2,2016-01-05 07:58:45,2016-01-05 08:09:24,1,1.68,,,-73.994140625,40.75117111206055,-73.97618103027344,40.74013900756836,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-01 23:54:11,2016-01-01 23:59:07,1,0.5,,,-73.9837875366211,40.72691345214844,-73.98717498779297,40.720523834228516,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-15 00:06:44,2016-01-15 00:16:29,2,1.5,,,-73.97650146484375,40.760494232177734,-73.98175048828125,40.742374420166016,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,10.8 +2,2016-01-30 08:28:17,2016-01-30 08:37:15,1,2.93,,,-74.00047302246094,40.74763870239258,-74.01431274414062,40.71393966674805,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-29 00:47:32,2016-01-29 01:03:40,1,3.86,,,-73.96914672851562,40.763919830322266,-74.00235748291016,40.719810485839844,1,N,1,14.5,0.5,0.5,0.3,3.16,0.0,18.96 +2,2016-01-13 18:46:37,2016-01-13 19:01:39,1,2.56,,,-73.96505737304688,40.75910186767578,-73.99115753173828,40.734310150146484,1,N,1,12.0,1.0,0.5,0.3,3.45,0.0,17.25 +2,2016-01-21 23:42:01,2016-01-21 23:46:29,1,0.94,,,-74.00025177001953,40.74277114868164,-74.00189208984375,40.75204086303711,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-03 23:24:31,2016-01-03 23:42:37,1,4.01,,,-73.9876708984375,40.7565803527832,-73.94390106201172,40.791141510009766,1,N,1,17.0,0.5,0.5,0.3,5.49,0.0,23.79 +2,2016-01-28 19:40:15,2016-01-28 19:53:33,1,1.52,,,-73.98985290527344,40.74152755737305,-74.00778198242188,40.73186111450195,1,N,1,9.5,1.0,0.5,0.3,1.0,0.0,12.3 +1,2016-01-29 15:24:21,2016-01-29 15:43:34,1,2.2,,,-73.95850372314453,40.78162384033203,-73.9851303100586,40.77899932861328,1,N,1,13.5,0.0,0.5,0.3,1.7,0.0,16.0 +2,2016-01-30 01:07:25,2016-01-30 01:22:48,2,3.34,,,-74.00514221191406,40.719722747802734,-73.98588562011719,40.76285934448242,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +1,2016-01-29 22:51:10,2016-01-29 22:53:23,1,0.3,,,-73.96361541748047,40.71969223022461,-73.95926666259766,40.72248458862305,1,N,1,3.5,0.5,0.5,0.3,1.2,0.0,6.0 +2,2016-01-09 00:30:24,2016-01-09 00:36:15,2,1.18,,,-73.99109649658203,40.73326110839844,-73.98100280761719,40.74721908569336,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-12 07:22:25,2016-01-12 07:27:05,1,1.3,,,0.0,0.0,0.0,0.0,1,N,1,6.5,0.0,0.5,0.3,1.83,0.0,9.13 +2,2016-01-16 06:24:21,2016-01-16 06:38:07,1,6.59,,,-74.0164566040039,40.7153205871582,-73.97664642333984,40.75189971923828,1,N,1,20.0,0.0,0.5,0.3,2.0,0.0,22.8 +2,2016-01-03 19:58:53,2016-01-03 20:05:04,1,2.08,,,-73.98159790039062,40.772701263427734,-73.9525375366211,40.772300720214844,1,N,1,8.0,0.0,0.5,0.3,1.32,0.0,10.12 +2,2016-01-07 02:36:31,2016-01-07 02:47:30,2,3.65,,,-73.88020324707031,40.74129867553711,-73.82582092285156,40.7120475769043,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,17.16 +1,2016-01-07 06:57:29,2016-01-07 07:02:52,1,0.8,,,-74.00511932373047,40.71921157836914,-73.9971694946289,40.724857330322266,1,N,1,5.5,0.0,0.5,0.3,1.58,0.0,7.88 +1,2016-01-30 12:03:43,2016-01-30 12:05:49,1,0.0,,,-73.9743423461914,40.75816345214844,-73.97437286376953,40.75831985473633,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,3.3 +2,2016-01-16 02:33:54,2016-01-16 02:38:35,1,0.93,,,-73.99237823486328,40.743927001953125,-74.00130462646484,40.74333572387695,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +1,2016-01-14 07:28:37,2016-01-14 07:39:34,1,1.9,,,-73.99137878417969,40.729225158691406,-74.00439453125,40.7072868347168,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,11.8 +2,2016-01-18 15:59:43,2016-01-18 16:16:33,2,2.53,,,-73.9840316772461,40.750221252441406,-73.99983978271484,40.73329162597656,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-12 12:42:30,2016-01-12 12:52:22,1,1.31,,,-73.97054290771484,40.759063720703125,-73.9850082397461,40.74958038330078,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,11.0 +2,2016-01-01 04:01:44,2016-01-01 04:30:51,5,11.22,,,-74.00047302246094,40.73012161254883,-74.00853729248047,40.61078643798828,1,N,2,35.0,0.5,0.5,0.3,0.0,0.0,36.3 +1,2016-01-02 23:06:07,2016-01-02 23:09:33,2,0.6,,,-73.99359130859375,40.76055145263672,-73.99614715576172,40.7535514831543,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-25 11:57:02,2016-01-25 12:09:28,1,1.0,,,-74.00192260742188,40.7150993347168,-74.00769805908203,40.70771408081055,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-01 06:17:21,2016-01-01 06:22:46,6,1.19,,,-73.82994842529297,40.75941848754883,-73.84339141845703,40.77111053466797,1,N,1,6.5,0.0,0.5,0.3,5.0,0.0,12.3 +2,2016-01-12 21:47:57,2016-01-12 22:01:01,2,2.36,,,-74.0022964477539,40.755592346191406,-73.99202728271484,40.73113250732422,1,N,1,11.0,0.5,0.5,0.3,3.08,0.0,15.38 +2,2016-01-01 01:01:26,2016-01-01 01:17:08,2,2.8,,,-73.98433685302734,40.72050857543945,-73.96540832519531,40.71371078491211,1,N,1,13.0,0.5,0.5,0.3,2.0,0.0,16.3 +1,2016-01-14 14:02:30,2016-01-14 14:03:38,1,0.2,,,-73.97415924072266,40.793785095214844,-73.97161865234375,40.79508590698242,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,3.8 +2,2016-01-07 00:48:24,2016-01-07 00:55:02,1,2.35,,,-73.96905517578125,40.757789611816406,-73.9857177734375,40.73121643066406,1,N,1,8.5,0.5,0.5,0.3,2.94,0.0,12.74 +2,2016-01-07 14:17:45,2016-01-07 14:26:43,2,0.94,,,-73.96867370605469,40.764564514160156,-73.9627456665039,40.775543212890625,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-04 21:09:13,2016-01-04 21:17:43,1,2.2,,,-73.9735336303711,40.763832092285156,-73.9487533569336,40.77670669555664,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +1,2016-01-11 14:26:24,2016-01-11 14:51:01,1,2.4,,,-73.96782684326172,40.7655143737793,-73.99102783203125,40.75767135620117,1,N,1,16.5,0.0,0.5,0.3,4.32,0.0,21.62 +2,2016-01-17 23:04:13,2016-01-17 23:31:14,1,17.75,,,-73.79011535644531,40.646610260009766,-73.97696685791016,40.759193420410156,2,N,1,52.0,0.0,0.5,0.3,9.0,5.54,67.34 +2,2016-01-03 12:20:37,2016-01-03 12:24:50,3,1.05,,,-74.00093841552734,40.725738525390625,-73.99742126464844,40.737701416015625,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-03 17:12:30,2016-01-03 17:28:17,1,3.36,,,-73.9517593383789,40.76974868774414,-73.9905776977539,40.750858306884766,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +2,2016-01-28 19:44:18,2016-01-28 19:54:24,1,2.22,,,-73.97003936767578,40.757286071777344,-73.94911193847656,40.783390045166016,1,N,1,9.5,1.0,0.5,0.3,1.0,0.0,12.3 +1,2016-01-03 09:18:54,2016-01-03 09:49:51,2,12.6,,,-73.86389923095703,40.76991271972656,-73.97102355957031,40.755859375,1,N,1,38.5,0.0,0.5,0.3,9.8,0.0,49.1 +1,2016-01-21 12:54:29,2016-01-21 13:09:11,1,2.0,,,-73.95948028564453,40.78208923339844,-73.9400405883789,40.80295944213867,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-05 00:09:39,2016-01-05 00:28:44,1,8.21,,,-73.95317840576172,40.77980041503906,-73.857177734375,40.840415954589844,1,N,1,25.0,0.5,0.5,0.3,0.0,0.0,26.3 +2,2016-01-26 00:12:44,2016-01-26 00:34:03,1,8.65,,,-73.98020935058594,40.75450897216797,-73.85867309570312,40.73332977294922,1,N,1,26.0,0.5,0.5,0.3,2.0,5.54,34.84 +2,2016-01-29 14:29:15,2016-01-29 14:50:43,3,2.18,,,-74.00509643554688,40.719970703125,-73.98259735107422,40.72964096069336,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +1,2016-01-14 19:35:29,2016-01-14 19:41:45,1,1.4,,,-73.97114562988281,40.78824234008789,-73.9877700805664,40.780086517333984,1,N,1,7.0,1.0,0.5,0.3,1.0,0.0,9.8 +1,2016-01-19 06:45:17,2016-01-19 07:01:50,1,5.8,,,-73.90278625488281,40.7679557800293,-73.95287322998047,40.791786193847656,1,N,2,19.0,0.0,0.5,0.3,0.0,5.54,25.34 +1,2016-01-22 12:39:22,2016-01-22 12:43:23,3,1.1,,,-73.96662902832031,40.79391098022461,-73.97795867919922,40.78309631347656,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,7.55 +1,2016-01-17 15:20:32,2016-01-17 15:44:39,2,8.2,,,-73.8853530883789,40.77311706542969,-73.98273468017578,40.737953186035156,1,N,1,26.5,0.0,0.5,0.3,5.0,5.54,37.84 +2,2016-01-29 07:18:35,2016-01-29 07:21:04,1,0.68,,,-74.0118179321289,40.71371841430664,-74.0102310180664,40.721500396728516,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,5.76 +2,2016-01-07 08:51:58,2016-01-07 09:19:05,1,11.26,,,-73.99897003173828,40.73242950439453,-73.8733901977539,40.77429962158203,1,N,1,34.5,0.0,0.5,0.3,7.06,0.0,42.36 +2,2016-01-30 09:50:44,2016-01-30 10:03:27,1,1.76,,,-73.97634887695312,40.72881317138672,-74.00458526611328,40.7360954284668,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,12.3 +2,2016-01-13 07:14:36,2016-01-13 07:30:02,1,2.63,,,-73.96256256103516,40.75913619995117,-73.99201202392578,40.74956512451172,1,N,1,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +2,2016-01-20 16:29:07,2016-01-20 16:44:33,1,2.23,,,-73.96129608154297,40.770023345947266,-73.98506164550781,40.75291061401367,1,N,1,11.5,1.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-08 11:57:37,2016-01-08 12:18:16,2,3.21,,,-74.0014419555664,40.75688171386719,-73.98152923583984,40.76008987426758,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,18.96 +2,2016-01-06 14:33:45,2016-01-06 15:04:48,1,6.1,,,-73.93141174316406,40.76555252075195,-73.99771881103516,40.72964859008789,1,N,1,24.0,0.0,0.5,0.3,0.0,0.0,24.8 +1,2016-01-15 00:36:19,2016-01-15 00:47:12,1,2.7,,,-73.98693084716797,40.72945785522461,-73.98888397216797,40.755699157714844,1,N,1,10.5,0.5,0.5,0.3,2.35,0.0,14.15 +1,2016-01-29 05:15:28,2016-01-29 05:17:36,1,0.8,,,-73.98853302001953,40.72279739379883,-73.97570037841797,40.71709442138672,1,N,1,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-12 18:06:45,2016-01-12 18:22:34,1,2.2,,,-73.96315002441406,40.77420425415039,-73.98109436035156,40.747161865234375,1,N,1,12.0,1.0,0.5,0.3,4.0,0.0,17.8 +2,2016-01-20 15:40:23,2016-01-20 16:14:28,1,6.74,,,-73.9883804321289,40.722774505615234,-73.9571304321289,40.786155700683594,1,N,2,25.0,0.0,0.5,0.3,0.0,0.0,25.8 +2,2016-01-28 21:31:37,2016-01-28 22:05:18,1,12.95,,,-73.86271667480469,40.76893997192383,-73.95797729492188,40.67353057861328,1,N,1,39.0,0.5,0.5,0.3,8.06,0.0,48.36 +2,2016-01-01 21:47:26,2016-01-01 21:52:44,2,3.54,,,-74.18278503417969,40.66400146484375,-74.18622589111328,40.70060729980469,5,N,1,132.0,0.0,0.5,0.3,0.0,0.0,132.8 +2,2016-01-05 08:55:22,2016-01-05 09:16:00,1,2.51,,,-73.97943115234375,40.78166961669922,-73.95439147949219,40.7901496887207,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +1,2016-01-11 16:03:01,2016-01-11 16:09:55,1,1.1,,,0.0,0.0,0.0,0.0,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-28 22:03:58,2016-01-28 22:12:10,1,0.93,,,-73.9864730834961,40.762481689453125,-73.99746704101562,40.761268615722656,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-11 08:00:09,2016-01-11 08:18:07,1,3.6,,,-74.01467895507812,40.71657943725586,-73.99120330810547,40.757999420166016,1,N,1,15.5,0.0,0.5,0.3,3.25,0.0,19.55 +2,2016-01-07 08:37:36,2016-01-07 08:49:36,1,0.84,,,-73.97824096679688,40.76321792602539,-73.9792709350586,40.75471878051758,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +1,2016-01-17 03:22:04,2016-01-17 03:31:37,1,0.9,,,-73.989013671875,40.72924041748047,-73.98568725585938,40.71966552734375,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +1,2016-01-12 00:27:11,2016-01-12 00:36:03,2,4.6,,,-73.78178405761719,40.644657135009766,-73.75181579589844,40.6584358215332,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,15.3 +1,2016-01-15 23:08:18,2016-01-15 23:14:53,3,1.0,,,-73.98477172851562,40.74842834472656,-73.98570251464844,40.73603057861328,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-06 22:21:55,2016-01-06 22:45:30,1,16.81,,,-73.78221130371094,40.64460754394531,-73.97171020507812,40.747161865234375,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,70.01 +1,2016-01-06 14:54:50,2016-01-06 15:05:20,1,0.7,,,-73.98502349853516,40.74214553833008,-73.99231719970703,40.74924850463867,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-30 18:26:20,2016-01-30 18:38:10,1,2.54,,,-73.95305633544922,40.79164123535156,-73.97718048095703,40.760658264160156,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-08 08:13:19,2016-01-08 08:18:54,1,0.6,,,-73.99153137207031,40.74992752075195,-73.98352813720703,40.744075775146484,1,N,1,5.5,0.0,0.5,0.3,0.7,0.0,7.0 +2,2016-01-14 11:02:20,2016-01-14 11:18:37,1,2.73,,,-73.98202514648438,40.762760162353516,-73.9915542602539,40.73890686035156,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-15 15:16:56,2016-01-15 15:44:37,1,8.02,,,-73.9548110961914,40.76546096801758,-73.99159240722656,40.684993743896484,1,N,1,26.5,0.0,0.5,0.3,5.46,0.0,32.76 +2,2016-01-03 09:48:18,2016-01-03 09:52:36,1,0.79,,,-73.97328186035156,40.74856185913086,-73.97797393798828,40.75475311279297,1,N,1,5.0,0.0,0.5,0.3,0.87,0.0,6.67 +1,2016-01-13 12:06:59,2016-01-13 12:12:16,1,1.0,,,-73.97994995117188,40.78367233276367,-73.9699478149414,40.797088623046875,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-03 16:28:21,2016-01-03 16:45:54,1,2.5,,,-73.95005798339844,40.784637451171875,-73.97628021240234,40.75918197631836,1,N,1,13.0,0.0,0.5,0.3,2.0,0.0,15.8 +1,2016-01-24 20:54:59,2016-01-24 21:07:29,1,1.0,,,-73.93872833251953,40.84543228149414,-73.94371032714844,40.832786560058594,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-22 10:12:25,2016-01-22 10:24:07,1,1.2,,,-74.00279998779297,40.74448013305664,-74.00504302978516,40.727725982666016,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-13 11:03:16,2016-01-13 11:12:48,6,1.37,,,-73.95318603515625,40.7857666015625,-73.95150756835938,40.77177047729492,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-25 15:02:12,2016-01-25 15:56:33,1,16.1,,,-73.98291015625,40.742923736572266,-73.78350830078125,40.64375686645508,2,N,1,52.0,0.0,0.5,0.3,4.0,5.54,62.34 +1,2016-01-20 22:31:54,2016-01-20 22:45:04,1,3.4,,,-74.0029525756836,40.7233772277832,-73.94874572753906,40.71555709838867,1,N,1,13.5,0.5,0.5,0.3,2.95,0.0,17.75 +2,2016-01-12 17:10:53,2016-01-12 17:16:26,1,1.04,,,-73.96147918701172,40.77431106567383,-73.95450592041016,40.78669357299805,1,N,1,6.0,1.0,0.5,0.3,1.2,0.0,9.0 +2,2016-01-11 07:30:59,2016-01-11 07:47:05,5,9.14,,,-73.97045135498047,40.75938034057617,-73.87052154541016,40.77360916137695,1,N,1,25.5,0.0,0.5,0.3,6.37,5.54,38.21 +2,2016-01-22 10:01:28,2016-01-22 10:20:38,1,2.1,,,-73.99224090576172,40.76918029785156,-73.97917938232422,40.75080871582031,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-22 18:13:01,2016-01-22 18:31:00,1,3.47,,,-73.99136352539062,40.74972152709961,-73.95342254638672,40.776878356933594,1,N,1,14.0,1.0,0.5,0.3,0.0,0.0,15.8 +1,2016-01-07 11:02:04,2016-01-07 11:08:18,1,0.8,,,-73.96918487548828,40.762813568115234,-73.9772720336914,40.75462341308594,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-18 09:36:42,2016-01-18 09:57:51,1,8.19,,,-73.8631820678711,40.76953125,-73.92961883544922,40.70286178588867,1,N,1,25.5,0.0,0.5,0.3,4.0,0.0,30.3 +2,2016-01-30 13:29:22,2016-01-30 13:42:26,1,2.7,,,-73.98844146728516,40.7486572265625,-73.95851135253906,40.76875305175781,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-28 09:03:31,2016-01-28 09:10:16,1,0.93,,,-73.96968841552734,40.8001708984375,-73.97805786132812,40.788578033447266,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-16 17:31:58,2016-01-16 18:00:27,1,4.66,,,-73.99146270751953,40.73040771484375,-73.96517944335938,40.674068450927734,1,N,1,21.0,0.0,0.5,0.3,4.0,0.0,25.8 +1,2016-01-05 18:45:48,2016-01-05 18:52:01,3,0.7,,,-73.97631072998047,40.75395965576172,-73.974365234375,40.75886154174805,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-29 23:45:49,2016-01-30 00:09:25,2,9.46,,,-73.87457275390625,40.77412033081055,-73.99231719970703,40.745201110839844,1,N,1,28.0,0.5,0.5,0.3,4.0,5.54,38.84 +2,2016-01-10 05:11:46,2016-01-10 05:14:29,6,0.24,,,-73.9834213256836,40.76279067993164,-73.98385620117188,40.758941650390625,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,4.8 +2,2016-01-28 08:26:05,2016-01-28 08:52:11,1,4.39,,,-73.98200988769531,40.691261291503906,-73.98686218261719,40.74879837036133,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,20.8 +2,2016-01-17 10:51:19,2016-01-17 10:54:19,2,0.75,,,-73.98975372314453,40.756351470947266,-73.98175811767578,40.76210021972656,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +1,2016-01-02 06:41:51,2016-01-02 06:48:56,1,1.9,,,-73.97833251953125,40.7456169128418,-73.98387145996094,40.76451110839844,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-09 16:02:21,2016-01-09 16:09:26,2,1.09,,,-74.00228118896484,40.75184631347656,-74.00731658935547,40.74109649658203,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-14 10:33:59,2016-01-14 10:38:39,1,0.5,,,-73.96488189697266,40.764137268066406,-73.96995544433594,40.75861358642578,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +1,2016-01-22 19:07:35,2016-01-22 19:23:10,1,3.0,,,-73.97174072265625,40.75801086425781,-73.97318267822266,40.789798736572266,1,N,1,13.5,1.0,0.5,0.3,3.05,0.0,18.35 +2,2016-01-13 17:55:37,2016-01-13 18:13:03,1,4.63,,,-73.78196716308594,40.64466857910156,-73.79666137695312,40.66828918457031,1,N,2,17.5,1.0,0.5,0.3,0.0,0.0,19.3 +2,2016-01-21 12:29:55,2016-01-21 12:48:20,5,1.28,,,-73.97720336914062,40.74702453613281,-73.97330474853516,40.760982513427734,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,15.36 +2,2016-01-30 14:20:15,2016-01-30 14:49:41,1,7.09,,,-73.96800231933594,40.797035217285156,-73.9833755493164,40.73158645629883,1,N,2,26.0,0.0,0.5,0.3,0.0,0.0,26.8 +2,2016-01-01 13:07:00,2016-01-01 13:10:36,2,0.74,,,-73.97746276855469,40.68429183959961,-73.98660278320312,40.69097900390625,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-18 04:57:18,2016-01-18 05:14:00,1,7.68,,,-73.95850372314453,40.76435852050781,-73.87808990478516,40.82801055908203,1,N,2,23.5,0.5,0.5,0.3,0.0,0.0,24.8 +2,2016-01-15 19:02:18,2016-01-15 19:09:59,1,0.84,,,-73.9815444946289,40.72211837768555,-73.99485778808594,40.727935791015625,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,9.96 +1,2016-01-22 04:22:29,2016-01-22 04:32:55,1,3.7,,,-73.95966339111328,40.79859924316406,-73.98001861572266,40.75565719604492,1,N,1,12.5,0.5,0.5,0.3,0.0,0.0,13.8 +2,2016-01-07 20:42:40,2016-01-07 20:57:36,1,2.75,,,-73.96967315673828,40.76034164428711,-73.99210357666016,40.72576141357422,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,16.56 +1,2016-01-20 18:49:25,2016-01-20 19:03:22,1,2.5,,,-73.97454833984375,40.79072952270508,-73.96888732910156,40.76456832885742,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-30 16:31:31,2016-01-30 16:35:06,1,0.51,,,-74.0015869140625,40.75080108642578,-73.99429321289062,40.750938415527344,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-18 13:51:45,2016-01-18 13:57:03,2,1.1,,,-73.9734878540039,40.77976608276367,-73.98055267333984,40.7675666809082,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-07 09:57:04,2016-01-07 10:02:31,2,1.36,,,-73.9610595703125,40.77473068237305,-73.97657012939453,40.77647018432617,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-22 08:14:11,2016-01-22 08:25:00,1,0.6,,,-73.99104309082031,40.75022506713867,-73.98357391357422,40.74453353881836,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-21 14:23:28,2016-01-21 14:34:02,1,1.61,,,-73.9810791015625,40.75994110107422,-73.97855377197266,40.77732849121094,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-30 15:01:00,2016-01-30 15:44:46,2,18.7,,,-73.79006958007812,40.64372253417969,-73.98100280761719,40.76367950439453,2,N,1,52.0,0.0,0.5,0.3,11.65,5.54,69.99 +1,2016-01-01 16:20:12,2016-01-01 16:24:18,2,0.5,,,-73.98236846923828,40.77457046508789,-73.9890365600586,40.777137756347656,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-05 08:51:20,2016-01-05 09:06:58,5,6.23,,,-73.95301055908203,40.765716552734375,-74.01024627685547,40.70204544067383,1,N,1,21.0,0.0,0.5,0.3,5.45,0.0,27.25 +1,2016-01-14 17:28:52,2016-01-14 17:28:52,1,0.0,,,-73.99246978759766,40.75869369506836,0.0,0.0,1,N,2,13.5,1.0,0.5,0.3,0.0,0.0,15.3 +2,2016-01-27 02:45:44,2016-01-27 03:26:08,1,11.01,,,-73.9996566772461,40.73392105102539,-73.94512176513672,40.62751007080078,1,N,1,33.5,0.5,0.5,0.3,8.7,0.0,43.5 +2,2016-01-12 01:35:32,2016-01-12 01:43:29,1,3.81,,,-73.86549377441406,40.770729064941406,-73.90325164794922,40.74578857421875,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +1,2016-01-21 10:28:07,2016-01-21 10:38:29,1,1.0,,,-73.99869537353516,40.73381042480469,-73.99227142333984,40.726566314697266,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-26 19:14:57,2016-01-26 19:31:29,1,1.5,,,0.0,0.0,0.0,0.0,1,N,1,11.0,1.0,0.5,0.3,2.55,0.0,15.35 +2,2016-01-05 10:05:57,2016-01-05 10:12:18,1,0.76,,,-73.96550750732422,40.765289306640625,-73.95411682128906,40.76396942138672,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-29 07:40:33,2016-01-29 07:53:25,3,1.4,,,-73.95755767822266,40.779563903808594,-73.96560668945312,40.79043960571289,1,N,1,10.0,0.0,0.5,0.3,1.2,0.0,12.0 +1,2016-01-10 12:40:54,2016-01-10 13:05:33,1,9.9,,,0.0,0.0,0.0,0.0,1,N,1,30.5,0.0,0.5,0.3,7.35,5.54,44.19 +1,2016-01-14 05:09:16,2016-01-14 05:37:29,1,13.0,,,-73.97863006591797,40.75009536743164,-73.87297058105469,40.77442932128906,1,N,1,38.0,0.5,0.5,0.3,11.75,0.0,51.05 +1,2016-01-19 13:46:36,2016-01-19 13:52:37,1,1.0,,,-73.95741271972656,40.774436950683594,-73.947265625,40.78175735473633,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-15 22:47:06,2016-01-15 23:05:54,1,2.2,,,-73.9939956665039,40.74640655517578,-73.98810577392578,40.72393035888672,1,N,1,13.0,0.5,0.5,0.3,2.85,0.0,17.15 +1,2016-01-05 08:35:15,2016-01-05 08:55:36,1,1.7,,,-73.95185852050781,40.76940155029297,-73.9700927734375,40.76245880126953,1,N,1,13.0,0.0,0.5,0.3,2.2,0.0,16.0 +1,2016-01-14 04:29:52,2016-01-14 04:37:34,1,2.4,,,-73.99678039550781,40.66173553466797,-74.02424621582031,40.632755279541016,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +2,2016-01-06 08:04:18,2016-01-06 08:14:54,2,1.0,,,-73.96640014648438,40.765689849853516,-73.95538330078125,40.766231536865234,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-06 20:44:57,2016-01-06 20:51:04,2,0.8,,,-73.99266815185547,40.712677001953125,-74.00464630126953,40.7099723815918,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-06 15:47:40,2016-01-06 16:01:33,1,2.1,,,-73.9726333618164,40.764793395996094,-73.99488067626953,40.74543380737305,1,N,1,10.5,0.0,0.5,0.3,2.82,0.0,14.12 +2,2016-01-18 01:11:11,2016-01-18 01:33:25,2,8.42,,,-73.9780044555664,40.72917556762695,-73.94175720214844,40.828163146972656,1,N,1,27.0,0.5,0.5,0.3,5.66,0.0,33.96 +2,2016-01-08 08:47:53,2016-01-08 09:01:01,2,2.0,,,-73.97998809814453,40.743309020996094,-73.96675872802734,40.7672004699707,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +2,2016-01-10 10:08:01,2016-01-10 10:16:21,1,1.73,,,-73.97208404541016,40.794212341308594,-73.94886779785156,40.78247833251953,1,N,1,8.0,0.0,0.5,0.3,1.2,0.0,10.0 +1,2016-01-13 20:57:24,2016-01-13 21:15:09,1,3.6,,,-73.98922729492188,40.7485466003418,-73.95063018798828,40.78327941894531,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,16.3 +1,2016-01-21 18:33:39,2016-01-21 19:12:39,1,5.3,,,-73.9850845336914,40.753841400146484,-73.99476623535156,40.70376968383789,1,N,1,24.5,1.0,0.5,0.3,6.55,0.0,32.85 +2,2016-01-30 18:58:33,2016-01-30 19:09:24,1,2.06,,,-73.98973846435547,40.74726104736328,-73.9826889038086,40.771636962890625,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-07 20:42:11,2016-01-07 20:45:26,1,0.78,,,-73.96707153320312,40.803855895996094,-73.9610824584961,40.79680252075195,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-10 11:39:31,2016-01-10 12:02:49,1,7.48,,,-73.93956756591797,40.75141906738281,-74.00137329101562,40.687870025634766,1,N,1,25.0,0.0,0.5,0.3,5.16,0.0,30.96 +1,2016-01-26 23:27:04,2016-01-26 23:34:08,2,0.9,,,-73.98082733154297,40.755191802978516,-73.9666976928711,40.75294494628906,1,N,1,6.5,0.5,0.5,0.3,1.95,0.0,9.75 +1,2016-01-03 23:42:45,2016-01-03 23:50:10,4,1.6,,,-73.99015045166016,40.73775863647461,-74.00575256347656,40.72560119628906,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-24 20:50:04,2016-01-24 20:57:14,1,1.45,,,-73.99253845214844,40.73738098144531,-73.98345184326172,40.75130844116211,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +2,2016-01-27 10:41:05,2016-01-27 10:52:11,4,1.03,,,-73.99452209472656,40.740516662597656,-73.98169708251953,40.73820114135742,1,N,1,8.0,0.0,0.5,0.3,2.0,0.0,10.8 +2,2016-01-16 00:21:23,2016-01-16 00:27:44,1,0.7,,,-73.9876480102539,40.719608306884766,-73.9815902709961,40.728599548339844,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +1,2016-01-09 14:27:04,2016-01-09 14:43:24,1,3.0,,,-73.9578857421875,40.773597717285156,-73.98744201660156,40.74394989013672,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,17.15 +2,2016-01-04 11:22:37,2016-01-04 11:40:07,1,8.92,,,-73.955078125,40.769248962402344,-73.86192321777344,40.768470764160156,1,N,1,25.5,0.0,0.5,0.3,0.0,5.54,31.84 +1,2016-01-29 07:12:34,2016-01-29 07:24:22,1,2.2,,,-73.9914321899414,40.738525390625,-73.96957397460938,40.762359619140625,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-18 19:11:39,2016-01-18 19:19:53,1,1.6,,,-73.9957504272461,40.759315490722656,-73.9730224609375,40.76137161254883,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-12 19:17:41,2016-01-12 19:19:23,1,0.5,,,0.0,0.0,-73.94894409179688,40.8150634765625,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-11 10:16:04,2016-01-11 10:31:59,1,2.38,,,-73.94818115234375,40.782718658447266,-73.97416687011719,40.76250076293945,1,N,1,12.0,0.0,0.5,0.3,1.2,0.0,14.0 +1,2016-01-11 04:47:31,2016-01-11 05:03:52,1,8.3,,,-73.95127868652344,40.774322509765625,-74.01392364501953,40.71471405029297,1,N,1,25.0,0.5,0.5,0.3,2.0,0.0,28.3 +2,2016-01-16 19:03:56,2016-01-16 19:16:09,1,1.88,,,-73.98754119873047,40.72541046142578,-73.9800796508789,40.74602127075195,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,11.8 +1,2016-01-06 19:31:51,2016-01-06 19:48:46,1,2.2,,,-73.96922302246094,40.7652473449707,-73.9840316772461,40.76294708251953,1,N,2,12.0,1.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-06 12:45:21,2016-01-06 12:53:23,1,2.06,,,-73.96124267578125,40.76485824584961,-73.97447967529297,40.744239807128906,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +2,2016-01-20 14:10:54,2016-01-20 14:15:10,1,0.61,,,-73.95268249511719,40.778316497802734,-73.9460678100586,40.77324295043945,1,N,1,5.0,0.0,0.5,0.3,1.2,0.0,7.0 +1,2016-01-27 10:17:04,2016-01-27 10:21:36,1,0.8,,,-74.00544738769531,40.736751556396484,-74.01123046875,40.728939056396484,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-15 14:54:39,2016-01-15 15:12:07,1,4.06,,,-73.96736145019531,40.763458251953125,-73.97772979736328,40.71294021606445,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +1,2016-01-03 02:49:23,2016-01-03 03:08:39,1,4.8,,,-74.0012435913086,40.74152374267578,-73.95884704589844,40.800071716308594,1,N,1,17.5,0.5,0.5,0.3,3.2,0.0,22.0 +2,2016-01-20 22:02:47,2016-01-20 22:17:09,1,2.18,,,-73.98882293701172,40.73659896850586,-73.99388122558594,40.758941650390625,1,N,1,11.5,0.5,0.5,0.3,1.0,0.0,13.8 +2,2016-01-21 06:38:19,2016-01-21 06:50:24,3,2.69,,,-74.00202941894531,40.74052810668945,-74.01412200927734,40.71384048461914,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,14.76 +1,2016-01-22 19:10:57,2016-01-22 19:32:37,1,3.1,,,-73.96648406982422,40.7732048034668,-73.99970245361328,40.742576599121094,1,N,1,15.5,1.0,0.5,0.3,3.45,0.0,20.75 +1,2016-01-30 23:37:15,2016-01-30 23:47:34,1,2.1,,,-73.9574966430664,40.770145416259766,-73.9653549194336,40.79108428955078,1,N,1,10.0,0.5,0.5,0.3,1.0,0.0,12.3 +1,2016-01-22 09:27:39,2016-01-22 09:40:59,1,1.7,,,-73.99239349365234,40.749149322509766,-74.00721740722656,40.72726058959961,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,11.8 +1,2016-01-09 16:57:24,2016-01-09 17:01:12,1,0.7,,,-73.94844818115234,40.77399444580078,-73.95790100097656,40.77281951904297,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-07 15:37:41,2016-01-07 15:42:32,2,0.5,,,-73.95589447021484,40.78179931640625,-73.94717407226562,40.77979278564453,1,N,1,5.0,0.0,0.5,0.3,1.2,0.0,7.0 +2,2016-01-10 00:29:36,2016-01-10 00:39:56,1,1.61,,,-74.00446319580078,40.74776077270508,-73.9804458618164,40.74275207519531,1,N,1,9.0,0.5,0.5,0.3,2.0,0.0,12.3 +2,2016-01-13 07:19:06,2016-01-13 07:33:35,6,3.03,,,-73.97979736328125,40.74346160888672,-74.00450134277344,40.71392059326172,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-12 14:43:41,2016-01-12 14:57:52,2,1.9,,,-73.98485565185547,40.74515151977539,-74.00885772705078,40.739479064941406,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +1,2016-01-28 19:29:58,2016-01-28 19:56:46,1,4.3,,,-73.99027252197266,40.74099349975586,-73.95237731933594,40.78315353393555,1,N,1,19.0,1.0,0.5,0.3,4.15,0.0,24.95 +1,2016-01-30 15:37:35,2016-01-30 15:53:31,1,2.5,,,-73.97296142578125,40.78056335449219,-73.95262145996094,40.76898956298828,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-05 07:33:58,2016-01-05 07:47:49,1,3.3,,,-74.01377868652344,40.708499908447266,-74.00028228759766,40.747703552246094,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,15.95 +2,2016-01-11 16:07:47,2016-01-11 16:12:12,1,0.94,,,-73.9970932006836,40.72245788574219,-73.98713684082031,40.72992706298828,1,N,1,5.0,1.0,0.5,0.3,1.7,0.0,8.5 +1,2016-01-17 01:14:20,2016-01-17 01:19:48,1,1.4,,,-74.00505065917969,40.740787506103516,-73.99091339111328,40.75595474243164,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-07 18:24:17,2016-01-07 19:16:10,1,17.09,,,-73.78993225097656,40.64744186401367,-73.98899841308594,40.758399963378906,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-18 08:36:59,2016-01-18 08:41:56,6,1.15,,,-73.98493957519531,40.77391052246094,-73.97172546386719,40.76603698730469,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-11 07:40:42,2016-01-11 08:14:00,1,12.2,,,-73.8637924194336,40.7696647644043,-73.98704528808594,40.756221771240234,1,N,1,36.5,0.0,0.5,0.3,10.7,5.54,53.54 +2,2016-01-06 16:08:29,2016-01-06 16:36:39,1,9.69,,,-73.98338317871094,40.76087188720703,-73.873779296875,40.77268981933594,1,N,2,29.5,1.0,0.5,0.3,0.0,5.54,36.84 +1,2016-01-20 18:34:45,2016-01-20 18:46:43,1,1.3,,,-74.00344848632812,40.72676467895508,-74.00779724121094,40.7429084777832,1,N,1,9.0,1.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-26 09:27:38,2016-01-26 09:47:29,1,1.6,,,-73.99156951904297,40.74482727050781,-73.97211456298828,40.75472640991211,1,N,1,12.5,0.0,0.5,0.3,1.5,0.0,14.8 +1,2016-01-21 16:45:02,2016-01-21 17:08:03,1,2.4,,,-73.95899963378906,40.78342056274414,-73.97631072998047,40.75438690185547,1,N,1,15.5,1.0,0.5,0.3,1.75,0.0,19.05 +2,2016-01-14 08:18:18,2016-01-14 08:37:30,1,3.32,,,-73.97042846679688,40.78900146484375,-74.0013427734375,40.74660110473633,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +2,2016-01-07 11:43:37,2016-01-07 11:52:58,1,0.81,,,-73.96063995361328,40.77324676513672,-73.94869995117188,40.77154541015625,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-18 19:06:00,2016-01-18 19:09:42,1,1.12,,,-73.9590072631836,40.76350021362305,-73.94905090332031,40.7774772644043,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-03 10:36:41,2016-01-03 10:46:05,1,2.5,,,-73.99507141113281,40.73957824707031,-73.9871826171875,40.768577575683594,1,N,1,10.0,0.0,0.5,0.3,2.0,0.0,12.8 +1,2016-01-19 19:52:08,2016-01-19 19:58:10,1,0.9,,,-73.99589538574219,40.74422836303711,-73.98188781738281,40.743953704833984,1,N,1,6.0,1.0,0.5,0.3,1.55,0.0,9.35 +2,2016-01-14 10:09:26,2016-01-14 10:29:20,1,5.92,,,-73.9764175415039,40.74803924560547,-73.93636322021484,40.81227111816406,1,N,1,21.0,0.0,0.5,0.3,2.0,0.0,23.8 +1,2016-01-14 09:56:44,2016-01-14 10:17:49,1,2.4,,,-73.96588897705078,40.75864028930664,-73.97318267822266,40.77977752685547,1,N,1,14.5,0.0,0.5,0.3,2.5,0.0,17.8 +1,2016-01-04 14:49:28,2016-01-04 15:02:26,1,2.5,,,-73.96337890625,40.77191162109375,-73.98823547363281,40.743553161621094,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-03 13:17:49,2016-01-03 13:20:49,1,0.7,,,-73.95629119873047,40.778045654296875,-73.95752716064453,40.77102279663086,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-17 19:17:49,2016-01-17 19:32:01,1,2.5,,,-73.98848724365234,40.718719482421875,-73.98821258544922,40.74578094482422,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,14.75 +2,2016-01-10 02:21:12,2016-01-10 02:28:38,4,2.38,,,-73.97969818115234,40.783687591552734,-73.95945739746094,40.763511657714844,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +1,2016-01-15 22:03:23,2016-01-15 22:14:18,1,1.7,,,-73.97032165527344,40.69025802612305,-73.99394226074219,40.69926834106445,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +2,2016-01-19 14:53:01,2016-01-19 15:21:11,2,4.89,,,-73.86346435546875,40.77001953125,-73.92861938476562,40.75210189819336,1,N,2,22.0,0.0,0.5,0.3,0.0,0.0,22.8 +1,2016-01-16 18:21:06,2016-01-16 18:37:29,2,2.4,,,-74.01485443115234,40.70951461791992,-73.99456024169922,40.7319221496582,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-07 11:31:04,2016-01-07 11:47:39,1,1.9,,,-73.95758056640625,40.7653694152832,-73.97557830810547,40.751644134521484,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-14 17:04:47,2016-01-14 17:08:59,1,0.8,,,-73.99722290039062,40.721954345703125,-74.00238800048828,40.7291259765625,1,N,1,5.0,1.0,0.5,0.3,2.04,0.0,8.84 +1,2016-01-10 13:32:14,2016-01-10 13:42:41,1,1.9,,,-73.95804595947266,40.78181838989258,-73.98123168945312,40.780242919921875,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-19 09:03:26,2016-01-19 09:28:58,2,3.17,,,-74.00611877441406,40.71717071533203,-73.98138427734375,40.75874710083008,1,N,1,17.0,0.0,0.5,0.3,2.0,0.0,19.8 +1,2016-01-16 07:01:55,2016-01-16 07:04:47,1,0.5,,,-73.96407318115234,40.76737594604492,-73.96195983886719,40.773780822753906,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,6.3 +1,2016-01-05 00:06:41,2016-01-05 00:40:34,1,20.1,,,-73.78996276855469,40.64396667480469,-74.00141906738281,40.73914337158203,2,N,1,52.0,0.0,0.5,0.3,10.55,0.0,63.35 +2,2016-01-30 04:05:39,2016-01-30 04:12:29,5,1.51,,,-73.91295623779297,40.700538635253906,-73.93614196777344,40.70214080810547,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-17 02:09:32,2016-01-17 02:25:21,1,2.0,,,-74.00559997558594,40.73822021484375,-73.99121856689453,40.719329833984375,1,N,1,11.5,0.5,0.5,0.3,2.0,0.0,14.8 +2,2016-01-27 09:33:44,2016-01-27 09:40:21,1,0.81,,,-73.96314239501953,40.767539978027344,-73.953857421875,40.77288818359375,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +2,2016-01-04 10:31:41,2016-01-04 10:40:42,3,0.98,,,-73.97663879394531,40.74782180786133,-73.99060821533203,40.75531005859375,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-08 08:36:07,2016-01-08 08:43:15,6,1.15,,,-73.98361206054688,40.755821228027344,-73.97010803222656,40.76341247558594,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-20 00:40:20,2016-01-20 00:45:36,1,0.8,,,-73.99478149414062,40.72148132324219,-74.00516510009766,40.72390365600586,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,8.15 +2,2016-01-06 11:07:35,2016-01-06 11:27:07,5,1.47,,,-73.97444915771484,40.74692153930664,-73.98845672607422,40.7589111328125,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-20 18:34:19,2016-01-20 18:40:35,1,0.3,,,-73.98682403564453,40.742740631103516,-73.984375,40.74599075317383,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-29 06:48:12,2016-01-29 06:52:58,1,0.7,,,-73.99139404296875,40.75025177001953,-73.9869155883789,40.74285888671875,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +2,2016-01-11 14:49:57,2016-01-11 15:09:33,1,2.58,,,-73.95924377441406,40.77754592895508,-73.96277618408203,40.755699157714844,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +2,2016-01-26 12:29:23,2016-01-26 12:47:53,4,4.08,,,-74.00859832763672,40.704078674316406,-73.97578430175781,40.74070739746094,1,N,1,17.0,0.0,0.5,0.3,3.0,0.0,20.8 +1,2016-01-17 02:24:28,2016-01-17 02:28:56,1,0.8,,,-73.99832916259766,40.73301696777344,-74.00115966796875,40.73938751220703,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,7.3 +2,2016-01-26 20:02:07,2016-01-26 20:10:47,1,0.8,,,-73.96002197265625,40.76679992675781,-73.9681625366211,40.759037017822266,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-07 22:43:52,2016-01-07 22:48:31,1,2.0,,,-73.99439239501953,40.761009216308594,-73.97553253173828,40.78702163696289,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +2,2016-01-29 20:16:13,2016-01-29 20:23:44,1,0.91,,,-73.97621154785156,40.7590217590332,-73.98502349853516,40.74739074707031,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-24 10:43:50,2016-01-24 11:01:53,1,3.15,,,-73.99826049804688,40.73548889160156,-74.00094604492188,40.758056640625,1,N,1,13.5,0.0,0.5,0.3,1.0,0.0,15.3 +1,2016-01-24 20:05:15,2016-01-24 20:14:41,1,1.9,,,-73.95925903320312,40.76752471923828,-73.9773178100586,40.74673080444336,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +1,2016-01-03 18:06:06,2016-01-03 18:19:19,1,2.7,,,-73.9950180053711,40.7231330871582,-73.9698486328125,40.749847412109375,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,14.75 +2,2016-01-26 20:23:57,2016-01-26 20:34:08,1,1.13,,,-73.97042846679688,40.76517868041992,-73.98143768310547,40.7579345703125,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +1,2016-01-21 11:10:55,2016-01-21 11:24:52,1,1.1,,,-73.98257446289062,40.75606155395508,-73.968017578125,40.75565719604492,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-17 21:45:22,2016-01-17 22:07:13,1,7.28,,,-73.98967742919922,40.71406555175781,-73.9678955078125,40.787139892578125,1,N,2,23.5,0.5,0.5,0.3,0.0,0.0,24.8 +1,2016-01-24 09:47:09,2016-01-24 09:54:20,1,1.8,,,-73.99288177490234,40.74782180786133,-73.98967742919922,40.76762771606445,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-24 18:51:33,2016-01-24 18:59:09,2,0.92,,,-73.98912048339844,40.763301849365234,-73.98844146728516,40.75410079956055,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-14 17:13:59,2016-01-14 17:18:56,2,0.7,,,-73.98627471923828,40.76102828979492,-73.97975158691406,40.75485610961914,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-21 15:52:03,2016-01-21 16:01:53,2,0.86,,,-73.96646118164062,40.773746490478516,-73.97465515136719,40.762142181396484,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-13 10:12:22,2016-01-13 10:19:48,1,0.6,,,-74.0108413696289,40.71200180053711,-74.00299072265625,40.71724319458008,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-28 11:26:37,2016-01-28 11:35:27,2,0.6,,,-73.97502899169922,40.765140533447266,-73.97748565673828,40.75813293457031,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-30 18:37:29,2016-01-30 18:43:12,1,0.8,,,-73.98590087890625,40.76290512084961,-73.97305297851562,40.76036071777344,1,N,1,5.5,0.0,0.5,0.3,1.85,0.0,8.15 +1,2016-01-07 21:17:34,2016-01-07 21:37:15,1,4.1,,,-73.99581909179688,40.73868179321289,-73.9519271850586,40.77829360961914,1,N,1,17.0,0.5,0.5,0.3,2.7,0.0,21.0 +2,2016-01-09 15:43:13,2016-01-09 15:59:36,1,2.82,,,-73.96674346923828,40.764251708984375,-73.97998046875,40.734989166259766,1,N,1,13.0,0.0,0.5,0.3,3.45,0.0,17.25 +1,2016-01-14 06:14:21,2016-01-14 06:19:27,1,1.3,,,-73.99156951904297,40.74869155883789,-73.97653198242188,40.75486755371094,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-09 00:38:36,2016-01-09 00:55:04,4,3.9,,,-73.99212646484375,40.725189208984375,-73.95866394042969,40.76816940307617,1,N,1,14.0,0.5,0.5,0.3,3.05,0.0,18.35 +2,2016-01-16 14:34:52,2016-01-16 14:45:04,1,1.99,,,-73.98302459716797,40.77174377441406,-73.96485137939453,40.755802154541016,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-29 17:59:22,2016-01-29 18:07:10,1,1.35,,,-73.95642852783203,40.76726150512695,-73.955810546875,40.78139114379883,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-11 14:13:47,2016-01-11 14:31:58,1,2.03,,,-73.98590850830078,40.7447509765625,-74.00562286376953,40.72682189941406,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-18 17:23:34,2016-01-18 17:29:20,1,0.95,,,-73.99203491210938,40.75925827026367,-74.00081634521484,40.747291564941406,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-16 13:13:12,2016-01-16 13:15:37,2,0.5,,,-74.00160217285156,40.746551513671875,-73.99365997314453,40.743186950683594,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,5.76 +1,2016-01-13 19:30:31,2016-01-13 19:42:51,1,2.7,,,-73.96834564208984,40.7618408203125,-73.98933410644531,40.73004150390625,1,N,1,11.0,1.0,0.5,0.3,1.0,0.0,13.8 +2,2016-01-30 00:31:14,2016-01-30 00:39:35,5,1.74,,,-73.97169494628906,40.76424789428711,-73.95621490478516,40.781219482421875,1,N,1,8.5,0.5,0.5,0.3,1.5,0.0,11.3 +2,2016-01-09 20:53:50,2016-01-09 21:02:49,1,0.69,,,-73.99461364746094,40.7247314453125,-74.00323486328125,40.72409439086914,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-11 16:40:19,2016-01-11 16:49:01,1,1.2,,,-73.98524475097656,40.74187469482422,-73.99462127685547,40.750335693359375,1,N,1,7.5,1.0,0.5,0.3,1.85,0.0,11.15 +2,2016-01-13 02:44:57,2016-01-13 02:58:20,6,3.3,,,-73.98357391357422,40.72596740722656,-73.9571762084961,40.7164306640625,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +1,2016-01-12 21:50:11,2016-01-12 22:03:16,1,7.7,,,-73.78179168701172,40.644752502441406,-73.73456573486328,40.68363571166992,1,N,1,22.5,0.5,0.5,0.3,0.0,0.0,23.8 +2,2016-01-12 21:31:24,2016-01-12 21:36:19,1,1.36,,,-73.9573974609375,40.773719787597656,-73.97232818603516,40.78575897216797,1,N,1,6.0,0.5,0.5,0.3,1.82,0.0,9.12 +2,2016-01-30 18:22:30,2016-01-30 18:33:51,2,1.63,,,-73.98724365234375,40.73257827758789,-73.97216033935547,40.747318267822266,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-22 18:41:13,2016-01-22 18:46:29,1,1.2,,,-73.98828125,40.77918243408203,-73.97628021240234,40.78750991821289,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-26 08:10:43,2016-01-26 08:20:55,3,0.7,,,-73.99342346191406,40.7361946105957,-73.98277282714844,40.736385345458984,1,N,1,7.5,0.0,0.5,0.3,2.45,0.0,10.75 +2,2016-01-24 15:54:08,2016-01-24 16:58:18,5,8.78,,,-74.0,40.727088928222656,-73.8931884765625,40.74748992919922,1,N,2,31.5,0.0,0.5,0.3,0.0,0.0,32.3 +1,2016-01-13 18:34:52,2016-01-13 18:46:35,1,1.7,,,-73.97541809082031,40.75251007080078,-73.97344970703125,40.7381591796875,1,N,1,9.5,1.0,0.5,0.3,4.5,0.0,15.8 +1,2016-01-21 07:27:02,2016-01-21 07:31:33,1,1.1,,,-73.95863342285156,40.77496337890625,-73.96935272216797,40.760379791259766,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-30 20:28:31,2016-01-30 20:47:01,3,3.41,,,-74.0064926147461,40.73250961303711,-73.9820785522461,40.76369857788086,1,N,1,14.5,0.5,0.5,0.3,3.16,0.0,18.96 +1,2016-01-09 22:46:52,2016-01-09 23:03:20,1,1.5,,,-73.97928619384766,40.73983383178711,-73.99181365966797,40.722286224365234,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +2,2016-01-12 15:36:47,2016-01-12 15:45:59,5,0.87,,,-73.96875,40.76148986816406,-73.98294830322266,40.76681900024414,1,N,1,7.5,0.0,0.5,0.3,2.08,0.0,10.38 +2,2016-01-14 20:14:54,2016-01-14 20:22:05,1,0.66,,,-73.97582244873047,40.75947189331055,-73.97489929199219,40.75310516357422,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +1,2016-01-23 01:09:49,2016-01-23 01:30:39,1,3.9,,,-73.98741149902344,40.76580047607422,-74.00556945800781,40.725650787353516,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,17.3 +2,2016-01-22 18:14:54,2016-01-22 18:38:23,1,7.1,,,-73.9659423828125,40.770851135253906,-74.0086898803711,40.71059799194336,1,N,1,23.5,1.0,0.5,0.3,5.06,0.0,30.36 +1,2016-01-21 12:46:33,2016-01-21 12:58:58,2,1.1,,,-73.96394348144531,40.77663040161133,-73.97415924072266,40.76258850097656,1,N,1,9.0,0.0,0.5,0.3,4.0,0.0,13.8 +2,2016-01-28 11:02:27,2016-01-28 11:14:57,1,1.45,,,-73.99120330810547,40.73921585083008,-74.00541687011719,40.72779083251953,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-11 06:43:42,2016-01-11 06:49:51,1,2.0,,,-73.9624252319336,40.799827575683594,-73.98011779785156,40.78014373779297,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-21 18:54:23,2016-01-21 19:07:06,1,1.2,,,-73.98979949951172,40.735164642333984,-73.98271942138672,40.72304916381836,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-26 15:38:38,2016-01-26 15:57:15,5,1.49,,,-73.95720672607422,40.783531188964844,-73.96923828125,40.76662063598633,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-02 01:38:35,2016-01-02 01:44:02,1,1.32,,,-73.98997497558594,40.75735092163086,-73.9848403930664,40.7685546875,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-07 14:14:36,2016-01-07 14:38:26,2,3.8,,,-73.96751403808594,40.76921081542969,-74.0068130493164,40.74151611328125,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,18.3 +1,2016-01-21 18:36:24,2016-01-21 18:47:33,1,2.1,,,-73.99605560302734,40.763145446777344,-73.97955322265625,40.78662109375,1,N,1,9.5,1.0,0.5,0.3,2.25,0.0,13.55 +1,2016-01-06 23:26:48,2016-01-06 23:30:51,1,1.0,,,-73.95502471923828,40.773193359375,-73.95728302001953,40.782920837402344,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +2,2016-01-22 19:15:49,2016-01-22 19:20:02,1,0.48,,,-73.98483276367188,40.768489837646484,-73.98314666748047,40.76306915283203,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-16 00:41:05,2016-01-16 01:13:54,4,12.29,,,-73.98761749267578,40.73752975463867,-74.03447723388672,40.622398376464844,1,N,1,38.0,0.5,0.5,0.3,9.82,0.0,49.12 +2,2016-01-21 19:10:28,2016-01-21 19:18:32,1,0.77,,,-73.97772979736328,40.7463493347168,-73.99037170410156,40.75136184692383,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-21 18:49:44,2016-01-21 19:01:34,1,1.14,,,-73.97817993164062,40.748355865478516,-73.97876739501953,40.75840377807617,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-21 23:23:41,2016-01-21 23:34:10,3,1.8,,,-73.98311614990234,40.76311111450195,-73.9838638305664,40.74361801147461,1,N,1,9.0,0.5,0.5,0.3,3.05,0.0,13.35 +2,2016-01-13 02:48:50,2016-01-13 03:01:41,5,4.13,,,-74.00733184814453,40.728309631347656,-73.98439025878906,40.779701232910156,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,15.3 +1,2016-01-10 18:59:33,2016-01-10 19:55:00,1,18.6,,,-73.78984832763672,40.646385192871094,-73.99176788330078,40.71513748168945,2,N,1,52.0,0.0,0.5,0.3,6.0,0.0,58.8 +1,2016-01-20 17:56:56,2016-01-20 18:10:02,1,1.5,,,-73.9780044555664,40.74576950073242,-73.96984100341797,40.764644622802734,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-22 23:18:34,2016-01-22 23:28:04,2,0.9,,,-73.98110961914062,40.72955322265625,-73.987548828125,40.72177505493164,1,N,1,7.5,0.5,0.5,0.3,2.0,0.0,10.8 +2,2016-01-29 10:57:25,2016-01-29 11:34:00,1,9.51,,,-73.86373138427734,40.76967239379883,-73.99138641357422,40.755645751953125,1,N,1,35.5,0.0,0.5,0.3,5.0,5.54,46.84 +1,2016-01-05 09:56:30,2016-01-05 10:08:16,1,1.5,,,-73.98119354248047,40.77412414550781,-73.97177124023438,40.75975799560547,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-21 20:28:44,2016-01-21 20:46:55,6,1.99,,,-73.97539520263672,40.763099670410156,-73.95147705078125,40.77398681640625,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,16.56 +2,2016-01-07 14:26:24,2016-01-07 14:34:00,4,1.5,,,-73.9604721069336,40.79750061035156,-73.95269775390625,40.783199310302734,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-27 22:54:07,2016-01-27 23:03:51,1,1.8,,,-73.95758819580078,40.78010177612305,-73.97689056396484,40.76484680175781,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +2,2016-01-19 12:13:30,2016-01-19 12:19:27,1,0.81,,,-73.98473358154297,40.73658752441406,-73.98167419433594,40.7292366027832,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +2,2016-01-20 08:03:46,2016-01-20 08:16:09,1,1.61,,,-73.98466491699219,40.74579620361328,-74.00164031982422,40.75645065307617,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-18 14:28:03,2016-01-18 14:39:30,1,2.9,,,-73.97193145751953,40.76568603515625,-73.99884033203125,40.732330322265625,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-21 21:30:11,2016-01-21 21:38:23,1,2.97,,,-74.00939178466797,40.70585250854492,-73.98371887207031,40.72178649902344,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +2,2016-01-08 22:55:49,2016-01-08 23:09:33,2,2.2,,,-73.9920883178711,40.76158142089844,-73.98423767089844,40.74034881591797,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +1,2016-01-22 14:25:10,2016-01-22 14:35:14,3,1.0,,,-74.0013427734375,40.71482849121094,-73.99205780029297,40.72562026977539,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-17 22:47:50,2016-01-17 22:51:49,1,1.01,,,-73.95556640625,40.77265930175781,-73.95836639404297,40.760528564453125,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-07 13:07:41,2016-01-07 13:08:52,1,0.3,,,-73.98086547851562,40.77504348754883,-73.97666931152344,40.775146484375,1,N,1,3.0,0.0,0.5,0.3,0.75,0.0,4.55 +1,2016-01-09 00:47:12,2016-01-09 00:57:14,1,1.3,,,-73.98988342285156,40.72941589355469,-74.00214385986328,40.73003387451172,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,10.8 +1,2016-01-05 09:10:30,2016-01-05 09:22:49,1,1.0,,,-73.98005676269531,40.74324417114258,-73.99121856689453,40.738983154296875,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +2,2016-01-11 21:17:00,2016-01-11 21:21:47,1,1.43,,,-73.9597396850586,40.76782989501953,-73.94465637207031,40.77947998046875,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +2,2016-01-12 17:46:36,2016-01-12 17:48:31,4,0.47,,,-73.95917510986328,40.77235412597656,-73.95628356933594,40.77726364135742,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-18 22:51:52,2016-01-18 22:57:46,1,0.74,,,-73.98876190185547,40.74148178100586,-73.97737884521484,40.738319396972656,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +1,2016-01-30 10:13:23,2016-01-30 10:30:53,1,4.2,,,-74.0041732788086,40.738033294677734,-73.98143005371094,40.78126525878906,1,N,1,17.0,0.0,0.5,0.3,3.55,0.0,21.35 +1,2016-01-09 01:52:55,2016-01-09 02:01:27,1,3.1,,,-73.99137115478516,40.76536560058594,-73.96034240722656,40.80180358886719,1,N,1,10.5,0.5,0.5,0.3,2.95,0.0,14.75 +1,2016-01-01 14:38:49,2016-01-01 14:40:20,1,0.3,,,-74.0078125,40.73225021362305,-74.0065689086914,40.737083435058594,1,N,1,3.0,0.0,0.5,0.3,1.2,0.0,5.0 +2,2016-01-15 19:06:55,2016-01-15 19:07:09,3,0.0,,,-73.96882629394531,40.76433181762695,-73.96894836425781,40.76451873779297,5,N,1,32.8,0.0,0.5,0.3,2.0,5.54,41.14 +1,2016-01-01 18:21:37,2016-01-01 18:34:53,1,4.3,,,-74.00503540039062,40.722923278808594,-73.9617919921875,40.76063919067383,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,15.3 +2,2016-01-15 22:20:33,2016-01-15 23:03:18,1,6.58,,,-73.98916625976562,40.73154830932617,-73.92759704589844,40.77443313598633,1,N,1,30.0,0.5,0.5,0.3,6.26,0.0,37.56 +1,2016-01-03 18:38:13,2016-01-03 18:42:55,1,0.8,,,-74.00108337402344,40.73643112182617,-73.99370574951172,40.72807693481445,1,N,1,5.5,1.0,0.5,0.3,1.45,0.0,8.75 +2,2016-01-30 22:02:31,2016-01-30 22:12:32,1,2.31,,,-74.00930786132812,40.72925567626953,-74.00068664550781,40.75522232055664,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +1,2016-01-13 17:29:16,2016-01-13 17:39:06,1,1.5,,,-73.99085998535156,40.739566802978516,-73.99989318847656,40.72280502319336,1,N,1,8.0,1.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-13 13:55:14,2016-01-13 13:59:18,1,0.5,,,-73.975830078125,40.756004333496094,-73.97042846679688,40.76317596435547,1,N,1,4.5,0.0,0.5,0.3,1.3,0.0,6.6 +1,2016-01-12 20:21:32,2016-01-12 20:35:52,1,2.9,,,-73.9945068359375,40.71908950805664,-74.0077896118164,40.75157928466797,1,N,1,13.0,0.5,0.5,0.3,3.55,0.0,17.85 +2,2016-01-20 18:54:01,2016-01-20 19:00:19,4,1.09,,,-73.99916076660156,40.72476577758789,-74.00606536865234,40.73508834838867,1,N,1,6.0,1.0,0.5,0.3,2.34,0.0,10.14 +2,2016-01-21 17:08:54,2016-01-21 17:12:50,1,0.68,,,-73.95673370361328,40.77794647216797,-73.96289825439453,40.76948547363281,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-27 15:58:22,2016-01-27 16:15:46,1,1.8,,,-73.97335052490234,40.74414825439453,-73.97041320800781,40.7646598815918,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,15.36 +2,2016-01-16 01:41:24,2016-01-16 01:45:20,5,1.35,,,-73.9638671875,40.7678108215332,-73.95726013183594,40.78242111206055,1,N,1,6.0,0.5,0.5,0.3,0.7,0.0,8.0 +1,2016-01-22 23:27:03,2016-01-22 23:56:25,2,6.9,,,-73.99918365478516,40.728118896484375,-73.91397094726562,40.67401123046875,1,N,1,24.5,0.5,0.5,0.3,0.0,0.0,25.8 +2,2016-01-20 09:31:15,2016-01-20 09:57:19,2,2.07,,,-74.00618743896484,40.751060485839844,-73.99578857421875,40.76942825317383,1,N,1,16.5,0.0,0.5,0.3,1.0,0.0,18.3 +1,2016-01-07 19:07:40,2016-01-07 19:43:56,1,9.8,,,-74.00809478759766,40.73816680908203,-73.90807342529297,40.71739196777344,1,N,1,33.0,1.0,0.5,0.3,5.0,0.0,39.8 +2,2016-01-22 20:13:29,2016-01-22 20:26:45,2,2.49,,,-73.95748138427734,40.78550720214844,-73.97311401367188,40.755859375,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,15.36 +1,2016-01-16 09:10:31,2016-01-16 09:17:43,1,1.6,,,-74.00283813476562,40.76047897338867,-73.98035430908203,40.762325286865234,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +1,2016-01-27 23:38:35,2016-01-28 00:04:51,2,19.0,,,-73.78997802734375,40.64677047729492,-73.94818115234375,40.774505615234375,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-17 12:34:38,2016-01-17 13:02:23,2,9.94,,,-73.8635025024414,40.77000045776367,-73.98692321777344,40.76118850708008,1,N,1,32.0,0.0,0.5,0.3,7.67,5.54,46.01 +1,2016-01-04 22:54:19,2016-01-04 23:01:38,1,1.7,,,-73.9712905883789,40.75751876831055,-73.98242950439453,40.736873626708984,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +2,2016-01-22 16:16:53,2016-01-22 16:27:27,1,1.46,,,-73.96363830566406,40.7716178894043,-73.97726440429688,40.75461196899414,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-17 11:58:00,2016-01-17 12:02:11,1,0.8,,,-73.95426177978516,40.81151580810547,-73.95348358154297,40.82207489013672,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-21 16:44:55,2016-01-21 18:01:32,1,15.93,,,-73.91558837890625,40.730751037597656,-73.7833023071289,40.64356231689453,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-27 13:46:17,2016-01-27 13:50:11,1,0.5,,,-74.0052490234375,40.7407112121582,-74.00902557373047,40.7354850769043,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,6.35 +2,2016-01-17 13:16:08,2016-01-17 13:32:01,5,1.96,,,-73.99695587158203,40.74216842651367,-73.98432922363281,40.76444625854492,1,N,1,12.0,0.0,0.5,0.3,1.0,0.0,13.8 +2,2016-01-06 16:24:21,2016-01-06 16:39:28,1,1.58,,,-74.00697326660156,40.73368835449219,-73.9909896850586,40.719268798828125,1,N,1,10.5,1.0,0.5,0.3,2.0,0.0,14.3 +2,2016-01-26 22:06:05,2016-01-26 22:19:11,1,2.23,,,-74.00041961669922,40.7321662902832,-74.00985717773438,40.71004867553711,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,14.16 +1,2016-01-21 07:34:35,2016-01-21 07:48:29,1,2.1,,,-73.97917175292969,40.74618148803711,-74.00391387939453,40.742313385009766,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,12.3 +1,2016-01-22 17:53:44,2016-01-22 17:57:39,1,0.4,,,-73.96276092529297,40.778568267822266,-73.9618911743164,40.77381134033203,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-29 12:41:34,2016-01-29 13:12:56,1,9.7,,,-73.98597717285156,40.75864028930664,-73.87027740478516,40.77302169799805,1,N,1,33.0,0.0,0.5,0.3,7.85,5.54,47.19 +2,2016-01-03 18:44:37,2016-01-03 18:55:22,1,2.98,,,-73.87445068359375,40.77404022216797,-73.90392303466797,40.775962829589844,1,N,1,11.0,0.0,0.5,0.3,4.2,0.0,16.0 +2,2016-01-12 23:14:44,2016-01-12 23:18:52,1,0.67,,,-73.98493194580078,40.76163101196289,-73.99108123779297,40.76581954956055,1,N,1,5.0,0.5,0.5,0.3,1.58,0.0,7.88 +2,2016-01-10 12:51:58,2016-01-10 12:54:49,1,0.43,,,-73.97858428955078,40.75122833251953,-73.98457336425781,40.7616081237793,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-27 21:57:00,2016-01-27 22:13:18,1,5.0,,,-74.0160140991211,40.71527862548828,-73.98483276367188,40.72816848754883,1,N,1,17.0,0.5,0.5,0.3,3.66,0.0,21.96 +1,2016-01-19 00:58:32,2016-01-19 01:07:48,1,1.6,,,0.0,0.0,0.0,0.0,1,N,1,8.5,0.5,0.5,0.3,2.9,0.0,12.7 +1,2016-01-29 13:55:32,2016-01-29 13:58:55,1,0.6,,,-73.96793365478516,40.75564956665039,-73.97466278076172,40.750118255615234,1,N,1,4.5,0.0,0.5,0.3,1.3,0.0,6.6 +1,2016-01-22 06:45:32,2016-01-22 06:50:24,1,0.8,,,-73.98053741455078,40.785011291503906,-73.96900177001953,40.78562545776367,1,Y,1,5.5,0.0,0.5,0.3,1.85,0.0,8.15 +2,2016-01-20 10:20:55,2016-01-20 10:23:48,1,0.66,,,-73.9627456665039,40.77536392211914,-73.95609283447266,40.781368255615234,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-04 22:42:46,2016-01-04 22:44:09,1,0.4,,,-73.95393371582031,40.779014587402344,-73.94780731201172,40.779579162597656,1,N,1,3.5,0.5,0.5,0.3,0.96,0.0,5.76 +2,2016-01-03 16:54:35,2016-01-03 17:12:00,1,3.18,,,-73.9625473022461,40.778648376464844,-73.99076080322266,40.75069046020508,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-21 21:59:27,2016-01-21 22:12:54,1,2.4,,,-73.99126434326172,40.74998474121094,-73.9895248413086,40.72459411621094,1,N,1,11.0,0.5,0.5,0.3,3.05,0.0,15.35 +2,2016-01-09 19:32:31,2016-01-09 19:43:48,6,1.67,,,-73.9793930053711,40.78681945800781,-73.96062469482422,40.772701263427734,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-07 22:25:39,2016-01-07 22:32:12,1,0.53,,,-73.98751068115234,40.74422836303711,-73.99421691894531,40.748538970947266,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-09 11:52:46,2016-01-09 11:56:02,2,0.55,,,-73.98686981201172,40.731536865234375,-73.98686981201172,40.731536865234375,1,N,1,4.5,0.0,0.5,0.3,1.59,0.0,6.89 +1,2016-01-19 06:46:50,2016-01-19 06:59:06,1,3.0,,,-73.94647979736328,40.791988372802734,-73.9732666015625,40.75374221801758,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-01 13:22:51,2016-01-01 13:29:12,6,1.48,,,-74.01264953613281,40.71451950073242,-74.00425720214844,40.730438232421875,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-17 02:31:36,2016-01-17 02:34:39,2,0.83,,,-73.9903793334961,40.757301330566406,-73.99681091308594,40.75033187866211,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,6.96 +1,2016-01-04 14:19:21,2016-01-04 14:47:58,1,7.6,,,-73.87457275390625,40.77410125732422,-73.95948028564453,40.731239318847656,1,N,1,27.0,0.0,0.5,0.3,8.3,0.0,36.1 +2,2016-01-22 00:30:25,2016-01-22 00:52:37,1,7.46,,,-73.87454223632812,40.774070739746094,-73.98441314697266,40.766971588134766,1,N,2,24.0,0.5,0.5,0.3,0.0,0.0,25.3 +2,2016-01-23 00:25:11,2016-01-23 00:35:35,5,2.2,,,-73.9513168334961,40.81003952026367,-73.943359375,40.83346939086914,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +1,2016-01-08 23:13:20,2016-01-08 23:20:42,1,1.1,,,-73.99740600585938,40.72136306762695,-73.98395538330078,40.72700881958008,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-04 19:47:52,2016-01-04 20:13:35,1,7.0,,,-73.97709655761719,40.75563049316406,-73.88937377929688,40.7724723815918,1,N,1,24.0,1.0,0.5,0.3,4.0,0.0,29.8 +1,2016-01-09 10:18:18,2016-01-09 10:22:27,1,0.9,,,-73.94229888916016,40.78648376464844,-73.9441146850586,40.79463577270508,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-21 18:48:33,2016-01-21 18:58:48,1,1.27,,,-73.98436737060547,40.736671447753906,-73.99087524414062,40.74872589111328,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-09 17:18:21,2016-01-09 17:29:40,1,1.6,,,-73.98084259033203,40.744808197021484,-73.98383331298828,40.760162353515625,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-05 08:51:51,2016-01-05 08:56:55,5,0.76,,,-73.95597076416016,40.7678108215332,-73.96235656738281,40.77490997314453,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-30 09:21:44,2016-01-30 09:26:48,1,1.14,,,-73.9787368774414,40.74769973754883,-73.9764404296875,40.75901412963867,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-24 21:45:16,2016-01-24 21:52:07,1,3.68,,,-73.98291015625,40.72282791137695,-74.01628875732422,40.70600509643555,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,15.36 +2,2016-01-16 10:11:24,2016-01-16 10:22:58,1,2.83,,,-73.97146606445312,40.75497817993164,-73.95234680175781,40.78971481323242,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-07 19:57:10,2016-01-07 20:04:12,1,1.52,,,-73.98771667480469,40.76530838012695,-74.00167846679688,40.74586868286133,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-27 00:47:57,2016-01-27 01:01:26,1,3.3,,,-73.99960327148438,40.7438850402832,-74.01210021972656,40.707618713378906,1,N,1,12.5,0.5,0.5,0.3,2.75,0.0,16.55 +2,2016-01-08 23:30:30,2016-01-08 23:32:35,6,0.7,,,-73.98102569580078,40.77949142456055,-73.97659301757812,40.7875862121582,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,6.36 +2,2016-01-25 18:07:20,2016-01-25 18:22:57,1,3.94,,,-74.00196838378906,40.74052047729492,-73.97991943359375,40.784751892089844,1,N,1,15.0,1.0,0.5,0.3,4.2,0.0,21.0 +1,2016-01-24 16:50:11,2016-01-24 16:59:32,1,1.3,,,-73.990478515625,40.73698425292969,-74.00404357910156,40.73231887817383,1,Y,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-30 15:33:22,2016-01-30 15:43:57,1,1.48,,,-73.98184204101562,40.76611328125,-73.96832275390625,40.75566101074219,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-20 00:35:35,2016-01-20 00:47:44,1,1.97,,,-73.98245239257812,40.7717399597168,-73.9775390625,40.75489044189453,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +2,2016-01-22 12:24:42,2016-01-22 12:41:53,2,4.36,,,-74.00474548339844,40.7066650390625,-73.9792251586914,40.744110107421875,1,N,1,17.0,0.0,0.5,0.3,0.0,0.0,17.8 +2,2016-01-20 12:31:06,2016-01-20 12:37:04,1,0.62,,,-73.98214721679688,40.746341705322266,-73.99124908447266,40.74940872192383,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-27 19:55:22,2016-01-27 19:59:16,1,0.6,,,-74.00851440429688,40.72004318237305,-74.00306701660156,40.7251091003418,1,N,1,5.0,1.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-06 06:31:05,2016-01-06 06:39:54,2,2.76,,,-73.96333312988281,40.79365158081055,-73.9866714477539,40.762420654296875,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-16 22:04:52,2016-01-16 22:24:04,3,12.3,,,-73.77677917480469,40.64542007446289,-73.73124694824219,40.75598907470703,1,N,1,34.0,0.5,0.5,0.3,7.06,0.0,42.36 +2,2016-01-30 04:00:31,2016-01-30 04:14:27,1,3.07,,,-73.91567993164062,40.822540283203125,-73.90042114257812,40.860687255859375,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,13.8 +2,2016-01-30 00:50:07,2016-01-30 01:09:14,1,4.87,,,-73.99195098876953,40.74418258666992,-73.95455169677734,40.80070114135742,1,N,2,18.0,0.5,0.5,0.3,0.0,0.0,19.3 +2,2016-01-13 08:44:50,2016-01-13 08:52:10,1,0.99,,,-74.00731658935547,40.71601104736328,-73.99609375,40.7252197265625,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-30 00:26:33,2016-01-30 00:34:38,1,1.1,,,-73.97616577148438,40.753211975097656,-73.99039459228516,40.750240325927734,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-14 23:49:33,2016-01-14 23:59:38,1,2.9,,,-73.9929428100586,40.740562438964844,-73.98709106445312,40.764198303222656,1,N,1,10.5,0.5,0.5,0.3,2.95,0.0,14.75 +2,2016-01-25 00:34:30,2016-01-25 00:40:30,1,1.42,,,-73.98783111572266,40.747947692871094,-73.9717025756836,40.756961822509766,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-05 18:53:10,2016-01-05 19:36:33,1,15.45,,,-73.78206634521484,40.644771575927734,-73.95050811767578,40.72895812988281,1,N,1,45.5,1.0,0.5,0.3,11.82,0.0,59.12 +2,2016-01-10 19:49:43,2016-01-10 20:00:35,5,3.16,,,-73.86380767822266,40.769798278808594,-73.85369873046875,40.754390716552734,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-16 15:44:21,2016-01-16 15:46:55,2,0.59,,,-73.95970153808594,40.76274108886719,-73.96047973632812,40.768798828125,1,N,1,4.0,0.0,0.5,0.3,1.0,0.0,5.8 +2,2016-01-21 23:06:59,2016-01-21 23:21:48,3,2.89,,,-74.00273895263672,40.73383712768555,-73.98766326904297,40.76537322998047,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,16.56 +1,2016-01-27 12:17:37,2016-01-27 12:29:21,1,1.0,,,-73.98250579833984,40.767066955566406,-73.96601867675781,40.762420654296875,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-09 19:15:12,2016-01-09 19:20:14,2,0.95,,,-73.94734954833984,40.81679916381836,-73.95503997802734,40.80498123168945,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-30 14:55:37,2016-01-30 15:02:44,3,1.3,,,-73.9953384399414,40.74969482421875,-74.00305938720703,40.733306884765625,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-20 15:30:28,2016-01-20 15:40:25,2,0.73,,,-73.98013305664062,40.75467300415039,-73.98963928222656,40.752201080322266,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,9.75 +1,2016-01-27 20:00:11,2016-01-27 20:09:42,1,1.3,,,-73.98206329345703,40.77290725708008,-73.96932220458984,40.761966705322266,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +1,2016-01-26 21:06:12,2016-01-26 21:22:09,1,3.1,,,-73.98460388183594,40.75413131713867,-73.94996643066406,40.77605056762695,1,N,1,13.0,0.5,0.5,0.3,3.55,0.0,17.85 +2,2016-01-18 21:11:27,2016-01-18 21:18:35,1,1.28,,,0.0,0.0,0.0,0.0,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +1,2016-01-07 21:50:47,2016-01-07 22:06:32,2,2.7,,,-74.00479888916016,40.751461029052734,-73.98748779296875,40.72545623779297,1,N,1,12.5,0.5,0.5,0.3,2.75,0.0,16.55 +2,2016-01-15 07:33:15,2016-01-15 07:38:10,1,0.45,,,-73.99154663085938,40.75606918334961,-73.98577117919922,40.760398864746094,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +1,2016-01-14 07:42:36,2016-01-14 08:03:33,1,4.4,,,-74.00772857666016,40.70869445800781,-73.97786712646484,40.764583587646484,1,N,1,17.0,0.0,0.5,0.3,1.0,0.0,18.8 +1,2016-01-24 22:33:45,2016-01-24 22:39:18,2,1.0,,,-73.97901916503906,40.76273727416992,-73.96466827392578,40.756473541259766,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-07 20:29:51,2016-01-07 20:41:15,1,2.51,,,-74.00474548339844,40.72339630126953,-73.99146270751953,40.75375747680664,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,14.16 +2,2016-01-07 08:52:44,2016-01-07 09:05:57,2,1.55,,,-73.95520782470703,40.773277282714844,-73.97251892089844,40.76069641113281,1,N,1,10.0,0.0,0.5,0.3,2.0,0.0,12.8 +2,2016-01-14 12:23:19,2016-01-14 12:45:59,2,3.77,,,-73.99154663085938,40.74990463256836,-74.0073471069336,40.704891204833984,1,N,1,17.0,0.0,0.5,0.3,3.56,0.0,21.36 +1,2016-01-19 11:16:02,2016-01-19 11:18:56,1,0.3,,,-73.95672607421875,40.779964447021484,-73.9569091796875,40.78340530395508,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-21 22:03:52,2016-01-21 22:13:03,1,1.4,,,-73.98348999023438,40.676597595214844,-73.99256134033203,40.68832015991211,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,11.15 +2,2016-01-10 13:37:15,2016-01-10 13:48:27,1,1.29,,,-73.98123168945312,40.77412796020508,-73.98893737792969,40.758567810058594,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-11 11:58:04,2016-01-11 12:02:54,3,0.4,,,-73.9733657836914,40.764991760253906,-73.97960662841797,40.766197204589844,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-07 20:45:43,2016-01-07 20:49:00,5,0.6,,,-73.99403381347656,40.740966796875,-73.98955535888672,40.735897064208984,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-27 08:00:26,2016-01-27 08:09:50,1,1.1,,,-73.97235107421875,40.743247985839844,-73.97748565673828,40.75444793701172,1,N,1,7.5,0.0,0.5,0.3,1.7,0.0,10.0 +2,2016-01-27 19:59:24,2016-01-27 20:02:44,1,0.63,,,-73.98854064941406,40.769039154052734,-73.98273468017578,40.77569580078125,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-26 08:12:08,2016-01-26 08:37:05,1,6.7,,,-73.95352935791016,40.77928924560547,-73.89715576171875,40.78022766113281,1,N,1,23.5,0.0,0.5,0.3,5.95,5.54,35.79 +2,2016-01-11 23:51:52,2016-01-11 23:56:05,1,0.67,,,-73.98980712890625,40.75667190551758,-73.99620056152344,40.76240158081055,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,7.3 +2,2016-01-02 17:23:31,2016-01-02 17:25:21,1,0.68,,,-73.95477294921875,40.7696418762207,-73.95249938964844,40.776798248291016,1,N,1,4.0,0.0,0.5,0.3,1.44,0.0,6.24 +1,2016-01-17 18:22:26,2016-01-17 18:24:45,1,0.3,,,-74.00689697265625,40.73936080932617,-74.00562286376953,40.73857116699219,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +1,2016-01-02 17:11:51,2016-01-02 17:25:20,1,1.8,,,-73.98387145996094,40.76285934448242,-73.97077941894531,40.767539978027344,1,N,3,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +1,2016-01-11 11:12:26,2016-01-11 11:17:10,1,0.7,,,-73.99507141113281,40.76008987426758,-73.98851013183594,40.75537872314453,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,6.8 +2,2016-01-16 05:37:33,2016-01-16 05:37:36,1,0.0,,,0.0,0.0,-73.98457336425781,40.84651184082031,5,N,1,65.0,0.0,0.5,0.3,13.16,0.0,78.96 +2,2016-01-11 09:59:14,2016-01-11 10:04:51,1,1.05,,,-73.98320770263672,40.761043548583984,-73.98983764648438,40.75651168823242,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-20 01:00:40,2016-01-20 01:06:46,2,1.25,,,-74.00521850585938,40.72856521606445,-73.99018096923828,40.729042053222656,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-28 08:05:18,2016-01-28 08:11:48,1,1.1,,,-73.98973083496094,40.729637145996094,-73.97925567626953,40.744022369384766,1,N,1,6.5,0.0,0.5,0.3,1.2,0.0,8.5 +1,2016-01-14 23:56:15,2016-01-15 00:04:26,1,3.5,,,-73.86502838134766,40.77070999145508,-73.90834045410156,40.758506774902344,1,N,1,11.5,0.5,0.5,0.3,3.2,0.0,16.0 +2,2016-01-14 08:56:54,2016-01-14 09:06:45,1,1.09,,,-73.96406555175781,40.75678634643555,-73.97647857666016,40.75071334838867,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-19 06:12:13,2016-01-19 06:18:10,1,1.13,,,-73.97242736816406,40.76280975341797,-73.95648193359375,40.76472854614258,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-18 16:41:24,2016-01-18 17:11:40,1,10.5,,,-73.97798919677734,40.762943267822266,-73.87159729003906,40.77439498901367,1,N,1,34.0,0.0,0.5,0.3,8.05,5.54,48.39 +2,2016-01-18 15:12:55,2016-01-18 15:15:19,1,0.27,,,-73.98188018798828,40.771419525146484,-73.98210144042969,40.77499008178711,1,N,1,3.5,0.0,0.5,0.3,1.29,0.0,5.59 +2,2016-01-29 16:59:50,2016-01-29 17:17:20,1,2.25,,,-73.99144744873047,40.749935150146484,-73.98126983642578,40.77509689331055,1,N,1,12.5,1.0,0.5,0.3,2.86,0.0,17.16 +1,2016-01-09 14:18:46,2016-01-09 14:37:56,2,3.7,,,-73.99420166015625,40.7512321472168,-73.94893646240234,40.771324157714844,1,N,1,15.5,0.0,0.5,0.3,3.25,0.0,19.55 +2,2016-01-21 14:33:46,2016-01-21 14:55:59,1,2.87,,,-73.97016906738281,40.76055145263672,-73.98605346679688,40.7264518737793,1,N,1,16.0,0.0,0.5,0.3,3.36,0.0,20.16 +2,2016-01-30 09:50:55,2016-01-30 09:54:26,6,1.03,,,-73.98809051513672,40.76158142089844,-73.99137878417969,40.74970245361328,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-02 15:35:03,2016-01-02 15:42:09,1,1.83,,,-73.97364044189453,40.75224685668945,-73.95645141601562,40.77538299560547,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-17 20:33:51,2016-01-17 20:39:00,5,1.44,,,-73.9862289428711,40.75221252441406,-73.96971893310547,40.76128387451172,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-21 08:03:32,2016-01-21 08:09:15,1,0.7,,,-73.96331024169922,40.757545471191406,-73.96841430664062,40.76448059082031,1,N,1,5.5,0.0,0.5,0.3,1.85,0.0,8.15 +1,2016-01-08 23:29:40,2016-01-08 23:35:26,1,1.6,,,-73.96815490722656,40.76814270019531,-73.94849395751953,40.77657699584961,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +2,2016-01-06 12:51:31,2016-01-06 13:02:45,6,2.31,,,-73.99807739257812,40.71696090698242,-73.99967956542969,40.7435188293457,1,N,1,10.0,0.0,0.5,0.3,0.2,0.0,11.0 +2,2016-01-10 14:46:00,2016-01-10 15:00:57,1,3.2,,,-73.94873046875,40.782161712646484,-73.98282623291016,40.75584030151367,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-24 23:49:03,2016-01-24 23:59:39,1,2.32,,,-73.98397827148438,40.75494384765625,-73.98990631103516,40.731163024902344,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +1,2016-01-11 22:15:37,2016-01-11 22:24:24,1,2.0,,,-73.97392272949219,40.75691223144531,-73.97583770751953,40.77880859375,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +2,2016-01-11 21:12:08,2016-01-11 21:18:08,1,1.41,,,-73.99140167236328,40.72718048095703,-73.98155212402344,40.74399948120117,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-21 09:36:16,2016-01-21 09:45:09,1,1.1,,,-73.9951400756836,40.72606658935547,-73.98883819580078,40.73971939086914,1,N,1,7.5,0.0,0.5,0.3,3.0,0.0,11.3 +2,2016-01-10 18:13:53,2016-01-10 18:18:30,5,0.72,,,-73.9671630859375,40.793636322021484,-73.97309875488281,40.79010009765625,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,6.8 +1,2016-01-07 23:22:05,2016-01-07 23:31:26,1,1.1,,,-73.97039794921875,40.75579071044922,-73.97351837158203,40.747825622558594,1,N,1,8.0,0.5,0.5,0.3,0.1,0.0,9.4 +2,2016-01-06 03:35:01,2016-01-06 03:52:38,1,4.09,,,-73.96233367919922,40.76034164428711,-73.94998931884766,40.80632781982422,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,16.8 +2,2016-01-21 17:47:23,2016-01-21 18:01:07,1,2.18,,,-73.96905517578125,40.763397216796875,-73.9491195678711,40.783447265625,1,N,1,11.0,1.0,0.5,0.3,1.28,0.0,14.08 +1,2016-01-16 14:07:19,2016-01-16 14:12:39,2,1.0,,,-73.94051361083984,40.80891036987305,-73.95228576660156,40.8033447265625,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-18 18:08:19,2016-01-18 18:19:33,1,2.3,,,-73.96199035644531,40.76363754272461,-73.99021911621094,40.756404876708984,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-29 05:41:54,2016-01-29 05:54:10,1,2.6,,,-73.93074035644531,40.761131286621094,-73.9662094116211,40.759300231933594,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +1,2016-01-11 07:43:17,2016-01-11 07:52:31,1,1.0,,,-73.98770904541016,40.765403747558594,-73.97421264648438,40.75752258300781,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +1,2016-01-01 22:22:26,2016-01-01 22:31:36,1,2.2,,,-73.99738311767578,40.72582244873047,-73.9844970703125,40.750022888183594,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,11.3 +2,2016-01-30 01:09:27,2016-01-30 01:12:21,5,0.59,,,-74.00638580322266,40.73334503173828,-74.00379943847656,40.74030685424805,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,6.36 +2,2016-01-16 20:34:33,2016-01-16 20:40:15,5,0.66,,,-73.9818115234375,40.736751556396484,-73.9877700805664,40.728519439697266,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-22 19:26:41,2016-01-22 19:30:31,1,0.8,,,-73.9609375,40.76937484741211,-73.95504760742188,40.77842712402344,1,N,1,5.0,1.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-20 07:08:08,2016-01-20 07:20:39,1,1.65,,,-74.00778198242188,40.72600173950195,-74.00830841064453,40.709129333496094,1,N,1,9.5,0.0,0.5,0.3,1.8,0.0,12.1 +2,2016-01-17 01:42:36,2016-01-17 01:53:22,1,1.69,,,-73.99134826660156,40.727020263671875,-74.0111083984375,40.71329116821289,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +1,2016-01-17 00:52:09,2016-01-17 01:03:50,1,6.2,,,-73.96341705322266,40.76192092895508,-74.0126953125,40.701576232910156,1,N,1,19.5,0.5,0.5,0.3,0.0,0.0,20.8 +2,2016-01-13 00:44:19,2016-01-13 00:57:25,2,2.92,,,-73.99529266357422,40.76044845581055,-74.00028228759766,40.730350494384766,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,13.3 +1,2016-01-29 07:48:34,2016-01-29 08:12:18,2,1.9,,,-73.95941925048828,40.777252197265625,-73.95950317382812,40.77713394165039,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +2,2016-01-16 01:43:29,2016-01-16 02:14:47,5,17.25,,,-73.98113250732422,40.73967742919922,-73.79843139648438,40.78288650512695,1,N,1,48.0,0.5,0.5,0.3,10.97,5.54,65.81 +1,2016-01-20 09:59:14,2016-01-20 10:13:21,1,2.1,,,-74.00289916992188,40.76039123535156,-73.99464416503906,40.73643112182617,1,N,1,11.0,0.0,0.5,0.3,1.2,0.0,13.0 +1,2016-01-02 13:13:20,2016-01-02 13:25:06,1,2.4,,,-73.96878051757812,40.7645263671875,-73.98867797851562,40.73645782470703,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-17 17:00:16,2016-01-17 17:04:27,1,0.7,,,-73.97120666503906,40.76696014404297,-73.9786605834961,40.76012420654297,1,N,1,5.0,0.0,0.5,0.3,1.7,0.0,7.5 +2,2016-01-16 08:39:18,2016-01-16 08:43:15,1,0.99,,,-74.00833892822266,40.73625946044922,-73.99712371826172,40.74705123901367,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-06 23:01:41,2016-01-06 23:10:17,1,1.4,,,-73.9818344116211,40.75795364379883,-73.98074340820312,40.77239990234375,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-01 09:02:12,2016-01-01 09:09:54,1,2.29,,,-73.9621353149414,40.76777648925781,-73.98588562011719,40.74641036987305,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-09 10:19:30,2016-01-09 10:22:03,1,1.04,,,-73.9688949584961,40.75886154174805,-73.95885467529297,40.77231979370117,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-27 06:11:27,2016-01-27 06:17:50,1,1.2,,,-73.96284484863281,40.76332473754883,-73.97542572021484,40.751060485839844,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-14 03:17:29,2016-01-14 03:19:25,1,0.9,,,-73.9804916381836,40.742584228515625,-73.97461700439453,40.754058837890625,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-22 21:49:59,2016-01-22 22:01:59,1,2.34,,,-73.96025085449219,40.78199005126953,-73.96131134033203,40.7564811706543,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,14.16 +1,2016-01-27 07:46:01,2016-01-27 07:54:34,1,1.5,,,-73.99309539794922,40.735870361328125,-73.97621154785156,40.748268127441406,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-01 03:18:18,2016-01-01 03:41:32,1,10.5,,,-73.93505096435547,40.80073165893555,-73.86109924316406,40.88385009765625,1,N,1,30.5,0.5,0.5,0.3,0.0,0.0,31.8 +1,2016-01-05 18:17:48,2016-01-05 18:31:49,1,2.3,,,-73.99858856201172,40.73501968383789,-73.98065948486328,40.76396179199219,1,N,1,11.0,1.0,0.5,0.3,1.0,0.0,13.8 +1,2016-01-03 17:07:54,2016-01-03 17:21:25,1,2.6,,,-73.97688293457031,40.764976501464844,-73.9767074584961,40.73612594604492,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,14.75 +1,2016-01-16 00:45:32,2016-01-16 00:51:05,1,1.0,,,-73.9810791015625,40.78117370605469,-73.96957397460938,40.78632354736328,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-30 23:36:28,2016-01-30 23:51:09,1,3.99,,,-73.94822692871094,40.77418899536133,-73.98635864257812,40.73044967651367,1,N,1,14.5,0.5,0.5,0.3,1.0,0.0,16.8 +2,2016-01-18 06:22:22,2016-01-18 06:28:08,2,1.1,,,-73.9759521484375,40.75124740600586,-73.99032592773438,40.75046920776367,1,N,1,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-30 00:53:02,2016-01-30 01:31:58,1,8.3,,,-74.00630950927734,40.73389434814453,-73.90092468261719,40.73645782470703,1,N,1,32.0,0.5,0.5,0.3,0.0,0.0,33.3 +2,2016-01-30 00:39:56,2016-01-30 00:48:48,1,1.23,,,-73.99272155761719,40.74769973754883,-73.98998260498047,40.759700775146484,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-28 10:41:33,2016-01-28 10:52:29,1,1.11,,,-73.99620819091797,40.72657775878906,-74.00714874267578,40.713157653808594,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-19 16:19:11,2016-01-19 16:33:00,1,0.8,,,-73.9651107788086,40.77084732055664,-73.96231842041016,40.76403045654297,1,N,1,9.5,1.0,0.5,0.3,0.0,0.0,11.3 +1,2016-01-17 01:32:13,2016-01-17 01:38:21,1,1.3,,,-73.99179077148438,40.764644622802734,-73.99495697021484,40.75007247924805,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-03 14:03:49,2016-01-03 14:23:46,3,5.78,,,-73.9446029663086,40.814300537109375,-73.96621704101562,40.75303649902344,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,20.8 +2,2016-01-09 19:10:50,2016-01-10 19:02:23,1,3.9,,,-73.96198272705078,40.76776123046875,-74.00514221191406,40.74176025390625,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-28 23:32:08,2016-01-28 23:47:14,2,2.87,,,-73.985595703125,40.75773239135742,-73.95430755615234,40.77014923095703,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +2,2016-01-14 16:07:21,2016-01-14 16:15:37,1,1.44,,,-73.98673248291016,40.73994827270508,-73.97396850585938,40.75798797607422,1,N,1,7.5,1.0,0.5,0.3,2.0,0.0,11.3 +2,2016-01-18 08:46:56,2016-01-18 08:53:23,1,1.64,,,-74.00218963623047,40.729530334472656,-73.98787689208984,40.75043869018555,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-11 13:07:44,2016-01-11 13:17:18,1,3.38,,,-73.975830078125,40.75162887573242,-73.97967529296875,40.71448516845703,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +2,2016-01-30 02:51:37,2016-01-30 03:01:28,1,1.53,,,-73.98773956298828,40.732486724853516,-73.99516296386719,40.72145080566406,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +2,2016-01-02 16:22:13,2016-01-02 16:37:03,1,1.75,,,-73.99446868896484,40.740509033203125,-73.98338317871094,40.725990295410156,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +1,2016-01-17 13:39:25,2016-01-17 13:43:24,1,0.9,,,-73.97821044921875,40.7522087097168,-73.9870834350586,40.745662689208984,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-25 16:56:01,2016-01-25 17:48:20,1,21.4,,,0.0,0.0,-74.17716217041016,40.695072174072266,3,N,1,79.5,1.0,0.0,0.3,12.0,18.5,111.3 +1,2016-01-22 08:52:24,2016-01-22 09:15:46,1,6.6,,,-73.96814727783203,40.755401611328125,-74.01382446289062,40.71492004394531,1,N,1,23.5,0.5,0.5,0.3,4.0,0.0,28.8 +2,2016-01-04 22:00:54,2016-01-04 22:12:08,4,2.59,,,-73.98146057128906,40.76772689819336,-73.94686126708984,40.772525787353516,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,14.16 +2,2016-01-03 21:10:42,2016-01-03 21:22:39,1,3.34,,,-73.993896484375,40.75099182128906,-73.95673370361328,40.775230407714844,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,16.56 +2,2016-01-12 14:31:55,2016-01-12 15:10:19,1,10.71,,,-73.86282348632812,40.76891326904297,-73.96849060058594,40.76976013183594,1,N,1,37.0,0.0,0.5,0.3,8.67,5.54,52.01 +1,2016-01-16 17:11:03,2016-01-16 17:31:32,1,4.2,,,-73.99309539794922,40.736602783203125,-73.9541015625,40.764888763427734,1,N,1,17.5,1.0,0.5,0.3,2.0,0.0,21.3 +1,2016-01-22 22:24:58,2016-01-22 22:32:08,1,1.0,,,-74.00169372558594,40.730655670166016,-73.99652099609375,40.74277114868164,1,N,1,6.5,0.5,0.5,0.3,1.5,0.0,9.3 +1,2016-01-12 20:19:50,2016-01-12 20:36:16,1,7.7,,,-74.00556945800781,40.74113082885742,-73.94400024414062,40.835105895996094,1,N,1,23.5,0.5,0.5,0.3,1.0,0.0,25.8 +1,2016-01-30 19:42:05,2016-01-30 19:51:47,1,1.2,,,-74.0008316040039,40.74231719970703,-74.00718688964844,40.72743606567383,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-09 17:35:47,2016-01-09 17:50:39,2,3.93,,,-73.98702239990234,40.76628112792969,-74.0106430053711,40.7230110168457,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,18.36 +2,2016-01-12 07:02:14,2016-01-12 07:12:25,1,1.62,,,-74.00741577148438,40.73243713378906,-73.98701477050781,40.73973083496094,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-19 07:12:45,2016-01-19 07:20:47,1,1.5,,,-73.99435424804688,40.7510986328125,-73.99020385742188,40.76964569091797,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-20 21:41:00,2016-01-21 21:39:37,1,1.76,,,-73.98067474365234,40.73392868041992,-73.99057006835938,40.75099182128906,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +2,2016-01-26 18:08:59,2016-01-26 18:26:32,5,1.75,,,-73.98564147949219,40.72706985473633,-73.984130859375,40.74650955200195,1,N,1,12.0,1.0,0.5,0.3,2.76,0.0,16.56 +1,2016-01-19 06:54:46,2016-01-19 06:57:42,1,0.6,,,-73.96598052978516,40.76223373413086,-73.95806884765625,40.76450729370117,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-06 07:14:57,2016-01-06 07:30:15,1,3.05,,,-73.98434448242188,40.743507385253906,-73.95182800292969,40.76970672607422,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-22 12:20:18,2016-01-22 12:22:57,1,0.6,,,-73.97565460205078,40.760467529296875,-73.98171997070312,40.752113342285156,1,N,1,4.0,0.0,0.5,0.3,1.0,0.0,5.8 +1,2016-01-26 12:31:49,2016-01-26 13:00:56,2,1.0,,,-73.98451232910156,40.7539176940918,-73.97216796875,40.75780487060547,1,N,3,17.0,0.0,0.5,0.3,0.0,0.0,17.8 +1,2016-01-10 03:17:05,2016-01-10 03:20:32,2,0.6,,,-74.00508880615234,40.74101257324219,-73.99748992919922,40.74656677246094,1,N,1,4.5,0.5,0.5,0.3,1.15,0.0,6.95 +2,2016-01-18 09:51:08,2016-01-18 09:59:22,5,0.9,,,-74.00248718261719,40.71860885620117,-73.99356079101562,40.72755813598633,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-15 08:42:26,2016-01-15 09:04:28,6,0.42,,,-73.96997833251953,40.752281188964844,-73.97496795654297,40.79011154174805,1,N,1,13.5,0.0,0.5,0.3,2.0,0.0,16.3 +1,2016-01-16 00:28:44,2016-01-16 01:03:48,2,17.7,,,-73.79021453857422,40.646976470947266,-73.98163604736328,40.762535095214844,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-06 08:09:32,2016-01-06 08:29:34,2,3.93,,,-73.9915771484375,40.695926666259766,-73.98844146728516,40.73969650268555,1,N,1,16.5,0.0,0.5,0.3,1.0,0.0,18.3 +2,2016-01-20 08:11:27,2016-01-20 08:40:39,2,5.62,,,-74.0082015991211,40.70521545410156,-73.9773941040039,40.75170135498047,1,N,2,22.5,0.0,0.5,0.3,0.0,0.0,23.3 +2,2016-01-18 18:09:53,2016-01-18 18:18:52,5,1.68,,,-73.97953033447266,40.72026824951172,-73.98764038085938,40.73555374145508,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-30 23:34:09,2016-01-30 23:39:53,1,0.9,,,-73.99158477783203,40.735374450683594,-74.00670623779297,40.73629379272461,1,N,1,5.5,0.5,0.5,0.3,2.0,0.0,8.8 +1,2016-01-04 16:23:26,2016-01-04 17:08:00,1,17.3,,,-73.78447723388672,40.64862823486328,-73.97679138183594,40.74919128417969,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-15 18:12:31,2016-01-15 18:24:09,1,1.99,,,-74.00276947021484,40.76046371459961,-73.99578094482422,40.73909378051758,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-07 11:49:52,2016-01-07 11:51:32,1,0.3,,,-73.94491577148438,40.77900314331055,-73.9444580078125,40.77545166015625,1,N,1,3.5,0.0,0.5,0.3,1.0,0.0,5.3 +1,2016-01-14 22:25:11,2016-01-14 22:32:43,1,0.9,,,-73.96858978271484,40.764434814453125,-73.97514343261719,40.752647399902344,1,N,1,6.5,0.5,0.5,0.3,1.55,0.0,9.35 +2,2016-01-06 22:18:19,2016-01-06 22:35:47,2,4.54,,,-73.99671173095703,40.715206146240234,-73.99329376220703,40.760459899902344,1,N,1,16.5,0.5,0.5,0.3,3.56,0.0,21.36 +1,2016-01-23 01:12:09,2016-01-23 01:27:51,2,3.0,,,-74.0026626586914,40.73405075073242,-73.98725128173828,40.77115249633789,1,N,1,12.5,0.5,0.5,0.3,2.0,0.0,15.8 +1,2016-01-01 03:04:06,2016-01-01 03:29:02,1,8.4,,,-74.00520324707031,40.71916580200195,-73.95893096923828,40.809146881103516,1,N,1,27.0,0.5,0.5,0.3,5.66,0.0,33.96 +1,2016-01-18 10:47:02,2016-01-18 10:54:37,1,1.3,,,-73.98245239257812,40.77431869506836,-73.9776382446289,40.758548736572266,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-27 23:21:51,2016-01-27 23:25:52,1,0.95,,,-73.95221710205078,40.777278900146484,-73.96151733398438,40.767669677734375,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,7.3 +2,2016-01-18 17:05:30,2016-01-18 17:13:15,3,1.52,,,-73.9537582397461,40.77937316894531,-73.96871948242188,40.76422119140625,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +1,2016-01-06 08:47:34,2016-01-06 08:55:42,1,1.2,,,-73.98876953125,40.73678207397461,-73.97710418701172,40.75128936767578,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +1,2016-01-29 08:49:49,2016-01-29 09:20:19,1,3.2,,,-73.96837615966797,40.79977035522461,-73.96841430664062,40.764915466308594,1,N,1,19.5,0.0,0.5,0.3,4.05,0.0,24.35 +2,2016-01-06 22:44:01,2016-01-06 22:54:16,1,1.49,,,-73.97766876220703,40.786781311035156,-73.95572662353516,40.77975845336914,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-12 14:39:20,2016-01-12 15:03:52,1,7.0,,,-73.98226165771484,40.760318756103516,-74.01091003417969,40.708736419677734,1,N,1,25.0,0.0,0.5,0.3,5.15,0.0,30.95 +2,2016-01-04 03:29:13,2016-01-04 03:29:44,1,0.0,,,0.0,0.0,0.0,0.0,5,N,2,15.8,0.0,0.5,0.3,0.0,0.0,16.6 +2,2016-01-12 22:34:57,2016-01-12 22:40:22,1,1.5,,,-73.98188018798828,40.77859115600586,-73.9714584350586,40.797119140625,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-07 15:55:27,2016-01-07 16:26:17,1,10.4,,,-73.87102508544922,40.77373504638672,-74.00574493408203,40.727176666259766,1,N,1,33.0,1.0,0.5,0.3,8.05,5.54,48.39 +2,2016-01-05 07:39:55,2016-01-05 07:41:41,1,0.81,,,-73.98011016845703,40.76435089111328,-73.98460388183594,40.75513458251953,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +1,2016-01-03 17:01:44,2016-01-03 17:54:22,1,16.6,,,-73.98188781738281,40.74704360961914,-73.78399658203125,40.64364242553711,2,N,1,52.0,0.0,0.5,0.3,5.0,5.54,63.34 +2,2016-01-10 10:49:40,2016-01-10 10:51:29,1,0.6,,,-73.94953918457031,40.77254867553711,-73.94371032714844,40.77788162231445,1,N,1,4.0,0.0,0.5,0.3,0.7,0.0,5.5 +1,2016-01-12 06:32:01,2016-01-12 06:48:33,1,4.3,,,-74.01565551757812,40.71596145629883,-73.98037719726562,40.752174377441406,1,N,1,16.5,0.0,0.5,0.3,1.0,0.0,18.3 +1,2016-01-25 19:30:03,2016-01-25 19:35:03,1,1.1,,,-73.96953582763672,40.79026412963867,-73.96450805664062,40.80204772949219,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-26 18:24:52,2016-01-26 18:33:01,2,1.06,,,-73.94776153564453,40.78337860107422,-73.95745086669922,40.77008819580078,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-24 21:45:47,2016-01-24 21:49:09,2,0.74,,,-73.98625183105469,40.76726150512695,-73.98966979980469,40.759056091308594,1,N,1,4.5,0.5,0.5,0.3,1.45,0.0,7.25 +2,2016-01-16 15:34:25,2016-01-16 15:56:18,6,4.34,,,-73.95856475830078,40.81595230102539,-73.96842956542969,40.76472091674805,1,N,1,18.0,0.0,0.5,0.3,3.76,0.0,22.56 +2,2016-01-21 19:42:40,2016-01-21 20:02:43,1,2.98,,,-74.0025634765625,40.72486877441406,-73.98747253417969,40.76041030883789,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-16 14:28:56,2016-01-16 14:32:50,1,0.86,,,-74.01371765136719,40.705711364746094,-74.00932312011719,40.7140998840332,1,N,1,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-02 16:03:19,2016-01-02 16:33:33,5,16.83,,,-73.96515655517578,40.759159088134766,-73.79158020019531,40.644588470458984,2,N,1,52.0,0.0,0.5,0.3,14.58,5.54,72.92 +2,2016-01-02 21:27:50,2016-01-02 21:38:33,1,1.67,,,-73.97929382324219,40.740360260009766,-74.00129699707031,40.737003326416016,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-01 00:33:27,2016-01-01 00:47:36,1,3.4,,,-73.9887924194336,40.74820327758789,-73.98371124267578,40.710792541503906,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,15.8 +2,2016-01-07 06:25:34,2016-01-07 06:28:12,2,0.82,,,-73.95411682128906,40.77021026611328,-73.95375061035156,40.7793083190918,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-02 02:58:53,2016-01-02 03:04:40,1,0.83,,,-73.9922866821289,40.74877166748047,-73.98359680175781,40.74625015258789,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-13 17:39:55,2016-01-13 18:03:31,1,2.8,,,-73.97798156738281,40.7523193359375,-73.98197937011719,40.732025146484375,1,N,1,15.5,1.0,0.5,0.3,0.0,0.0,17.3 +1,2016-01-07 15:54:14,2016-01-07 16:06:59,2,1.0,,,-73.94520568847656,40.77530288696289,-73.96121215820312,40.77775573730469,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-29 15:32:46,2016-01-29 15:42:08,2,1.2,,,-73.98982238769531,40.75651550292969,-73.98509979248047,40.76851272583008,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-18 09:27:56,2016-01-18 09:32:53,1,1.42,,,-73.98426818847656,40.760501861572266,-73.99376678466797,40.742679595947266,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-28 20:42:35,2016-01-28 20:46:57,2,1.06,,,-73.99788665771484,40.76090621948242,-73.98734283447266,40.77052688598633,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-08 14:14:50,2016-01-08 14:39:56,3,4.45,,,-74.00162506103516,40.746788024902344,-73.97024536132812,40.793983459472656,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,21.3 +2,2016-01-27 17:49:29,2016-01-27 17:59:44,1,0.21,,,-73.97119140625,40.75067138671875,-73.97505950927734,40.752708435058594,1,N,1,7.5,1.0,0.5,0.3,1.0,0.0,10.3 +1,2016-01-06 09:45:57,2016-01-06 10:02:26,1,1.0,,,-73.99615478515625,40.742706298828125,-73.9836654663086,40.73501205444336,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +2,2016-01-30 03:45:20,2016-01-30 03:48:26,1,0.68,,,-74.00415802001953,40.72235107421875,-74.00218200683594,40.729530334472656,1,N,1,4.5,0.5,0.5,0.3,1.74,0.0,7.54 +2,2016-01-07 06:50:47,2016-01-07 07:09:37,1,7.69,,,-74.00818634033203,40.71137237548828,-73.94742584228516,40.78364562988281,1,N,2,24.5,0.0,0.5,0.3,0.0,0.0,25.3 +1,2016-01-20 05:50:15,2016-01-20 05:53:54,1,0.8,,,-73.98988342285156,40.734561920166016,-73.98347473144531,40.74475860595703,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,7.55 +2,2016-01-13 10:25:18,2016-01-13 10:51:07,1,2.65,,,-73.99897003173828,40.761077880859375,-73.98865509033203,40.73704528808594,1,N,1,17.0,0.0,0.5,0.3,2.0,0.0,19.8 +1,2016-01-09 19:32:40,2016-01-09 19:41:34,1,0.6,,,-73.98663330078125,40.73056411743164,-73.99472045898438,40.72772979736328,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +2,2016-01-15 07:50:27,2016-01-15 08:06:21,1,2.42,,,-73.94633483886719,40.772911071777344,-73.9729995727539,40.75835418701172,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-11 18:01:13,2016-01-11 18:17:45,3,2.27,,,-73.98509216308594,40.76388931274414,-73.9871826171875,40.7441291809082,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-07 10:04:08,2016-01-07 10:15:33,1,1.4,,,-73.97673797607422,40.77528762817383,-73.96874237060547,40.76169204711914,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-13 18:12:02,2016-01-13 18:20:16,1,1.26,,,-73.9725112915039,40.7960205078125,-73.984130859375,40.77994155883789,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-21 09:28:29,2016-01-21 09:33:23,1,0.67,,,-73.97933197021484,40.750301361083984,-73.98516082763672,40.7418212890625,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,6.8 +2,2016-01-30 21:19:59,2016-01-30 21:46:01,2,5.46,,,-73.98245239257812,40.77457809448242,-74.0075912475586,40.71627426147461,1,N,1,21.5,0.5,0.5,0.3,4.56,0.0,27.36 +2,2016-01-07 20:32:08,2016-01-07 20:36:42,2,0.78,,,-73.99446868896484,40.739620208740234,-73.99900817871094,40.73429870605469,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-25 20:17:09,2016-01-25 20:32:58,1,1.91,,,-73.97785949707031,40.78681182861328,-73.98562622070312,40.76329040527344,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +2,2016-01-09 03:15:27,2016-01-09 03:20:15,1,1.14,,,-73.98880767822266,40.72214889526367,-74.00128173828125,40.731380462646484,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +1,2016-01-20 17:57:35,2016-01-20 18:33:28,1,4.6,,,-73.98242950439453,40.7753791809082,-73.99959564208984,40.72172546386719,1,N,1,22.5,1.0,0.5,0.3,6.05,0.0,30.35 +2,2016-01-01 02:36:26,2016-01-01 02:47:49,1,2.14,,,-74.00736236572266,40.70970153808594,-73.98870086669922,40.724098205566406,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-14 22:12:23,2016-01-14 23:02:25,1,24.5,,,-74.00798797607422,40.7071533203125,-73.75435638427734,40.70771026611328,1,N,2,68.5,0.5,0.5,0.3,0.0,0.0,69.8 +1,2016-01-18 13:00:02,2016-01-18 13:22:39,1,2.9,,,-73.98762512207031,40.721473693847656,-73.99459075927734,40.750614166259766,1,N,1,16.0,0.0,0.5,0.3,4.2,0.0,21.0 +2,2016-01-17 13:47:05,2016-01-17 14:14:32,5,11.57,,,-73.98838806152344,40.764305114746094,-73.87163543701172,40.77151870727539,1,N,1,34.0,0.0,0.5,0.3,6.0,5.54,46.34 +2,2016-01-27 16:06:05,2016-01-27 16:10:21,1,0.28,,,-73.97969818115234,40.7612190246582,-73.97663879394531,40.764320373535156,1,N,1,4.5,1.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-29 08:20:56,2016-01-29 08:30:07,1,1.2,,,-73.97867584228516,40.75040054321289,-73.97969055175781,40.76363754272461,1,N,1,7.5,0.0,0.5,0.3,1.24,0.0,9.54 +1,2016-01-06 13:31:03,2016-01-06 13:33:34,1,0.3,,,-73.9565200805664,40.76311111450195,-73.96202850341797,40.763641357421875,1,N,1,3.5,0.0,0.5,0.3,1.0,0.0,5.3 +1,2016-01-29 10:17:30,2016-01-29 10:29:46,1,2.1,,,-73.9683837890625,40.76806640625,-73.97368621826172,40.78956985473633,1,N,1,10.0,0.0,0.5,0.3,2.7,0.0,13.5 +2,2016-01-14 18:10:25,2016-01-14 18:23:49,5,1.34,,,-73.96162414550781,40.758758544921875,-73.97933959960938,40.765602111816406,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-28 21:05:21,2016-01-28 21:18:21,2,2.25,,,-73.9795913696289,40.73542022705078,-73.98948669433594,40.757389068603516,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +1,2016-01-04 09:56:57,2016-01-04 09:57:31,1,4.4,,,-74.03565979003906,40.725040435791016,-74.03565979003906,40.725040435791016,5,N,1,120.0,0.0,0.0,0.3,20.0,0.0,140.3 +2,2016-01-09 19:31:37,2016-01-09 19:48:37,6,2.49,,,-73.99867248535156,40.716888427734375,-73.994140625,40.74440002441406,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-02 23:38:29,2016-01-02 23:48:26,5,1.09,,,-74.00768280029297,40.74085998535156,-73.99085998535156,40.7347297668457,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-15 18:40:28,2016-01-15 18:49:44,1,1.7,,,-73.97852325439453,40.754150390625,-73.959228515625,40.765777587890625,1,N,1,8.5,1.0,0.5,0.3,2.0,0.0,12.3 +2,2016-01-12 01:09:27,2016-01-12 01:21:09,2,3.34,,,-73.99922943115234,40.71738052368164,-73.96159362792969,40.6822509765625,1,N,1,12.5,0.5,0.5,0.3,5.0,0.0,18.8 +2,2016-01-19 11:31:34,2016-01-19 11:35:04,2,0.61,,,-73.97974395751953,40.76606369018555,-73.98213958740234,40.759033203125,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +1,2016-01-16 23:26:27,2016-01-16 23:26:32,1,0.0,,,-73.97306060791016,40.74352264404297,-73.97305297851562,40.74352264404297,1,N,1,2.5,0.5,0.5,0.3,5.5,0.0,9.3 +1,2016-01-18 12:18:14,2016-01-18 12:33:56,1,1.5,,,-73.98999786376953,40.73320770263672,-73.9908676147461,40.7501335144043,1,N,1,11.0,0.0,0.5,0.3,1.0,0.0,12.8 +1,2016-01-12 23:06:20,2016-01-12 23:30:14,1,13.2,,,-73.87312316894531,40.77410888671875,-73.96598052978516,40.6892204284668,1,N,1,37.5,0.5,0.5,0.3,9.7,0.0,48.5 +2,2016-01-10 17:27:11,2016-01-10 17:34:33,2,1.21,,,-74.00389862060547,40.72581100463867,-73.9919204711914,40.73550033569336,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-16 12:01:55,2016-01-16 12:12:47,1,3.1,,,-73.97384643554688,40.78426742553711,-73.94005584716797,40.80549621582031,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,14.75 +2,2016-01-08 19:33:48,2016-01-08 19:44:28,5,2.01,,,-73.97501373291016,40.75310516357422,-73.95460510253906,40.769100189208984,1,N,1,9.5,1.0,0.5,0.3,1.35,0.0,12.65 +2,2016-01-28 06:39:35,2016-01-28 06:42:43,1,0.6,,,-73.88654327392578,40.744712829589844,-73.89647674560547,40.74644470214844,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +1,2016-01-24 13:34:51,2016-01-24 13:41:52,1,2.3,,,-73.96688842773438,40.764129638671875,-73.9820327758789,40.736183166503906,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-11 07:28:30,2016-01-11 07:48:55,6,4.05,,,-74.01447296142578,40.7181282043457,-73.98149108886719,40.75217056274414,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,20.76 +1,2016-01-11 06:19:54,2016-01-11 06:23:05,1,0.9,,,-73.98338317871094,40.771278381347656,-73.98336791992188,40.76091384887695,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +1,2016-01-21 18:35:05,2016-01-21 18:53:58,1,3.0,,,-73.9632568359375,40.793785095214844,-73.96969604492188,40.761322021484375,1,N,1,14.0,1.0,0.5,0.3,3.15,0.0,18.95 +1,2016-01-03 03:49:53,2016-01-03 04:01:48,1,0.6,,,-73.92496490478516,40.74411392211914,-73.91899871826172,40.74143981933594,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-18 15:49:20,2016-01-18 15:52:45,1,0.9,,,0.0,0.0,0.0,0.0,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-09 12:06:46,2016-01-09 12:11:54,1,0.7,,,-73.98695373535156,40.720947265625,-73.99644470214844,40.725467681884766,1,N,1,5.5,0.0,0.5,0.3,1.5,0.0,7.8 +2,2016-01-18 21:58:05,2016-01-18 22:00:40,3,0.43,,,-73.99510192871094,40.72515106201172,-74.00211334228516,40.7280387878418,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,6.36 +2,2016-01-02 15:20:36,2016-01-02 15:24:13,2,0.54,,,-73.99517059326172,40.733890533447266,-73.98705291748047,40.72991943359375,1,N,1,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-21 20:33:37,2016-01-21 20:52:24,1,2.7,,,-73.992431640625,40.743343353271484,-73.95983123779297,40.758270263671875,1,N,1,13.5,0.5,0.5,0.3,2.7,0.0,17.5 +2,2016-01-29 18:03:26,2016-01-29 18:17:15,1,1.21,,,-74.00495147705078,40.74672317504883,-73.99458312988281,40.76182556152344,1,N,1,9.5,1.0,0.5,0.3,1.0,0.0,12.3 +1,2016-01-12 16:39:56,2016-01-12 16:51:52,1,1.4,,,-73.97862243652344,40.766719818115234,-73.98324584960938,40.770042419433594,1,N,1,9.0,1.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-11 09:42:31,2016-01-11 09:47:33,1,1.0,,,-73.9874496459961,40.719905853271484,-73.98267364501953,40.73320007324219,1,N,1,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-29 11:25:04,2016-01-29 11:43:50,1,2.3,,,-73.96100616455078,40.780433654785156,-73.98978424072266,40.77528762817383,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,17.15 +2,2016-01-11 10:43:39,2016-01-11 11:08:56,1,8.61,,,-73.87444305419922,40.774085998535156,-73.98735809326172,40.7471809387207,1,N,1,27.5,0.0,0.5,0.3,6.77,5.54,40.61 +2,2016-01-12 07:33:03,2016-01-12 07:38:29,4,1.08,,,-73.99175262451172,40.74955749511719,-73.98202514648438,40.75627136230469,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-19 06:55:12,2016-01-19 07:09:16,1,2.4,,,-73.98823547363281,40.779293060302734,-73.9728012084961,40.75889205932617,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +2,2016-01-15 13:10:18,2016-01-15 13:31:09,1,5.56,,,-73.99143981933594,40.74955749511719,-74.0094223022461,40.702003479003906,1,N,1,20.5,0.0,0.5,0.3,0.0,0.0,21.3 +2,2016-01-09 13:52:31,2016-01-09 14:01:17,1,1.44,,,-73.999267578125,40.718719482421875,-73.98313903808594,40.7250862121582,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +1,2016-01-06 18:40:10,2016-01-06 18:48:50,1,1.3,,,-73.99373626708984,40.735130310058594,-74.00489044189453,40.74713897705078,1,N,1,7.5,1.0,0.5,0.3,1.85,0.0,11.15 +1,2016-01-04 09:51:42,2016-01-04 10:00:31,1,1.1,,,-73.97592163085938,40.754180908203125,-73.97950744628906,40.765464782714844,1,N,1,7.5,0.0,0.5,0.3,2.45,0.0,10.75 +2,2016-01-11 22:37:49,2016-01-11 22:44:20,6,1.69,,,-73.97547912597656,40.75997543334961,-73.99178314208984,40.74462127685547,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-01 10:16:56,2016-01-01 10:22:13,1,1.4,,,-73.9525375366211,40.77219009399414,-73.9665756225586,40.75751495361328,1,N,1,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-04 17:45:00,2016-01-04 18:22:44,1,9.84,,,-74.0057144165039,40.70651626586914,-73.95511627197266,40.79961395263672,1,N,2,33.0,1.0,0.5,0.3,0.0,0.0,34.8 +1,2016-01-07 13:52:19,2016-01-07 14:08:44,1,1.6,,,-73.98741149902344,40.747474670410156,-74.0005874633789,40.758506774902344,1,N,1,11.5,0.0,0.5,0.3,4.0,0.0,16.3 +1,2016-01-22 23:08:48,2016-01-22 23:21:20,1,1.4,,,-74.00237274169922,40.734352111816406,-73.98130798339844,40.72496795654297,1,N,1,9.5,0.5,0.5,0.3,0.7,0.0,11.5 +1,2016-01-12 23:35:04,2016-01-12 23:49:32,1,3.7,,,-73.98881530761719,40.7592658996582,-73.98316955566406,40.72350311279297,1,N,1,14.0,0.5,0.5,0.3,3.05,0.0,18.35 +1,2016-01-12 22:32:40,2016-01-12 22:41:39,1,1.3,,,-73.98550415039062,40.71921920776367,-73.98316955566406,40.72660446166992,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +2,2016-01-08 23:04:51,2016-01-08 23:18:05,1,2.33,,,-73.98512268066406,40.758888244628906,-73.99285125732422,40.73237991333008,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +2,2016-01-14 02:56:50,2016-01-14 03:00:43,1,0.89,,,-73.88883209228516,40.743438720703125,-73.9050521850586,40.74528884887695,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-04 20:37:17,2016-01-04 20:49:43,1,4.7,,,-74.01509094238281,40.71391296386719,-73.97590637207031,40.7307243347168,1,N,1,15.5,0.5,0.5,0.3,3.35,0.0,20.15 +1,2016-01-20 21:13:31,2016-01-20 21:27:35,1,2.0,,,-73.9871826171875,40.766117095947266,-73.95881652832031,40.764923095703125,1,N,1,10.5,0.5,0.5,0.3,2.35,0.0,14.15 +2,2016-01-26 17:10:54,2016-01-26 17:25:16,3,2.04,,,-73.99613952636719,40.74034881591797,-74.00337982177734,40.7174186706543,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-16 20:24:41,2016-01-16 20:26:24,1,0.4,,,-73.9715347290039,40.75815200805664,-73.97540283203125,40.752288818359375,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,4.8 +1,2016-01-11 07:17:41,2016-01-11 07:24:04,1,1.8,,,-73.96741485595703,40.793216705322266,-73.98472595214844,40.769412994384766,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-11 07:55:42,2016-01-11 08:08:17,1,1.98,,,-73.97053527832031,40.752742767333984,-74.00086212158203,40.75779724121094,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +1,2016-01-01 02:00:21,2016-01-01 02:06:06,1,1.1,,,-73.91608428955078,40.767921447753906,-73.91578674316406,40.76017379760742,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,8.75 +2,2016-01-30 23:32:56,2016-01-30 23:36:51,3,0.98,,,-73.9977035522461,40.76142883300781,-74.0038070678711,40.75001525878906,1,N,1,5.5,0.5,0.5,0.3,2.0,0.0,8.8 +1,2016-01-28 20:18:59,2016-01-28 20:24:58,1,1.6,,,-73.97177124023438,40.761962890625,-73.95571899414062,40.77614212036133,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-17 16:39:51,2016-01-17 16:44:49,1,1.0,,,-73.97605895996094,40.74469757080078,-73.98650360107422,40.73383331298828,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-22 12:32:34,2016-01-22 12:37:10,1,0.8,,,-74.0089340209961,40.71333694458008,-74.00193786621094,40.72428894042969,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-09 23:03:31,2016-01-09 23:31:38,3,3.8,,,-73.98216247558594,40.75728225708008,-73.9889907836914,40.71867370605469,1,N,1,19.5,0.5,0.5,0.3,2.2,0.0,23.0 +1,2016-01-04 18:34:36,2016-01-04 18:39:10,2,0.9,,,-73.98845672607422,40.7639274597168,-73.98390197753906,40.754371643066406,1,N,1,5.5,1.0,0.5,0.3,2.0,0.0,9.3 +1,2016-01-19 20:58:15,2016-01-19 21:00:17,1,0.4,,,-73.96647644042969,40.7937126159668,-73.97259521484375,40.79594039916992,1,N,1,3.5,0.5,0.5,0.3,0.3,0.0,5.1 +1,2016-01-03 03:26:01,2016-01-03 03:28:54,1,0.4,,,-73.9998779296875,40.72849655151367,-74.00187683105469,40.73043441772461,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +1,2016-01-03 18:41:38,2016-01-03 18:55:51,3,1.6,,,-73.98234558105469,40.76063537597656,-73.99105072021484,40.748653411865234,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,12.3 +1,2016-01-20 12:34:42,2016-01-20 12:49:25,1,1.0,,,-73.9821548461914,40.756988525390625,-73.96793365478516,40.7554817199707,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-03 15:52:33,2016-01-03 16:03:55,1,1.15,,,-73.99244689941406,40.747825622558594,-73.984619140625,40.75101089477539,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +1,2016-01-03 10:44:04,2016-01-03 10:59:23,2,4.4,,,-74.00143432617188,40.70964050292969,-73.98982238769531,40.74707794189453,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,17.3 +2,2016-01-19 18:49:44,2016-01-19 19:12:28,1,2.84,,,-73.98655700683594,40.7343864440918,-73.98052215576172,40.76518630981445,1,N,1,15.5,1.0,0.5,0.3,3.46,0.0,20.76 +2,2016-01-03 16:32:42,2016-01-03 16:36:50,1,0.75,,,-73.97933959960938,40.767059326171875,-73.98646545410156,40.76410675048828,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-13 07:45:08,2016-01-13 08:08:26,1,4.2,,,-73.95462036132812,40.80087661743164,-73.99793243408203,40.754547119140625,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,18.8 +2,2016-01-21 20:53:18,2016-01-21 20:58:26,1,0.51,,,-73.98738098144531,40.73853302001953,-73.98314666748047,40.74435806274414,1,N,1,5.0,0.5,0.5,0.3,1.89,0.0,8.19 +2,2016-01-17 12:12:40,2016-01-17 12:23:30,1,1.71,,,-73.97595977783203,40.753196716308594,-73.98624420166016,40.770774841308594,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-28 13:40:55,2016-01-28 13:50:08,2,0.91,,,-73.99087524414062,40.754722595214844,-73.98385620117188,40.74665069580078,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-29 20:24:02,2016-01-29 20:46:05,4,4.65,,,-73.9897689819336,40.76799774169922,-73.9985122680664,40.71961975097656,1,N,1,19.5,0.5,0.5,0.3,4.16,0.0,24.96 +1,2016-01-06 23:30:05,2016-01-06 23:42:50,1,2.5,,,-73.9757308959961,40.77648162841797,-73.97107696533203,40.75139617919922,1,N,1,11.5,0.5,0.5,0.3,1.5,0.0,14.3 +1,2016-01-22 06:58:08,2016-01-22 07:05:49,1,1.4,,,-73.97574615478516,40.75191116333008,-73.97648620605469,40.738868713378906,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-28 17:53:26,2016-01-28 17:59:26,6,0.78,,,-73.99434661865234,40.74053955078125,-73.99195098876953,40.74922561645508,1,N,1,5.5,1.0,0.5,0.3,1.82,0.0,9.12 +1,2016-01-14 22:11:42,2016-01-14 22:15:17,1,0.9,,,-73.97777557373047,40.75464630126953,-73.97657012939453,40.765037536621094,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,7.55 +1,2016-01-21 23:11:24,2016-01-21 23:31:31,1,4.2,,,-73.99291229248047,40.73372268676758,-73.9489974975586,40.77167510986328,1,N,1,16.5,0.5,0.5,0.3,3.55,0.0,21.35 +1,2016-01-02 07:40:07,2016-01-02 07:48:32,1,1.7,,,-73.9769287109375,40.790260314941406,-73.95384216308594,40.7795524597168,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +1,2016-01-15 00:23:30,2016-01-15 00:30:03,1,1.8,,,-74.00035858154297,40.732303619384766,-73.97543334960938,40.733116149902344,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,9.3 +2,2016-01-10 09:46:40,2016-01-10 09:54:52,1,1.31,,,-73.99823760986328,40.71358108520508,-73.98365020751953,40.725868225097656,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-22 09:22:30,2016-01-22 09:33:44,5,1.72,,,-73.98359680175781,40.744327545166016,-74.00193786621094,40.732818603515625,1,N,1,9.5,0.0,0.5,0.3,0.7,0.0,11.0 +1,2016-01-10 15:46:42,2016-01-10 15:55:43,1,1.9,,,-74.00407409667969,40.747703552246094,-73.98367309570312,40.76620864868164,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-24 21:38:05,2016-01-24 21:48:11,2,2.5,,,-73.98758697509766,40.760311126708984,-73.98026275634766,40.7830924987793,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,13.55 +2,2016-01-09 20:30:31,2016-01-09 20:47:22,5,3.24,,,-73.98722076416016,40.73910140991211,-73.95597076416016,40.77275085449219,1,N,1,14.5,0.5,0.5,0.3,2.0,0.0,17.8 +1,2016-01-23 13:46:17,2016-01-23 13:56:21,1,1.9,,,-73.98335266113281,40.734317779541016,-73.9734878540039,40.74824142456055,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-17 00:01:20,2016-01-17 00:05:48,2,0.37,,,-73.9980697631836,40.74517822265625,-73.99471282958984,40.745361328125,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-09 13:34:44,2016-01-09 14:05:40,1,17.32,,,-73.98726654052734,40.74409484863281,-73.7900390625,40.64689254760742,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-27 07:33:51,2016-01-27 07:47:50,1,1.9,,,-73.95513916015625,40.773582458496094,-73.97374725341797,40.754356384277344,1,N,1,10.5,0.0,0.5,0.3,2.0,0.0,13.3 +2,2016-01-02 16:51:06,2016-01-02 17:07:09,3,2.32,,,-73.99568939208984,40.764591217041016,-73.97478485107422,40.74443817138672,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,15.36 +1,2016-01-16 03:39:17,2016-01-16 03:43:14,1,0.8,,,-73.99018096923828,40.75912857055664,-73.99079895019531,40.75101852416992,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-26 09:35:08,2016-01-26 10:06:14,1,4.3,,,-73.98286437988281,40.73105239868164,-73.9499282836914,40.783687591552734,1,N,1,21.0,0.0,0.5,0.3,4.35,0.0,26.15 +2,2016-01-21 00:46:22,2016-01-21 00:53:02,2,1.48,,,-73.94611358642578,40.80706024169922,-73.94259643554688,40.79045104980469,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-05 18:10:52,2016-01-05 18:19:01,1,0.92,,,-73.98503875732422,40.748077392578125,-73.98503875732422,40.748077392578125,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-21 14:19:00,2016-01-21 14:27:32,1,0.8,,,-73.98905181884766,40.753318786621094,-73.99922180175781,40.73912048339844,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-10 20:13:48,2016-01-10 20:36:27,1,6.75,,,-73.97559356689453,40.789772033691406,-74.00531005859375,40.70931625366211,1,N,1,23.5,0.5,0.5,0.3,4.96,0.0,29.76 +1,2016-01-22 08:30:47,2016-01-22 09:15:24,1,18.0,,,-73.97874450683594,40.76325225830078,-74.17710876464844,40.69479751586914,3,N,2,70.5,0.0,0.0,0.3,0.0,18.5,89.3 +1,2016-01-11 12:56:35,2016-01-11 13:02:24,1,0.6,,,-73.96107482910156,40.780540466308594,-73.9628677368164,40.773338317871094,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-08 18:36:29,2016-01-08 18:46:46,1,2.1,,,-74.01387023925781,40.71248245239258,-74.0061264038086,40.73982238769531,1,N,1,9.5,1.0,0.5,0.3,3.0,0.0,14.3 +2,2016-01-30 02:26:28,2016-01-30 02:41:35,6,5.27,,,-73.99024963378906,40.714298248291016,-73.9209976196289,40.698699951171875,1,N,1,17.5,0.5,0.5,0.3,3.76,0.0,22.56 +1,2016-01-20 11:00:44,2016-01-20 11:08:41,1,0.9,,,-73.97602081298828,40.733341217041016,-73.98627471923828,40.74014663696289,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +1,2016-01-21 00:25:44,2016-01-21 00:32:53,1,2.3,,,-73.98408508300781,40.73751449584961,-73.96329498291016,40.76624298095703,1,N,1,9.0,0.5,0.5,0.3,1.5,0.0,11.8 +2,2016-01-19 20:22:08,2016-01-19 20:25:04,1,0.91,,,-73.96701049804688,40.79359817504883,-73.97642517089844,40.7859001159668,1,N,1,4.5,0.5,0.5,0.3,1.0,0.0,6.8 +2,2016-01-29 16:42:27,2016-01-29 17:40:38,2,18.4,,,-73.77669525146484,40.64542007446289,-73.98271179199219,40.75876235961914,2,N,1,52.0,0.0,0.5,0.3,14.58,5.54,72.92 +2,2016-01-05 15:59:42,2016-01-05 16:18:43,1,1.86,,,-73.9819564819336,40.74617385864258,-73.98086547851562,40.765724182128906,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-29 17:27:40,2016-01-29 17:34:16,1,1.18,,,-73.96421813964844,40.76478576660156,-73.95104217529297,40.77253341674805,1,N,1,6.5,1.0,0.5,0.3,2.49,0.0,10.79 +1,2016-01-11 18:49:16,2016-01-11 18:53:10,1,0.6,,,-73.9820556640625,40.76806640625,-73.98208618164062,40.775962829589844,1,N,1,4.5,1.0,0.5,0.3,1.55,0.0,7.85 +2,2016-01-22 22:33:45,2016-01-22 23:02:10,1,3.52,,,-73.98989868164062,40.760658264160156,-73.98533630371094,40.72373962402344,1,N,1,19.5,0.5,0.5,0.3,4.16,0.0,24.96 +2,2016-01-17 14:48:39,2016-01-17 14:54:36,1,1.12,,,-73.95555114746094,40.779541015625,-73.95321655273438,40.768341064453125,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-15 19:23:56,2016-01-15 19:37:22,1,1.53,,,-73.99961853027344,40.74354934692383,-73.98548126220703,40.763221740722656,1,N,1,10.0,1.0,0.5,0.3,2.95,0.0,14.75 +1,2016-01-03 15:05:53,2016-01-03 15:17:17,2,2.0,,,-74.00318145751953,40.72489547729492,-73.98869323730469,40.7469482421875,1,N,1,9.5,0.0,0.5,0.3,2.0,0.0,12.3 +2,2016-01-19 13:47:01,2016-01-19 13:50:13,1,0.53,,,-73.97943115234375,40.752906799316406,-73.97469329833984,40.75895309448242,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,6.3 +2,2016-01-19 23:32:44,2016-01-19 23:41:21,1,1.42,,,-73.9653091430664,40.76182174682617,-73.98583984375,40.763179779052734,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-04 07:51:39,2016-01-04 08:15:00,1,2.8,,,-73.99173736572266,40.74258041381836,-73.96359252929688,40.76784133911133,1,N,1,16.0,0.0,0.5,0.3,2.0,0.0,18.8 +2,2016-01-28 05:22:25,2016-01-28 05:27:05,1,1.29,,,-73.99774932861328,40.75680160522461,-73.9849624633789,40.77014923095703,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-04 18:30:49,2016-01-04 18:37:47,1,1.1,,,-74.008056640625,40.712337493896484,-73.99922943115234,40.72511672973633,1,N,1,6.5,1.0,0.5,0.3,2.45,0.0,10.75 +2,2016-01-20 18:47:17,2016-01-20 18:59:20,5,1.97,,,-73.98896026611328,40.77388000488281,-73.96942901611328,40.75749969482422,1,N,1,10.0,1.0,0.5,0.3,1.5,0.0,13.3 +1,2016-01-06 13:08:37,2016-01-06 13:14:21,1,0.4,,,-73.97176361083984,40.75421142578125,-73.9678955078125,40.75942611694336,1,N,1,5.0,0.0,0.5,0.3,0.64,0.0,6.44 +2,2016-01-14 15:00:51,2016-01-14 15:11:47,5,1.47,,,-73.99440002441406,40.74111557006836,-73.97802734375,40.75247573852539,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,11.62 +2,2016-01-13 20:27:23,2016-01-13 20:34:16,1,1.22,,,-73.97068786621094,40.75244903564453,-73.98251342773438,40.73849105834961,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-09 04:16:20,2016-01-09 04:22:13,1,1.73,,,-73.96979522705078,40.75233840942383,-73.98552703857422,40.737545013427734,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-07 09:04:38,2016-01-07 09:11:28,1,1.1,,,-73.994873046875,40.73982620239258,-73.99564361572266,40.72819137573242,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-09 13:59:13,2016-01-09 14:26:56,1,4.94,,,-73.99170684814453,40.74336242675781,-73.95220947265625,40.746803283691406,1,N,1,21.5,0.0,0.5,0.3,3.0,0.0,25.3 +2,2016-01-15 20:38:15,2016-01-15 20:47:46,2,2.23,,,-74.00322723388672,40.73298645019531,-73.99742126464844,40.75389099121094,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +1,2016-01-05 22:27:38,2016-01-05 22:55:29,1,10.9,,,-73.86280822753906,40.76909255981445,-73.98149871826172,40.714725494384766,1,N,1,33.0,0.5,0.5,0.3,2.0,0.0,36.3 +1,2016-01-12 22:01:20,2016-01-12 22:06:23,1,1.0,,,-73.96682739257812,40.75337600708008,-73.97309112548828,40.74362564086914,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,8.15 +2,2016-01-16 10:43:35,2016-01-16 10:43:38,1,0.0,,,0.0,0.0,-73.77639770507812,40.64537811279297,2,N,1,52.0,0.0,0.5,0.3,13.2,0.0,66.0 +2,2016-01-28 13:47:16,2016-01-28 14:12:52,1,1.42,,,-73.99115753173828,40.74067687988281,-73.98347473144531,40.75707244873047,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,19.56 +1,2016-01-30 10:36:53,2016-01-30 10:43:54,1,1.1,,,0.0,0.0,0.0,0.0,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-15 06:18:10,2016-01-15 06:30:29,1,3.3,,,-73.94930267333984,40.78025817871094,-73.98467254638672,40.76109313964844,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,15.95 +1,2016-01-08 02:40:56,2016-01-08 02:48:14,1,1.6,,,-73.9688720703125,40.7577018737793,-73.98822784423828,40.7696647644043,1,Y,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +2,2016-01-25 17:38:12,2016-01-25 17:54:08,2,1.4,,,-73.96882629394531,40.764156341552734,-73.97464752197266,40.7778434753418,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-11 11:32:16,2016-01-11 11:47:03,1,1.02,,,-73.97573852539062,40.75154113769531,-73.99009704589844,40.75063705444336,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-13 11:21:16,2016-01-13 11:28:53,1,1.0,,,-73.96685028076172,40.752986907958984,-73.97885131835938,40.75092315673828,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-02 21:30:33,2016-01-02 21:37:14,2,1.5,,,-73.96610260009766,40.76227951049805,-73.9493637084961,40.776695251464844,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-09 19:23:35,2016-01-09 19:29:36,1,0.75,,,-73.99313354492188,40.73649978637695,-73.99024963378906,40.72917175292969,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-27 01:20:25,2016-01-27 01:31:59,1,3.0,,,0.0,0.0,-73.97827911376953,40.72929763793945,1,N,1,12.0,0.5,0.5,0.3,3.3,0.0,16.6 +1,2016-01-27 20:22:41,2016-01-27 20:34:32,1,1.7,,,-74.00196838378906,40.71534729003906,-73.9850082397461,40.73615264892578,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,12.95 +2,2016-01-02 13:27:55,2016-01-02 13:35:00,6,1.73,,,-73.99461364746094,40.72797775268555,-73.99835205078125,40.745365142822266,1,N,1,7.5,0.0,0.5,0.3,2.08,0.0,10.38 +2,2016-01-12 10:43:20,2016-01-12 10:53:02,4,1.71,,,-73.9587631225586,40.77792739868164,-73.97557067871094,40.79197692871094,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +2,2016-01-29 12:25:05,2016-01-29 12:37:03,6,2.01,,,-74.01162719726562,40.709991455078125,-73.99614715576172,40.73371887207031,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-11 14:26:55,2016-01-11 14:42:15,2,2.6,,,-73.98123168945312,40.78112030029297,-73.981689453125,40.752498626708984,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +1,2016-01-13 17:34:59,2016-01-13 17:40:09,1,0.8,,,-73.99759674072266,40.746402740478516,-73.99057006835938,40.756202697753906,1,N,1,5.5,1.0,0.5,0.3,1.45,0.0,8.75 +2,2016-01-04 22:04:01,2016-01-04 22:30:25,1,12.03,,,-73.78217315673828,40.64480972290039,-73.89582824707031,40.7413215637207,1,N,2,35.5,0.5,0.5,0.3,0.0,0.0,36.8 +1,2016-01-30 00:05:00,2016-01-30 00:13:31,1,2.0,,,-74.00531005859375,40.71844482421875,-73.9915771484375,40.744869232177734,1,N,1,8.5,0.5,0.5,0.3,1.95,0.0,11.75 +1,2016-01-22 09:14:18,2016-01-22 09:22:15,1,0.8,,,-73.96914672851562,40.75434875488281,-73.98053741455078,40.76084518432617,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-29 21:48:38,2016-01-29 22:06:04,6,1.86,,,-74.00199890136719,40.73807144165039,-73.99205780029297,40.7238883972168,1,N,1,12.0,0.5,0.5,0.3,0.15,0.0,13.45 +2,2016-01-10 13:47:16,2016-01-10 14:24:50,6,20.2,,,-73.9646987915039,40.75600814819336,-73.80392456054688,40.66267776489258,2,N,1,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-02 10:45:29,2016-01-02 10:49:20,1,0.8,,,-73.96746826171875,40.80345153808594,-73.97352600097656,40.792293548583984,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-08 12:44:25,2016-01-08 13:03:55,2,3.21,,,-73.9776382446289,40.77399444580078,-74.00591278076172,40.745361328125,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,18.96 +2,2016-01-15 02:30:25,2016-01-15 02:39:55,2,3.21,,,-73.98323059082031,40.7221565246582,-73.96932220458984,40.76007080078125,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +1,2016-01-25 14:07:47,2016-01-25 14:16:07,1,1.2,,,-73.9761734008789,40.75128936767578,-73.98977661132812,40.74174118041992,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +1,2016-01-22 09:03:20,2016-01-22 09:23:20,2,2.0,,,-73.93972778320312,40.75149917602539,-73.95528411865234,40.76472473144531,1,N,1,13.5,0.0,0.5,0.3,2.15,0.0,16.45 +2,2016-01-29 23:27:06,2016-01-29 23:28:38,5,0.52,,,-73.98658752441406,40.7564811706543,-73.99163818359375,40.75020980834961,1,N,1,3.5,0.5,0.5,0.3,0.0,0.0,4.8 +2,2016-01-09 00:40:13,2016-01-09 01:03:23,5,5.94,,,-73.99776458740234,40.72602081298828,-73.95089721679688,40.663917541503906,1,N,1,21.5,0.5,0.5,0.3,4.56,0.0,27.36 +2,2016-01-08 17:35:32,2016-01-08 17:41:40,1,0.39,,,-73.97244262695312,40.75350570678711,-73.9686050415039,40.756595611572266,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,8.3 +1,2016-01-07 18:58:40,2016-01-07 19:15:18,1,2.8,,,-73.97374725341797,40.76397705078125,-73.97083282470703,40.79549026489258,1,N,1,13.0,1.0,0.5,0.3,1.75,0.0,16.55 +2,2016-01-19 10:18:57,2016-01-19 10:37:34,1,4.12,,,-73.98224639892578,40.745948791503906,-74.0141830444336,40.713951110839844,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,20.76 +1,2016-01-20 02:37:46,2016-01-20 02:47:59,1,2.8,,,-74.00425720214844,40.7424201965332,-74.00707244873047,40.710784912109375,1,N,1,11.0,0.5,0.5,0.3,1.5,0.0,13.8 +1,2016-01-20 10:31:21,2016-01-20 10:49:44,1,2.8,,,-73.95528411865234,40.78285598754883,-73.98779296875,40.76699447631836,1,N,1,14.0,0.0,0.5,0.3,2.95,0.0,17.75 +2,2016-01-03 18:23:13,2016-01-03 18:34:03,1,1.39,,,-73.98116302490234,40.72917938232422,-73.9945068359375,40.74095916748047,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +1,2016-01-04 17:23:31,2016-01-04 17:49:13,1,4.7,,,-73.99409484863281,40.73517608642578,-73.99711608886719,40.684593200683594,1,N,1,19.0,1.0,0.5,0.3,4.15,0.0,24.95 +1,2016-01-07 19:44:23,2016-01-07 20:06:46,1,3.3,,,-73.98462677001953,40.75432586669922,-73.99807739257812,40.71784973144531,1,N,2,16.0,1.0,0.5,0.3,0.0,0.0,17.8 +2,2016-01-16 22:50:25,2016-01-16 22:58:44,1,1.2,,,-73.99986267089844,40.743350982666016,-74.00118255615234,40.731781005859375,1,N,1,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +1,2016-01-22 07:49:51,2016-01-22 08:05:05,1,2.1,,,-73.95746612548828,40.77402114868164,-73.98226165771484,40.77006530761719,1,N,1,12.0,0.0,0.5,0.3,1.0,0.0,13.8 +1,2016-01-18 15:42:56,2016-01-18 15:54:17,2,1.3,,,-73.97479248046875,40.75677490234375,-73.9872817993164,40.75068664550781,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-02 12:04:42,2016-01-02 12:13:01,1,1.9,,,-73.98165130615234,40.74687194824219,-74.00122833251953,40.727691650390625,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +2,2016-01-05 22:21:01,2016-01-05 22:31:47,1,2.54,,,-73.98811340332031,40.75165939331055,-73.96101379394531,40.76736831665039,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,11.8 +2,2016-01-01 04:12:56,2016-01-01 04:31:33,1,10.25,,,-73.9219970703125,40.76035690307617,-73.79022979736328,40.77153778076172,1,N,2,29.5,0.5,0.5,0.3,0.0,0.0,30.8 +1,2016-01-19 00:09:30,2016-01-19 00:13:15,2,0.9,,,-73.98968505859375,40.734493255615234,-73.99871063232422,40.742366790771484,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +1,2016-01-05 06:28:47,2016-01-05 06:32:32,1,0.7,,,-73.99429321289062,40.75632095336914,-73.98687744140625,40.76169204711914,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +1,2016-01-09 18:17:26,2016-01-09 18:23:11,1,0.5,,,-73.9774398803711,40.74676513671875,-73.98304748535156,40.749359130859375,1,N,1,5.5,0.0,0.5,0.3,2.0,0.0,8.3 +2,2016-01-06 05:18:17,2016-01-06 05:23:40,1,0.75,,,-73.98210144042969,40.744991302490234,-73.99461364746094,40.750919342041016,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-29 19:45:06,2016-01-29 19:51:44,2,1.58,,,-73.97412872314453,40.751766204833984,-73.95935821533203,40.771297454833984,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-29 18:34:25,2016-01-29 18:38:01,1,0.64,,,-73.99359130859375,40.721290588378906,-73.99044036865234,40.728904724121094,1,N,1,4.5,1.0,0.5,0.3,1.58,0.0,7.88 +1,2016-01-16 13:19:02,2016-01-16 13:27:31,1,1.8,,,-73.99620056152344,40.726470947265625,-73.9998779296875,40.7419319152832,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-15 22:38:26,2016-01-15 22:57:13,1,3.9,,,-73.9919204711914,40.72712707519531,-73.95919799804688,40.771602630615234,1,N,1,16.5,0.5,0.5,0.3,1.0,0.0,18.8 +1,2016-01-16 17:48:07,2016-01-16 18:00:39,1,1.5,,,-73.99057006835938,40.750423431396484,-73.97151947021484,40.753196716308594,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-17 00:42:17,2016-01-17 00:57:04,1,3.78,,,-73.9974365234375,40.7620849609375,-74.01144409179688,40.714515686035156,1,N,1,14.5,0.5,0.5,0.3,3.95,0.0,19.75 +2,2016-01-07 13:56:03,2016-01-07 14:09:51,2,2.32,,,-73.93315124511719,40.74509048461914,-73.92636108398438,40.76599884033203,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-10 19:55:53,2016-01-10 20:11:42,1,2.86,,,-73.98925018310547,40.75730895996094,-73.97552490234375,40.733131408691406,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +1,2016-01-22 08:00:00,2016-01-22 08:13:19,1,2.4,,,-73.99909210205078,40.73439407348633,-73.97305297851562,40.75282669067383,1,N,1,11.0,0.0,0.5,0.3,1.2,0.0,13.0 +1,2016-01-15 09:26:28,2016-01-15 09:33:47,1,1.3,,,-73.96238708496094,40.756404876708984,-73.95565032958984,40.77194595336914,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,9.75 +1,2016-01-01 16:20:07,2016-01-01 16:29:53,1,2.2,,,-73.99590301513672,40.744163513183594,-73.97151947021484,40.762168884277344,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-19 22:37:29,2016-01-19 23:01:31,1,11.27,,,-73.94774627685547,40.77900314331055,-73.86222076416016,40.90254211425781,1,N,2,32.5,0.5,0.5,0.3,0.0,0.0,33.8 +2,2016-01-10 16:31:34,2016-01-10 16:52:41,4,5.52,,,-74.01023864746094,40.70957946777344,-73.98882293701172,40.75912857055664,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,20.3 +2,2016-01-11 11:36:19,2016-01-11 12:03:35,2,2.75,,,-73.99065399169922,40.75102996826172,-73.95850372314453,40.7621955871582,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,17.8 +2,2016-01-14 22:29:34,2016-01-14 22:38:46,1,2.21,,,-73.98770141601562,40.73265075683594,-73.99610137939453,40.753570556640625,1,N,1,9.0,0.5,0.5,0.3,1.5,0.0,11.8 +1,2016-01-10 03:10:27,2016-01-10 03:16:19,1,1.1,,,-73.97809600830078,40.74557876586914,-73.98775482177734,40.73819351196289,1,N,1,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-24 13:26:03,2016-01-24 13:34:27,1,1.21,,,-73.95431518554688,40.76417922973633,-73.97007751464844,40.759254455566406,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-25 07:51:14,2016-01-25 08:05:43,1,1.6,,,-73.96354675292969,40.77449035644531,-73.97364044189453,40.78963851928711,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-03 16:00:19,2016-01-03 16:08:46,1,1.24,,,-73.98253631591797,40.76292037963867,-73.99443817138672,40.750240325927734,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-03 22:39:34,2016-01-03 22:53:00,1,3.5,,,-73.98851776123047,40.753570556640625,-74.01168060302734,40.70771026611328,1,N,1,12.5,0.5,0.5,0.3,2.0,0.0,15.8 +1,2016-01-13 13:15:46,2016-01-13 13:29:42,1,1.3,,,-73.97456359863281,40.75054931640625,-73.98533630371094,40.74864196777344,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-09 02:04:22,2016-01-09 02:13:49,1,1.03,,,-73.98812866210938,40.72789001464844,-73.98585510253906,40.719356536865234,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +1,2016-01-19 19:25:23,2016-01-19 19:33:32,1,1.1,,,-73.95191192626953,40.76933288574219,-73.94766998291016,40.78193283081055,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-16 16:11:50,2016-01-16 16:18:33,1,1.3,,,-73.9832992553711,40.773529052734375,-73.98583984375,40.75728988647461,1,N,1,6.5,1.0,0.5,0.3,2.05,0.0,10.35 +2,2016-01-22 16:24:42,2016-01-22 16:37:00,1,1.73,,,-73.98157501220703,40.78044509887695,-73.96977996826172,40.7999153137207,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-30 19:05:54,2016-01-30 19:10:41,1,0.76,,,-73.99423217773438,40.75014877319336,-74.00566101074219,40.75094985961914,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-25 09:40:03,2016-01-25 10:03:43,2,1.83,,,-73.99085998535156,40.75600814819336,-73.96800231933594,40.76552963256836,1,N,1,15.0,0.0,0.5,0.3,4.74,0.0,20.54 +2,2016-01-06 08:29:49,2016-01-06 08:37:54,1,1.04,,,-73.9842529296875,40.73735046386719,-73.99749755859375,40.74504089355469,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-05 17:00:53,2016-01-05 17:09:41,1,1.0,,,-73.98799133300781,40.75503158569336,-73.98910522460938,40.74312973022461,1,N,1,7.0,1.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-08 18:08:04,2016-01-08 18:15:53,5,1.04,,,-73.97039031982422,40.75186538696289,-73.98148345947266,40.7471809387207,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-01 18:56:47,2016-01-01 19:06:59,1,1.7,,,-73.99955749511719,40.718231201171875,-74.00822448730469,40.735595703125,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +1,2016-01-15 13:10:40,2016-01-15 13:19:06,2,1.3,,,-73.97120666503906,40.78691482543945,-73.95594787597656,40.7762451171875,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-25 15:38:20,2016-01-25 15:57:37,1,1.15,,,-73.87579345703125,40.76546096801758,-73.87509155273438,40.750938415527344,1,N,1,12.5,0.0,0.5,0.3,1.8,0.0,15.1 +2,2016-01-26 20:14:36,2016-01-26 20:17:44,1,0.68,,,-73.9673080444336,40.75693893432617,-73.9732894897461,40.74816131591797,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,6.96 +1,2016-01-20 19:16:44,2016-01-20 19:59:02,4,4.0,,,-73.99014282226562,40.73524475097656,-73.95264434814453,40.71735382080078,1,N,1,25.5,1.0,0.5,0.3,5.0,0.0,32.3 +2,2016-01-06 23:00:02,2016-01-06 23:09:45,1,1.61,,,-73.98963165283203,40.739768981933594,-74.00287628173828,40.7340087890625,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +2,2016-01-19 20:01:11,2016-01-19 20:10:15,3,2.01,,,-73.9524154663086,40.78084182739258,-73.96215057373047,40.799896240234375,1,N,1,9.0,0.5,0.5,0.3,1.5,0.0,11.8 +1,2016-01-30 23:54:50,2016-01-31 00:01:09,1,0.7,,,-73.98380279541016,40.71511459350586,-73.98883819580078,40.72216033935547,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,8.3 +1,2016-01-08 07:38:52,2016-01-08 07:41:54,1,0.5,,,-73.99761962890625,40.76178741455078,-74.00364685058594,40.75918197631836,1,N,1,4.0,0.0,0.5,0.3,1.0,0.0,5.8 +1,2016-01-13 10:06:34,2016-01-13 10:23:35,1,1.0,,,-73.9921875,40.75406265258789,-73.97789001464844,40.753902435302734,1,N,1,11.0,0.0,0.5,0.3,1.77,0.0,13.57 +2,2016-01-30 09:40:13,2016-01-30 09:50:16,2,3.75,,,-73.98914337158203,40.75873947143555,-73.97077178955078,40.7976188659668,1,N,1,13.0,0.0,0.5,0.3,3.45,0.0,17.25 +1,2016-01-06 14:28:34,2016-01-06 15:09:45,1,11.1,,,-73.88530731201172,40.77311706542969,-74.01100158691406,40.71700668334961,1,N,2,39.0,0.0,0.5,0.3,0.0,0.0,39.8 +2,2016-01-27 23:30:17,2016-01-27 23:48:50,2,3.24,,,-73.99576568603516,40.74922180175781,-73.9587173461914,40.770713806152344,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,16.3 +2,2016-01-12 17:21:23,2016-01-12 17:31:40,1,1.68,,,-73.99436950683594,40.73503494262695,-73.97640991210938,40.74836349487305,1,N,1,9.0,1.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-12 05:54:39,2016-01-12 06:02:12,1,2.86,,,-73.98900604248047,40.69306564331055,-73.9928970336914,40.72773361206055,1,N,1,10.0,0.5,0.5,0.3,2.82,0.0,14.12 +2,2016-01-27 08:07:32,2016-01-27 08:29:01,4,7.8,,,-73.95105743408203,40.78287887573242,-73.87100982666016,40.77421188354492,1,N,1,26.5,0.0,0.5,0.3,2.5,5.54,35.34 +1,2016-01-11 14:42:08,2016-01-11 14:57:52,1,1.7,,,-73.97047424316406,40.76205825805664,-73.97728729248047,40.776771545410156,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-12 14:28:36,2016-01-12 14:38:38,4,1.81,,,-74.00516510009766,40.72005844116211,-74.00650024414062,40.73935317993164,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-13 18:32:47,2016-01-13 18:40:51,1,0.9,,,-73.96205139160156,40.77295684814453,-73.95040130615234,40.77146530151367,1,N,1,7.0,1.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-29 07:31:07,2016-01-29 07:42:54,1,1.8,,,-73.95793914794922,40.776153564453125,-73.97489929199219,40.752872467041016,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +2,2016-01-26 19:53:33,2016-01-26 19:55:11,1,0.42,,,-73.9822006225586,40.74604034423828,-73.9783706665039,40.75136947631836,1,N,1,3.5,1.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-15 20:06:34,2016-01-15 20:44:56,1,12.4,,,-73.87671661376953,40.77192687988281,-74.03022003173828,40.735965728759766,5,N,1,0.0,0.0,0.0,0.3,87.0,12.5,99.8 +1,2016-01-05 11:15:40,2016-01-05 11:19:17,2,0.5,,,-73.98475646972656,40.75431442260742,-73.97900390625,40.761505126953125,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,6.35 +2,2016-01-27 11:28:07,2016-01-27 11:37:23,1,1.06,,,-73.99629211425781,40.724853515625,-74.00885009765625,40.72587585449219,1,N,1,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-09 18:22:03,2016-01-09 18:22:03,2,0.0,,,-73.99706268310547,40.72967529296875,0.0,0.0,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,3.3 +1,2016-01-15 06:48:16,2016-01-15 06:59:54,1,4.2,,,-73.95904541015625,40.77531814575195,-73.98328399658203,40.73465347290039,1,N,1,14.5,0.0,0.5,0.3,1.5,0.0,16.8 +1,2016-01-27 06:14:26,2016-01-27 06:17:45,1,0.8,,,-73.9907455444336,40.74858856201172,-73.98696899414062,40.74215316772461,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-30 11:59:02,2016-01-30 12:13:24,1,4.3,,,-73.94737243652344,40.83085632324219,-73.9775619506836,40.78412628173828,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,19.56 +2,2016-01-01 03:15:28,2016-01-01 03:25:11,6,2.19,,,-73.97613525390625,40.68976593017578,-73.99163818359375,40.667057037353516,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +2,2016-01-04 20:09:28,2016-01-04 20:12:36,1,0.57,,,-73.95220184326172,40.77827072143555,-73.94966888427734,40.77252960205078,1,N,1,4.5,0.5,0.5,0.3,1.0,0.0,6.8 +1,2016-01-19 20:06:41,2016-01-19 20:18:32,1,2.0,,,-73.9754638671875,40.76091384887695,-73.95342254638672,40.7726936340332,1,N,1,10.0,0.5,0.5,0.3,1.5,0.0,12.8 +1,2016-01-22 11:43:00,2016-01-22 12:00:26,1,2.7,,,-73.9529800415039,40.765220642089844,-73.95137023925781,40.79380798339844,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +2,2016-01-01 11:44:35,2016-01-01 11:51:06,1,1.98,,,-73.9775619506836,40.76200866699219,-73.9554214477539,40.77680969238281,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-01 13:46:38,2016-01-01 13:58:30,4,3.8,,,-73.94459533691406,40.77927780151367,-73.98481750488281,40.7481575012207,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +2,2016-01-17 18:33:41,2016-01-17 18:44:34,1,1.15,,,-73.9906997680664,40.74005126953125,-73.98301696777344,40.73073959350586,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-24 17:48:47,2016-01-24 18:13:30,1,5.11,,,-73.97225189208984,40.7493782043457,-74.012939453125,40.70296859741211,1,N,1,22.0,0.0,0.5,0.3,4.56,0.0,27.36 +1,2016-01-20 10:01:28,2016-01-20 10:08:01,1,1.0,,,0.0,0.0,0.0,0.0,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-08 16:23:30,2016-01-08 16:33:57,1,1.31,,,-73.99681854248047,40.72317123413086,-74.00343322753906,40.73558044433594,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-13 22:47:17,2016-01-13 22:54:44,1,1.2,,,-73.99125671386719,40.732643127441406,-73.98063659667969,40.721656799316406,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +2,2016-01-08 13:20:13,2016-01-08 13:21:34,2,0.25,,,-74.01203918457031,40.702667236328125,-74.00885009765625,40.703460693359375,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,3.8 +2,2016-01-17 11:20:03,2016-01-17 11:29:51,1,1.89,,,-73.99098205566406,40.72795867919922,-73.98460388183594,40.74940872192383,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-30 02:35:09,2016-01-30 02:48:28,1,3.6,,,-73.98809814453125,40.73210144042969,-73.9549331665039,40.777400970458984,1,N,1,13.0,0.5,0.5,0.3,1.0,0.0,15.3 +2,2016-01-29 19:37:12,2016-01-29 19:49:07,6,1.42,,,-73.96739196777344,40.75852584838867,-73.97638702392578,40.744895935058594,1,N,1,9.0,1.0,0.5,0.3,3.24,0.0,14.04 +2,2016-01-22 10:36:41,2016-01-22 10:47:31,1,1.16,,,-73.97673034667969,40.751678466796875,-73.97145080566406,40.76519012451172,1,N,1,8.0,0.0,0.5,0.3,2.64,0.0,11.44 +1,2016-01-17 18:44:39,2016-01-17 18:50:37,1,0.9,,,-73.9581298828125,40.76067352294922,-73.94898986816406,40.7715950012207,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-13 21:47:06,2016-01-13 21:55:11,1,1.19,,,-73.98001861572266,40.76557159423828,-73.99398040771484,40.756649017333984,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +2,2016-01-04 12:48:45,2016-01-04 13:13:46,1,15.95,,,-74.01478576660156,40.704803466796875,-74.16243743896484,40.597049713134766,1,N,1,43.5,0.0,0.5,0.3,8.0,5.54,57.84 +2,2016-01-09 12:11:41,2016-01-09 12:22:21,2,1.5,,,-73.99661254882812,40.74285125732422,-73.98764038085938,40.760215759277344,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-11 15:32:19,2016-01-11 15:52:03,6,2.12,,,-73.98217010498047,40.76824188232422,-73.99368286132812,40.751708984375,1,N,1,13.0,0.0,0.5,0.3,1.5,0.0,15.3 +2,2016-01-02 01:18:56,2016-01-02 01:48:00,6,19.67,,,-73.77711486816406,40.646385192871094,-74.00627136230469,40.73370361328125,2,N,1,52.0,0.0,0.5,0.3,10.56,0.0,63.36 +1,2016-01-22 19:06:28,2016-01-22 19:30:52,1,2.4,,,-73.98165130615234,40.750099182128906,-73.99276733398438,40.721290588378906,1,N,1,15.5,1.0,0.5,0.3,2.0,0.0,19.3 +2,2016-01-10 18:45:45,2016-01-10 18:58:29,1,3.1,,,-73.97064971923828,40.745880126953125,-73.99186706542969,40.72605895996094,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-25 12:27:41,2016-01-25 12:52:56,5,3.37,,,-73.98428344726562,40.760501861572266,-73.95506286621094,40.788360595703125,1,N,1,18.0,0.0,0.5,0.3,3.76,0.0,22.56 +1,2016-01-02 19:10:12,2016-01-02 19:18:59,2,1.3,,,-73.9999008178711,40.74753189086914,-74.0008316040039,40.76194381713867,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-08 20:03:13,2016-01-08 20:08:51,1,0.99,,,-73.95465850830078,40.78390121459961,-73.9625244140625,40.7740364074707,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-30 15:16:10,2016-01-30 15:43:04,1,3.15,,,-74.00847625732422,40.744930267333984,-73.97721099853516,40.74717330932617,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,18.3 +1,2016-01-03 02:12:19,2016-01-03 02:24:42,1,3.0,,,-73.98770141601562,40.724761962890625,-74.00923156738281,40.70457458496094,1,N,1,11.0,0.5,0.5,0.3,2.45,0.0,14.75 +2,2016-01-17 21:55:20,2016-01-17 21:59:54,1,0.52,,,-73.98285675048828,40.761985778808594,-73.99095916748047,40.765235900878906,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-26 12:02:37,2016-01-26 12:07:42,5,0.64,,,-74.00711822509766,40.72835922241211,-74.00238037109375,40.72649002075195,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +1,2016-01-19 15:23:43,2016-01-19 16:24:34,3,20.3,,,-73.79025268554688,40.64381790161133,-73.99478912353516,40.622039794921875,1,N,2,63.5,0.0,0.5,0.3,0.0,0.0,64.3 +2,2016-01-18 03:22:03,2016-01-18 03:26:05,1,1.45,,,-74.00524139404297,40.71966552734375,-73.99405670166016,40.734310150146484,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-13 23:36:54,2016-01-13 23:43:43,1,1.02,,,-73.97904968261719,40.753150939941406,-73.97870635986328,40.745697021484375,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-12 10:15:26,2016-01-12 10:27:42,1,1.6,,,-73.98346710205078,40.75600051879883,-73.974853515625,40.74197006225586,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-13 20:39:44,2016-01-13 20:47:56,2,1.2,,,-73.99268341064453,40.73388671875,-73.97550201416016,40.73012924194336,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +2,2016-01-15 23:39:55,2016-01-16 00:15:06,1,6.64,,,-73.9828872680664,40.77190017700195,-73.9925537109375,40.702701568603516,1,N,1,27.0,0.5,0.5,0.3,5.66,0.0,33.96 +2,2016-01-19 11:20:33,2016-01-19 12:10:04,1,17.72,,,-73.98463439941406,40.76060104370117,-73.78252410888672,40.64476013183594,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-29 14:16:28,2016-01-29 14:33:17,1,3.2,,,-74.01434326171875,40.71416473388672,-73.9947738647461,40.750370025634766,1,N,1,14.0,0.0,0.5,0.3,2.95,0.0,17.75 +2,2016-01-28 22:53:21,2016-01-28 23:07:21,2,2.4,,,-74.00389862060547,40.72962951660156,-73.97846221923828,40.7529411315918,1,N,1,11.5,0.5,0.5,0.3,2.0,0.0,14.8 +2,2016-01-19 09:23:42,2016-01-19 09:41:29,2,1.34,,,-73.98567962646484,40.76331329345703,-74.00059509277344,40.757808685302734,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,14.76 +1,2016-01-14 12:07:03,2016-01-14 12:45:28,2,5.8,,,-73.9786376953125,40.77276611328125,-74.01077270507812,40.70963668823242,1,N,2,28.0,0.0,0.5,0.3,0.0,0.0,28.8 +2,2016-01-28 22:15:14,2016-01-28 22:33:08,1,4.24,,,-74.00923919677734,40.716270446777344,-73.97447967529297,40.765419006347656,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,17.3 +2,2016-01-02 21:36:56,2016-01-02 21:41:00,1,1.18,,,-73.94105529785156,40.79247283935547,-73.95232391357422,40.77717590332031,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-30 14:11:06,2016-01-30 14:27:15,6,1.4,,,-73.9946060180664,40.75058364868164,-73.98118591308594,40.76530838012695,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-01 10:54:49,2016-01-01 11:07:44,2,6.0,,,-73.9487075805664,40.77741622924805,-73.98812103271484,40.72051239013672,1,N,1,19.0,0.0,0.5,0.3,2.0,0.0,21.8 +2,2016-01-27 08:59:22,2016-01-27 09:20:06,1,4.61,,,-73.98404693603516,40.746578216552734,-74.00611877441406,40.71010971069336,1,N,1,18.5,0.0,0.5,0.3,0.0,0.0,19.3 +1,2016-01-14 09:34:01,2016-01-14 09:39:37,1,0.7,,,-73.96841430664062,40.766475677490234,-73.97361755371094,40.75772476196289,1,N,1,5.5,0.0,0.5,0.3,2.0,0.0,8.3 +1,2016-01-27 15:55:17,2016-01-27 16:07:37,1,1.1,,,-73.98318481445312,40.7389030456543,-73.98079681396484,40.75094223022461,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +2,2016-01-21 10:36:10,2016-01-21 10:39:20,1,0.45,,,-73.97698974609375,40.76567077636719,-73.9824447631836,40.768009185791016,1,N,1,4.0,0.0,0.5,0.3,1.44,0.0,6.24 +1,2016-01-11 15:46:23,2016-01-11 16:01:24,1,2.3,,,-73.98079681396484,40.745121002197266,-73.96198272705078,40.76860427856445,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-12 10:32:13,2016-01-12 11:08:32,6,5.53,,,-73.97305297851562,40.74401092529297,-73.95368194580078,40.80537033081055,1,N,2,25.0,0.0,0.5,0.3,0.0,0.0,25.8 +2,2016-01-29 21:04:57,2016-01-29 21:10:37,1,0.53,,,-73.99151611328125,40.75003433227539,-73.99117279052734,40.74553680419922,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +1,2016-01-17 01:18:44,2016-01-17 01:42:41,1,10.0,,,-73.99752807617188,40.73491668701172,-73.9385986328125,40.852542877197266,1,N,1,30.0,0.5,0.5,0.3,5.0,0.0,36.3 +1,2016-01-08 13:23:50,2016-01-08 13:45:03,2,2.4,,,-73.983154296875,40.781654357910156,-73.96114349365234,40.76641845703125,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +2,2016-01-28 23:05:13,2016-01-28 23:09:12,1,0.71,,,-73.9923324584961,40.734718322753906,-73.98370361328125,40.738059997558594,1,N,1,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-09 16:08:06,2016-01-09 16:13:49,2,0.8,,,-73.99584197998047,40.72646713256836,-73.98479461669922,40.728973388671875,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +1,2016-01-29 09:58:43,2016-01-29 10:15:29,1,1.6,,,-74.00860595703125,40.73051834106445,-73.98992156982422,40.733680725097656,1,N,1,11.5,0.0,0.5,0.3,1.0,0.0,13.3 +1,2016-01-27 10:30:00,2016-01-27 11:11:05,1,11.1,,,-73.99481964111328,40.75529479980469,-73.90348815917969,40.86928176879883,1,N,1,39.5,0.0,0.5,0.3,8.05,0.0,48.35 +1,2016-01-03 13:28:19,2016-01-03 13:31:38,1,0.8,,,0.0,0.0,0.0,0.0,1,N,1,5.0,0.0,0.5,0.3,1.2,0.0,7.0 +1,2016-01-03 23:01:01,2016-01-03 23:11:45,1,3.8,,,-73.9939956665039,40.690887451171875,-73.94596099853516,40.71141815185547,1,N,1,13.0,0.5,0.5,0.3,3.55,0.0,17.85 +1,2016-01-04 21:09:37,2016-01-04 21:17:24,1,1.0,,,-73.9947738647461,40.7504997253418,-73.99922943115234,40.76128387451172,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,9.3 +2,2016-01-16 09:49:34,2016-01-16 09:58:59,2,1.78,,,-73.98178100585938,40.740596771240234,-73.99055480957031,40.75676345825195,1,N,1,8.5,0.0,0.5,0.3,2.79,0.0,12.09 +1,2016-01-05 15:48:56,2016-01-05 16:10:59,1,7.6,,,-74.00474548339844,40.741981506347656,-73.93978881835938,40.820457458496094,1,N,2,24.5,1.0,0.5,0.3,0.0,0.0,26.3 +1,2016-01-02 20:18:08,2016-01-02 20:45:20,2,7.7,,,-73.95346069335938,40.77877426147461,-73.96688842773438,40.71005630493164,1,N,2,27.0,0.5,0.5,0.3,0.0,0.0,28.3 +1,2016-01-22 17:52:28,2016-01-22 18:04:43,1,1.8,,,-73.97017669677734,40.76485061645508,-73.94771575927734,40.770851135253906,1,N,1,9.5,1.0,0.5,0.3,2.8,0.0,14.1 +2,2016-01-24 15:41:20,2016-01-24 15:50:52,1,1.44,,,-73.98886108398438,40.736759185791016,-73.97345733642578,40.749351501464844,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-06 20:57:40,2016-01-06 21:30:41,1,21.79,,,-73.86376190185547,40.76982116699219,-73.95833587646484,40.593177795410156,1,N,1,59.0,0.5,0.5,0.3,12.06,0.0,72.36 +2,2016-01-06 22:31:02,2016-01-06 22:41:54,1,1.9,,,-73.95378875732422,40.76668930053711,-73.97354888916016,40.74797821044922,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +1,2016-01-28 16:38:02,2016-01-28 16:55:55,1,2.1,,,-73.99565887451172,40.72920227050781,-74.00953674316406,40.705047607421875,1,N,1,12.0,1.0,0.5,0.3,1.0,0.0,14.8 +2,2016-01-15 18:34:22,2016-01-15 18:44:56,3,1.77,,,-73.99803161621094,40.74018096923828,-74.00833892822266,40.72263717651367,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-21 08:31:03,2016-01-21 08:57:15,1,2.88,,,-73.95504760742188,40.80500030517578,-73.96021270751953,40.77378845214844,1,N,1,17.0,0.0,0.5,0.3,1.0,0.0,18.8 +2,2016-01-11 18:50:05,2016-01-11 19:09:29,5,2.39,,,-73.98155975341797,40.77348709106445,-73.95361328125,40.77523422241211,1,N,1,14.0,1.0,0.5,0.3,3.16,0.0,18.96 +2,2016-01-13 20:38:22,2016-01-13 20:44:41,1,1.79,,,-74.0000991821289,40.7430534362793,-73.9921646118164,40.76320266723633,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-19 20:12:50,2016-01-19 20:34:00,2,3.17,,,-73.99952697753906,40.7540283203125,-73.98799133300781,40.722618103027344,1,N,1,15.5,0.5,0.5,0.3,5.04,0.0,21.84 +2,2016-01-22 20:21:33,2016-01-22 20:31:58,5,1.46,,,-73.970703125,40.76298141479492,-73.98079681396484,40.74449157714844,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +2,2016-01-19 16:29:53,2016-01-19 16:53:26,6,6.8,,,-73.79052734375,40.64400863647461,-73.82633209228516,40.71173095703125,1,N,1,23.0,1.0,0.5,0.3,6.2,0.0,31.0 +1,2016-01-30 17:34:20,2016-01-30 17:51:15,1,2.1,,,-73.98600006103516,40.74638748168945,-73.98497009277344,40.723876953125,1,N,1,12.0,0.0,0.5,0.3,3.2,0.0,16.0 +1,2016-01-11 17:21:52,2016-01-11 17:26:02,1,0.7,,,-73.98933410644531,40.75879669189453,-73.99127197265625,40.75008010864258,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-01 09:04:38,2016-01-01 09:28:47,4,17.4,,,-73.98755645751953,40.72555923461914,-73.79010772705078,40.64341354370117,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +2,2016-01-17 20:42:21,2016-01-17 20:55:55,2,2.83,,,-73.98689270019531,40.766231536865234,-73.94995880126953,40.78034973144531,1,N,1,12.0,0.5,0.5,0.3,1.0,0.0,14.3 +1,2016-01-05 17:26:15,2016-01-05 17:35:43,1,2.6,,,-73.96707153320312,40.7607307434082,-73.94112396240234,40.788516998291016,1,N,1,9.5,1.0,0.5,0.3,2.0,0.0,13.3 +1,2016-01-05 22:43:22,2016-01-05 22:48:33,1,0.9,,,-73.97604370117188,40.7602653503418,-73.96503448486328,40.76398849487305,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +1,2016-01-28 20:28:54,2016-01-28 20:31:57,1,0.5,,,-73.95355224609375,40.76698684692383,-73.95097351074219,40.77334213256836,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-03 21:51:30,2016-01-03 22:02:41,2,3.95,,,-73.9812240600586,40.73334884643555,-73.9515380859375,40.7794189453125,1,N,1,13.0,0.5,0.5,0.3,3.58,0.0,17.88 +1,2016-01-18 09:17:37,2016-01-18 09:26:13,1,1.8,,,-73.98362731933594,40.7436637878418,-73.96394348144531,40.757850646972656,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-22 13:46:17,2016-01-22 13:52:40,1,1.15,,,-73.98271179199219,40.75102996826172,-73.98890686035156,40.73689270019531,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-27 15:08:06,2016-01-27 15:33:56,2,2.14,,,-73.9675521850586,40.78467559814453,-73.95829772949219,40.77046585083008,1,N,1,16.0,0.0,0.5,0.3,3.36,0.0,20.16 +2,2016-01-10 04:23:46,2016-01-10 04:38:12,2,3.96,,,-74.00716400146484,40.73933029174805,-73.98505401611328,40.693641662597656,1,N,1,14.0,0.5,0.5,0.3,2.0,0.0,17.3 +2,2016-01-26 07:10:51,2016-01-26 07:17:38,6,0.96,,,-73.99876403808594,40.6811637878418,-73.99279022216797,40.69357681274414,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-19 14:28:55,2016-01-19 14:52:06,1,6.98,,,-73.78821563720703,40.641693115234375,-73.79828643798828,40.70527267456055,1,N,2,24.0,0.0,0.5,0.3,0.0,0.0,24.8 +1,2016-01-27 20:31:03,2016-01-27 20:36:33,2,0.5,,,-74.00652313232422,40.714332580566406,-74.01097106933594,40.70830154418945,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,7.55 +2,2016-01-19 12:15:39,2016-01-19 12:31:58,1,0.94,,,-74.0024185180664,40.74480056762695,-73.98939514160156,40.739013671875,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +1,2016-01-21 22:13:25,2016-01-21 22:16:52,1,1.3,,,-73.97591400146484,40.744998931884766,-73.98068237304688,40.73042678833008,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,8.15 +2,2016-01-06 08:56:59,2016-01-06 09:11:02,2,1.29,,,-73.99585723876953,40.73286437988281,-73.98529815673828,40.74159622192383,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-07 08:26:58,2016-01-07 08:39:56,1,1.9,,,-73.95364379882812,40.767452239990234,-73.9716796875,40.75039291381836,1,N,1,11.0,0.0,0.5,0.3,1.0,0.0,12.8 +2,2016-01-16 18:05:09,2016-01-16 18:18:16,2,2.26,,,-73.97752380371094,40.77406311035156,-73.98209381103516,40.756797790527344,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-18 02:41:00,2016-01-18 02:56:37,1,8.22,,,-73.98987579345703,40.74989700317383,-73.94527435302734,40.82856369018555,1,N,1,24.0,0.5,0.5,0.3,6.32,0.0,31.62 +1,2016-01-05 06:45:01,2016-01-05 06:55:15,1,2.4,,,-73.98350524902344,40.734378814697266,-74.01020050048828,40.7200813293457,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-03 01:45:32,2016-01-03 01:53:24,1,2.0,,,-73.99205017089844,40.727447509765625,-74.00717163085938,40.707557678222656,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,11.15 +2,2016-01-21 14:05:23,2016-01-21 14:12:54,1,0.56,,,-73.98287200927734,40.7515983581543,-73.9822769165039,40.74578857421875,1,N,1,6.0,0.0,0.5,0.3,0.61,0.0,7.41 +1,2016-01-15 21:24:17,2016-01-15 21:50:40,1,8.5,,,-73.97270965576172,40.755340576171875,-73.972900390625,40.673606872558594,1,N,1,27.5,0.5,0.5,0.3,7.2,0.0,36.0 +1,2016-01-16 17:04:39,2016-01-16 17:14:11,1,1.0,,,-73.9931411743164,40.72700500488281,-73.99686431884766,40.73835372924805,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-06 19:13:24,2016-01-06 19:22:53,1,1.57,,,-73.97664642333984,40.752201080322266,-73.9920425415039,40.73630142211914,1,N,1,8.5,1.0,0.5,0.3,2.58,0.0,12.88 +2,2016-01-15 20:25:32,2016-01-15 20:32:34,1,0.65,,,-73.9912338256836,40.75091552734375,-73.98030853271484,40.74681091308594,1,N,1,6.0,0.5,0.5,0.3,1.82,0.0,9.12 +2,2016-01-14 02:17:57,2016-01-14 02:30:55,1,4.36,,,-74.00081634521484,40.730621337890625,-73.9810562133789,40.78099060058594,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,15.8 +2,2016-01-12 22:12:58,2016-01-12 22:25:09,1,2.96,,,-73.97676086425781,40.790069580078125,-73.95205688476562,40.82542037963867,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,16.56 +2,2016-01-11 17:34:25,2016-01-11 17:40:17,1,1.05,,,-73.97525024414062,40.765201568603516,-73.9649429321289,40.77248001098633,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-12 08:21:53,2016-01-12 08:30:53,1,1.17,,,-74.00263214111328,40.73956298828125,-74.0055160522461,40.7510986328125,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-27 14:56:45,2016-01-27 14:58:57,1,0.35,,,-73.97049713134766,40.789066314697266,-73.97469329833984,40.78760528564453,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +2,2016-01-16 23:59:22,2016-01-17 00:07:49,1,1.23,,,-73.98705291748047,40.720726013183594,-73.99932098388672,40.71954345703125,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-05 13:39:30,2016-01-05 13:50:06,1,0.93,,,-73.99790954589844,40.756351470947266,-73.98399353027344,40.75444030761719,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,9.8 +2,2016-01-26 23:57:28,2016-01-27 00:01:10,2,0.61,,,-73.9926528930664,40.758270263671875,-73.99788665771484,40.75077819824219,1,N,1,4.5,0.5,0.5,0.3,1.0,0.0,6.8 +1,2016-01-18 13:55:40,2016-01-18 14:16:40,1,7.2,,,-73.9592514038086,40.769012451171875,-73.95861053466797,40.707122802734375,1,N,2,24.0,0.0,0.5,0.3,0.0,0.0,24.8 +1,2016-01-28 08:47:28,2016-01-28 08:53:33,1,0.6,,,-73.97498321533203,40.75232696533203,-73.98355865478516,40.75235366821289,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,7.55 +1,2016-01-07 22:21:36,2016-01-07 22:38:18,1,4.1,,,-73.99351501464844,40.767215728759766,-73.9884262084961,40.72417068481445,1,N,1,15.0,0.5,0.5,0.3,4.05,0.0,20.35 +1,2016-01-02 04:28:22,2016-01-02 04:38:24,2,4.0,,,-73.9974136352539,40.746788024902344,-73.94939422607422,40.7724723815918,1,N,1,13.0,0.5,0.5,0.3,2.0,0.0,16.3 +2,2016-01-21 10:15:41,2016-01-21 10:31:00,1,1.27,,,-74.0018310546875,40.74592971801758,-73.9879379272461,40.73506164550781,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +1,2016-01-09 14:45:06,2016-01-09 15:12:25,2,4.4,,,-73.98160552978516,40.76757049560547,-74.0107421875,40.723636627197266,1,N,1,21.0,0.0,0.5,0.3,4.35,0.0,26.15 +1,2016-01-08 15:37:06,2016-01-08 15:44:24,2,1.3,,,-73.95755004882812,40.78555679321289,-73.96886444091797,40.7943229675293,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,9.75 +2,2016-01-20 11:49:38,2016-01-20 12:15:58,2,3.41,,,-74.00628662109375,40.723045349121094,-73.97380828857422,40.755035400390625,1,N,1,18.5,0.0,0.5,0.3,3.86,0.0,23.16 +2,2016-01-14 19:53:58,2016-01-14 20:20:16,1,4.9,,,-73.9808578491211,40.75954055786133,-73.94711303710938,40.76454162597656,1,N,1,20.5,1.0,0.5,0.3,4.46,0.0,26.76 +1,2016-01-29 16:05:46,2016-01-29 16:14:09,2,1.3,,,0.0,0.0,0.0,0.0,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-29 20:46:35,2016-01-29 21:22:59,1,5.03,,,-73.99476623535156,40.75033187866211,-73.95914459228516,40.70652389526367,1,N,1,25.5,0.5,0.5,0.3,5.36,0.0,32.16 +2,2016-01-24 20:05:25,2016-01-24 20:10:51,1,0.82,,,-73.99147033691406,40.744998931884766,-73.99852752685547,40.75189971923828,1,N,1,5.5,0.5,0.5,0.3,2.04,0.0,8.84 +2,2016-01-05 04:00:23,2016-01-05 04:12:12,4,2.94,,,-74.00704956054688,40.74419021606445,-73.97913360595703,40.779258728027344,1,N,1,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +1,2016-01-27 18:06:52,2016-01-27 19:44:50,1,20.5,,,-73.97806549072266,40.76342010498047,-73.78277587890625,40.64887619018555,2,N,3,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +1,2016-01-08 10:36:36,2016-01-08 11:01:31,2,2.4,,,-73.96280670166016,40.7581672668457,-73.99317932128906,40.747982025146484,1,N,1,16.0,0.0,0.5,0.3,3.35,0.0,20.15 +1,2016-01-03 07:29:42,2016-01-03 07:37:03,1,1.7,,,-73.9922103881836,40.74932861328125,-73.98860168457031,40.769264221191406,1,N,1,8.0,0.0,0.5,0.3,2.0,0.0,10.8 +1,2016-01-10 00:42:15,2016-01-10 00:51:11,1,0.6,,,-73.9836196899414,40.73418045043945,-73.98936462402344,40.72621154785156,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,9.3 +1,2016-01-30 01:41:07,2016-01-30 01:43:26,1,0.5,,,-73.99267578125,40.730262756347656,-73.99967193603516,40.730350494384766,1,N,1,4.0,0.5,0.5,0.3,1.05,0.0,6.35 +2,2016-01-17 15:52:37,2016-01-17 16:03:26,1,2.38,,,-73.950439453125,40.77543258666992,-73.97073364257812,40.79876708984375,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-14 11:20:59,2016-01-14 11:43:22,5,5.29,,,-74.01148223876953,40.71062088012695,-73.97853088378906,40.75267028808594,1,N,1,21.5,0.0,0.5,0.3,4.46,0.0,26.76 +2,2016-01-15 11:43:19,2016-01-15 12:04:15,1,4.8,,,-73.9948501586914,40.75020980834961,-74.00847625732422,40.70392990112305,1,N,1,19.0,0.0,0.5,0.3,10.0,0.0,29.8 +1,2016-01-10 16:00:08,2016-01-10 16:06:40,2,1.0,,,-74.00374603271484,40.738704681396484,-73.9935531616211,40.75205612182617,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +2,2016-01-11 12:41:44,2016-01-11 12:51:28,1,2.01,,,-73.98148345947266,40.77920150756836,-73.95287322998047,40.772518157958984,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-11 22:54:08,2016-01-11 22:58:42,1,1.17,,,-73.9852294921875,40.75873565673828,-73.98932647705078,40.74692153930664,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-09 13:52:23,2016-01-09 14:16:47,3,2.66,,,-73.96820068359375,40.76436996459961,-74.00296783447266,40.756290435791016,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,17.3 +2,2016-01-13 06:30:11,2016-01-13 06:39:56,2,3.65,,,-73.9178237915039,40.771209716796875,-73.9309310913086,40.79746627807617,1,N,1,13.0,0.0,0.5,0.3,4.84,5.54,24.18 +1,2016-01-08 07:36:46,2016-01-08 07:44:24,1,0.8,,,-73.97657775878906,40.75260925292969,-73.98304748535156,40.76005172729492,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-08 11:04:55,2016-01-08 11:09:36,1,0.8,,,-73.97380828857422,40.78410720825195,-73.9639663696289,40.77677536010742,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,7.55 +2,2016-01-25 07:30:50,2016-01-25 07:47:58,6,2.72,,,-73.99415588378906,40.72663116455078,-73.97418212890625,40.76008224487305,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +1,2016-01-03 03:15:55,2016-01-03 03:19:47,2,0.7,,,-73.98460388183594,40.7322883605957,-73.99230194091797,40.72532272338867,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,7.55 +2,2016-01-20 12:17:52,2016-01-20 12:40:05,1,2.45,,,-73.994140625,40.75113296508789,-73.98078155517578,40.77479553222656,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +2,2016-01-16 17:18:23,2016-01-16 17:35:06,1,7.66,,,-73.87078857421875,40.77376937866211,-73.9486312866211,40.78649139404297,1,N,2,22.5,0.0,0.5,0.3,0.0,5.54,28.84 +2,2016-01-10 01:34:43,2016-01-10 01:44:54,2,1.7,,,-73.9930191040039,40.72267150878906,-73.97856140136719,40.74462890625,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,11.3 +1,2016-01-03 13:40:04,2016-01-03 14:01:51,1,8.9,,,0.0,0.0,0.0,0.0,1,N,1,27.0,0.0,0.5,0.3,6.65,5.54,39.99 +2,2016-01-24 22:22:56,2016-01-24 22:24:38,1,0.55,,,-73.9687728881836,40.761512756347656,-73.97289276123047,40.755130767822266,1,N,1,3.5,0.5,0.5,0.3,1.0,0.0,5.8 +1,2016-01-10 10:47:02,2016-01-10 10:53:45,1,1.0,,,-73.9911880493164,40.749908447265625,-73.99921417236328,40.75713348388672,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-13 18:19:09,2016-01-13 18:32:12,1,2.1,,,-73.94879150390625,40.79733657836914,-73.95574951171875,40.7722282409668,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-21 10:16:22,2016-01-21 10:19:15,5,0.59,,,-73.98877716064453,40.774139404296875,-73.98230743408203,40.778961181640625,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,5.76 +1,2016-01-12 21:38:39,2016-01-12 21:45:26,1,1.8,,,-73.86528015136719,40.771087646484375,-73.87382507324219,40.75468063354492,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +1,2016-01-03 21:07:43,2016-01-03 21:20:30,1,3.0,,,-73.98116302490234,40.77425003051758,-73.98052215576172,40.74186325073242,1,N,2,12.5,0.5,0.5,0.3,0.0,0.0,13.8 +1,2016-01-10 01:45:07,2016-01-10 01:52:18,1,1.8,,,-73.93934631347656,40.80529022216797,-73.94490051269531,40.82396697998047,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-14 14:06:12,2016-01-14 14:18:47,1,1.3,,,-73.98605346679688,40.722877502441406,-73.9994125366211,40.7177734375,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-12 20:51:30,2016-01-12 21:00:17,1,0.8,,,-73.99324798583984,40.75216293334961,-73.99837493896484,40.757598876953125,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-10 18:03:06,2016-01-10 18:17:01,1,3.37,,,-73.99817657470703,40.71709060668945,-73.98165130615234,40.75790786743164,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-21 08:01:34,2016-01-21 08:28:47,1,4.16,,,-74.01611328125,40.71009063720703,-73.97917938232422,40.754310607910156,1,N,1,19.0,0.0,0.5,0.3,2.2,0.0,22.0 +1,2016-01-04 05:12:43,2016-01-04 05:14:09,1,0.7,,,-73.97034454345703,40.75199508666992,-73.97393035888672,40.743953704833984,1,N,1,4.0,0.5,0.5,0.3,1.0,0.0,6.3 +1,2016-01-03 17:43:46,2016-01-03 17:49:33,1,0.6,,,-73.99496459960938,40.745147705078125,-73.99469757080078,40.750389099121094,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-03 20:54:55,2016-01-03 21:05:41,1,2.0,,,-73.97508239746094,40.79043197631836,-73.9487533569336,40.779998779296875,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,13.55 +1,2016-01-17 19:19:54,2016-01-17 19:30:31,1,2.0,,,-73.98657989501953,40.7402229309082,-74.0054931640625,40.71974182128906,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-14 16:07:46,2016-01-14 16:12:55,1,0.8,,,-73.99529266357422,40.7250862121582,-73.99422454833984,40.73349380493164,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-20 07:13:02,2016-01-20 07:37:11,1,4.95,,,-73.98967742919922,40.7717399597168,-74.00850677490234,40.71086120605469,1,N,1,19.5,0.0,0.5,0.3,4.06,0.0,24.36 +1,2016-01-02 13:54:35,2016-01-02 13:58:15,1,0.9,,,-73.9521484375,40.777313232421875,-73.96053314208984,40.765869140625,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +2,2016-01-29 15:32:02,2016-01-29 15:42:24,1,1.75,,,-73.98774719238281,40.7537956237793,-74.00697326660156,40.74172592163086,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-22 21:24:51,2016-01-22 21:34:37,1,1.3,,,-73.99317169189453,40.74143981933594,-73.97805786132812,40.74580383300781,1,N,1,8.0,0.5,0.5,0.3,2.0,0.0,11.3 +2,2016-01-07 19:29:17,2016-01-07 19:50:37,1,1.74,,,-73.97232818603516,40.78678512573242,-73.94709014892578,40.779911041259766,1,N,1,13.5,1.0,0.5,0.3,1.0,0.0,16.3 +2,2016-01-25 07:32:30,2016-01-25 07:53:52,1,6.13,,,-73.98865509033203,40.69601058959961,-73.97000122070312,40.75310134887695,1,N,1,21.5,0.0,0.5,0.3,3.5,0.0,25.8 +2,2016-01-06 11:12:13,2016-01-06 11:17:23,6,0.99,,,-73.97970581054688,40.75473403930664,-73.98782348632812,40.74309158325195,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-17 13:08:09,2016-01-17 13:24:57,1,3.04,,,-73.9731216430664,40.75528335571289,-74.00921630859375,40.73944091796875,1,N,1,13.0,0.0,0.5,0.3,3.45,0.0,17.25 +1,2016-01-24 16:55:00,2016-01-24 17:02:45,1,1.1,,,-73.97032165527344,40.75224304199219,-73.98039245605469,40.738548278808594,1,N,1,7.0,1.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-27 18:20:37,2016-01-27 18:43:41,1,1.83,,,-73.97528076171875,40.76445388793945,-73.98970794677734,40.741424560546875,1,N,1,14.5,1.0,0.5,0.3,3.26,0.0,19.56 +2,2016-01-08 13:56:05,2016-01-08 14:02:37,1,1.13,,,-73.98204803466797,40.760353088378906,-73.98530578613281,40.76948547363281,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-22 22:50:51,2016-01-22 23:03:47,1,2.51,,,-73.98907470703125,40.75830841064453,-73.9604721069336,40.775489807128906,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +1,2016-01-15 17:57:00,2016-01-15 18:27:20,1,4.5,,,-73.96662902832031,40.79385757446289,-73.92768859863281,40.83612823486328,1,N,2,21.0,1.0,0.5,0.3,0.0,0.0,22.8 +1,2016-01-20 21:22:33,2016-01-20 21:31:07,1,2.0,,,0.0,0.0,0.0,0.0,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-13 08:01:14,2016-01-13 08:19:46,1,3.3,,,-73.99022674560547,40.68706130981445,-74.00505065917969,40.65208435058594,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +1,2016-01-04 01:44:29,2016-01-04 01:51:29,1,2.1,,,-73.98209381103516,40.76874923706055,-73.9571304321289,40.77852249145508,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,12.25 +1,2016-01-16 22:37:49,2016-01-16 22:50:30,1,1.4,,,-73.99012756347656,40.72935104370117,-74.00564575195312,40.74006271362305,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,12.95 +1,2016-01-28 23:17:03,2016-01-28 23:21:17,1,0.8,,,-73.99085998535156,40.75075149536133,-73.98628997802734,40.75776290893555,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-17 22:51:32,2016-01-17 22:57:44,1,1.21,,,-73.923095703125,40.74345779418945,-73.89933776855469,40.74601364135742,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-14 13:54:07,2016-01-14 13:58:47,2,0.45,,,-73.99786376953125,40.735877990722656,-73.99049377441406,40.732879638671875,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-27 19:28:46,2016-01-27 19:50:13,4,3.5,,,-73.98737335205078,40.73881149291992,-73.95545959472656,40.78261947631836,1,N,2,16.5,1.0,0.5,0.3,0.0,0.0,18.3 +2,2016-01-28 21:54:39,2016-01-28 22:04:26,1,2.01,,,-73.98817443847656,40.75906753540039,-74.00404357910156,40.73761749267578,1,N,1,9.0,0.5,0.5,0.3,3.09,0.0,13.39 +1,2016-01-08 10:24:49,2016-01-08 10:44:34,1,2.2,,,-74.01122283935547,40.7036018371582,-73.9979248046875,40.729339599609375,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,17.15 +1,2016-01-12 20:27:39,2016-01-12 20:32:27,1,1.1,,,-73.96614074707031,40.7645263671875,-73.98072814941406,40.76404571533203,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,8.15 +1,2016-01-21 01:39:45,2016-01-21 01:49:04,1,1.8,,,-74.00635528564453,40.73337936401367,-74.00635528564453,40.73344802856445,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,10.8 +2,2016-01-01 14:48:18,2016-01-01 15:00:12,5,1.77,,,-73.97489929199219,40.73417663574219,-74.00080871582031,40.74204635620117,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-30 16:40:34,2016-01-30 16:50:29,1,1.7,,,-73.96835327148438,40.77056884765625,-73.94547271728516,40.773536682128906,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +1,2016-01-20 11:56:16,2016-01-20 12:08:47,1,4.4,,,-73.95821380615234,40.76049041748047,-73.98768615722656,40.72446823120117,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-18 13:32:18,2016-01-18 13:45:44,1,3.1,,,-73.94329071044922,40.77708435058594,-73.97911071777344,40.75775146484375,1,N,1,12.5,0.0,0.5,0.3,1.0,0.0,14.3 +1,2016-01-07 22:56:50,2016-01-07 23:39:24,2,12.4,,,-73.87078094482422,40.773719787597656,-73.99132537841797,40.76643371582031,1,N,1,40.5,0.5,0.5,0.3,10.0,0.0,51.8 +2,2016-01-29 13:20:58,2016-01-29 13:37:19,1,2.67,,,-73.96598052978516,40.77299118041992,-73.9941177368164,40.75025177001953,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-12 07:41:52,2016-01-12 07:57:43,1,1.15,,,-73.99870300292969,40.7608528137207,-73.98011779785156,40.75550842285156,1,N,1,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-09 13:07:58,2016-01-09 13:21:05,4,1.5,,,-74.00621795654297,40.73977279663086,-73.990234375,40.726444244384766,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-28 18:51:04,2016-01-28 19:01:52,4,1.37,,,-73.998779296875,40.744659423828125,-73.9836196899414,40.75545120239258,1,N,1,8.5,1.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-02 11:08:40,2016-01-02 11:15:21,1,1.1,,,-73.9811019897461,40.72523880004883,-73.99525451660156,40.72318649291992,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +1,2016-01-03 18:17:25,2016-01-03 18:21:38,1,1.2,,,-73.96711730957031,40.75653076171875,-73.97982788085938,40.74240493774414,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-17 19:00:31,2016-01-17 19:01:55,1,0.4,,,-73.98670959472656,40.771732330322266,-73.9827651977539,40.77720260620117,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +1,2016-01-14 20:15:22,2016-01-14 20:33:33,1,2.6,,,-73.99718475341797,40.7222900390625,-73.9936752319336,40.75194549560547,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +1,2016-01-20 14:18:16,2016-01-20 14:45:46,1,3.3,,,-73.9668197631836,40.75740051269531,-73.97433471679688,40.791019439697266,1,N,2,18.5,0.0,0.5,0.3,0.0,0.0,19.3 +2,2016-01-15 09:02:06,2016-01-15 09:04:53,1,0.23,,,-74.0097885131836,40.70590591430664,-74.00728607177734,40.704898834228516,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +2,2016-01-12 15:37:14,2016-01-12 15:44:43,1,0.77,,,-73.97035217285156,40.76787185668945,-73.97015380859375,40.760658264160156,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-17 18:19:30,2016-01-17 18:23:14,2,1.1,,,-73.96592712402344,40.76177978515625,-73.95397186279297,40.77198028564453,1,N,1,5.5,0.0,0.5,0.3,2.0,0.0,8.3 +2,2016-01-17 09:37:30,2016-01-17 09:45:23,1,3.0,,,-74.0025405883789,40.749786376953125,-73.97544860839844,40.7861328125,1,N,1,10.0,0.0,0.5,0.3,3.24,0.0,14.04 +1,2016-01-04 14:48:49,2016-01-04 14:58:23,1,1.5,,,-73.99176788330078,40.75100326538086,-73.98204040527344,40.736366271972656,1,N,1,8.5,0.0,0.5,0.3,2.75,0.0,12.05 +2,2016-01-10 10:56:39,2016-01-10 11:23:47,3,10.18,,,-73.86299896240234,40.76924133300781,-73.9870376586914,40.763328552246094,1,N,1,31.0,0.0,0.5,0.3,11.2,5.54,48.54 +2,2016-01-21 14:35:32,2016-01-21 14:39:12,6,0.53,,,-73.9544906616211,40.78397750854492,-73.95928192138672,40.77763748168945,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-02 11:08:36,2016-01-02 11:13:12,1,0.7,,,-73.95215606689453,40.77284622192383,-73.95635986328125,40.7669563293457,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-14 23:21:00,2016-01-14 23:25:00,4,0.7,,,-73.9834213256836,40.745479583740234,-73.9915771484375,40.74455642700195,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,6.96 +2,2016-01-14 19:08:42,2016-01-14 19:27:01,2,3.4,,,-74.00978088378906,40.71357345581055,-74.00366973876953,40.68316650390625,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-14 15:42:14,2016-01-14 16:16:08,2,12.0,,,-74.01318359375,40.7161865234375,-73.92333221435547,40.8123893737793,1,N,2,35.0,0.0,0.5,0.3,0.0,0.0,35.8 +2,2016-01-30 23:48:07,2016-01-31 00:02:22,1,2.72,,,-73.99847412109375,40.72480773925781,-73.98805236816406,40.75675582885742,1,N,1,12.0,0.5,0.5,0.3,1.5,0.0,14.8 +1,2016-01-29 12:48:21,2016-01-29 12:55:22,1,0.7,,,-73.98322296142578,40.75605392456055,-73.9887466430664,40.75455856323242,1,N,1,6.0,0.0,0.5,0.3,4.0,0.0,10.8 +1,2016-01-03 03:21:19,2016-01-03 03:33:14,1,2.4,,,-73.9891586303711,40.71900177001953,-73.97440338134766,40.73707580566406,1,N,1,11.0,0.5,0.5,0.3,1.5,0.0,13.8 +1,2016-01-09 03:50:33,2016-01-09 04:02:18,1,1.6,,,-73.98885345458984,40.727115631103516,-74.0055923461914,40.7113037109375,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,12.95 +2,2016-01-19 09:14:31,2016-01-19 09:45:18,1,1.22,,,-74.00332641601562,40.748939514160156,-73.98751068115234,40.753448486328125,1,N,1,18.0,0.0,0.5,0.3,2.0,0.0,20.8 +2,2016-01-25 18:41:24,2016-01-25 18:54:39,2,1.85,,,-73.99547576904297,40.68334197998047,-73.97344970703125,40.67058181762695,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-20 17:29:20,2016-01-20 17:42:10,1,1.8,,,-73.99030303955078,40.73052978515625,-73.99629974365234,40.74934387207031,1,N,1,10.0,1.0,0.5,0.3,2.35,0.0,14.15 +2,2016-01-03 04:12:20,2016-01-03 04:20:24,6,2.58,,,-73.98680114746094,40.72175598144531,-73.98780822753906,40.71992111206055,1,N,1,9.5,0.5,0.5,0.3,2.7,0.0,13.5 +1,2016-01-14 21:25:26,2016-01-14 21:32:48,1,1.6,,,-73.99640655517578,40.74284362792969,-73.97908782958984,40.75254821777344,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-18 20:54:29,2016-01-18 20:58:59,1,1.1,,,-73.98866271972656,40.74871063232422,-73.99137115478516,40.76042938232422,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-03 17:34:27,2016-01-03 17:53:48,5,10.04,,,-73.87471008300781,40.77408981323242,-73.93820190429688,40.85417938232422,1,N,1,28.5,0.0,0.5,0.3,6.97,5.54,41.81 +1,2016-01-25 21:05:34,2016-01-25 21:25:35,1,2.7,,,-73.9820785522461,40.75401306152344,-73.97930908203125,40.72773361206055,1,N,1,14.0,0.5,0.5,0.3,3.05,0.0,18.35 +2,2016-01-04 17:22:45,2016-01-04 17:30:21,1,1.24,,,-73.97228240966797,40.762210845947266,-73.98455810546875,40.75919723510742,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-12 10:59:59,2016-01-12 11:03:15,2,0.63,,,-73.94820404052734,40.77437210083008,-73.95597839355469,40.779693603515625,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +1,2016-01-11 13:46:46,2016-01-11 14:01:06,1,1.8,,,-73.97965240478516,40.78124237060547,-73.97640228271484,40.7645263671875,1,N,1,10.5,0.0,0.5,0.3,2.0,0.0,13.3 +2,2016-01-13 09:25:49,2016-01-13 09:32:18,1,0.84,,,-74.00630187988281,40.73371505737305,-73.99823760986328,40.74107360839844,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-24 23:19:18,2016-01-24 23:22:47,5,0.79,,,-73.95914459228516,40.76350021362305,-73.95055389404297,40.76969528198242,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,6.96 +2,2016-01-15 06:48:27,2016-01-15 06:52:34,1,0.94,,,-73.98973846435547,40.73765563964844,-73.9809341430664,40.74825668334961,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-21 15:51:04,2016-01-21 16:40:50,2,0.8,,,-73.98184204101562,40.74385452270508,-74.17732238769531,40.6907844543457,3,N,1,44.5,0.0,0.0,0.3,11.45,12.5,68.75 +2,2016-01-26 07:27:34,2016-01-26 07:32:09,1,0.9,,,-73.9893798828125,40.7630500793457,-73.97577667236328,40.7570686340332,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +1,2016-01-02 14:26:21,2016-01-02 14:38:13,3,1.4,,,-73.98741912841797,40.74822998046875,-73.98931121826172,40.75782775878906,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-03 01:16:51,2016-01-03 01:24:37,2,1.03,,,-73.99041748046875,40.7194709777832,-73.98066711425781,40.72152328491211,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-03 05:11:32,2016-01-03 05:25:32,2,3.7,,,-73.99571228027344,40.76374816894531,-74.00047302246094,40.718379974365234,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +1,2016-01-02 16:36:05,2016-01-02 16:43:42,1,1.8,,,-73.97077178955078,40.793495178222656,-73.978271484375,40.77627182006836,1,N,3,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-29 15:47:46,2016-01-29 17:03:22,6,18.94,,,-73.78135681152344,40.64496994018555,-74.0044174194336,40.72172164916992,2,N,1,52.0,0.0,0.5,0.3,13.2,0.0,66.0 +2,2016-01-06 11:25:23,2016-01-06 11:34:25,1,1.33,,,-73.96958923339844,40.75191879272461,-73.95603942871094,40.765838623046875,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-17 19:21:46,2016-01-17 19:34:13,1,2.44,,,-73.9549789428711,40.78032302856445,-73.95574951171875,40.80381774902344,1,N,1,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-27 08:39:46,2016-01-27 09:09:04,1,1.68,,,-73.95597839355469,40.779571533203125,-73.97129821777344,40.75825119018555,1,N,1,17.5,0.0,0.5,0.3,4.58,0.0,22.88 +2,2016-01-19 16:11:29,2016-01-19 16:18:40,1,1.52,,,-74.00129699707031,40.729129791259766,-73.9919662475586,40.745628356933594,1,N,1,7.0,1.0,0.5,0.3,2.2,0.0,11.0 +2,2016-01-01 14:27:21,2016-01-01 14:34:03,3,1.07,,,-73.97233581542969,40.76519012451172,-73.95818328857422,40.76287841796875,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-17 13:30:05,2016-01-17 13:33:57,2,0.76,,,-73.98209381103516,40.73195266723633,-73.99116516113281,40.737388610839844,1,N,1,4.5,0.0,0.5,0.3,1.59,0.0,6.89 +1,2016-01-02 21:05:33,2016-01-02 21:07:24,1,0.0,,,-73.98261260986328,40.75751495361328,-73.982177734375,40.757850646972656,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,4.3 +1,2016-01-21 19:16:07,2016-01-21 19:21:50,3,0.8,,,-73.98880004882812,40.73130416870117,-73.9787368774414,40.72419738769531,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-29 20:07:30,2016-01-29 20:41:01,2,4.42,,,-73.9640884399414,40.774505615234375,-73.9872817993164,40.722190856933594,1,N,1,22.5,0.5,0.5,0.3,4.76,0.0,28.56 +2,2016-01-22 16:31:44,2016-01-22 16:38:14,1,1.04,,,-73.9913101196289,40.73914337158203,-74.00555419921875,40.73940658569336,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-21 13:42:06,2016-01-21 14:11:41,2,6.31,,,-73.98797607421875,40.74951171875,-73.90956115722656,40.7143440246582,1,N,2,25.0,0.0,0.5,0.3,0.0,5.54,31.34 +1,2016-01-15 05:00:32,2016-01-15 05:14:03,1,3.5,,,-73.97836303710938,40.783203125,-73.93424224853516,40.798728942871094,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +1,2016-01-05 21:51:55,2016-01-05 21:56:16,1,0.8,,,-73.98698425292969,40.72536849975586,-73.9895248413086,40.73351287841797,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-09 20:39:52,2016-01-09 20:49:28,1,1.8,,,-73.96781921386719,40.802894592285156,-73.95535278320312,40.786048889160156,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +1,2016-01-28 04:11:17,2016-01-28 04:19:29,1,1.7,,,-74.00585174560547,40.725059509277344,-74.01190948486328,40.704105377197266,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,11.15 +1,2016-01-12 08:25:08,2016-01-12 08:41:30,1,2.4,,,-74.00341033935547,40.73868942260742,-73.97627258300781,40.75680923461914,1,N,1,13.0,0.0,0.5,0.3,2.75,0.0,16.55 +1,2016-01-27 19:43:33,2016-01-27 19:45:07,1,0.3,,,-73.9460678100586,40.777244567871094,-73.94821166992188,40.77460479736328,1,N,1,3.0,1.0,0.5,0.3,1.0,0.0,5.8 +1,2016-01-21 14:10:03,2016-01-21 14:22:04,1,0.8,,,-73.96062469482422,40.77287292480469,-73.96847534179688,40.761837005615234,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-27 22:09:08,2016-01-27 22:15:32,5,1.13,,,-73.99344635009766,40.749786376953125,-73.98603057861328,40.75883102416992,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +2,2016-01-29 06:20:27,2016-01-29 06:34:24,1,5.31,,,-73.97639465332031,40.75236511230469,-74.00489807128906,40.712493896484375,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,17.8 +2,2016-01-09 00:55:35,2016-01-09 01:21:36,2,5.32,,,-73.95269775390625,40.7270393371582,-74.00637817382812,40.73936080932617,1,N,1,21.0,0.5,0.5,0.3,2.5,0.0,24.8 +2,2016-01-26 18:00:44,2016-01-26 18:08:26,1,1.14,,,-73.9520263671875,40.7989387512207,-73.96782684326172,40.80057144165039,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-16 20:22:24,2016-01-16 20:28:20,1,1.8,,,-73.9661865234375,40.76219177246094,-73.95455932617188,40.783668518066406,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +1,2016-01-06 07:06:53,2016-01-06 07:12:20,1,1.0,,,-73.99092102050781,40.75584030151367,-73.97575378417969,40.75779342651367,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-18 16:01:28,2016-01-18 16:04:13,1,0.4,,,-73.9445571899414,40.798946380615234,-73.94121551513672,40.80189514160156,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-16 13:48:12,2016-01-16 13:53:27,1,1.0,,,-73.96104431152344,40.7718391418457,-73.97000122070312,40.75971984863281,1,N,1,6.0,0.0,0.5,0.3,1.2,0.0,8.0 +1,2016-01-21 15:51:44,2016-01-21 16:02:00,1,1.0,,,-74.00047302246094,40.72737121582031,-74.00379943847656,40.71693420410156,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-17 21:19:32,2016-01-17 21:27:51,1,1.7,,,0.0,0.0,0.0,0.0,1,N,1,8.5,0.5,0.5,0.3,1.95,0.0,11.75 +2,2016-01-06 20:12:05,2016-01-06 20:31:01,1,8.91,,,0.0,0.0,0.0,0.0,1,N,1,27.0,0.5,0.5,0.3,6.77,5.54,40.61 +1,2016-01-27 19:27:15,2016-01-27 19:33:59,1,1.1,,,-73.98283386230469,40.7394905090332,-73.98387908935547,40.727012634277344,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-03 20:33:47,2016-01-03 20:45:54,1,2.72,,,-73.99057006835938,40.756439208984375,-73.97698974609375,40.787559509277344,1,N,1,11.5,0.5,0.5,0.3,2.0,0.0,14.8 +1,2016-01-03 12:55:17,2016-01-03 13:02:26,2,1.5,,,0.0,0.0,0.0,0.0,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-12 14:06:06,2016-01-12 14:15:56,1,0.6,,,-73.9817886352539,40.745967864990234,-73.99059295654297,40.75151824951172,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-01 18:25:59,2016-01-01 18:33:14,4,0.89,,,-73.98194885253906,40.74620056152344,-73.97611236572266,40.75703048706055,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-07 10:52:53,2016-01-07 11:01:28,1,1.02,,,-73.97830200195312,40.75349044799805,-73.98117065429688,40.76409149169922,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-25 19:27:30,2016-01-25 19:34:43,1,1.1,,,-74.0081787109375,40.72126388549805,-74.0018539428711,40.7352294921875,1,N,1,7.0,1.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-26 16:16:35,2016-01-26 16:32:48,1,1.5,,,-74.00257873535156,40.714298248291016,-73.98662567138672,40.729740142822266,1,N,1,11.0,1.0,0.5,0.3,3.2,0.0,16.0 +2,2016-01-27 21:51:29,2016-01-27 22:16:34,3,10.56,,,-73.87086486816406,40.77371597290039,-73.9896469116211,40.734214782714844,1,N,1,32.5,0.5,0.5,0.3,6.76,0.0,40.56 +1,2016-01-28 13:11:24,2016-01-28 13:18:21,1,0.6,,,-73.9626235961914,40.75541687011719,-73.96878051757812,40.760704040527344,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-03 12:50:21,2016-01-03 13:09:10,1,2.71,,,-73.98847198486328,40.77811813354492,-73.95085906982422,40.77471160888672,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +2,2016-01-27 10:10:10,2016-01-27 10:13:57,6,1.35,,,-73.97567749023438,40.71910858154297,-73.97344970703125,40.7306022644043,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-23 04:39:44,2016-01-23 05:21:17,1,10.4,,,0.0,0.0,0.0,0.0,1,N,1,32.0,0.5,0.5,0.3,3.0,0.0,36.3 +2,2016-01-13 09:24:02,2016-01-13 09:30:21,1,1.12,,,-73.975341796875,40.752254486083984,-73.9857177734375,40.73822784423828,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-27 00:59:53,2016-01-27 01:07:56,1,1.8,,,-73.98231506347656,40.75949478149414,-73.9802017211914,40.74156951904297,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,11.15 +2,2016-01-21 14:09:01,2016-01-21 14:16:37,1,0.71,,,-73.95707702636719,40.766483306884766,-73.96492004394531,40.769447326660156,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-22 09:11:27,2016-01-22 09:23:28,2,2.03,,,-73.97933959960938,40.74691390991211,-73.99848937988281,40.723880767822266,1,N,1,10.0,0.0,0.5,0.3,2.7,0.0,13.5 +1,2016-01-22 14:02:51,2016-01-22 14:15:52,1,1.6,,,-73.99300384521484,40.728355407714844,-74.00232696533203,40.74370574951172,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-21 17:39:21,2016-01-21 17:58:10,1,1.84,,,-73.91584014892578,40.7463493347168,-73.91584014892578,40.7463493347168,1,N,1,13.0,1.0,0.5,0.3,3.7,0.0,18.5 +2,2016-01-27 19:13:26,2016-01-27 19:19:38,1,0.77,,,-73.99391174316406,40.75143051147461,-73.98609924316406,40.75896072387695,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-23 02:24:10,2016-01-23 02:28:06,2,0.5,,,-73.95216369628906,40.77743911743164,-73.95428466796875,40.7705192565918,1,N,1,4.5,0.5,0.5,0.3,1.15,0.0,6.95 +1,2016-01-15 07:48:16,2016-01-15 07:53:14,1,1.2,,,-73.97645568847656,40.74821090698242,-73.9637451171875,40.75720977783203,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-18 22:42:05,2016-01-18 22:48:17,1,1.6,,,-73.99085998535156,40.73462677001953,-73.98255920410156,40.72029113769531,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +2,2016-01-07 09:46:42,2016-01-07 09:54:53,1,1.35,,,-73.96244049072266,40.75885009765625,-73.95687866210938,40.77470016479492,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-22 16:31:03,2016-01-22 16:46:33,2,1.6,,,-73.99568176269531,40.75332260131836,-73.99651336669922,40.753379821777344,1,N,2,11.0,1.0,0.5,0.3,0.0,0.0,12.8 +2,2016-01-19 20:29:50,2016-01-19 20:40:20,1,2.05,,,-73.99806213378906,40.721099853515625,-73.9814224243164,40.73643112182617,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +2,2016-01-18 19:20:20,2016-01-18 19:39:02,1,3.33,,,-73.98573303222656,40.76034164428711,-73.9996337890625,40.7244987487793,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +1,2016-01-19 23:14:07,2016-01-19 23:21:24,2,1.3,,,0.0,0.0,0.0,0.0,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +1,2016-01-25 09:37:39,2016-01-25 09:51:53,1,1.0,,,-73.97712707519531,40.748592376708984,-73.9839859008789,40.7574462890625,1,N,1,9.5,0.0,0.5,0.3,1.0,0.0,11.3 +1,2016-01-06 08:59:31,2016-01-06 09:11:17,3,2.0,,,-73.96147155761719,40.756317138671875,-73.95587158203125,40.77893829345703,1,N,1,10.0,0.0,0.5,0.3,2.7,0.0,13.5 +1,2016-01-29 11:06:08,2016-01-29 11:09:40,1,0.5,,,-73.97888946533203,40.76681900024414,-73.98204040527344,40.77292251586914,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-22 07:40:31,2016-01-22 07:52:16,1,2.3,,,-73.95866394042969,40.772377014160156,-73.977783203125,40.745704650878906,1,N,1,10.5,0.0,0.5,0.3,4.0,0.0,15.3 +2,2016-01-09 21:42:50,2016-01-09 22:06:32,1,2.97,,,-73.98657989501953,40.7480583190918,-74.0083236694336,40.719810485839844,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,17.3 +2,2016-01-26 09:29:15,2016-01-26 09:50:45,1,3.73,,,-74.01004028320312,40.70578384399414,-73.99671173095703,40.74769592285156,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,20.76 +2,2016-01-12 10:14:15,2016-01-12 10:43:21,6,3.23,,,-73.99850463867188,40.72288131713867,-73.97187042236328,40.7620735168457,1,N,1,19.0,0.0,0.5,0.3,3.96,0.0,23.76 +1,2016-01-29 19:29:06,2016-01-29 19:46:42,1,2.3,,,-73.9622573852539,40.77911376953125,-73.9879379272461,40.7555046081543,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,14.3 +2,2016-01-14 08:03:02,2016-01-14 08:07:45,5,0.82,,,-73.97370910644531,40.74734878540039,-73.97161865234375,40.75455093383789,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-29 20:21:52,2016-01-29 20:36:50,1,2.2,,,-73.9828109741211,40.747833251953125,-73.960205078125,40.77004623413086,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +2,2016-01-29 14:49:05,2016-01-29 14:57:22,1,1.23,,,-73.99158477783203,40.74992370605469,-73.99421691894531,40.73640823364258,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,9.75 +2,2016-01-26 12:36:29,2016-01-26 13:00:48,5,2.32,,,-73.99510192871094,40.74998092651367,-73.98880004882812,40.73115158081055,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-04 12:09:22,2016-01-04 12:21:48,1,2.3,,,-73.86259460449219,40.76906204223633,-73.88285064697266,40.75963592529297,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-06 19:02:26,2016-01-06 19:11:07,1,1.6,,,-73.97708892822266,40.774940490722656,-73.95758819580078,40.77690505981445,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-16 09:37:45,2016-01-16 09:48:45,1,1.81,,,-73.98821258544922,40.76953887939453,-73.994873046875,40.7501335144043,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-03 12:12:05,2016-01-03 12:27:15,1,1.87,,,-73.97589874267578,40.75175857543945,-73.98355102539062,40.76559066772461,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-28 19:59:24,2016-01-28 20:12:09,1,1.85,,,-73.89273071289062,40.75448989868164,-73.89273071289062,40.75448989868164,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-15 22:22:23,2016-01-15 22:28:13,1,0.79,,,-73.98573303222656,40.76293182373047,-73.99333190917969,40.763790130615234,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-22 08:00:03,2016-01-22 08:04:35,4,0.6,,,-73.9947280883789,40.73167419433594,-73.98658752441406,40.73427200317383,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-26 08:18:36,2016-01-26 08:22:10,2,0.72,,,-73.9552001953125,40.780059814453125,-73.94573211669922,40.77859115600586,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +2,2016-01-20 20:46:25,2016-01-20 20:56:47,1,1.56,,,-73.98954010009766,40.720680236816406,-74.00640869140625,40.733211517333984,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +1,2016-01-01 22:38:47,2016-01-01 22:44:51,1,1.9,,,-73.97306060791016,40.76343536376953,-73.95699310302734,40.78596115112305,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +2,2016-01-04 01:45:37,2016-01-04 01:49:40,3,0.75,,,-74.00994873046875,40.71472930908203,-74.01681518554688,40.709476470947266,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-29 08:57:17,2016-01-29 09:03:08,5,0.63,,,-73.98699951171875,40.761390686035156,-73.97932434082031,40.765380859375,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-21 03:13:26,2016-01-21 03:17:44,1,0.92,,,-73.99726104736328,40.71677017211914,-74.0091323852539,40.72602081298828,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +1,2016-01-30 10:41:26,2016-01-30 10:59:35,1,2.9,,,-73.99098205566406,40.75045394897461,-73.95722198486328,40.762725830078125,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-16 21:05:10,2016-01-16 21:16:09,1,1.4,,,0.0,0.0,0.0,0.0,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +2,2016-01-16 01:19:50,2016-01-16 01:36:43,1,2.94,,,-73.98558044433594,40.71807861328125,-74.00782775878906,40.74045944213867,1,N,1,13.5,0.5,0.5,0.3,1.5,0.0,16.3 +2,2016-01-27 12:56:42,2016-01-27 13:11:34,1,1.17,,,-73.98146057128906,40.753780364990234,-73.99394226074219,40.74555969238281,1,N,1,10.0,0.0,0.5,0.3,1.2,0.0,12.0 +2,2016-01-19 07:51:41,2016-01-19 08:18:48,1,3.85,,,-74.00337982177734,40.747501373291016,-74.00257873535156,40.74712371826172,1,N,1,19.0,0.0,0.5,0.3,2.0,0.0,21.8 +2,2016-01-26 22:21:14,2016-01-26 22:30:15,2,3.76,,,-73.98162078857422,40.773651123046875,-73.96056365966797,40.81650924682617,1,N,1,12.5,0.5,0.5,0.3,3.45,0.0,17.25 +2,2016-01-08 23:54:14,2016-01-09 00:07:23,1,8.86,,,-73.78968048095703,40.64691162109375,-73.76751708984375,40.66699981689453,1,N,2,25.0,0.5,0.5,0.3,0.0,0.0,26.3 +2,2016-01-26 20:25:28,2016-01-26 20:27:33,1,0.31,,,-73.96717834472656,40.793609619140625,-73.9723892211914,40.79420852661133,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,4.8 +2,2016-01-09 16:56:38,2016-01-09 17:07:11,1,0.97,,,-74.00536346435547,40.736106872558594,-74.0016860961914,40.72444152832031,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-30 15:00:51,2016-01-30 15:06:37,1,1.02,,,-73.96295928955078,40.77245330810547,-73.95307922363281,40.78350830078125,1,N,1,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-22 19:28:42,2016-01-22 19:45:38,2,2.83,,,-73.9483413696289,40.71120071411133,-73.91169738769531,40.690399169921875,1,N,1,13.5,1.0,0.5,0.3,2.0,0.0,17.3 +2,2016-01-10 20:20:24,2016-01-10 20:22:42,1,0.66,,,-73.99158477783203,40.75004959106445,-73.99732208251953,40.74197006225586,1,N,1,4.0,0.5,0.5,0.3,1.32,0.0,6.62 +1,2016-01-24 19:32:15,2016-01-24 19:39:31,1,1.4,,,-73.97412872314453,40.783042907714844,-73.95645904541016,40.77722930908203,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-08 20:14:26,2016-01-08 20:31:37,2,2.25,,,-73.98677825927734,40.759063720703125,-73.99977111816406,40.738399505615234,1,N,1,12.5,0.5,0.5,0.3,4.14,0.0,17.94 +1,2016-01-26 21:10:47,2016-01-26 21:24:54,1,2.8,,,-73.97181701660156,40.79698181152344,-73.96339416503906,40.76754379272461,1,N,1,12.5,0.5,0.5,0.3,2.75,0.0,16.55 +2,2016-01-23 00:33:31,2016-01-23 00:47:44,6,3.11,,,-73.94024658203125,40.699790954589844,-73.98554992675781,40.720489501953125,1,N,1,12.5,0.5,0.5,0.3,1.5,0.0,15.3 +1,2016-01-26 16:11:51,2016-01-26 16:22:08,1,1.5,,,-73.98146057128906,40.73726272583008,-73.99468231201172,40.71677780151367,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-22 11:49:38,2016-01-22 12:10:26,1,3.25,,,-73.96611785888672,40.78982925415039,-73.98267364501953,40.751068115234375,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,19.56 +2,2016-01-28 08:38:27,2016-01-28 09:01:56,1,3.39,,,-73.934326171875,40.75117111206055,-73.9410171508789,40.755496978759766,1,N,1,16.5,0.0,0.5,0.3,5.19,0.0,22.49 +1,2016-01-08 00:18:15,2016-01-08 00:31:44,1,4.4,,,-73.98900604248047,40.72164535522461,-73.94783020019531,40.774864196777344,1,N,1,14.5,0.5,0.5,0.3,1.0,0.0,16.8 +2,2016-01-19 11:50:49,2016-01-19 12:05:17,1,1.68,,,-73.9554672241211,40.78260803222656,-73.97140502929688,40.792598724365234,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-08 15:31:34,2016-01-08 15:32:53,1,0.07,,,-73.96956634521484,40.763240814208984,-73.97045135498047,40.761863708496094,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,3.8 +2,2016-01-20 21:35:15,2016-01-20 22:04:18,5,6.89,,,-73.97087860107422,40.757938385009766,-73.95606231689453,40.685646057128906,1,N,1,24.5,0.5,0.5,0.3,3.5,0.0,29.3 +2,2016-01-03 02:55:10,2016-01-03 03:04:37,1,2.2,,,-73.98892974853516,40.71860122680664,-73.97339630126953,40.74385452270508,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +2,2016-01-21 22:52:02,2016-01-21 23:00:35,1,1.56,,,-74.0023422241211,40.72462844848633,-73.98234558105469,40.73176193237305,1,N,1,8.0,0.5,0.5,0.3,1.1,0.0,10.4 +2,2016-01-08 08:02:43,2016-01-08 08:07:11,1,0.67,,,-73.9884033203125,40.77411651611328,-73.98211669921875,40.77716827392578,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-28 18:52:41,2016-01-28 19:02:25,5,1.03,,,-73.99638366699219,40.73802185058594,-73.9869613647461,40.742130279541016,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-16 17:06:21,2016-01-16 17:10:38,1,0.8,,,-73.99825286865234,40.74542236328125,-74.00364685058594,40.75251770019531,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-15 17:40:07,2016-01-15 17:44:32,1,1.1,,,-73.97032165527344,40.7891845703125,-73.98184967041016,40.776241302490234,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-22 07:56:41,2016-01-22 08:16:56,1,2.7,,,-73.96763610839844,40.79296112060547,-73.97393798828125,40.76272201538086,1,N,1,14.0,0.0,0.5,0.3,2.0,0.0,16.8 +2,2016-01-10 17:57:16,2016-01-10 18:01:54,1,0.86,,,-73.9846420288086,40.74275207519531,-73.9911117553711,40.73236846923828,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-17 21:53:11,2016-01-17 21:58:58,2,0.8,,,-73.97704315185547,40.742740631103516,-73.99095916748047,40.74538803100586,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,8.75 +2,2016-01-21 11:47:35,2016-01-21 11:53:59,4,0.71,,,-73.99466705322266,40.73146057128906,-73.98481750488281,40.73224639892578,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-22 15:32:13,2016-01-22 16:17:26,1,9.2,,,-73.97332763671875,40.75749969482422,-73.8721923828125,40.77433776855469,1,N,1,33.5,0.0,0.5,0.3,9.95,5.54,49.79 +2,2016-01-11 12:24:54,2016-01-11 12:39:36,2,1.47,,,-73.98693084716797,40.757530212402344,-73.99452209472656,40.74767303466797,1,N,1,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-30 07:22:44,2016-01-30 07:39:23,1,5.37,,,-73.98307800292969,40.7305908203125,-73.9236068725586,40.75593948364258,1,N,1,17.5,0.0,0.5,0.3,3.66,0.0,21.96 +2,2016-01-10 00:13:26,2016-01-10 00:22:21,5,1.5,,,-74.00529479980469,40.74030685424805,-74.00706481933594,40.7198486328125,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +2,2016-01-13 23:26:15,2016-01-13 23:36:12,1,1.98,,,-73.98367309570312,40.74384689331055,-73.97270202636719,40.76332092285156,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +2,2016-01-22 16:41:10,2016-01-22 17:21:18,1,4.45,,,-73.98582458496094,40.75630187988281,-74.01260375976562,40.70421600341797,1,N,2,21.0,1.0,0.5,0.3,0.0,0.0,22.8 +1,2016-01-16 14:19:44,2016-01-16 14:29:03,1,1.3,,,-73.98173522949219,40.746578216552734,-74.00223541259766,40.755714416503906,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-14 10:57:40,2016-01-14 11:09:01,1,2.09,,,-73.96126556396484,40.76076126098633,-73.98340606689453,40.74103546142578,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-01 14:19:06,2016-01-01 14:21:47,1,0.82,,,-73.93551635742188,40.800228118896484,-73.93892669677734,40.79098892211914,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-16 17:58:22,2016-01-16 18:26:39,2,6.0,,,-74.01424407958984,40.71208572387695,-73.96324920654297,40.76914978027344,1,N,1,23.5,0.0,0.5,0.3,4.85,0.0,29.15 +2,2016-01-16 02:18:38,2016-01-16 02:34:58,1,8.46,,,-74.00270080566406,40.74982833862305,-73.9358901977539,40.85028076171875,1,N,1,24.5,0.5,0.5,0.3,5.16,0.0,30.96 +1,2016-01-28 22:44:11,2016-01-28 22:52:43,1,3.1,,,-73.99061584472656,40.718505859375,-73.94831848144531,40.718502044677734,1,N,1,11.0,0.5,0.5,0.3,1.5,0.0,13.8 +1,2016-01-27 09:40:44,2016-01-27 09:50:04,1,0.5,,,-73.9881820678711,40.74913787841797,-73.98612213134766,40.75566864013672,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +2,2016-01-17 18:18:19,2016-01-17 19:06:02,1,20.43,,,-73.78339385986328,40.64862060546875,-73.93116760253906,40.855010986328125,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-12 19:39:41,2016-01-12 19:44:38,1,0.85,,,-74.00132751464844,40.73621368408203,-73.994384765625,40.72872543334961,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-17 20:07:39,2016-01-17 20:22:29,1,3.6,,,-73.98841857910156,40.77846145629883,-73.99935913085938,40.738868713378906,1,N,1,13.5,0.5,0.5,0.3,2.96,0.0,17.76 +1,2016-01-10 14:45:22,2016-01-10 14:55:03,2,1.8,,,-73.96232604980469,40.77898025512695,-73.97350311279297,40.756675720214844,1,N,1,9.0,0.0,0.5,0.3,2.9,0.0,12.7 +2,2016-01-14 12:19:29,2016-01-14 12:28:02,1,1.21,,,-73.97391510009766,40.76298141479492,-73.97087097167969,40.75171661376953,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-13 16:46:04,2016-01-13 17:07:27,1,5.96,,,-73.97564697265625,40.74541091918945,-74.0109634399414,40.71628189086914,1,N,2,19.5,1.0,0.5,0.3,0.0,0.0,21.3 +2,2016-01-16 23:35:43,2016-01-16 23:54:36,2,4.73,,,-74.00859832763672,40.719051361083984,-73.97579193115234,40.76567077636719,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,18.3 +2,2016-01-17 19:22:03,2016-01-17 19:35:56,1,3.05,,,-73.99147033691406,40.7499885559082,-73.95922088623047,40.77170944213867,1,N,1,12.0,0.0,0.5,0.3,3.2,0.0,16.0 +2,2016-01-03 13:14:28,2016-01-03 13:25:07,1,1.32,,,-73.9798812866211,40.73921585083008,-73.98986053466797,40.750831604003906,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-27 18:52:30,2016-01-27 19:21:47,1,2.98,,,-73.97744750976562,40.754188537597656,-73.94770812988281,40.77907180786133,1,N,2,18.5,1.0,0.5,0.3,0.0,0.0,20.3 +1,2016-01-01 18:08:43,2016-01-01 18:18:34,3,2.5,,,-74.00764465332031,40.743072509765625,-73.98043060302734,40.76453399658203,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-10 01:39:06,2016-01-10 01:56:04,1,2.4,,,-74.00505065917969,40.74150466918945,-73.99549865722656,40.72077941894531,1,N,1,12.0,0.5,0.5,0.3,1.0,0.0,14.3 +1,2016-01-27 09:53:56,2016-01-27 10:04:11,3,1.2,,,-73.98197937011719,40.765846252441406,-73.99124908447266,40.749881744384766,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-22 14:43:01,2016-01-22 14:47:00,5,0.5,,,-73.9697494506836,40.762508392333984,-73.97457122802734,40.75653076171875,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +2,2016-01-22 23:58:55,2016-01-23 00:29:18,1,8.8,,,-73.9926986694336,40.769290924072266,-73.95822143554688,40.729896545410156,1,N,2,28.5,0.5,0.5,0.3,0.0,0.0,29.8 +1,2016-01-02 12:13:56,2016-01-02 12:16:39,1,0.8,,,-73.97138977050781,40.78769302368164,-73.9791259765625,40.77765655517578,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-03 17:23:14,2016-01-03 17:44:02,1,6.9,,,-73.98392486572266,40.74617385864258,-73.94099426269531,40.812679290771484,1,N,1,23.0,0.0,0.5,0.3,2.0,0.0,25.8 +2,2016-01-16 01:52:56,2016-01-16 02:12:19,1,4.87,,,-73.96392822265625,40.75871658325195,-73.89250946044922,40.752071380615234,1,N,1,17.5,0.5,0.5,0.3,4.0,0.0,22.8 +2,2016-01-20 18:42:32,2016-01-20 18:54:55,1,1.93,,,-73.96613311767578,40.76797103881836,-73.976806640625,40.74528884887695,1,N,1,10.0,1.0,0.5,0.3,1.5,0.0,13.3 +2,2016-01-22 18:42:11,2016-01-22 19:23:56,5,6.2,,,-73.99411010742188,40.75107955932617,-73.96804809570312,40.68907928466797,1,N,1,28.0,1.0,0.5,0.3,5.96,0.0,35.76 +2,2016-01-14 13:11:30,2016-01-14 13:14:12,1,0.38,,,-73.95069122314453,40.779300689697266,-73.95000457763672,40.778106689453125,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,6.0 +1,2016-01-08 20:47:38,2016-01-08 20:58:46,1,1.9,,,-73.98651885986328,40.740238189697266,-73.96629333496094,40.758872985839844,1,N,1,9.5,0.5,0.5,0.3,1.5,0.0,12.3 +1,2016-01-05 15:00:26,2016-01-05 15:15:04,1,1.7,,,-73.9942626953125,40.75135040283203,-73.97295379638672,40.75557327270508,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +1,2016-01-13 17:54:36,2016-01-13 18:10:41,1,2.5,,,-73.95376586914062,40.78514099121094,-73.98236846923828,40.772560119628906,1,N,1,12.5,1.0,0.5,0.3,2.0,0.0,16.3 +2,2016-01-01 00:15:51,2016-01-01 00:29:59,1,2.64,,,-73.97610473632812,40.7761116027832,-73.95304107666016,40.780033111572266,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +2,2016-01-04 17:33:35,2016-01-04 17:49:02,1,2.45,,,-73.9552001953125,40.78799057006836,-73.98241424560547,40.77376174926758,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-27 08:50:27,2016-01-27 09:08:15,1,2.16,,,-73.98786926269531,40.775108337402344,-73.96125030517578,40.78009033203125,1,N,1,12.5,0.0,0.5,0.3,3.32,0.0,16.62 +1,2016-01-08 01:42:06,2016-01-08 01:47:42,2,1.0,,,-74.00099182128906,40.729122161865234,-73.99818420410156,40.74053192138672,1,N,1,6.0,0.5,0.5,0.3,1.7,0.0,9.0 +1,2016-01-09 12:55:44,2016-01-09 13:03:05,1,1.7,,,-73.99586486816406,40.743892669677734,-74.0045394897461,40.72113800048828,1,N,1,8.0,0.0,0.5,0.3,2.6,0.0,11.4 +2,2016-01-28 22:54:01,2016-01-28 23:08:58,2,4.24,,,-73.96296691894531,40.76264190673828,-73.95344543457031,40.80699157714844,1,N,1,15.0,0.5,0.5,0.3,4.08,0.0,20.38 +1,2016-01-13 17:15:38,2016-01-13 17:36:18,1,2.7,,,-73.95886993408203,40.70885467529297,-74.0014419555664,40.72610855102539,1,N,1,15.0,1.0,0.5,0.3,3.0,0.0,19.8 +2,2016-01-10 16:04:41,2016-01-10 16:06:51,5,0.42,,,-73.98268127441406,40.76769256591797,-73.98332977294922,40.76215744018555,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-14 18:51:16,2016-01-14 19:01:42,1,0.9,,,-73.97322082519531,40.763912200927734,-73.98186492919922,40.752052307128906,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-28 00:20:02,2016-01-28 00:37:27,1,4.7,,,-74.00609588623047,40.7258186340332,-73.9390640258789,40.726219177246094,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,18.3 +2,2016-01-21 14:02:46,2016-01-21 14:14:19,1,1.28,,,-73.99030303955078,40.75217819213867,-73.97543334960938,40.760841369628906,1,N,1,9.0,0.0,0.5,0.3,1.8,0.0,11.6 +1,2016-01-16 21:34:07,2016-01-16 21:38:47,1,0.6,,,-74.00363159179688,40.74184799194336,-73.99360656738281,40.741634368896484,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,7.55 +2,2016-01-19 20:59:41,2016-01-19 21:03:29,1,0.73,,,-73.9938735961914,40.74140930175781,-73.99207305908203,40.746673583984375,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-16 16:33:33,2016-01-16 16:39:11,1,0.6,,,-73.98412322998047,40.7606086730957,-73.99017333984375,40.75144958496094,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-20 14:39:02,2016-01-20 14:55:29,6,1.61,,,-73.96823120117188,40.755470275878906,-73.98770904541016,40.75108337402344,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-03 22:29:20,2016-01-03 22:48:45,1,9.69,,,-73.8634262084961,40.76927185058594,-73.95360565185547,40.69110107421875,1,N,1,28.5,0.5,0.5,0.3,5.96,0.0,35.76 +2,2016-01-19 12:47:54,2016-01-19 13:09:07,2,2.75,,,-73.98912048339844,40.742279052734375,-74.00886535644531,40.71091842651367,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,15.3 +1,2016-01-19 22:19:25,2016-01-19 22:24:55,1,1.1,,,-73.97319793701172,40.75550079345703,-73.98336029052734,40.743839263916016,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,8.75 +1,2016-01-10 06:52:02,2016-01-10 06:57:00,1,2.1,,,-73.9663314819336,40.76490020751953,-73.98157501220703,40.73817443847656,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-30 00:16:50,2016-01-30 00:22:49,1,0.6,,,-73.98101043701172,40.75928497314453,-73.97477722167969,40.75656509399414,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-05 21:48:20,2016-01-05 22:03:11,1,3.0,,,-73.98186492919922,40.764808654785156,-73.98027038574219,40.73360061645508,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,16.56 +1,2016-01-05 10:49:41,2016-01-05 10:56:50,1,0.6,,,-74.00977325439453,40.71321487426758,-74.0013427734375,40.71623611450195,1,N,3,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-11 14:08:04,2016-01-11 14:22:47,1,2.0,,,-73.96949768066406,40.785369873046875,-73.96578216552734,40.76350784301758,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,14.75 +2,2016-01-19 12:03:56,2016-01-19 12:04:23,1,0.0,,,-73.93683624267578,40.764591217041016,-73.93685913085938,40.76447677612305,1,N,1,2.5,0.0,0.5,0.3,0.0,0.0,3.3 +1,2016-01-12 04:36:51,2016-01-12 04:43:44,1,2.6,,,-73.98193359375,40.769107818603516,-73.96736145019531,40.80110549926758,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +1,2016-01-22 13:19:23,2016-01-22 13:24:02,1,0.2,,,-73.97811126708984,40.73339080810547,-73.97925567626953,40.7358283996582,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-14 03:08:38,2016-01-14 03:25:35,1,3.5,,,-74.0054931640625,40.740806579589844,-73.96642303466797,40.75566864013672,1,N,1,15.0,0.5,0.5,0.3,2.0,0.0,18.3 +1,2016-01-21 14:34:56,2016-01-21 14:47:01,1,0.9,,,-73.99226379394531,40.75439453125,-73.98388671875,40.74618148803711,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-30 23:56:21,2016-01-31 00:19:53,2,1.6,,,-73.9998550415039,40.7331657409668,-73.98761749267578,40.71989440917969,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,15.8 +1,2016-01-27 20:59:09,2016-01-27 21:13:41,1,3.4,,,-74.00751495361328,40.743080139160156,-73.98088836669922,40.78467559814453,1,N,1,14.0,0.5,0.5,0.3,3.05,0.0,18.35 +1,2016-01-20 06:08:46,2016-01-20 06:16:04,1,1.5,,,-73.98440551757812,40.73221206665039,-74.00691986083984,40.74427032470703,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-17 13:56:22,2016-01-17 14:03:29,4,1.6,,,-73.97805786132812,40.78920364379883,-73.98011779785156,40.77360916137695,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-17 23:39:42,2016-01-17 23:43:50,1,1.64,,,-73.97216033935547,40.76395034790039,-73.97764587402344,40.745540618896484,1,N,1,6.5,0.5,0.5,0.3,0.7,0.0,8.5 +2,2016-01-15 15:18:52,2016-01-15 15:36:36,5,3.51,,,-73.9854736328125,40.735469818115234,-73.95440673828125,40.76721954345703,1,N,1,14.5,0.0,0.5,0.3,1.5,0.0,16.8 +1,2016-01-06 16:46:55,2016-01-06 17:41:17,1,17.2,,,-73.98847198486328,40.72331237792969,-73.79003143310547,40.643428802490234,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-23 02:55:32,2016-01-23 03:23:38,1,8.13,,,-73.95124816894531,40.825599670410156,-73.96488189697266,40.79267883300781,1,N,1,27.0,0.5,0.5,0.3,5.66,0.0,33.96 +1,2016-01-30 12:39:40,2016-01-30 12:57:51,1,2.5,,,-74.00566864013672,40.749107360839844,-73.97603607177734,40.76470947265625,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +1,2016-01-29 02:28:57,2016-01-29 02:46:28,1,4.1,,,-74.00042724609375,40.7298583984375,-73.94325256347656,40.70815658569336,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,16.8 +1,2016-01-20 11:46:42,2016-01-20 11:53:12,1,1.1,,,-73.98220825195312,40.7756233215332,-73.9679183959961,40.76856231689453,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-09 03:31:56,2016-01-09 03:40:37,1,0.94,,,-74.0005111694336,40.73217010498047,-73.98481750488281,40.72737121582031,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-13 21:31:07,2016-01-13 21:41:18,1,1.8,,,-73.98035430908203,40.76455307006836,-73.97761535644531,40.786285400390625,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +1,2016-01-11 18:38:25,2016-01-11 18:39:53,1,0.4,,,-73.96586608886719,40.75825881958008,-73.96942138671875,40.753604888916016,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-30 14:18:33,2016-01-30 14:28:08,1,1.17,,,-73.98983764648438,40.75676727294922,-73.98037719726562,40.77070617675781,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-03 13:10:10,2016-01-03 13:23:10,1,2.47,,,-73.9561538696289,40.78736877441406,-73.97882080078125,40.75632095336914,1,N,1,11.5,0.0,0.5,0.3,2.0,0.0,14.3 +2,2016-01-11 09:36:53,2016-01-11 09:46:11,5,0.65,,,-74.00118255615234,40.7415885925293,-73.99508666992188,40.74980163574219,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +1,2016-01-07 12:53:29,2016-01-07 13:22:23,2,12.8,,,-73.99396514892578,40.746395111083984,-73.83168029785156,40.759803771972656,1,N,1,37.5,0.0,0.5,0.3,5.0,5.54,48.84 +2,2016-01-15 14:47:53,2016-01-15 14:50:03,1,0.44,,,-73.97181701660156,40.76033020019531,-73.9755630493164,40.754676818847656,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,6.0 +1,2016-01-18 01:53:16,2016-01-18 02:13:05,1,5.0,,,-73.94367980957031,40.82038879394531,-73.94284057617188,40.81999206542969,1,N,1,18.5,0.5,0.5,0.3,4.95,0.0,24.75 +1,2016-01-16 15:10:19,2016-01-16 15:33:23,1,2.4,,,-73.98698425292969,40.74467468261719,-73.99683380126953,40.716487884521484,1,N,1,15.0,0.0,0.5,0.3,3.15,0.0,18.95 +2,2016-01-03 01:41:41,2016-01-03 01:49:45,6,1.45,,,-73.99909210205078,40.729976654052734,-73.98551940917969,40.7412109375,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-17 19:46:35,2016-01-17 20:07:23,5,4.98,,,-73.98546600341797,40.76038360595703,-74.01361083984375,40.709407806396484,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,18.8 +1,2016-01-30 01:21:08,2016-01-30 01:24:49,1,0.8,,,-73.97757720947266,40.78676986694336,-73.97022247314453,40.796817779541016,1,N,1,5.0,0.5,0.5,0.3,2.0,0.0,8.3 +2,2016-01-15 22:34:45,2016-01-15 22:46:53,2,2.39,,,-73.97810363769531,40.74552917480469,-73.95589447021484,40.77228927612305,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,14.16 +2,2016-01-29 11:27:30,2016-01-29 11:35:13,2,1.56,,,-73.95527648925781,40.7828483581543,-73.97399139404297,40.78901672363281,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-13 14:32:53,2016-01-13 14:48:41,5,1.45,,,-73.96585083007812,40.75856399536133,-73.98117065429688,40.75563430786133,1,N,1,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-12 14:38:57,2016-01-12 14:52:04,1,1.5,,,-73.95619201660156,40.7855224609375,-73.96139526367188,40.76866149902344,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-04 13:44:01,2016-01-04 13:58:13,1,2.32,,,-73.9610595703125,40.77497863769531,-73.98200225830078,40.74645233154297,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-07 15:16:01,2016-01-07 15:18:25,1,0.3,,,-73.99896240234375,40.719451904296875,-73.99678802490234,40.724090576171875,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +1,2016-01-09 19:54:55,2016-01-09 20:01:05,1,0.4,,,-73.99160766601562,40.75038146972656,-73.98882293701172,40.7487678527832,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-17 14:03:03,2016-01-17 14:18:16,1,1.9,,,-74.00596618652344,40.73579406738281,-73.98770904541016,40.72157669067383,1,N,1,11.5,0.0,0.5,0.3,2.0,0.0,14.3 +1,2016-01-04 10:46:22,2016-01-04 11:22:27,1,17.2,,,-73.98329162597656,40.7529182434082,-73.77898406982422,40.6450309753418,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-02 20:31:03,2016-01-02 20:41:27,1,2.51,,,-73.9546890258789,40.76968002319336,-73.96724700927734,40.793479919433594,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,11.8 +1,2016-01-25 16:51:58,2016-01-25 16:57:58,1,0.5,,,-73.95829010009766,40.778846740722656,-73.9637680053711,40.77383041381836,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-30 18:22:21,2016-01-30 18:37:00,1,1.8,,,-73.9494857788086,40.78103256225586,-73.97659301757812,40.78786849975586,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +2,2016-01-06 00:11:57,2016-01-06 00:25:27,1,5.79,,,-74.00398254394531,40.713069915771484,-73.95841979980469,40.76036834716797,1,N,1,18.5,0.5,0.5,0.3,3.96,0.0,23.76 +1,2016-01-26 11:54:14,2016-01-26 12:06:56,1,1.4,,,-73.98697662353516,40.75613784790039,-73.99073028564453,40.771392822265625,1,N,1,9.5,0.0,0.5,0.3,2.0,0.0,12.3 +2,2016-01-29 00:59:08,2016-01-29 01:25:44,1,3.28,,,-74.00756072998047,40.74087905883789,-74.01065826416016,40.71669006347656,1,N,1,18.0,0.5,0.5,0.3,2.05,0.0,21.35 +1,2016-01-23 01:27:04,2016-01-23 01:32:48,2,0.8,,,-74.00814056396484,40.738311767578125,-74.0052719116211,40.728721618652344,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,8.15 +1,2016-01-02 20:52:44,2016-01-02 21:08:54,1,4.0,,,-73.99076080322266,40.75095748901367,-74.01663208007812,40.70933532714844,1,N,1,15.5,0.5,0.5,0.3,3.0,0.0,19.8 +1,2016-01-06 15:29:01,2016-01-06 15:41:11,3,1.3,,,-73.9629898071289,40.771690368652344,-73.94898223876953,40.78196716308594,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-11 12:39:42,2016-01-11 12:42:00,5,0.69,,,-73.9587631225586,40.77238845825195,-73.95671081542969,40.77994918823242,1,N,1,4.0,0.0,0.5,0.3,1.0,0.0,5.8 +1,2016-01-15 16:35:00,2016-01-15 16:47:50,1,1.3,,,-73.96946716308594,40.763423919677734,-73.9599380493164,40.77363586425781,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,11.3 +1,2016-01-18 18:15:42,2016-01-18 18:22:30,2,1.1,,,-73.96827697753906,40.767723083496094,-73.98258972167969,40.76494598388672,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-06 23:04:22,2016-01-06 23:22:20,1,6.5,,,-73.96708679199219,40.75725173950195,-73.94413757324219,40.82461929321289,1,N,1,21.0,0.5,0.5,0.3,5.55,0.0,27.85 +2,2016-01-19 14:01:09,2016-01-19 14:10:44,1,0.8,,,-73.98938751220703,40.751564025878906,-73.98062896728516,40.7548942565918,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +1,2016-01-13 17:24:04,2016-01-13 17:28:16,1,0.4,,,-73.97781372070312,40.789024353027344,-73.97350311279297,40.7912483215332,1,N,1,4.5,1.0,0.5,0.3,3.0,0.0,9.3 +1,2016-01-30 02:42:40,2016-01-30 02:53:18,1,2.7,,,-74.00247955322266,40.74998474121094,-73.97189331054688,40.763160705566406,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,11.8 +2,2016-01-09 05:11:05,2016-01-09 05:15:10,5,0.71,,,-73.997802734375,40.761390686035156,-73.98692321777344,40.75674819946289,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-03 21:01:27,2016-01-03 21:07:33,1,2.12,,,-73.9776611328125,40.78398132324219,-73.9497299194336,40.78533172607422,1,N,1,8.0,0.5,0.5,0.3,0.7,0.0,10.0 +2,2016-01-28 08:34:25,2016-01-28 09:21:03,1,10.92,,,-73.86306762695312,40.76914978027344,-73.97335815429688,40.75508117675781,1,N,1,38.0,0.0,0.5,0.3,7.5,5.54,51.84 +2,2016-01-21 12:08:36,2016-01-21 12:30:49,5,2.86,,,-73.94056701660156,40.79328155517578,-73.96836853027344,40.76121139526367,1,N,1,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-27 21:33:47,2016-01-27 21:45:08,1,2.32,,,-73.98554229736328,40.74872589111328,-73.95866394042969,40.76405334472656,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +2,2016-01-21 13:08:36,2016-01-21 13:29:31,5,2.96,,,-73.9646224975586,40.76699447631836,-73.98921966552734,40.73065185546875,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,19.75 +1,2016-01-07 12:24:14,2016-01-07 12:31:11,1,0.9,,,-73.97826385498047,40.75113296508789,-73.98938751220703,40.74195098876953,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-13 08:56:50,2016-01-13 09:17:03,1,6.31,,,-73.96856689453125,40.75492858886719,-74.01351165771484,40.713558197021484,1,N,1,20.5,0.0,0.5,0.3,1.2,0.0,22.5 +2,2016-01-26 10:40:01,2016-01-26 10:58:39,5,1.07,,,-73.99109649658203,40.750091552734375,-73.98204803466797,40.75801086425781,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +2,2016-01-11 05:42:10,2016-01-11 05:52:20,1,1.81,,,-73.97659301757812,40.77629852294922,-73.95319366455078,40.77675247192383,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +2,2016-01-26 09:29:43,2016-01-26 09:37:54,1,1.36,,,-73.9761734008789,40.76066970825195,-73.99136352539062,40.74982833862305,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-26 08:36:34,2016-01-26 09:01:08,1,2.0,,,-73.97015380859375,40.79916763305664,-73.95940399169922,40.779457092285156,1,N,1,15.5,0.0,0.5,0.3,4.05,0.0,20.35 +2,2016-01-12 12:05:38,2016-01-12 12:24:45,6,3.08,,,-73.95099639892578,40.775028228759766,-73.98700714111328,40.76430130004883,1,N,1,14.5,0.0,0.5,0.3,3.82,0.0,19.12 +2,2016-01-02 18:37:36,2016-01-02 18:44:55,1,0.77,,,-73.97592163085938,40.75975799560547,-73.98280334472656,40.75038146972656,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-28 13:41:54,2016-01-28 13:50:09,1,0.93,,,-74.00054168701172,40.72071075439453,-73.99752807617188,40.72970962524414,1,N,1,7.0,0.0,0.5,0.3,2.34,0.0,10.14 +2,2016-01-11 07:07:08,2016-01-11 07:15:50,1,1.67,,,-73.99372863769531,40.74171829223633,-73.97648620605469,40.75725173950195,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,9.8 +2,2016-01-05 17:26:26,2016-01-05 17:34:26,3,1.23,,,-73.9809799194336,40.77490234375,-73.97837829589844,40.7881965637207,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-02 15:51:02,2016-01-02 15:55:51,1,0.65,,,-73.97430419921875,40.79383087158203,-73.96475219726562,40.79171371459961,1,N,1,5.5,0.0,0.5,0.3,0.75,0.0,7.05 +2,2016-01-27 21:12:30,2016-01-27 21:30:21,1,3.65,,,-73.98973083496094,40.73988342285156,-73.95909881591797,40.709686279296875,1,N,1,15.0,0.5,0.5,0.3,3.26,0.0,19.56 +2,2016-01-03 19:40:44,2016-01-03 20:05:53,2,12.85,,,-73.7767562866211,40.645389556884766,-73.92147827148438,40.613582611083984,1,N,2,37.0,0.0,0.5,0.3,0.0,0.0,37.8 +2,2016-01-03 13:23:17,2016-01-03 13:49:35,2,6.77,,,-74.01576232910156,40.70481872558594,-73.98503875732422,40.76028823852539,1,N,2,25.5,0.0,0.5,0.3,0.0,0.0,26.3 +1,2016-01-03 02:01:14,2016-01-03 02:11:50,2,2.5,,,-73.9807357788086,40.774757385253906,-73.95178985595703,40.77349853515625,1,N,1,10.5,0.5,0.5,0.3,2.35,0.0,14.15 +2,2016-01-22 09:34:48,2016-01-22 09:52:33,1,2.29,,,-73.98239135742188,40.76567459106445,-74.00507354736328,40.741336822509766,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-25 04:34:08,2016-01-25 04:49:57,1,6.61,,,-73.97119903564453,40.75743865966797,-74.01600646972656,40.71123504638672,1,N,1,21.0,0.5,0.5,0.3,4.46,0.0,26.76 +1,2016-01-03 17:55:55,2016-01-03 17:58:08,1,0.4,,,-73.9769287109375,40.77532196044922,-73.98084259033203,40.77003860473633,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-15 13:28:09,2016-01-15 13:37:00,1,1.56,,,-73.97074890136719,40.78841018676758,-73.98866271972656,40.778526306152344,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,9.8 +1,2016-01-10 17:54:34,2016-01-10 18:05:14,4,1.1,,,-73.98823547363281,40.756813049316406,-73.99091339111328,40.74984359741211,1,N,1,8.0,0.0,0.5,0.3,1.11,0.0,9.91 +2,2016-01-07 10:35:58,2016-01-07 10:44:24,5,1.0,,,-73.99384307861328,40.751468658447266,-73.99552917480469,40.76234817504883,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-02 21:11:32,2016-01-02 21:20:19,1,1.5,,,-73.98553466796875,40.7635383605957,-74.00279235839844,40.76054382324219,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-02 14:30:08,2016-01-02 14:41:46,1,2.55,,,-73.97772216796875,40.7577018737793,-74.00556182861328,40.740081787109375,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +1,2016-01-05 05:07:24,2016-01-05 05:10:18,1,0.5,,,-73.98983001708984,40.76726531982422,-73.98138427734375,40.76382827758789,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +2,2016-01-28 10:30:17,2016-01-28 10:38:53,2,0.68,,,-73.98149871826172,40.73714065551758,-73.99173736572266,40.73883056640625,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-29 18:52:14,2016-01-29 18:59:04,5,0.82,,,-73.98394012451172,40.77545166015625,-73.98347473144531,40.76727294921875,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-21 13:03:28,2016-01-21 13:21:26,2,5.14,,,-73.97489929199219,40.741783142089844,-74.00945281982422,40.70907211303711,1,N,1,19.0,0.0,0.5,0.3,5.94,0.0,25.74 +1,2016-01-27 08:28:02,2016-01-27 08:39:38,1,1.1,,,-73.98719024658203,40.724517822265625,-74.00174713134766,40.71947479248047,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +2,2016-01-18 20:23:54,2016-01-18 20:36:15,1,2.73,,,-73.9756851196289,40.75795364379883,-74.0030746459961,40.73887634277344,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +2,2016-01-24 20:29:35,2016-01-24 20:51:51,1,3.61,,,-73.97140502929688,40.79759216308594,-73.96874237060547,40.7608528137207,1,N,1,16.5,0.5,0.5,0.3,1.0,0.0,18.8 +2,2016-01-13 19:49:19,2016-01-13 20:03:34,6,2.17,,,-73.95863342285156,40.77513122558594,-73.9590072631836,40.77504348754883,1,N,1,11.0,1.0,0.5,0.3,3.2,0.0,16.0 +1,2016-01-16 21:41:22,2016-01-16 21:53:55,1,1.7,,,-73.99207305908203,40.72908401489258,-73.99425506591797,40.74857711791992,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +2,2016-01-16 01:52:33,2016-01-16 02:06:53,2,2.77,,,-74.00592803955078,40.74224853515625,-73.97322082519531,40.74803161621094,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,16.56 +2,2016-01-10 10:16:58,2016-01-10 10:24:31,1,1.63,,,-73.95813751220703,40.77914810180664,-73.97966766357422,40.78379821777344,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-12 15:55:27,2016-01-12 16:09:11,1,1.8,,,-73.9565658569336,40.77133560180664,-73.9777603149414,40.78665542602539,1,N,1,10.5,0.0,0.5,0.3,1.7,0.0,13.0 +2,2016-01-05 21:38:12,2016-01-05 21:53:44,1,2.17,,,-73.9897689819336,40.758941650390625,-74.00547790527344,40.740718841552734,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +2,2016-01-20 09:22:19,2016-01-20 09:30:37,1,1.38,,,-73.97441101074219,40.75368118286133,-73.98772430419922,40.73819351196289,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-07 10:28:19,2016-01-07 10:44:02,1,0.6,,,-73.98896789550781,40.74932861328125,-73.9878158569336,40.7449951171875,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-27 08:03:40,2016-01-27 08:11:52,1,1.1,,,-73.9885025024414,40.7486686706543,-73.97541809082031,40.75619888305664,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-08 11:01:49,2016-01-08 11:09:28,1,1.04,,,-73.98648071289062,40.76057815551758,-74.00059509277344,40.757896423339844,1,N,1,6.5,0.0,0.5,0.3,1.82,0.0,9.12 +1,2016-01-13 13:50:55,2016-01-13 14:05:36,1,1.3,,,-73.98579406738281,40.738868713378906,-74.00371551513672,40.74756622314453,1,Y,1,10.5,0.0,0.5,0.3,1.0,0.0,12.3 +1,2016-01-11 10:05:56,2016-01-11 10:09:40,1,0.2,,,-73.95425415039062,40.7640266418457,-73.95792388916016,40.76438522338867,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-21 05:50:25,2016-01-21 06:00:24,1,2.0,,,-73.97286224365234,40.74424743652344,-73.97915649414062,40.76362991333008,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +2,2016-01-20 09:12:41,2016-01-20 09:28:40,6,8.32,,,-73.95124816894531,40.7701416015625,-73.8732681274414,40.77437973022461,1,N,1,24.5,0.0,0.5,0.3,0.0,5.54,30.84 +2,2016-01-02 05:56:14,2016-01-02 06:12:00,1,7.3,,,-73.8729476928711,40.77423095703125,-73.95543670654297,40.76871109008789,1,N,1,21.5,0.5,0.5,0.3,5.7,0.0,28.5 +2,2016-01-16 23:18:42,2016-01-16 23:32:52,1,2.08,,,-73.98750305175781,40.72142791748047,-73.9797592163086,40.743953704833984,1,N,1,11.0,0.5,0.5,0.3,2.0,0.0,14.3 +1,2016-01-29 11:33:46,2016-01-29 11:49:16,1,1.6,,,-73.96529388427734,40.765987396240234,-73.94908905029297,40.7833366394043,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,12.3 +1,2016-01-30 00:19:36,2016-01-30 00:44:35,3,17.8,,,-73.78606414794922,40.64750671386719,-73.98323822021484,40.75676727294922,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-21 16:51:29,2016-01-21 16:54:49,1,0.6,,,-73.97501373291016,40.79030227661133,-73.98104858398438,40.78171157836914,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-03 01:44:01,2016-01-03 01:50:17,2,1.55,,,-73.98605346679688,40.74717330932617,-74.00568389892578,40.74549102783203,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-29 22:47:55,2016-01-29 22:52:10,1,0.8,,,-73.96405792236328,40.774436950683594,-73.96821594238281,40.764949798583984,1,N,1,5.5,0.5,0.5,0.3,2.0,0.0,8.8 +2,2016-01-15 13:47:44,2016-01-15 14:04:10,1,1.55,,,-73.97066497802734,40.783592224121094,-73.95004272460938,40.772071838378906,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-14 21:59:50,2016-01-14 22:11:06,1,2.2,,,-73.97235870361328,40.75627517700195,-73.97430419921875,40.73153305053711,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +2,2016-01-05 09:05:06,2016-01-05 09:17:23,2,1.86,,,-73.95233917236328,40.77838897705078,-73.970703125,40.76129913330078,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-13 21:20:36,2016-01-13 21:28:27,1,2.1,,,-73.97250366210938,40.76241683959961,-73.98090362548828,40.733890533447266,1,N,1,8.5,0.5,0.5,0.3,1.95,0.0,11.75 +1,2016-01-29 19:40:41,2016-01-29 20:05:27,2,3.5,,,-73.98974609375,40.762149810791016,-74.00883483886719,40.71836853027344,1,N,1,17.0,1.0,0.5,0.3,3.75,0.0,22.55 +2,2016-01-25 22:43:21,2016-01-25 22:52:36,1,1.56,,,-73.96348571777344,40.775184631347656,-73.98275756835938,40.769107818603516,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-10 16:13:05,2016-01-10 17:51:43,2,4.9,,,-73.98944854736328,40.74176025390625,-73.96410369873047,40.71895980834961,1,N,1,26.0,0.0,0.5,0.3,5.36,0.0,32.16 +1,2016-01-17 13:24:54,2016-01-17 13:43:34,1,3.9,,,-73.96142578125,40.77399444580078,-73.99028778076172,40.72640609741211,1,N,1,16.0,0.0,0.5,0.3,3.35,0.0,20.15 +2,2016-01-20 12:59:34,2016-01-20 13:12:48,5,0.78,,,-73.99365234375,40.7498664855957,-73.98819732666016,40.75936508178711,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-04 21:50:13,2016-01-04 22:07:02,1,10.34,,,-73.86331176757812,40.76934051513672,-73.82762908935547,40.848060607910156,1,N,1,29.0,0.5,0.5,0.3,7.17,5.54,43.01 +2,2016-01-14 11:04:01,2016-01-14 11:26:20,1,1.62,,,-73.9817886352539,40.74617385864258,-73.9736557006836,40.763607025146484,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +2,2016-01-12 19:21:01,2016-01-12 19:27:48,1,1.2,,,-73.96316528320312,40.774993896484375,-73.94662475585938,40.7757453918457,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-11 20:40:39,2016-01-11 20:48:00,2,1.01,,,-73.97593688964844,40.75590133666992,-73.98416900634766,40.7648811340332,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-02 00:20:42,2016-01-02 00:45:33,1,8.0,,,-73.99510955810547,40.74998092651367,-73.98799896240234,40.66297149658203,1,N,1,25.5,0.5,0.5,0.3,5.0,5.54,37.34 +2,2016-01-18 01:30:25,2016-01-18 01:35:42,1,1.46,,,-74.00145721435547,40.730918884277344,-74.00762939453125,40.72050857543945,1,N,1,6.5,0.5,0.5,0.3,2.34,0.0,10.14 +2,2016-01-14 14:51:27,2016-01-14 14:58:26,5,0.77,,,-73.98194885253906,40.73202133178711,-73.97486877441406,40.74177932739258,1,N,1,6.5,0.0,0.5,0.3,0.55,0.0,7.85 +2,2016-01-19 14:30:04,2016-01-19 14:37:49,1,0.83,,,0.0,0.0,0.0,0.0,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-07 22:37:39,2016-01-07 22:43:53,1,0.6,,,-73.9857177734375,40.75678634643555,-73.99217224121094,40.74916076660156,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-20 18:10:02,2016-01-20 18:14:18,2,0.9,,,-73.9847412109375,40.73225021362305,-73.98306274414062,40.722381591796875,1,N,1,5.5,1.0,0.5,0.3,2.0,0.0,9.3 +1,2016-01-28 09:25:22,2016-01-28 09:43:05,1,1.7,,,-73.9815902709961,40.78017807006836,-73.97974395751953,40.76561737060547,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,14.75 +1,2016-01-08 10:04:56,2016-01-08 10:09:58,1,0.5,,,-74.01023864746094,40.718772888183594,-74.00250244140625,40.716976165771484,1,N,1,5.0,0.0,0.5,0.3,1.45,0.0,7.25 +2,2016-01-02 19:27:41,2016-01-02 19:37:44,1,1.8,,,-73.9973373413086,40.72113037109375,-73.989990234375,40.741851806640625,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +1,2016-01-05 12:52:11,2016-01-05 13:00:47,1,1.5,,,-73.99661254882812,40.737308502197266,-73.99253845214844,40.75348663330078,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-27 09:26:30,2016-01-27 09:33:14,1,1.4,,,-74.00773620605469,40.73223114013672,-74.01448822021484,40.714073181152344,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +1,2016-01-03 23:25:10,2016-01-03 23:27:23,2,0.5,,,-73.96432495117188,40.797279357910156,-73.96981048583984,40.791412353515625,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +1,2016-01-02 23:03:39,2016-01-02 23:09:58,1,0.9,,,-73.95533752441406,40.820072174072266,-73.95052337646484,40.812400817871094,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-15 04:06:19,2016-01-15 04:26:42,1,11.12,,,-73.98622131347656,40.75526809692383,-73.87259674072266,40.77445983886719,1,N,1,31.5,0.5,0.5,0.3,7.67,5.54,46.01 +2,2016-01-14 13:45:48,2016-01-14 13:58:27,2,1.14,,,-73.97937774658203,40.76507568359375,-73.961669921875,40.75860595703125,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-30 13:00:21,2016-01-30 13:19:45,2,2.83,,,-73.9522705078125,40.77717971801758,-73.98259735107422,40.75593185424805,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +2,2016-01-08 11:33:08,2016-01-08 11:37:49,1,0.86,,,-73.96280670166016,40.7754020690918,-73.95401763916016,40.787132263183594,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-06 22:33:25,2016-01-06 22:55:07,1,11.55,,,-73.9542007446289,40.77873992919922,-73.99698638916016,40.66162109375,1,N,1,33.0,0.5,0.5,0.3,6.86,0.0,41.16 +2,2016-01-15 22:34:04,2016-01-15 22:42:26,1,1.72,,,-73.98290252685547,40.76797103881836,-73.9669189453125,40.75297164916992,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +2,2016-01-15 10:36:51,2016-01-15 11:04:31,1,3.52,,,-73.99335479736328,40.7470588684082,-73.96211242675781,40.77937698364258,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,18.8 +2,2016-01-21 11:55:44,2016-01-21 12:08:20,1,1.54,,,-73.98239135742188,40.74583053588867,-73.99429321289062,40.726600646972656,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-22 20:59:27,2016-01-22 21:11:16,1,1.09,,,-74.00273132324219,40.733890533447266,-73.9945297241211,40.74034881591797,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,12.25 +2,2016-01-17 01:38:44,2016-01-17 01:42:56,1,0.95,,,-73.95668029785156,40.77080535888672,-73.95252990722656,40.776695251464844,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +2,2016-01-01 14:07:51,2016-01-01 14:13:12,1,1.36,,,-73.97962188720703,40.745887756347656,-73.99022674560547,40.731536865234375,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +1,2016-01-11 19:41:21,2016-01-11 19:56:32,1,2.2,,,-73.97779846191406,40.742679595947266,-74.00735473632812,40.7334098815918,1,N,1,11.5,1.0,0.5,0.3,1.75,0.0,15.05 +1,2016-01-01 06:17:48,2016-01-01 06:31:59,1,4.1,,,-73.99434661865234,40.69028091430664,-73.9572982788086,40.71196365356445,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-07 22:01:14,2016-01-07 22:09:41,1,1.5,,,-73.99958038330078,40.73665237426758,-74.00358581542969,40.723716735839844,1,N,1,7.5,0.5,0.5,0.3,0.75,0.0,9.55 +2,2016-01-16 11:56:14,2016-01-16 12:05:36,1,1.4,,,-73.98265838623047,40.72721862792969,-74.0009536743164,40.738189697265625,1,N,1,8.0,0.0,0.5,0.3,0.01,0.0,8.81 +2,2016-01-09 14:57:19,2016-01-09 15:02:51,1,1.41,,,-73.99195098876953,40.749786376953125,-73.97687530517578,40.758941650390625,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-29 16:21:39,2016-01-29 16:57:14,5,10.48,,,-73.97290802001953,40.75906753540039,-73.86187744140625,40.76845169067383,1,N,1,35.0,1.0,0.5,0.3,8.47,5.54,50.81 +1,2016-01-20 23:36:04,2016-01-20 23:45:22,1,2.5,,,-73.96078491210938,40.76993179321289,-73.96905517578125,40.7908935546875,1,N,1,10.0,0.5,0.5,0.3,1.0,0.0,12.3 +1,2016-01-14 20:22:39,2016-01-14 20:28:06,1,1.2,,,-73.98239135742188,40.7755126953125,-73.97490692138672,40.76247787475586,1,Y,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +2,2016-01-26 00:15:11,2016-01-26 00:44:40,5,10.48,,,-73.99163818359375,40.749610900878906,-73.83367156982422,40.71595001220703,1,N,1,33.0,0.5,0.5,0.3,7.0,5.54,46.84 +2,2016-01-04 07:22:51,2016-01-04 07:25:09,1,0.8,,,-73.97148895263672,40.78226089477539,-73.96246337890625,40.77870178222656,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-23 02:22:37,2016-01-23 03:01:10,1,5.8,,,-73.98799896240234,40.75922393798828,-73.89716339111328,40.75791549682617,1,N,2,26.5,0.5,0.5,0.3,0.0,0.0,27.8 +2,2016-01-09 17:26:55,2016-01-09 17:57:00,2,5.97,,,-73.9822006225586,40.77659606933594,-74.0081787109375,40.7077751159668,1,N,1,24.5,0.0,0.5,0.3,5.06,0.0,30.36 +1,2016-01-07 09:41:23,2016-01-07 09:50:28,1,2.1,,,-74.0068130493164,40.703800201416016,-74.01016235351562,40.71982192993164,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-10 01:49:45,2016-01-10 01:58:04,1,2.43,,,-74.00200653076172,40.72993850708008,-73.98497009277344,40.75843811035156,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +2,2016-01-10 21:24:54,2016-01-10 21:32:15,1,1.8,,,-73.94929504394531,40.7768669128418,-73.9729995727539,40.78993225097656,1,N,1,8.0,0.5,0.5,0.3,2.32,0.0,11.62 +1,2016-01-04 09:44:46,2016-01-04 09:54:20,1,1.1,,,-73.98146057128906,40.763858795166016,-73.99122619628906,40.75029373168945,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-06 22:15:46,2016-01-06 22:25:37,3,2.28,,,-73.97624206542969,40.755882263183594,-73.95294952392578,40.77503204345703,1,N,1,9.5,0.5,0.5,0.3,2.7,0.0,13.5 +2,2016-01-13 10:52:13,2016-01-13 10:59:31,2,1.05,,,-73.99152374267578,40.74930953979492,-73.99005126953125,40.73772048950195,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-22 07:31:24,2016-01-22 07:53:29,5,5.59,,,-74.00782775878906,40.70492172241211,-73.97241973876953,40.75926971435547,1,N,1,19.0,0.0,0.5,0.3,3.96,0.0,23.76 +2,2016-01-01 16:33:00,2016-01-01 16:37:55,1,0.93,,,-73.98787689208984,40.7400016784668,-73.97704315185547,40.74525833129883,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-22 13:31:14,2016-01-22 13:52:22,1,5.8,,,-73.98116302490234,40.73322677612305,-73.9343490600586,40.8018684387207,1,N,1,19.5,0.0,0.5,0.3,4.05,0.0,24.35 +1,2016-01-06 06:29:41,2016-01-06 06:42:39,1,2.8,,,-73.94821166992188,40.776092529296875,-73.9763412475586,40.750274658203125,1,N,1,11.5,0.0,0.5,0.3,1.25,0.0,13.55 +1,2016-01-14 14:17:42,2016-01-14 14:36:10,1,2.1,,,-73.95481872558594,40.76959991455078,-73.98236846923828,40.76506423950195,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-24 15:37:29,2016-01-24 15:44:37,1,1.1,,,-73.97451782226562,40.75931930541992,-73.96639251708984,40.77302932739258,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-07 18:59:06,2016-01-07 19:11:10,1,1.93,,,-73.95569610595703,40.78497314453125,-73.95308685302734,40.76648712158203,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-26 01:36:21,2016-01-26 01:40:21,1,0.7,,,-73.98722839355469,40.76444625854492,-73.98905181884766,40.76024627685547,1,N,1,5.0,0.5,0.5,0.3,1.85,0.0,8.15 +2,2016-01-03 01:38:50,2016-01-03 01:46:56,1,2.29,,,-73.95781707763672,40.76946258544922,-73.96514129638672,40.79096603393555,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +2,2016-01-14 00:31:49,2016-01-14 00:43:04,1,2.52,,,-73.9823989868164,40.754005432128906,-73.95378875732422,40.76719284057617,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +1,2016-01-17 10:14:48,2016-01-17 10:22:40,1,1.6,,,-73.97801208496094,40.74866485595703,-73.9970932006836,40.74557113647461,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-29 08:53:50,2016-01-29 09:08:42,2,0.84,,,-73.9679183959961,40.752220153808594,-73.97908020019531,40.75028991699219,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-15 10:40:01,2016-01-15 10:50:18,1,1.1,,,-73.98782348632812,40.740562438964844,-73.99120330810547,40.75191879272461,1,N,1,8.0,0.0,0.5,0.3,1.32,0.0,10.12 +2,2016-01-19 18:16:03,2016-01-20 18:14:03,5,2.65,,,-73.96202087402344,40.759586334228516,-73.9567642211914,40.744651794433594,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-01 04:33:48,2016-01-01 04:45:13,1,3.9,,,-73.96666717529297,40.75827407836914,-73.90821838378906,40.74860763549805,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +1,2016-01-20 06:57:17,2016-01-20 07:13:15,1,3.6,,,-73.95736694335938,40.782833099365234,-73.99364471435547,40.75018310546875,1,N,1,14.0,0.0,0.5,0.3,2.95,0.0,17.75 +2,2016-01-03 02:04:19,2016-01-03 02:14:24,1,2.58,,,-73.98126220703125,40.689720153808594,-73.94548034667969,40.6905517578125,1,N,1,10.5,0.5,0.5,0.3,2.95,0.0,14.75 +1,2016-01-27 12:44:09,2016-01-27 13:03:17,2,2.8,,,-73.97467803955078,40.78306579589844,-74.00128936767578,40.74666976928711,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +2,2016-01-07 07:15:13,2016-01-07 07:26:42,5,2.17,,,-73.97444915771484,40.76317596435547,-73.97632598876953,40.78874206542969,1,N,1,10.5,0.0,0.5,0.3,4.0,0.0,15.3 +2,2016-01-06 09:47:01,2016-01-06 09:54:03,1,0.8,,,-73.96591186523438,40.765350341796875,-73.95560455322266,40.76584243774414,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-02 16:57:23,2016-01-02 17:01:25,2,0.85,,,-73.96076202392578,40.796966552734375,-73.97167205810547,40.794673919677734,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-29 20:50:18,2016-01-29 21:03:48,1,2.83,,,-73.97779846191406,40.753753662109375,-73.94598388671875,40.775428771972656,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +2,2016-01-01 14:06:14,2016-01-01 14:12:03,1,1.19,,,-73.94860076904297,40.82910919189453,-73.93875885009766,40.82564926147461,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-26 17:05:09,2016-01-26 17:59:23,1,3.1,,,-73.95321655273438,40.782569885253906,-73.98530578613281,40.74834060668945,1,N,1,30.0,1.0,0.5,0.3,1.0,0.0,32.8 +1,2016-01-25 14:16:43,2016-01-25 14:25:57,1,1.1,,,-73.99166107177734,40.749629974365234,-73.99357604980469,40.73773956298828,1,N,1,7.5,0.0,0.5,0.3,1.24,0.0,9.54 +2,2016-01-13 21:38:38,2016-01-13 21:47:20,1,2.14,,,-74.00750732421875,40.742820739746094,-73.978271484375,40.74911117553711,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +2,2016-01-01 13:39:50,2016-01-01 13:52:23,1,1.29,,,-73.98039245605469,40.75314712524414,-73.98794555664062,40.755794525146484,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-22 10:39:03,2016-01-22 11:08:49,1,2.05,,,-73.96415710449219,40.75661087036133,-73.99079132080078,40.75178146362305,1,N,1,18.0,0.0,0.5,0.3,3.76,0.0,22.56 +2,2016-01-11 23:09:19,2016-01-11 23:22:36,4,3.12,,,-73.990966796875,40.730194091796875,-73.98339080810547,40.76442337036133,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,17.16 +1,2016-01-04 15:22:56,2016-01-04 15:36:59,1,1.6,,,-73.9585189819336,40.77580261230469,-73.9783706665039,40.77289962768555,1,N,1,10.5,0.0,0.5,0.3,2.2,0.0,13.5 +2,2016-01-07 07:40:44,2016-01-07 08:12:44,1,4.8,,,-74.0054931640625,40.720008850097656,-73.98681640625,40.73937225341797,1,N,2,22.0,0.0,0.5,0.3,0.0,0.0,22.8 +2,2016-01-19 19:32:23,2016-01-19 19:37:51,1,0.72,,,-73.97025299072266,40.764991760253906,-73.96293640136719,40.7681999206543,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-25 12:18:21,2016-01-25 12:42:56,3,1.33,,,-73.9744644165039,40.749820709228516,-73.96086120605469,40.766807556152344,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +2,2016-01-12 15:15:01,2016-01-12 15:28:46,1,2.42,,,-74.01177215576172,40.70330810546875,-73.9922866821289,40.69688415527344,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-05 10:37:52,2016-01-05 10:50:00,1,1.4,,,-73.98562622070312,40.74007034301758,-73.98370361328125,40.755672454833984,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-07 19:17:11,2016-01-07 19:21:40,2,0.58,,,-73.99500274658203,40.71598815917969,-73.99895477294922,40.71187210083008,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-03 01:50:21,2016-01-03 02:09:05,1,4.6,,,-73.99224090576172,40.72526931762695,-73.9608383178711,40.67314910888672,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,18.8 +1,2016-01-26 21:04:25,2016-01-26 21:16:18,1,1.6,,,-73.96823120117188,40.77074432373047,-73.96472930908203,40.755008697509766,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +2,2016-01-09 01:39:56,2016-01-09 01:51:48,1,4.18,,,-73.98957061767578,40.718849182128906,-74.01171875,40.71342849731445,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,16.3 +1,2016-01-28 16:25:44,2016-01-28 17:08:21,1,8.8,,,-73.87068939208984,40.77374267578125,-73.97267150878906,40.75734329223633,1,Y,1,33.5,1.0,0.5,0.3,8.0,5.54,48.84 +1,2016-01-03 18:48:19,2016-01-03 18:57:20,1,0.8,,,-74.00994110107422,40.70988464355469,-74.01560974121094,40.71144485473633,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-24 22:36:52,2016-01-24 23:12:49,5,20.32,,,-73.78340148925781,40.648651123046875,-74.00881958007812,40.71534729003906,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +1,2016-01-04 15:13:22,2016-01-04 15:53:27,1,15.6,,,-73.77674102783203,40.64512252807617,-73.95712280273438,40.744693756103516,1,N,2,46.0,0.0,0.5,0.3,0.0,0.0,46.8 +2,2016-01-06 07:18:56,2016-01-06 07:37:42,1,3.52,,,-73.96192169189453,40.77415466308594,-73.98467254638672,40.746986389160156,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,18.36 +1,2016-01-17 11:48:06,2016-01-17 11:57:38,2,1.6,,,-73.97252655029297,40.7566032409668,-73.99185943603516,40.749603271484375,1,N,1,8.0,0.0,0.5,0.3,2.6,0.0,11.4 +1,2016-01-26 12:04:31,2016-01-26 12:21:10,1,1.3,,,-73.96768188476562,40.76853561401367,-73.98605346679688,40.77732467651367,1,N,1,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-12 19:53:47,2016-01-12 19:59:42,1,0.9,,,-73.97481536865234,40.74199676513672,-73.97465515136719,40.7505989074707,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-19 08:10:29,2016-01-19 08:14:34,1,0.7,,,-73.98885345458984,40.742332458496094,-73.98731994628906,40.73593521118164,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,6.8 +1,2016-01-16 20:44:08,2016-01-16 21:03:25,2,2.9,,,-73.98983764648438,40.733673095703125,-73.96204376220703,40.7677116394043,1,N,1,14.5,0.5,0.5,0.3,3.16,0.0,18.96 +2,2016-01-22 08:57:09,2016-01-22 09:03:29,5,0.55,,,-74.00469970703125,40.723968505859375,-74.00852966308594,40.71989059448242,1,N,1,5.5,0.0,0.5,0.3,1.58,0.0,7.88 +2,2016-01-17 20:43:09,2016-01-17 20:47:44,1,1.2,,,-73.9820327758789,40.77505874633789,-73.9715576171875,40.78797149658203,1,N,1,6.0,0.5,0.5,0.3,1.82,0.0,9.12 +2,2016-01-10 23:09:39,2016-01-10 23:16:45,1,3.41,,,-73.9874038696289,40.716251373291016,-73.9489517211914,40.72592544555664,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +2,2016-01-26 02:32:54,2016-01-26 02:37:06,1,1.0,,,-73.97811889648438,40.7548713684082,-73.99243927001953,40.749271392822266,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-01 18:51:45,2016-01-01 19:06:52,1,3.0,,,-73.9969253540039,40.720664978027344,-73.9842529296875,40.75408935546875,1,N,2,12.5,1.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-19 15:58:02,2016-01-19 16:02:45,1,0.4,,,-73.98755645751953,40.75538635253906,-73.98271179199219,40.75595474243164,1,N,1,5.0,1.0,0.5,0.3,2.0,0.0,8.8 +2,2016-01-08 07:49:14,2016-01-08 08:02:58,1,1.22,,,-73.9876937866211,40.748619079589844,-73.97384643554688,40.738590240478516,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-09 11:33:10,2016-01-09 11:53:19,1,3.09,,,-73.99010467529297,40.75612258911133,-73.95317077636719,40.771705627441406,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,18.96 +2,2016-01-05 11:04:00,2016-01-05 11:10:31,1,1.14,,,-73.98162841796875,40.773494720458984,-73.98284149169922,40.76032257080078,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-24 14:35:00,2016-01-24 14:51:29,1,2.61,,,-74.00399017333984,40.725860595703125,-73.98831176757812,40.75743103027344,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-06 21:18:54,2016-01-06 21:24:30,2,0.84,,,-73.98651123046875,40.74162673950195,-73.9776611328125,40.74306106567383,1,N,1,5.5,0.5,0.5,0.3,1.2,0.0,8.0 +1,2016-01-06 10:36:00,2016-01-06 10:44:34,1,1.0,,,-73.9534683227539,40.779640197753906,-73.95980834960938,40.76857376098633,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-16 15:03:23,2016-01-16 15:14:54,1,2.7,,,-73.9892349243164,40.75826644897461,-73.95407104492188,40.76709747314453,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +1,2016-01-17 00:06:54,2016-01-17 00:08:06,1,1.9,,,-73.97933959960938,40.761409759521484,-73.97936248779297,40.76142883300781,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,4.3 +1,2016-01-07 12:46:06,2016-01-07 12:54:35,1,1.5,,,-73.98484802246094,40.743160247802734,-74.0033187866211,40.733543395996094,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-13 08:03:55,2016-01-13 08:14:23,1,1.7,,,-73.98643493652344,40.76715850830078,-73.98387145996094,40.749420166015625,1,N,1,8.5,0.0,0.5,0.3,2.3,0.0,11.6 +2,2016-01-08 12:04:40,2016-01-08 12:35:49,3,15.87,,,-73.87091827392578,40.773773193359375,-73.65656280517578,40.784175872802734,4,N,1,56.0,0.0,0.5,0.3,5.0,0.0,61.8 +2,2016-01-09 15:31:04,2016-01-09 15:43:55,1,1.9,,,-73.97280883789062,40.78072738647461,-73.97943878173828,40.761783599853516,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +1,2016-01-27 14:17:37,2016-01-27 14:40:19,1,2.1,,,-73.97757720947266,40.76346206665039,-73.99197387695312,40.73875045776367,1,N,1,14.5,0.0,0.5,0.3,3.05,0.0,18.35 +1,2016-01-14 10:14:54,2016-01-14 10:24:04,1,1.4,,,-73.97955322265625,40.7720832824707,-73.97057342529297,40.75822067260742,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-13 14:15:41,2016-01-13 15:33:58,1,20.7,,,0.0,0.0,-73.77629852294922,40.64552307128906,2,N,1,52.0,0.0,0.5,0.3,15.0,0.0,67.8 +2,2016-01-27 17:08:08,2016-01-27 17:14:20,1,0.81,,,-73.95899200439453,40.78042984008789,-73.95198059082031,40.790122985839844,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-20 10:06:32,2016-01-20 10:18:28,2,1.44,,,-73.9892807006836,40.75811004638672,-73.9732437133789,40.75019836425781,1,N,1,9.0,0.0,0.5,0.3,2.94,0.0,12.74 +1,2016-01-11 22:14:36,2016-01-11 22:25:40,1,3.0,,,-73.98638153076172,40.762420654296875,-73.99298858642578,40.730743408203125,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +1,2016-01-28 15:50:10,2016-01-28 15:55:14,3,0.7,,,-73.99407196044922,40.75105285644531,-74.00122833251953,40.74675369262695,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-19 00:28:32,2016-01-19 00:31:02,1,0.8,,,-73.99372100830078,40.746402740478516,-74.00143432617188,40.73846435546875,1,Y,1,4.5,0.5,0.5,0.3,1.7,0.0,7.5 +1,2016-01-24 19:10:17,2016-01-24 19:25:34,2,1.8,,,-73.98554992675781,40.7315788269043,-73.98587799072266,40.713783264160156,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +2,2016-01-28 11:35:05,2016-01-28 11:46:45,1,1.98,,,-73.98979949951172,40.75679016113281,-73.98979949951172,40.75679016113281,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-03 22:16:19,2016-01-03 22:17:30,2,0.38,,,-73.96333312988281,40.629852294921875,-73.97001647949219,40.62882614135742,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,4.3 +1,2016-01-05 09:30:37,2016-01-05 09:35:59,1,0.6,,,-73.9853744506836,40.722103118896484,-73.99606323242188,40.72539520263672,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,7.55 +1,2016-01-09 20:46:36,2016-01-09 21:03:10,1,4.1,,,-73.86268615722656,40.76967239379883,-73.91809844970703,40.761566162109375,1,N,1,16.5,0.5,0.5,0.3,3.55,0.0,21.35 +1,2016-01-21 13:33:36,2016-01-21 13:35:33,1,0.8,,,-73.97013092041016,40.79442596435547,-73.96256256103516,40.804649353027344,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-21 22:43:04,2016-01-21 23:14:21,1,11.32,,,-73.86297607421875,40.7690544128418,-73.95858764648438,40.780757904052734,1,N,1,37.0,0.5,0.5,0.3,8.77,5.54,52.61 +1,2016-01-11 08:47:14,2016-01-11 08:53:12,1,0.6,,,-73.98492431640625,40.741825103759766,-73.97586059570312,40.74152755737305,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,7.55 +1,2016-01-18 12:50:58,2016-01-18 13:04:25,1,1.5,,,-73.99837493896484,40.74021911621094,-73.97864532470703,40.73649978637695,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-28 13:23:52,2016-01-28 13:40:28,1,1.8,,,-73.95651245117188,40.77130126953125,-73.9742431640625,40.747493743896484,1,N,1,12.0,0.0,0.5,0.3,2.55,0.0,15.35 +1,2016-01-24 20:05:20,2016-01-24 20:15:30,1,2.2,,,-73.99250030517578,40.73808670043945,-73.99504089355469,40.76015090942383,1,N,1,9.0,0.0,0.5,0.3,1.47,0.0,11.27 +1,2016-01-29 19:15:24,2016-01-29 19:27:18,1,1.2,,,-73.98208618164062,40.758209228515625,-73.99585723876953,40.75564956665039,1,N,1,8.5,1.0,0.5,0.3,1.0,0.0,11.3 +2,2016-01-28 17:31:19,2016-01-28 17:36:41,1,0.34,,,-73.97528076171875,40.761024475097656,-73.97801971435547,40.756317138671875,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-06 20:11:55,2016-01-06 20:17:34,1,0.9,,,-73.98810577392578,40.74959182739258,-73.98198699951172,40.74075698852539,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,8.75 +2,2016-01-02 18:38:53,2016-01-02 18:50:25,2,2.33,,,-73.97039031982422,40.7889518737793,-73.97582244873047,40.76374053955078,1,N,1,10.0,0.0,0.5,0.3,3.24,0.0,14.04 +1,2016-01-28 19:02:35,2016-01-28 19:08:00,2,0.8,,,-73.98638153076172,40.76240921020508,-73.98278045654297,40.77162170410156,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-10 09:18:15,2016-01-10 09:34:54,1,8.25,,,-73.97280883789062,40.75611877441406,-74.01383209228516,40.71318817138672,1,N,2,24.5,0.0,0.5,0.3,0.0,0.0,25.3 +1,2016-01-12 13:43:10,2016-01-12 14:05:46,2,9.3,,,-73.86274719238281,40.76890182495117,-73.97743225097656,40.7536506652832,1,N,1,28.0,0.0,0.5,0.3,6.86,5.54,41.2 +2,2016-01-07 12:12:41,2016-01-07 12:23:29,2,1.71,,,-73.99288177490234,40.758113861083984,-74.00896453857422,40.73930740356445,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-15 22:57:16,2016-01-15 23:05:22,1,0.9,,,-73.98534393310547,40.732452392578125,-73.99405670166016,40.722686767578125,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +2,2016-01-27 19:31:56,2016-01-27 19:37:17,1,0.79,,,-73.97138214111328,40.75114822387695,-73.98377227783203,40.75484848022461,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-08 13:38:13,2016-01-08 14:11:43,3,16.5,,,-73.98545837402344,40.752986907958984,-73.78988647460938,40.643150329589844,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-14 13:46:31,2016-01-14 14:04:12,1,1.66,,,-73.9708023071289,40.75358963012695,-73.99211120605469,40.74974060058594,1,N,1,11.5,0.0,0.5,0.3,3.69,0.0,15.99 +2,2016-01-09 22:40:17,2016-01-09 23:10:40,2,5.19,,,-73.9881362915039,40.74589157104492,-73.9815673828125,40.679779052734375,1,N,1,22.5,0.5,0.5,0.3,4.76,0.0,28.56 +1,2016-01-24 21:56:58,2016-01-24 22:11:50,1,2.3,,,-74.00463104248047,40.73764419555664,-73.9832763671875,40.765323638916016,1,N,1,11.5,0.5,0.5,0.3,2.55,0.0,15.35 +1,2016-01-12 00:09:06,2016-01-12 00:16:58,1,2.7,,,-73.98696899414062,40.7609748840332,-73.9696273803711,40.796390533447266,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,13.55 +1,2016-01-20 11:31:54,2016-01-20 11:44:07,1,1.6,,,-73.97557830810547,40.76089859008789,-73.99414825439453,40.7485466003418,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-22 21:26:37,2016-01-22 21:32:05,1,1.21,,,-73.95613861083984,40.77981948852539,-73.96649932861328,40.78932189941406,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-28 18:49:34,2016-01-28 19:38:59,5,17.9,,,-73.7835922241211,40.64641189575195,-73.98784637451172,40.74842071533203,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-09 10:38:51,2016-01-09 10:41:10,1,0.51,,,-73.94573211669922,40.786216735839844,-73.95033264160156,40.78899002075195,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-27 19:29:51,2016-01-27 19:38:52,1,3.9,,,-73.98190307617188,40.73661422729492,-74.01265716552734,40.70167922973633,1,N,1,13.5,1.0,0.5,0.3,2.0,0.0,17.3 +2,2016-01-27 22:48:02,2016-01-27 22:56:04,3,1.35,,,-73.96309661865234,40.77510070800781,-73.97100067138672,40.78606033325195,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-05 16:42:27,2016-01-05 16:47:57,1,1.05,,,-73.9811019897461,40.77949142456055,-73.97074127197266,40.78853988647461,1,N,1,6.0,1.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-02 19:07:42,2016-01-02 19:14:16,1,1.42,,,-73.98750305175781,40.77587127685547,-73.99417114257812,40.75920104980469,1,N,1,7.5,0.0,0.5,0.3,2.08,0.0,10.38 +1,2016-01-15 14:39:10,2016-01-15 14:47:48,1,1.1,,,-74.00021362304688,40.73801040649414,-73.98548889160156,40.72917938232422,1,N,1,7.0,0.0,0.5,0.3,1.7,0.0,9.5 +2,2016-01-19 14:51:24,2016-01-19 15:11:15,1,2.23,,,-73.9870834350586,40.75071716308594,-73.96405792236328,40.77003860473633,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-17 13:14:30,2016-01-17 13:27:35,1,2.3,,,-73.97366333007812,40.782958984375,-73.97714233398438,40.758331298828125,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-20 14:01:46,2016-01-20 14:17:37,2,1.93,,,-73.97392272949219,40.75748825073242,-73.95905303955078,40.78089904785156,1,N,1,12.0,0.0,0.5,0.3,2.0,0.0,14.8 +2,2016-01-04 22:31:53,2016-01-04 22:44:47,3,2.76,,,-73.97212219238281,40.76469039916992,-74.00070190429688,40.74237060546875,1,N,1,11.5,0.5,0.5,0.3,3.2,0.0,16.0 +1,2016-01-02 09:37:00,2016-01-02 09:50:37,2,6.0,,,-73.95657348632812,40.77812957763672,-73.9924087524414,40.72434616088867,1,N,2,19.0,0.0,0.5,0.3,0.0,0.0,19.8 +1,2016-01-22 15:53:55,2016-01-22 16:14:09,1,3.1,,,-73.95956420898438,40.78267288208008,-73.99126434326172,40.7502555847168,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-04 09:07:44,2016-01-04 09:09:25,1,0.2,,,-74.0035171508789,40.74763870239258,-73.99864196777344,40.74541473388672,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +2,2016-01-05 14:58:39,2016-01-05 15:15:51,2,3.07,,,-74.00084686279297,40.74623107910156,-73.97927856445312,40.72660827636719,1,N,1,16.0,0.0,0.5,0.3,3.36,0.0,20.16 +1,2016-01-03 02:00:59,2016-01-03 02:20:56,1,5.3,,,-73.99391174316406,40.74999237060547,-73.94084167480469,40.71711730957031,1,N,1,18.0,0.5,0.5,0.3,4.95,5.54,29.79 +2,2016-01-25 20:50:50,2016-01-25 20:58:08,6,1.07,,,-73.98872375488281,40.74861145019531,-73.99418640136719,40.73451614379883,1,N,1,6.5,0.5,0.5,0.3,1.95,0.0,9.75 +1,2016-01-21 22:37:59,2016-01-21 22:52:54,1,4.0,,,-73.99348449707031,40.74991226196289,-74.01372528076172,40.70933151245117,1,N,1,15.0,0.5,0.5,0.3,3.0,0.0,19.3 +2,2016-01-05 19:28:56,2016-01-05 19:43:53,1,2.64,,,-73.97994995117188,40.7611083984375,-73.95494079589844,40.78847885131836,1,N,1,12.0,1.0,0.5,0.3,2.25,0.0,16.05 +2,2016-01-25 15:09:28,2016-01-25 15:23:02,1,0.88,,,-73.98619842529297,40.743770599365234,-73.9808120727539,40.75410079956055,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-24 11:51:17,2016-01-24 11:59:49,1,0.89,,,-73.97492218017578,40.75751876831055,-73.9859619140625,40.75836181640625,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-13 19:05:47,2016-01-13 19:13:08,5,1.41,,,-73.95718383789062,40.76601791381836,-73.9513931274414,40.78245162963867,1,N,1,7.0,1.0,0.5,0.3,1.0,0.0,9.8 +1,2016-01-03 15:29:00,2016-01-03 16:22:34,4,18.8,,,0.0,0.0,0.0,0.0,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-27 18:38:41,2016-01-27 18:45:28,1,1.18,,,-73.97207641601562,40.75046920776367,-73.98255157470703,40.735633850097656,1,N,1,6.5,1.0,0.5,0.3,2.08,0.0,10.38 +2,2016-01-21 21:33:26,2016-01-21 21:41:37,1,1.43,,,-73.97853088378906,40.76654052734375,-73.9601821899414,40.77035140991211,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +1,2016-01-29 22:17:16,2016-01-29 22:20:21,1,0.4,,,-73.98692321777344,40.73930740356445,-73.9835205078125,40.74401092529297,1,N,1,4.0,0.5,0.5,0.3,1.05,0.0,6.35 +1,2016-01-15 10:05:43,2016-01-15 10:13:30,1,1.2,,,-73.95496368408203,40.76535415649414,-73.97020721435547,40.7580451965332,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,9.75 +2,2016-01-05 17:43:21,2016-01-05 17:56:37,2,1.77,,,-73.96585845947266,40.75413131713867,-73.98210144042969,40.77096176147461,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-15 17:52:39,2016-01-15 18:01:46,1,0.91,,,-73.97216796875,40.759239196777344,-73.96212768554688,40.75941848754883,1,N,1,7.0,1.0,0.5,0.3,2.2,0.0,11.0 +1,2016-01-03 13:24:01,2016-01-03 14:24:08,1,17.1,,,-73.98687744140625,40.74510955810547,-73.98533630371094,40.743492126464844,1,N,1,4.0,0.0,0.5,0.3,1.44,0.0,6.24 +2,2016-01-14 22:23:12,2016-01-14 22:29:33,1,2.88,,,-73.98845672607422,40.71826171875,-74.01258850097656,40.7015266418457,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-21 17:11:12,2016-01-21 17:15:37,2,0.78,,,-73.95217895507812,40.77811050415039,-73.94776916503906,40.77088928222656,1,N,1,5.0,1.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-23 11:36:08,2016-01-23 11:45:54,1,1.4,,,-73.94313049316406,40.78972244262695,-73.9483642578125,40.774356842041016,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-07 08:50:27,2016-01-07 08:56:28,1,0.65,,,-73.96587371826172,40.75879669189453,-73.970458984375,40.76467514038086,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-19 08:31:15,2016-01-19 08:40:38,1,1.26,,,-73.98363494873047,40.762046813964844,-73.99553680419922,40.769569396972656,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-14 05:04:32,2016-01-14 05:09:57,2,1.4,,,-73.99419403076172,40.7512092590332,-73.97598266601562,40.75750732421875,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-18 15:25:34,2016-01-18 15:46:04,1,9.41,,,-73.99219512939453,40.745365142822266,-73.87067413330078,40.77383041381836,1,N,1,28.0,0.0,0.5,0.3,6.87,5.54,41.21 +2,2016-01-14 22:32:22,2016-01-14 22:52:01,1,3.48,,,-73.9468002319336,40.77661895751953,-73.97960662841797,40.73828887939453,1,N,1,16.0,0.5,0.5,0.3,3.0,0.0,20.3 +2,2016-01-26 09:41:39,2016-01-26 10:23:31,1,6.21,,,-73.98619079589844,40.77231216430664,-74.01145935058594,40.70408630371094,1,N,1,28.5,0.0,0.5,0.3,5.86,0.0,35.16 +1,2016-01-15 09:17:56,2016-01-15 09:17:56,1,0.0,,,-74.01366424560547,40.709617614746094,0.0,0.0,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,3.8 +1,2016-01-30 07:32:15,2016-01-30 07:35:36,1,0.9,,,-74.00596618652344,40.717315673828125,-74.00340270996094,40.72943115234375,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +1,2016-01-27 16:15:04,2016-01-27 16:18:41,1,0.8,,,-73.95311737060547,40.78279113769531,-73.96099853515625,40.772132873535156,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-21 23:35:06,2016-01-21 23:40:23,2,0.8,,,-73.9881820678711,40.73460006713867,-74.00115203857422,40.73925018310547,1,N,1,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-13 08:47:26,2016-01-13 08:56:03,1,1.5,,,-73.97824096679688,40.748592376708984,-73.99491119384766,40.73566818237305,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-08 10:20:42,2016-01-08 10:29:51,6,1.88,,,-73.97648620605469,40.77547073364258,-73.95556640625,40.782806396484375,1,N,1,9.0,0.0,0.5,0.3,2.94,0.0,12.74 +1,2016-01-28 07:40:17,2016-01-28 07:46:43,1,0.9,,,-73.99010467529297,40.75590515136719,-73.97694396972656,40.758445739746094,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-15 19:49:36,2016-01-15 20:03:58,1,1.1,,,-73.97676086425781,40.7523078918457,-73.99124908447266,40.75041580200195,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-29 22:54:48,2016-01-29 23:35:33,2,12.4,,,-73.86359405517578,40.770137786865234,-73.99574279785156,40.75922393798828,1,N,1,42.0,0.5,0.5,0.3,9.75,5.54,58.59 +2,2016-01-04 14:18:20,2016-01-04 14:24:16,1,0.97,,,-73.98773193359375,40.738182067871094,-73.9789047241211,40.75030517578125,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-10 23:44:12,2016-01-10 23:50:35,1,0.8,,,-73.96810150146484,40.757598876953125,-73.97882843017578,40.76197814941406,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-18 21:08:14,2016-01-18 21:16:26,1,2.38,,,-73.9740982055664,40.764041900634766,-73.9926986694336,40.73405075073242,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-30 23:45:13,2016-01-31 00:14:17,1,3.2,,,-73.9801025390625,40.74901580810547,-73.99543762207031,40.717166900634766,1,N,1,18.5,0.5,0.5,0.3,1.0,0.0,20.8 +1,2016-01-11 14:15:08,2016-01-11 14:25:45,1,1.2,,,-73.9989013671875,40.74467468261719,-73.98163604736328,40.745323181152344,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +1,2016-01-11 10:03:24,2016-01-11 10:29:40,2,1.8,,,-74.0059585571289,40.740135192871094,-73.98605346679688,40.753841400146484,1,N,1,16.0,0.0,0.5,0.3,1.6,0.0,18.4 +1,2016-01-08 20:16:19,2016-01-08 20:33:30,1,3.0,,,-73.98051452636719,40.76481628417969,-73.9727783203125,40.73678207397461,1,N,1,13.5,0.5,0.5,0.3,2.95,0.0,17.75 +1,2016-01-24 16:12:50,2016-01-24 16:15:18,1,0.7,,,-73.99211883544922,40.76411819458008,-73.98504638671875,40.77404022216797,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,6.35 +1,2016-01-30 20:18:53,2016-01-30 20:28:55,1,1.5,,,-73.98323059082031,40.76900100708008,-73.98235321044922,40.7514533996582,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,11.15 +2,2016-01-01 08:12:07,2016-01-01 08:17:59,5,1.27,,,-73.98908996582031,40.75733947753906,-73.97036743164062,40.75627136230469,1,N,1,6.5,0.0,0.5,0.3,1.82,0.0,9.12 +1,2016-01-01 04:51:23,2016-01-01 05:06:33,3,4.2,,,-73.9998550415039,40.7330322265625,-73.97132110595703,40.78539276123047,1,N,1,15.0,0.5,0.5,0.3,0.5,0.0,16.8 +1,2016-01-16 13:23:59,2016-01-16 13:47:30,1,3.6,,,-73.95204162597656,40.775325775146484,-73.99237060546875,40.74892044067383,1,N,1,17.5,0.0,0.5,0.3,3.65,0.0,21.95 +1,2016-01-17 11:34:36,2016-01-17 11:43:39,1,1.8,,,-73.99122619628906,40.7172966003418,-73.98973846435547,40.73845672607422,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-27 12:13:21,2016-01-27 12:28:10,2,0.94,,,-73.98641204833984,40.74030685424805,-73.99639892578125,40.74818801879883,1,N,1,10.0,0.0,0.5,0.3,3.24,0.0,14.04 +2,2016-01-02 10:54:57,2016-01-02 11:06:46,2,2.9,,,-73.98413848876953,40.78030014038086,-74.00924682617188,40.746341705322266,1,N,1,11.5,0.0,0.5,0.3,1.0,0.0,13.3 +2,2016-01-25 15:47:19,2016-01-25 15:55:48,2,0.96,,,-73.99405670166016,40.751155853271484,-73.99662780761719,40.74393081665039,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-25 20:52:45,2016-01-25 20:57:53,2,0.74,,,-73.98206329345703,40.76797866821289,-73.9919662475586,40.76987838745117,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-25 10:26:16,2016-01-25 10:55:30,1,5.0,,,-74.01611328125,40.714908599853516,-73.98191833496094,40.76626968383789,1,N,1,22.0,0.0,0.5,0.3,3.0,0.0,25.8 +1,2016-01-12 02:31:06,2016-01-12 02:40:05,2,2.1,,,-74.00394439697266,40.74167251586914,-73.9997787475586,40.71917724609375,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-20 09:18:20,2016-01-20 09:51:28,3,10.0,,,-73.98567962646484,40.76316833496094,-73.8719482421875,40.774288177490234,1,N,1,31.5,0.0,0.5,0.3,7.55,5.54,45.39 +1,2016-01-05 23:15:59,2016-01-05 23:18:42,1,0.5,,,-73.96693420410156,40.8040771484375,-73.97212219238281,40.796714782714844,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +2,2016-01-02 22:50:07,2016-01-02 22:54:43,6,0.8,,,-73.97444915771484,40.76249694824219,-73.97171020507812,40.75446319580078,1,N,1,5.0,0.5,0.5,0.3,1.2,0.0,7.5 +2,2016-01-19 19:14:57,2016-01-19 19:28:20,5,3.07,,,-73.98902893066406,40.73088836669922,-73.99268341064453,40.69609832763672,1,N,1,12.5,1.0,0.5,0.3,2.14,0.0,16.44 +2,2016-01-14 18:50:25,2016-01-14 19:06:38,2,2.69,,,-74.00422668457031,40.731231689453125,-73.97461700439453,40.750518798828125,1,N,1,12.0,1.0,0.5,0.3,2.76,0.0,16.56 +1,2016-01-01 00:45:42,2016-01-01 00:48:42,1,0.7,,,-73.96504974365234,40.79170227050781,-73.95305633544922,40.7866325378418,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-19 02:37:37,2016-01-19 03:05:40,2,8.3,,,-73.94601440429688,40.79252243041992,-73.8700180053711,40.7389030456543,1,N,2,28.0,0.5,0.5,0.3,0.0,0.0,29.3 +1,2016-01-09 21:45:52,2016-01-09 22:01:02,2,1.0,,,-73.98603820800781,40.734859466552734,-73.99846649169922,40.72974395751953,1,N,1,10.5,0.5,0.5,0.3,2.35,0.0,14.15 +1,2016-01-12 16:42:15,2016-01-12 16:56:26,1,2.4,,,-73.97276306152344,40.78075408935547,-73.99897766113281,40.76104736328125,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-10 02:35:30,2016-01-10 02:41:20,4,1.51,,,-74.00041198730469,40.71841049194336,-74.00939178466797,40.704559326171875,1,N,1,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-11 19:52:02,2016-01-11 19:55:10,6,1.0,,,-73.98179626464844,40.77833938598633,-73.97237396240234,40.791160583496094,1,N,1,5.0,1.0,0.5,0.3,1.7,0.0,8.5 +2,2016-01-16 23:03:32,2016-01-16 23:09:03,5,0.74,,,-73.9826889038086,40.76129913330078,-73.97303009033203,40.75572967529297,1,N,1,5.5,0.5,0.5,0.3,2.04,0.0,8.84 +1,2016-01-07 07:24:35,2016-01-07 07:30:26,1,1.1,,,-73.9908218383789,40.75590133666992,-73.97848510742188,40.763851165771484,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-30 21:30:32,2016-01-30 21:51:32,2,1.5,,,-73.98896026611328,40.74486541748047,-73.98908996582031,40.72650909423828,1,N,1,13.0,0.5,0.5,0.3,2.0,0.0,16.3 +2,2016-01-19 00:35:00,2016-01-19 00:44:09,6,1.94,,,-74.00518798828125,40.720001220703125,-73.98066711425781,40.72996139526367,1,N,1,9.0,0.5,0.5,0.3,2.58,0.0,12.88 +2,2016-01-17 19:28:38,2016-01-17 19:50:00,1,4.32,,,-74.00105285644531,40.74169921875,-73.95408630371094,40.778621673583984,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,17.8 +1,2016-01-07 12:56:22,2016-01-07 13:15:00,2,1.6,,,-73.97239685058594,40.75678253173828,-73.99136352539062,40.749908447265625,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-06 15:29:45,2016-01-06 16:11:55,1,19.27,,,-73.777099609375,40.64632797241211,-73.97846221923828,40.72037124633789,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-27 13:19:40,2016-01-27 13:36:37,1,1.16,,,-73.98251342773438,40.74538040161133,-73.98943328857422,40.75659942626953,1,N,1,11.0,0.0,0.5,0.3,2.95,0.0,14.75 +1,2016-01-03 21:19:36,2016-01-03 21:57:02,2,13.4,,,-73.86292266845703,40.768856048583984,-73.9615707397461,40.652835845947266,1,N,1,42.5,0.5,0.5,0.3,7.0,0.0,50.8 +2,2016-01-28 07:32:46,2016-01-28 07:56:51,1,2.53,,,-73.96250915527344,40.76710891723633,-73.96566009521484,40.790401458740234,1,N,1,15.5,0.0,0.5,0.3,1.5,0.0,17.8 +2,2016-01-23 01:29:16,2016-01-23 01:35:48,3,0.76,,,-73.94355773925781,40.82025146484375,-73.93854522705078,40.8224983215332,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-29 11:34:55,2016-01-29 11:37:48,1,0.68,,,-73.96944427490234,40.78548812866211,-73.95996856689453,40.77970886230469,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-18 15:51:43,2016-01-18 16:09:29,1,4.9,,,-74.0075454711914,40.705528259277344,-73.98690032958984,40.745182037353516,1,N,1,18.5,0.0,0.5,0.3,4.8,0.0,24.1 +1,2016-01-21 11:49:14,2016-01-21 12:07:28,1,1.2,,,-73.97551727294922,40.76122283935547,-73.9620132446289,40.76789093017578,1,N,1,11.5,0.0,0.5,0.3,3.05,0.0,15.35 +2,2016-01-14 13:25:19,2016-01-14 13:29:14,6,0.69,,,-73.9748306274414,40.790191650390625,-73.97151947021484,40.7974967956543,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-30 15:33:18,2016-01-30 15:37:42,1,0.59,,,-73.97846221923828,40.762847900390625,-73.98223876953125,40.768375396728516,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-10 18:20:07,2016-01-10 18:30:19,1,3.27,,,-73.97435760498047,40.75035095214844,-73.98593139648438,40.719390869140625,1,N,1,12.0,0.0,0.5,0.3,1.0,0.0,13.8 +1,2016-01-03 12:41:16,2016-01-03 12:49:02,3,1.4,,,-73.97821044921875,40.75205993652344,-73.9809799194336,40.742210388183594,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-22 20:39:24,2016-01-22 20:43:51,1,0.8,,,-74.00579833984375,40.75102233886719,-73.99468994140625,40.75053024291992,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +2,2016-01-10 08:26:16,2016-01-10 08:48:12,1,10.28,,,-73.97748565673828,40.774322509765625,-73.87117004394531,40.77427673339844,1,N,1,29.5,0.0,0.5,0.3,2.7,5.54,38.54 +2,2016-01-30 10:26:04,2016-01-30 10:39:27,1,2.38,,,-73.95376586914062,40.77519607543945,-73.98231506347656,40.76982879638672,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-04 12:58:33,2016-01-04 13:10:05,2,1.74,,,-73.9654769897461,40.76578903198242,-73.97123718261719,40.74681854248047,1,N,1,9.5,0.0,0.5,0.3,1.5,0.0,11.8 +2,2016-01-06 19:54:48,2016-01-06 20:00:28,4,1.44,,,-73.95881652832031,40.78074645996094,-73.97612762451172,40.77613830566406,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-19 08:39:50,2016-01-19 08:51:24,1,1.37,,,-73.976318359375,40.744232177734375,-73.98817443847656,40.75421905517578,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-15 11:06:26,2016-01-15 11:15:54,1,1.31,,,-73.98844909667969,40.748661041259766,-73.9854965209961,40.763431549072266,1,N,1,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-12 19:37:43,2016-01-12 19:52:27,2,2.71,,,-73.95955657958984,40.78295135498047,-73.98674011230469,40.75640106201172,1,N,1,12.0,1.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-08 15:55:05,2016-01-08 16:25:53,2,8.4,,,-73.9677505493164,40.76302719116211,-73.94071197509766,40.85134506225586,1,N,2,28.0,1.0,0.5,0.3,0.0,0.0,29.8 +2,2016-01-21 13:00:19,2016-01-21 13:08:47,1,1.4,,,-73.97238159179688,40.786338806152344,-73.98535919189453,40.76852035522461,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +1,2016-01-17 22:26:19,2016-01-17 22:47:06,1,9.6,,,-73.8629379272461,40.76890182495117,-73.98882293701172,40.755699157714844,1,N,1,28.0,0.5,0.5,0.3,6.95,5.54,41.79 +2,2016-01-04 16:13:16,2016-01-04 16:20:39,1,1.36,,,-73.99060821533203,40.75123977661133,-73.97908782958984,40.76206970214844,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-05 15:45:40,2016-01-05 16:28:56,1,19.0,,,-73.78114318847656,40.64505386352539,-74.00543975830078,40.743404388427734,2,N,1,52.0,0.0,0.5,0.3,3.0,5.54,61.34 +2,2016-01-08 22:04:34,2016-01-08 22:21:28,3,1.56,,,-73.98180389404297,40.724613189697266,-74.0024642944336,40.733646392822266,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +1,2016-01-10 17:35:00,2016-01-10 17:49:17,1,1.9,,,-73.9903564453125,40.73059844970703,-73.99637603759766,40.73811340332031,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +2,2016-01-07 23:35:45,2016-01-07 23:40:23,6,0.89,,,-73.9588394165039,40.76407241821289,-73.97200775146484,40.765960693359375,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-30 17:11:12,2016-01-30 17:21:39,1,1.5,,,-73.98596954345703,40.743526458740234,-73.99998474121094,40.730628967285156,1,N,1,8.5,1.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-29 23:40:23,2016-01-30 00:03:21,5,9.62,,,-73.87446594238281,40.77399826049805,-73.97603607177734,40.764671325683594,1,N,1,28.5,0.5,0.5,0.3,7.07,5.54,42.41 +1,2016-01-13 07:24:25,2016-01-13 07:42:53,1,6.8,,,-74.01715087890625,40.7054328918457,-73.97193908691406,40.75885009765625,1,N,1,21.5,0.0,0.5,0.3,4.45,0.0,26.75 +1,2016-01-24 20:42:26,2016-01-24 20:51:19,1,1.3,,,-73.97116088867188,40.75482177734375,-73.98688507080078,40.749637603759766,1,N,1,7.5,0.5,0.5,0.3,1.0,0.0,9.8 +1,2016-01-21 13:13:28,2016-01-21 13:22:52,1,0.4,,,-73.9538803100586,40.76667785644531,-73.95637512207031,40.77043533325195,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-08 05:57:09,2016-01-08 06:06:10,6,2.22,,,-73.990478515625,40.755279541015625,-73.98261260986328,40.73548126220703,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +1,2016-01-07 12:19:51,2016-01-07 12:27:37,1,0.9,,,-73.99091339111328,40.74549865722656,-74.00450897216797,40.75225067138672,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-16 20:27:31,2016-01-16 20:42:09,1,3.2,,,-73.98526763916016,40.75217819213867,-73.94847106933594,40.773162841796875,1,N,1,13.0,0.5,0.5,0.3,1.5,0.0,15.8 +1,2016-01-09 13:51:36,2016-01-09 13:59:19,1,1.5,,,-74.00809478759766,40.73928451538086,-74.0035171508789,40.7226448059082,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-08 09:28:16,2016-01-08 09:56:22,1,2.75,,,-73.95216369628906,40.78370666503906,-73.98051452636719,40.75412368774414,1,N,1,18.0,0.0,0.5,0.3,4.7,0.0,23.5 +1,2016-01-10 14:28:33,2016-01-10 14:36:37,2,0.9,,,-73.97734832763672,40.75217819213867,-73.99385833740234,40.75913619995117,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-03 15:28:29,2016-01-03 15:31:49,6,0.53,,,-73.9936294555664,40.72124481201172,-73.99325561523438,40.727783203125,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +2,2016-01-27 17:33:19,2016-01-27 17:41:09,1,1.36,,,-73.96143341064453,40.801551818847656,-73.97408294677734,40.783748626708984,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-28 14:11:00,2016-01-28 14:19:23,1,0.93,,,-73.99337005615234,40.747291564941406,-74.00196075439453,40.73517990112305,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-21 09:08:07,2016-01-21 09:19:39,3,1.47,,,-74.0050277709961,40.74794006347656,-73.98709869384766,40.75202941894531,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-15 06:41:16,2016-01-15 06:48:09,1,0.8,,,-73.98190307617188,40.74066162109375,-73.98942565917969,40.74827575683594,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +2,2016-01-06 18:34:35,2016-01-06 18:42:42,1,1.02,,,-73.99549865722656,40.74923324584961,-73.98511505126953,40.75871658325195,1,N,1,7.0,1.0,0.5,0.3,2.0,0.0,10.8 +1,2016-01-28 22:08:58,2016-01-28 22:29:22,1,3.5,,,-73.9871826171875,40.750606536865234,-74.0090103149414,40.70955276489258,1,N,1,15.5,0.5,0.5,0.3,1.0,0.0,17.8 +2,2016-01-03 18:04:44,2016-01-03 18:17:02,1,3.4,,,-73.93780517578125,40.81265640258789,-73.97091674804688,40.78597640991211,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-20 05:56:18,2016-01-20 06:05:28,1,2.3,,,-73.9501724243164,40.776397705078125,-73.95243835449219,40.80049514770508,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-10 12:52:49,2016-01-10 12:59:26,1,1.8,,,-73.97708129882812,40.747039794921875,-73.95999908447266,40.77045440673828,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-09 19:29:15,2016-01-09 19:45:02,5,4.73,,,-73.97792053222656,40.72541046142578,-73.99420928955078,40.69055938720703,1,N,1,17.0,0.0,0.5,0.3,2.67,0.0,20.47 +1,2016-01-20 08:47:33,2016-01-20 09:02:34,1,1.8,,,-73.97596740722656,40.755767822265625,-73.96284484863281,40.77662658691406,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-15 06:38:41,2016-01-15 06:49:01,1,4.98,,,-73.97952270507812,40.734798431396484,-73.99208068847656,40.694461822509766,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-21 22:54:31,2016-01-21 23:08:00,1,3.6,,,-74.00186920166016,40.73506546020508,-73.98110961914062,40.77354049682617,1,N,1,13.0,0.5,0.5,0.3,1.0,0.0,15.3 +1,2016-01-07 15:43:08,2016-01-07 16:06:56,1,1.5,,,-73.95426177978516,40.781558990478516,-73.9597396850586,40.763614654541016,1,N,1,14.5,0.0,0.5,0.3,2.0,0.0,17.3 +2,2016-01-12 10:32:04,2016-01-12 10:57:29,5,2.99,,,-73.9885025024414,40.74620056152344,-74.01057434082031,40.70907974243164,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,20.76 +2,2016-01-26 08:35:59,2016-01-26 08:45:58,6,1.22,,,-73.97554016113281,40.776729583740234,-73.95935821533203,40.77429962158203,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-25 11:29:27,2016-01-25 11:56:08,1,2.7,,,-73.97171783447266,40.74612808227539,-74.00286102294922,40.749698638916016,1,N,1,17.5,0.0,0.5,0.3,1.0,0.0,19.3 +1,2016-01-20 21:24:51,2016-01-20 21:37:38,2,1.0,,,-73.9847412109375,40.758827209472656,-73.98274230957031,40.76910400390625,1,N,1,9.5,0.5,0.5,0.3,5.0,0.0,15.8 +2,2016-01-11 19:48:51,2016-01-11 20:23:23,1,12.13,,,-73.982421875,40.75588607788086,-73.96721649169922,40.64091110229492,1,N,1,36.5,1.0,0.5,0.3,7.66,0.0,45.96 +2,2016-01-09 13:02:00,2016-01-09 13:05:54,1,0.69,,,-74.00066375732422,40.75777816772461,-73.99279022216797,40.75630187988281,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-07 21:31:08,2016-01-07 21:42:27,5,1.79,,,-73.98263549804688,40.77226638793945,-73.97439575195312,40.756256103515625,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +2,2016-01-15 07:41:57,2016-01-15 07:51:19,1,1.28,,,-73.97856140136719,40.74108123779297,-73.98670959472656,40.751556396484375,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,11.0 +1,2016-01-21 01:46:42,2016-01-21 01:51:00,1,0.8,,,-73.98912048339844,40.75974655151367,-73.97757720947266,40.753299713134766,1,N,1,5.0,0.5,0.5,0.3,2.0,0.0,8.3 +2,2016-01-15 10:07:36,2016-01-15 10:12:53,1,0.82,,,-73.97914123535156,40.75870132446289,-73.99111938476562,40.760440826416016,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-01 13:33:10,2016-01-01 13:47:31,1,3.4,,,-73.96903991699219,40.769676208496094,-74.00736999511719,40.73941421508789,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-22 16:42:17,2016-01-22 16:52:36,1,1.95,,,-73.98052978515625,40.76185989379883,-73.95401763916016,40.76713943481445,1,N,1,9.0,1.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-28 19:17:35,2016-01-28 19:51:50,1,5.4,,,-73.95113372802734,40.771724700927734,-74.00718688964844,40.74257278442383,1,N,1,26.0,1.0,0.5,0.3,5.55,0.0,33.35 +2,2016-01-03 11:48:36,2016-01-03 12:01:40,1,1.14,,,-73.97897338867188,40.754249572753906,-73.98786926269531,40.75828170776367,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-18 09:09:19,2016-01-18 09:18:00,2,1.61,,,-73.98167419433594,40.77858352661133,-73.96609497070312,40.76504135131836,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-22 07:30:17,2016-01-22 07:46:47,1,4.2,,,-73.98201751708984,40.760990142822266,-73.96551513671875,40.80546951293945,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,17.3 +1,2016-01-09 12:38:02,2016-01-09 12:54:33,2,1.7,,,-73.98748779296875,40.7491455078125,-74.00813293457031,40.73961639404297,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-18 11:41:49,2016-01-18 11:47:15,1,0.8,,,-73.9969253540039,40.73727035522461,-74.00885009765625,40.739444732666016,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-04 06:59:12,2016-01-04 07:17:18,1,7.98,,,-73.92507934570312,40.761837005615234,-73.98445129394531,40.710723876953125,1,N,1,24.0,0.0,0.5,0.3,4.96,0.0,29.76 +2,2016-01-08 11:22:18,2016-01-08 11:52:27,1,17.23,,,-73.79000854492188,40.646671295166016,-73.97203826904297,40.757137298583984,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,70.01 +2,2016-01-28 16:21:03,2016-01-28 16:49:38,1,3.67,,,-73.98318481445312,40.744571685791016,-74.00953674316406,40.721378326416016,1,N,1,19.5,1.0,0.5,0.3,0.0,0.0,21.3 +1,2016-01-03 18:38:03,2016-01-03 19:27:03,2,17.9,,,-73.79000854492188,40.64364242553711,-73.97425842285156,40.74807357788086,2,N,1,52.0,0.0,0.5,0.3,6.0,5.54,64.34 +1,2016-01-16 13:56:00,2016-01-16 14:06:35,1,1.4,,,-73.98208618164062,40.76862716674805,-73.96312713623047,40.76660919189453,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-19 20:17:28,2016-01-19 20:29:07,1,2.36,,,-73.99755859375,40.724369049072266,-74.00247192382812,40.74879837036133,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +1,2016-01-09 01:09:03,2016-01-09 01:18:24,1,1.8,,,-73.98229217529297,40.731712341308594,-73.99213409423828,40.749324798583984,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +2,2016-01-26 04:26:08,2016-01-26 04:55:09,2,11.22,,,-73.97935485839844,40.76811218261719,-73.86410522460938,40.769798278808594,1,N,1,33.0,0.5,0.5,0.3,6.86,0.0,41.16 +1,2016-01-09 09:49:22,2016-01-09 09:51:16,1,0.3,,,-73.9760971069336,40.77615737915039,-73.97959899902344,40.771297454833984,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +1,2016-01-25 17:24:37,2016-01-25 17:39:07,1,4.2,,,-73.78362274169922,40.648685455322266,-73.73770141601562,40.66453170776367,1,N,1,15.0,1.0,0.5,0.3,5.0,0.0,21.8 +2,2016-01-20 16:04:52,2016-01-20 16:13:06,1,1.2,,,-73.98429870605469,40.76776123046875,-73.98841094970703,40.75328826904297,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-11 15:40:08,2016-01-11 16:54:46,1,20.1,,,-73.78845977783203,40.64134979248047,-73.96617889404297,40.76957702636719,2,N,1,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-30 01:06:53,2016-01-30 01:13:30,1,1.49,,,-73.98651885986328,40.7399787902832,-73.97412109375,40.75421142578125,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-01 00:29:26,2016-01-01 00:37:39,1,0.73,,,-73.9835433959961,40.747215270996094,-73.99036407470703,40.74684524536133,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-17 11:51:16,2016-01-17 12:04:44,1,2.5,,,-73.99122619628906,40.75038146972656,-73.96288299560547,40.764957427978516,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-11 20:19:34,2016-01-11 20:25:56,1,1.18,,,-74.0029067993164,40.76026153564453,-73.99474334716797,40.75029754638672,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-13 12:39:50,2016-01-13 12:47:29,2,0.47,,,-73.96861267089844,40.76126480102539,-73.97521209716797,40.76206970214844,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-16 07:14:14,2016-01-16 07:24:21,1,3.4,,,-73.98674011230469,40.726016998291016,-73.95439147949219,40.763877868652344,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,14.75 +2,2016-01-05 16:49:41,2016-01-05 16:57:15,4,1.5,,,-73.95340728759766,40.78828811645508,-73.93827056884766,40.8055305480957,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-16 05:45:36,2016-01-16 05:45:46,1,0.0,,,-73.98290252685547,40.73672103881836,-73.98290252685547,40.73672103881836,1,N,3,2.5,0.5,0.5,0.3,0.0,0.0,3.8 +1,2016-01-29 18:05:42,2016-01-29 18:05:42,1,0.0,,,-73.97874450683594,40.75200271606445,0.0,0.0,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-07 15:10:03,2016-01-07 15:31:00,6,1.35,,,-74.00163269042969,40.756568908691406,-73.98583221435547,40.747459411621094,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-05 08:04:27,2016-01-05 08:15:19,1,2.3,,,-74.01546478271484,40.71050262451172,-73.99845886230469,40.73517608642578,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-15 13:56:35,2016-01-15 14:15:59,1,2.37,,,-73.97437286376953,40.756629943847656,-74.00147247314453,40.75556182861328,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-30 12:23:26,2016-01-30 12:29:15,1,0.6,,,-73.99866485595703,40.734947204589844,-74.00836181640625,40.735443115234375,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-22 18:40:56,2016-01-22 18:49:48,1,1.19,,,-73.9899673461914,40.73860168457031,-74.00581359863281,40.73666000366211,1,N,1,7.0,1.0,0.5,0.3,1.5,0.0,10.3 +2,2016-01-02 04:39:37,2016-01-02 04:46:56,6,1.21,,,-73.97786712646484,40.755191802978516,-73.9941177368164,40.75027847290039,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-06 11:00:54,2016-01-06 11:12:58,1,2.0,,,-73.96279907226562,40.77812194824219,-73.97050476074219,40.75558090209961,1,N,1,10.0,0.0,0.5,0.3,1.94,0.0,12.74 +1,2016-01-19 11:24:05,2016-01-19 11:25:26,1,0.1,,,-73.96581268310547,40.790191650390625,-73.96710205078125,40.78852081298828,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,3.8 +1,2016-01-16 00:09:00,2016-01-16 00:33:04,1,6.1,,,-73.98223876953125,40.771095275878906,-74.01399230957031,40.70942306518555,1,N,2,21.5,0.5,0.5,0.3,0.0,0.0,22.8 +2,2016-01-09 01:22:42,2016-01-09 01:36:32,1,1.96,,,-73.99151611328125,40.73180389404297,-73.98120880126953,40.72106170654297,1,N,1,10.5,0.5,0.5,0.3,0.5,0.0,12.3 +1,2016-01-26 23:48:18,2016-01-27 00:06:30,1,4.0,,,-73.990966796875,40.730003356933594,-73.97897338867188,40.77655029296875,1,N,1,15.5,0.5,0.5,0.3,3.35,0.0,20.15 +2,2016-01-30 01:06:26,2016-01-30 01:06:36,1,0.0,,,-73.93636322021484,40.853851318359375,-73.93637084960938,40.85383987426758,1,N,4,-2.5,-0.5,-0.5,-0.3,0.0,0.0,-3.8 +1,2016-01-05 16:01:05,2016-01-05 16:08:57,1,1.0,,,-74.0062484741211,40.733062744140625,-73.99100494384766,40.73009490966797,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-06 23:12:21,2016-01-06 23:16:40,2,0.63,,,-73.98819732666016,40.74592971801758,-73.9939193725586,40.75149154663086,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-04 12:20:54,2016-01-04 12:40:50,6,4.35,,,-73.98847198486328,40.71855926513672,-73.96160888671875,40.69902038574219,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,17.8 +2,2016-01-21 12:30:00,2016-01-21 12:51:58,1,11.48,,,-73.9732894897461,40.756248474121094,-73.86186218261719,40.76850128173828,1,N,1,32.5,0.0,0.5,0.3,7.77,5.54,46.61 +1,2016-01-26 22:20:23,2016-01-26 22:32:36,1,3.5,,,-73.98486328125,40.763671875,-73.97066497802734,40.79995346069336,1,N,1,13.0,0.5,0.5,0.3,2.85,0.0,17.15 +1,2016-01-25 19:06:59,2016-01-25 19:16:07,1,0.9,,,-73.99919128417969,40.71890640258789,-73.98711395263672,40.720497131347656,1,N,4,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-17 22:03:54,2016-01-17 22:40:55,2,19.4,,,-73.79051208496094,40.646610260009766,-73.96619415283203,40.80464553833008,2,N,1,52.0,0.0,0.5,0.3,6.0,5.54,64.34 +1,2016-01-10 14:49:59,2016-01-10 14:56:54,3,1.7,,,-73.9637222290039,40.75690841674805,-73.98082733154297,40.7381477355957,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-16 17:03:42,2016-01-16 17:08:01,1,1.0,,,-73.95081329345703,40.770835876464844,-73.9546127319336,40.7800178527832,1,N,1,5.0,0.0,0.5,0.3,3.0,0.0,8.8 +2,2016-01-11 10:39:45,2016-01-11 10:57:34,1,2.28,,,-74.00406646728516,40.731327056884766,-73.98139953613281,40.75563430786133,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-22 16:56:04,2016-01-22 17:08:58,1,2.36,,,-73.97689056396484,40.75225067138672,-73.98927307128906,40.73006820678711,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-08 19:49:24,2016-01-08 19:56:15,1,1.26,,,-73.99759674072266,40.716861724853516,-74.01499938964844,40.71826171875,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-16 18:23:39,2016-01-16 18:37:17,1,1.6,,,-74.00187683105469,40.741111755371094,-73.9861831665039,40.759239196777344,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-01 01:20:56,2016-01-01 01:28:12,1,2.1,,,-73.9852523803711,40.77851867675781,-73.96656799316406,40.795860290527344,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-10 22:36:17,2016-01-10 22:48:31,1,4.0,,,0.0,0.0,0.0,0.0,1,Y,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +1,2016-01-28 22:35:17,2016-01-28 22:43:28,1,1.6,,,-73.9780502319336,40.75450134277344,-73.96162414550781,40.773956298828125,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-18 00:02:41,2016-01-18 00:15:59,3,3.1,,,-73.98716735839844,40.72050476074219,-73.94876098632812,40.70760726928711,1,N,1,12.5,0.5,0.5,0.3,3.45,0.0,17.25 +1,2016-01-08 08:31:22,2016-01-08 08:40:32,1,1.5,,,-73.98651123046875,40.74570083618164,-73.97799682617188,40.763572692871094,1,N,1,8.0,0.0,0.5,0.3,2.6,0.0,11.4 +1,2016-01-06 08:31:34,2016-01-06 09:53:37,2,18.3,,,-73.78115844726562,40.64500427246094,-73.98894500732422,40.75654602050781,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +1,2016-01-28 23:31:50,2016-01-28 23:47:25,1,4.0,,,-73.9907455444336,40.76104736328125,-74.01226043701172,40.716983795166016,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,16.3 +1,2016-01-05 10:37:56,2016-01-05 10:42:19,1,1.1,,,-73.96720123291016,40.77239990234375,-73.97654724121094,40.77650833129883,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-20 07:27:57,2016-01-20 07:52:49,1,6.38,,,-73.97290802001953,40.793060302734375,-74.00572204589844,40.725341796875,1,N,1,22.5,0.0,0.5,0.3,4.66,0.0,27.96 +2,2016-01-02 09:40:30,2016-01-02 09:49:38,1,2.38,,,-73.95287322998047,40.7867431640625,-73.98008728027344,40.77888107299805,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-06 12:49:40,2016-01-06 13:10:53,4,2.55,,,-73.99869537353516,40.739845275878906,-73.97169494628906,40.760215759277344,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,19.75 +2,2016-01-22 17:37:21,2016-01-22 17:49:19,1,2.0,,,-73.95768737792969,40.76948928833008,-73.95226287841797,40.791439056396484,1,N,1,10.0,1.0,0.5,0.3,2.95,0.0,14.75 +1,2016-01-10 01:56:37,2016-01-10 02:11:32,1,2.8,,,-73.98410034179688,40.725379943847656,-73.9665298461914,40.755680084228516,1,N,1,12.5,0.5,0.5,0.3,1.0,0.0,14.8 +2,2016-01-23 01:15:35,2016-01-23 01:20:08,1,0.72,,,-73.98705291748047,40.736446380615234,-73.98541259765625,40.74401092529297,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +1,2016-01-20 00:33:21,2016-01-20 00:43:16,1,2.2,,,-73.98345947265625,40.76262283325195,-73.98268127441406,40.73967742919922,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,12.95 +1,2016-01-14 09:01:42,2016-01-14 09:13:53,1,1.9,,,-73.9822006225586,40.783180236816406,-73.95687103271484,40.77163314819336,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,11.8 +1,2016-01-19 22:03:31,2016-01-19 22:06:56,1,0.7,,,-73.94068145751953,40.70001220703125,-73.93978881835938,40.707298278808594,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-02 20:37:57,2016-01-02 20:49:28,4,1.7,,,-73.97478485107422,40.757232666015625,-73.98986053466797,40.73942184448242,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-02 17:13:04,2016-01-02 18:11:55,2,18.9,,,-73.78997802734375,40.64706039428711,-73.99374389648438,40.69583511352539,1,N,1,56.0,0.0,0.5,0.3,13.0,0.0,69.8 +1,2016-01-11 16:51:28,2016-01-11 16:52:04,1,0.0,,,-73.97412109375,40.76512145996094,-73.9738540649414,40.764976501464844,1,N,1,2.5,1.0,0.5,0.3,0.85,0.0,5.15 +1,2016-01-26 19:22:32,2016-01-26 19:50:38,2,2.1,,,-73.96800231933594,40.7656364440918,-73.99140167236328,40.75023651123047,1,N,2,17.0,1.0,0.5,0.3,0.0,0.0,18.8 +1,2016-01-03 02:54:04,2016-01-03 02:58:49,1,1.3,,,-73.98353576660156,40.765872955322266,-73.99121856689453,40.75020980834961,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-11 12:01:56,2016-01-11 12:18:28,1,1.7,,,-73.95233154296875,40.78126525878906,-73.96824645996094,40.76539611816406,1,N,1,12.0,0.0,0.5,0.3,3.2,0.0,16.0 +1,2016-01-30 22:42:16,2016-01-30 22:52:32,1,2.0,,,-73.95372772216797,40.78193664550781,-73.97911071777344,40.777015686035156,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-09 02:06:25,2016-01-09 02:18:33,5,1.35,,,-74.00782775878906,40.7405891418457,-73.98787689208984,40.73242950439453,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-27 08:08:16,2016-01-27 08:12:47,1,0.7,,,-73.99764251708984,40.73610305786133,-73.99063873291016,40.745948791503906,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-04 10:08:25,2016-01-04 10:38:46,1,2.03,,,-73.95343017578125,40.77545166015625,-73.99681091308594,40.716949462890625,1,N,1,19.0,0.0,0.5,0.3,3.96,0.0,23.76 +2,2016-01-03 17:39:17,2016-01-03 18:03:55,5,2.86,,,-73.96098327636719,40.768890380859375,-73.98463439941406,40.779483795166016,1,N,1,16.5,0.0,0.5,0.3,1.38,0.0,18.68 +2,2016-01-10 02:52:09,2016-01-10 03:07:13,1,4.31,,,-73.99947357177734,40.72997283935547,-74.00012969970703,40.68268966674805,1,N,1,15.0,0.5,0.5,0.3,4.08,0.0,20.38 +1,2016-01-29 19:01:02,2016-01-29 19:15:39,2,1.6,,,-73.9854736328125,40.74723434448242,-73.99793243408203,40.72931671142578,1,N,1,10.5,1.0,0.5,0.3,2.45,0.0,14.75 +2,2016-01-24 13:27:59,2016-01-24 13:36:53,1,1.84,,,-73.956298828125,40.77155685424805,-73.97245025634766,40.7495002746582,1,N,1,8.5,0.0,0.5,0.3,1.7,0.0,11.0 +1,2016-01-07 21:51:16,2016-01-07 21:56:55,2,0.9,,,-73.98209381103516,40.7627067565918,-73.99085235595703,40.75072479248047,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-22 04:35:05,2016-01-22 04:37:57,1,0.8,,,-73.94557189941406,40.8079719543457,-73.94110870361328,40.80008316040039,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-04 19:45:08,2016-01-04 19:49:26,1,0.78,,,-73.95570373535156,40.77967071533203,-73.94570922851562,40.78213119506836,1,N,1,5.0,1.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-14 23:02:08,2016-01-14 23:07:14,1,1.8,,,-73.96379089355469,40.76145935058594,-73.95011138916016,40.78398132324219,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +2,2016-01-16 11:46:56,2016-01-16 11:55:17,1,1.59,,,-73.98695373535156,40.76638412475586,-74.00143432617188,40.74633026123047,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-15 18:12:05,2016-01-15 18:25:55,6,1.8,,,-73.97517395019531,40.7642822265625,-73.98992156982422,40.7398796081543,1,N,1,10.0,1.0,0.5,0.3,1.0,0.0,12.8 +1,2016-01-20 19:52:13,2016-01-20 19:56:09,1,0.5,,,-73.9915542602539,40.73167037963867,-73.99617004394531,40.72514724731445,1,N,1,4.5,1.0,0.5,0.3,1.25,0.0,7.55 +2,2016-01-08 12:50:11,2016-01-08 13:07:39,1,9.71,,,-73.98329162597656,40.74747848510742,-73.86553955078125,40.770851135253906,1,N,1,27.5,0.0,0.5,0.3,4.16,5.54,38.0 +1,2016-01-13 12:06:27,2016-01-13 12:33:16,1,3.1,,,-73.97039794921875,40.761924743652344,-74.00634002685547,40.74226760864258,1,N,1,18.0,0.0,0.5,0.3,3.75,0.0,22.55 +2,2016-01-03 12:47:39,2016-01-03 12:52:28,5,0.97,,,-73.96996307373047,40.76301193237305,-73.96240234375,40.77479934692383,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-30 20:46:36,2016-01-30 20:58:45,1,5.05,,,-73.9886474609375,40.76919937133789,-73.94869232177734,40.81547927856445,1,N,1,16.0,0.5,0.5,0.3,2.8,0.0,20.1 +2,2016-01-14 14:15:01,2016-01-14 14:31:57,1,3.34,,,-73.99880981445312,40.76120376586914,-73.96391296386719,40.77695846557617,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,15.3 +2,2016-01-07 07:18:44,2016-01-07 07:25:09,2,1.48,,,-73.98199462890625,40.75570297241211,-73.9644546508789,40.765586853027344,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-24 09:33:25,2016-01-24 09:38:34,1,0.88,,,-73.99317932128906,40.743038177490234,-74.0058822631836,40.748348236083984,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-12 23:12:18,2016-01-12 23:17:44,1,0.84,,,-73.99095916748047,40.734893798828125,-73.98188018798828,40.73512649536133,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-02 05:52:36,2016-01-02 05:56:43,1,0.8,,,-73.93555450439453,40.79629135131836,-73.94898986816406,40.802040100097656,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-15 08:20:12,2016-01-15 08:27:31,3,1.27,,,-73.96578979492188,40.762290954589844,-73.97804260253906,40.77328872680664,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-18 16:59:32,2016-01-18 17:30:56,1,10.06,,,-73.87448120117188,40.774078369140625,-73.9761734008789,40.77598190307617,1,N,2,32.0,0.0,0.5,0.3,0.0,5.54,38.34 +1,2016-01-29 00:04:53,2016-01-29 00:28:16,1,7.2,,,-74.00243377685547,40.724945068359375,-73.94330596923828,40.7868766784668,1,Y,1,24.0,0.5,0.5,0.3,5.05,0.0,30.35 +1,2016-01-23 03:55:40,2016-01-23 04:17:38,2,4.4,,,-73.98900604248047,40.721458435058594,-73.95568084716797,40.683311462402344,1,N,1,17.0,0.5,0.5,0.3,4.55,0.0,22.85 +2,2016-01-14 15:14:43,2016-01-14 15:24:52,3,1.51,,,-74.01065063476562,40.71461868286133,-74.00164031982422,40.72248840332031,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +1,2016-01-05 09:38:32,2016-01-05 10:08:45,1,11.9,,,-73.77674102783203,40.64543151855469,-73.95165252685547,40.67441177368164,1,N,1,35.0,0.0,0.5,0.3,7.15,0.0,42.95 +2,2016-01-10 20:06:40,2016-01-10 20:10:41,1,1.02,,,-74.00348663330078,40.741661071777344,-74.00213623046875,40.750728607177734,1,N,1,5.5,0.5,0.5,0.3,4.0,0.0,10.8 +2,2016-01-07 08:26:26,2016-01-07 08:39:59,2,1.44,,,-73.9980239868164,40.682674407958984,-73.97488403320312,40.6752815246582,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-18 13:25:16,2016-01-18 13:36:01,1,2.0,,,-73.99004364013672,40.746612548828125,-73.98873901367188,40.727264404296875,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-01 19:21:27,2016-01-01 19:37:12,2,2.74,,,-73.98470306396484,40.74211120605469,-73.9822769165039,40.772361755371094,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-20 21:20:04,2016-01-20 21:30:46,1,1.6,,,-74.00746154785156,40.7408447265625,-73.98634338378906,40.743125915527344,1,N,1,8.5,0.5,0.5,0.3,1.95,0.0,11.75 +2,2016-01-14 12:51:34,2016-01-14 13:00:44,2,1.65,,,-73.96438598632812,40.770381927490234,-73.98164367675781,40.765953063964844,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-13 10:44:14,2016-01-13 10:51:35,1,1.5,,,-73.97736358642578,40.75800323486328,-73.98787689208984,40.73828125,1,N,1,7.5,0.0,0.5,0.3,2.05,0.0,10.35 +1,2016-01-20 17:15:11,2016-01-20 18:09:47,1,17.5,,,-73.78984832763672,40.64676284790039,-73.97603607177734,40.761444091796875,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-11 12:16:28,2016-01-11 12:23:35,1,1.23,,,-73.99198150634766,40.74945068359375,-73.9771728515625,40.75178146362305,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-11 16:13:29,2016-01-11 16:19:52,1,1.2,,,-73.99757385253906,40.746681213378906,-73.99531555175781,40.75995635986328,1,N,1,6.5,1.0,0.5,0.3,2.0,0.0,10.3 +2,2016-01-04 10:29:12,2016-01-05 10:23:27,2,3.52,,,-73.95111083984375,40.770328521728516,-73.99105834960938,40.75058364868164,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,18.8 +2,2016-01-13 08:29:37,2016-01-13 08:44:22,5,1.14,,,-73.97579193115234,40.756980895996094,-73.98416900634766,40.767330169677734,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +1,2016-01-09 07:42:59,2016-01-09 07:51:11,1,1.3,,,-73.98045349121094,40.73240661621094,-73.99210357666016,40.74368667602539,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-13 07:19:58,2016-01-13 07:31:24,1,1.46,,,-73.99169158935547,40.75010299682617,-73.97682189941406,40.75565719604492,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-26 20:31:53,2016-01-26 20:50:40,1,4.7,,,-73.98765563964844,40.75469970703125,-74.01750946044922,40.709354400634766,1,N,1,17.5,0.5,0.5,0.3,3.75,0.0,22.55 +2,2016-01-08 16:51:10,2016-01-08 16:59:44,1,1.98,,,-73.98210906982422,40.77259063720703,-73.9693374633789,40.797828674316406,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-08 08:18:28,2016-01-08 08:32:24,1,1.69,,,-73.97113800048828,40.756980895996094,-73.95970916748047,40.77452850341797,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,11.8 +1,2016-01-30 01:13:37,2016-01-30 01:18:28,1,0.8,,,-74.00157165527344,40.74344253540039,-73.9948501586914,40.74606704711914,1,N,1,5.5,0.5,0.5,0.3,1.02,0.0,7.82 +2,2016-01-21 21:23:57,2016-01-21 21:46:47,1,7.33,,,-74.01260375976562,40.702362060546875,-73.9482192993164,40.645198822021484,1,N,1,23.5,0.5,0.5,0.3,8.0,5.54,38.34 +2,2016-01-06 16:35:59,2016-01-06 16:46:51,5,1.09,,,-73.97505950927734,40.76533126831055,-73.98689270019531,40.75585174560547,1,N,1,8.5,1.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-17 19:26:52,2016-01-17 19:31:17,1,0.74,,,-73.98222351074219,40.77519989013672,-73.9794921875,40.78430938720703,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-19 14:07:36,2016-01-19 14:28:00,1,1.45,,,-73.9884262084961,40.73529052734375,-73.98725891113281,40.75050735473633,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-02 05:13:24,2016-01-02 05:33:16,1,5.1,,,0.0,0.0,0.0,0.0,1,N,3,18.5,0.5,0.5,0.3,0.0,0.0,19.8 +2,2016-01-22 18:39:13,2016-01-22 18:50:33,1,2.57,,,-73.97844696044922,40.750999450683594,-73.95281982421875,40.778499603271484,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-09 19:45:55,2016-01-09 19:58:49,1,1.31,,,-73.97847747802734,40.75270462036133,-73.99559020996094,40.76216506958008,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-01 09:43:40,2016-01-01 09:47:49,1,1.0,,,0.0,0.0,0.0,0.0,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-01 21:57:36,2016-01-01 22:03:30,1,1.0,,,-73.95430755615234,40.76433563232422,-73.96000671386719,40.773780822753906,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,8.75 +1,2016-01-28 19:37:47,2016-01-28 20:19:51,1,12.9,,,-73.98285675048828,40.760948181152344,-73.84262084960938,40.85003662109375,1,N,1,42.5,1.0,0.5,0.3,8.85,0.0,53.15 +1,2016-01-26 16:23:01,2016-01-26 16:40:05,1,2.5,,,-73.99710083007812,40.742069244384766,-74.01602935791016,40.71495056152344,1,N,1,12.5,1.0,0.5,0.3,2.85,0.0,17.15 +2,2016-01-08 17:49:32,2016-01-08 17:58:27,2,1.22,,,-73.98739624023438,40.76611328125,-73.96736145019531,40.757747650146484,1,N,1,7.5,1.0,0.5,0.3,1.0,0.0,10.3 +1,2016-01-16 16:07:19,2016-01-16 16:19:23,1,2.2,,,-73.99346923828125,40.74180603027344,-73.9896240234375,40.765380859375,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-15 22:46:30,2016-01-15 22:50:50,1,1.1,,,-73.96178436279297,40.77710723876953,-73.96733856201172,40.78797912597656,1,N,1,6.0,0.5,0.5,0.3,2.15,0.0,9.45 +1,2016-01-29 23:21:10,2016-01-29 23:33:26,1,3.6,,,-73.98307037353516,40.75624084472656,-73.97119140625,40.80032730102539,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +2,2016-01-16 14:53:33,2016-01-16 15:01:22,1,1.48,,,-74.01038360595703,40.71454620361328,-74.00835418701172,40.73271560668945,1,N,1,8.0,0.0,0.5,0.3,5.0,0.0,13.8 +2,2016-01-04 07:42:59,2016-01-04 07:53:41,1,2.18,,,-73.99179077148438,40.75006103515625,-73.9680404663086,40.76213836669922,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-06 21:08:28,2016-01-06 21:40:26,3,6.94,,,-74.00379180908203,40.73836135864258,-73.97029113769531,40.68470001220703,1,N,1,26.0,0.5,0.5,0.3,4.0,0.0,31.3 +1,2016-01-05 08:14:49,2016-01-05 08:22:38,1,1.1,,,-73.98910522460938,40.740806579589844,-73.97669219970703,40.748497009277344,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-08 07:27:16,2016-01-08 07:30:21,1,0.8,,,-73.96076202392578,40.76974105834961,-73.95523834228516,40.779415130615234,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +2,2016-01-10 00:56:49,2016-01-10 01:09:55,1,2.37,,,0.0,0.0,0.0,0.0,1,N,1,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +2,2016-01-10 01:42:31,2016-01-10 01:50:14,5,1.13,,,-73.99279022216797,40.72542953491211,-74.00897979736328,40.73060989379883,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +2,2016-01-05 07:41:37,2016-01-05 07:45:22,1,0.97,,,-73.9703598022461,40.748870849609375,-73.97508239746094,40.73712158203125,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-05 23:35:11,2016-01-05 23:37:49,1,0.8,,,-73.97846221923828,40.76265335083008,-73.97772979736328,40.75340270996094,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-27 21:21:49,2016-01-27 21:26:43,1,0.53,,,-73.96827697753906,40.76211166381836,-73.9683837890625,40.75664520263672,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-21 10:12:20,2016-01-21 10:36:12,2,7.3,,,-74.01002502441406,40.721065521240234,-73.96981048583984,40.758113861083984,1,N,2,25.0,0.0,0.5,0.3,0.0,0.0,25.8 +1,2016-01-14 15:41:35,2016-01-14 15:55:49,2,2.3,,,-73.97615814208984,40.77605438232422,-73.99615478515625,40.7586669921875,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-26 22:13:37,2016-01-26 22:16:58,1,0.67,,,-73.95166015625,40.77198028564453,-73.96006774902344,40.77634048461914,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +1,2016-01-12 17:56:42,2016-01-12 18:06:34,1,1.8,,,-73.97901153564453,40.774391174316406,-73.9577865600586,40.773616790771484,1,N,1,9.0,1.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-14 13:19:34,2016-01-14 13:24:55,2,0.64,,,-73.97511291503906,40.7615852355957,-73.98040008544922,40.75387191772461,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-14 16:49:11,2016-01-14 16:54:16,1,0.7,,,-73.9746322631836,40.68023681640625,-73.98138427734375,40.68988800048828,1,N,3,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-26 11:07:03,2016-01-26 12:02:44,1,5.0,,,-73.94883728027344,40.79734420776367,-73.98841094970703,40.73707962036133,1,N,1,32.5,0.0,0.5,0.3,2.0,0.0,35.3 +1,2016-01-07 10:22:32,2016-01-07 10:37:08,1,2.2,,,-73.96487426757812,40.75971221923828,-73.99200439453125,40.74917221069336,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-19 12:07:20,2016-01-19 12:15:18,1,0.7,,,-73.98461151123047,40.76044845581055,-73.99030303955078,40.751220703125,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-19 21:48:07,2016-01-19 21:57:15,1,1.15,,,-73.99166870117188,40.759986877441406,-73.97827911376953,40.75300216674805,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +1,2016-01-14 09:01:20,2016-01-14 09:10:33,1,0.9,,,-73.96731567382812,40.752803802490234,-73.95816040039062,40.76472473144531,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +1,2016-01-15 16:44:38,2016-01-15 16:50:53,1,1.4,,,-73.97664642333984,40.76502990722656,-73.9619140625,40.77615737915039,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-27 23:06:27,2016-01-27 23:14:58,5,1.89,,,-73.95764923095703,40.779640197753906,-73.98161315917969,40.774471282958984,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-22 09:54:51,2016-01-22 10:07:16,1,1.5,,,-73.99392700195312,40.74418258666992,-73.98351287841797,40.73054885864258,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-19 17:45:24,2016-01-19 17:57:31,2,2.8,,,-73.95599365234375,40.803749084472656,-73.98796081542969,40.779605865478516,1,N,1,11.0,1.0,0.5,0.3,2.56,0.0,15.36 +2,2016-01-04 20:51:44,2016-01-04 21:06:57,1,5.19,,,-74.00917053222656,40.706390380859375,-73.99755096435547,40.76105880737305,1,N,1,17.5,0.5,0.5,0.3,1.5,0.0,20.3 +2,2016-01-15 18:10:47,2016-01-15 18:14:29,1,0.39,,,-73.9712905883789,40.7547607421875,-73.96739196777344,40.759300231933594,1,N,1,4.0,1.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-20 20:38:56,2016-01-20 20:51:47,1,3.52,,,-74.01177215576172,40.703670501708984,-74.00395965576172,40.74298858642578,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +1,2016-01-07 08:37:14,2016-01-07 08:52:07,1,2.4,,,-73.96739196777344,40.76911544799805,-73.97198486328125,40.744258880615234,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-21 18:45:15,2016-01-21 18:59:26,2,1.9,,,-73.96426391601562,40.761348724365234,-73.95430755615234,40.78428268432617,1,N,1,11.5,1.0,0.5,0.3,1.0,0.0,14.3 +2,2016-01-12 07:52:13,2016-01-12 08:09:25,1,2.14,,,-73.956787109375,40.779178619384766,-73.97947692871094,40.759830474853516,1,N,1,12.5,0.0,0.5,0.3,2.0,0.0,15.3 +1,2016-01-09 02:24:23,2016-01-09 02:31:41,1,1.5,,,-73.99186706542969,40.72636032104492,-73.97837829589844,40.742530822753906,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +1,2016-01-18 16:16:01,2016-01-18 16:23:56,1,1.0,,,0.0,0.0,0.0,0.0,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +2,2016-01-02 00:06:44,2016-01-02 00:18:11,3,2.93,,,-73.99107360839844,40.75578689575195,-73.98340606689453,40.72629165649414,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +2,2016-01-05 19:50:09,2016-01-05 19:57:41,1,1.24,,,-73.9986572265625,40.76029968261719,-73.98825073242188,40.75006866455078,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-30 18:09:35,2016-01-30 18:43:03,2,3.59,,,-73.96366882324219,40.71030044555664,-73.92359924316406,40.677120208740234,1,N,1,21.0,0.0,0.5,0.3,4.36,0.0,26.16 +1,2016-01-17 11:38:03,2016-01-17 11:47:54,1,2.0,,,-73.96154022216797,40.769283294677734,-73.98453521728516,40.75759506225586,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-21 21:54:59,2016-01-21 22:02:31,1,1.6,,,-73.99571990966797,40.75419998168945,-73.98108673095703,40.74156188964844,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-29 23:09:47,2016-01-29 23:36:01,1,6.2,,,-73.98027038574219,40.760475158691406,-73.96205139160156,40.71161651611328,1,N,1,22.0,0.5,0.5,0.3,4.0,0.0,27.3 +2,2016-01-18 07:24:43,2016-01-18 07:33:04,5,1.08,,,-73.96802520751953,40.76365661621094,-73.98157501220703,40.77115249633789,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-26 22:46:21,2016-01-26 22:53:22,1,1.48,,,-73.95556640625,40.779701232910156,-73.97586822509766,40.782161712646484,1,N,1,7.0,0.5,0.5,0.3,0.7,0.0,9.0 +1,2016-01-27 18:34:19,2016-01-27 18:38:53,1,0.4,,,-73.97156524658203,40.79536437988281,-73.97620391845703,40.790958404541016,1,N,1,5.0,1.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-12 22:45:00,2016-01-12 22:50:26,2,1.48,,,-73.97692108154297,40.76470184326172,-73.9873275756836,40.74959182739258,1,N,1,6.5,0.5,0.5,0.3,1.0,0.0,8.8 +1,2016-01-07 13:41:23,2016-01-07 13:54:17,1,1.3,,,-73.97399139404297,40.7500114440918,-73.99120330810547,40.750301361083984,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-21 17:52:01,2016-01-21 18:44:01,1,11.02,,,-74.00762939453125,40.72587966918945,-73.87299346923828,40.77437973022461,1,N,1,39.5,1.0,0.5,0.3,12.39,0.0,53.69 +2,2016-01-25 11:54:43,2016-01-25 12:05:39,1,1.87,,,-73.99201202392578,40.76926040649414,-74.0079574584961,40.74795150756836,1,N,1,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-10 22:49:27,2016-01-10 22:58:21,1,3.2,,,-73.97509002685547,40.74946594238281,-73.98603057861328,40.71940231323242,1,N,1,11.5,0.5,0.5,0.3,2.55,0.0,15.35 +1,2016-01-13 19:14:02,2016-01-13 19:20:38,1,1.0,,,-73.98175811767578,40.77915573120117,-73.97457122802734,40.79188537597656,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-02 18:53:21,2016-01-02 18:57:49,1,0.78,,,-73.95384979248047,40.78467559814453,-73.95582580566406,40.776145935058594,1,N,1,5.0,0.0,0.5,0.3,1.45,0.0,7.25 +2,2016-01-25 03:07:13,2016-01-25 03:16:04,1,1.8,,,-73.97286224365234,40.67784118652344,-73.98822784423828,40.67094802856445,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-17 11:41:30,2016-01-17 11:57:24,6,3.02,,,-73.9990005493164,40.76410675048828,-73.96080017089844,40.76948547363281,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +1,2016-01-12 18:45:14,2016-01-12 18:49:54,1,0.7,,,-73.9605941772461,40.76563262939453,-73.95682525634766,40.77096176147461,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-26 14:35:06,2016-01-26 14:38:39,1,0.42,,,-73.98989868164062,40.719825744628906,-73.98989868164062,40.719825744628906,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-21 15:48:11,2016-01-21 16:07:58,1,3.2,,,-74.00996398925781,40.72077178955078,-73.99771118164062,40.756290435791016,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-08 11:47:24,2016-01-08 11:57:10,1,1.1,,,-73.99685668945312,40.742454528808594,-73.98584747314453,40.752689361572266,1,N,1,8.0,0.0,0.5,0.3,2.0,0.0,10.8 +1,2016-01-09 06:54:48,2016-01-09 07:11:30,1,10.2,,,-74.00048828125,40.72890090942383,-73.87297821044922,40.77436447143555,1,N,2,29.0,0.0,0.5,0.3,0.0,0.0,29.8 +2,2016-01-24 13:26:30,2016-01-24 13:48:34,1,2.98,,,-73.97335815429688,40.764625549316406,-74.00120544433594,40.729225158691406,1,N,1,15.5,0.0,0.5,0.3,1.0,0.0,17.3 +2,2016-01-23 11:20:11,2016-01-24 11:15:15,1,0.74,,,-73.98471069335938,40.77961730957031,-73.99093627929688,40.771148681640625,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +1,2016-01-22 05:39:29,2016-01-22 05:41:45,2,0.7,,,-73.98986053466797,40.75614929199219,-73.98385620117188,40.76536560058594,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-02 05:56:44,2016-01-02 06:06:01,2,3.29,,,-73.97288513183594,40.75297164916992,-73.93311309814453,40.760231018066406,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +1,2016-01-19 01:46:21,2016-01-19 01:49:18,1,1.2,,,-73.9512939453125,40.79408645629883,-73.95657348632812,40.779727935791016,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-04 19:27:56,2016-01-04 19:37:06,1,1.63,,,-73.9734115600586,40.763851165771484,-73.97783660888672,40.74588394165039,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-02 22:46:22,2016-01-02 22:54:18,1,1.8,,,-73.98574829101562,40.76232147216797,-73.9767074584961,40.785884857177734,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-18 08:41:09,2016-01-18 08:52:12,1,4.98,,,-73.98552703857422,40.7354850769043,-73.94845581054688,40.78227615356445,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +1,2016-01-11 17:55:37,2016-01-11 18:05:04,3,1.0,,,-73.99185180664062,40.731048583984375,-74.00729370117188,40.7288818359375,1,N,1,7.5,1.0,0.5,0.3,1.85,0.0,11.15 +1,2016-01-29 09:47:43,2016-01-29 10:35:33,1,18.4,,,-73.98585510253906,40.758304595947266,-73.7767105102539,40.64481735229492,2,Y,1,52.0,0.0,0.5,0.3,14.55,5.54,72.89 +1,2016-01-25 12:40:09,2016-01-25 13:22:06,2,1.6,,,-73.99948120117188,40.73656463623047,-73.98169708251953,40.75032424926758,1,N,1,23.0,0.0,0.5,0.3,5.95,0.0,29.75 +1,2016-01-05 15:05:22,2016-01-05 15:11:28,2,0.9,,,-73.97025299072266,40.75143814086914,-73.98035430908203,40.74444580078125,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +1,2016-01-13 17:41:46,2016-01-13 17:47:26,1,1.0,,,-73.9821548461914,40.77271270751953,-73.99142456054688,40.75979232788086,1,N,1,6.0,1.0,0.5,0.3,1.55,0.0,9.35 +2,2016-01-21 21:31:10,2016-01-21 21:54:27,5,3.75,,,-73.96925354003906,40.75447082519531,-73.97599792480469,40.795318603515625,1,N,1,17.5,0.5,0.5,0.3,3.76,0.0,22.56 +2,2016-01-01 13:31:27,2016-01-01 13:35:39,2,1.08,,,-74.00297546386719,40.74397659301758,-73.99777221679688,40.756378173828125,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-29 07:25:39,2016-01-29 07:43:16,1,8.7,,,-73.97845458984375,40.75087356567383,-73.87176513671875,40.7743034362793,1,N,1,26.0,0.0,0.5,0.3,6.45,5.54,38.79 +2,2016-01-11 21:31:33,2016-01-11 21:38:01,1,0.73,,,-73.98998260498047,40.73419189453125,-73.99092102050781,40.738128662109375,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +2,2016-01-21 09:43:28,2016-01-21 09:47:57,2,0.7,,,-73.96102905273438,40.757511138916016,-73.97160339355469,40.76042938232422,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,6.8 +2,2016-01-12 13:56:10,2016-01-12 14:13:59,1,1.62,,,-73.95976257324219,40.77381134033203,-73.9820327758789,40.77119827270508,1,N,1,12.0,0.0,0.5,0.3,3.2,0.0,16.0 +1,2016-01-07 17:55:50,2016-01-07 18:00:57,1,0.8,,,-73.96212005615234,40.80553436279297,-73.97003936767578,40.79713439941406,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,8.3 +1,2016-01-02 00:41:54,2016-01-02 00:54:51,1,3.9,,,-73.95116424560547,40.78593444824219,-73.99229431152344,40.749481201171875,1,N,1,13.5,0.5,0.5,0.3,2.5,0.0,17.3 +1,2016-01-04 19:19:22,2016-01-04 19:31:35,1,4.6,,,-74.01500701904297,40.71416473388672,-73.98920440673828,40.72528076171875,1,N,1,15.5,1.0,0.5,0.3,2.0,0.0,19.3 +2,2016-01-19 22:00:26,2016-01-19 22:08:49,1,1.5,,,-73.98487854003906,40.736671447753906,-73.98957824707031,40.718868255615234,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +1,2016-01-12 13:36:06,2016-01-12 14:08:28,2,11.1,,,-73.97445678710938,40.756072998046875,-73.87340545654297,40.774356842041016,1,N,2,36.0,0.0,0.5,0.3,0.0,5.54,42.34 +1,2016-01-26 12:55:46,2016-01-26 13:14:57,1,1.6,,,-73.97169494628906,40.746124267578125,-73.97005462646484,40.76444625854492,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-10 02:09:12,2016-01-10 02:12:58,1,1.0,,,-73.99781799316406,40.763980865478516,-73.99142456054688,40.75482940673828,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,7.55 +1,2016-01-15 23:58:02,2016-01-16 00:09:29,1,7.2,,,-73.78980255126953,40.64690017700195,-73.71544647216797,40.6748046875,1,N,1,21.0,0.5,0.5,0.3,6.65,0.0,28.95 +2,2016-01-18 00:47:49,2016-01-18 00:54:48,2,0.9,,,-73.98924255371094,40.723018646240234,-73.9881362915039,40.73189163208008,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-08 08:46:50,2016-01-08 09:26:10,1,11.45,,,-74.00907897949219,40.710819244384766,-73.90711975097656,40.82249069213867,1,N,1,37.0,0.0,0.5,0.3,1.0,0.0,38.8 +1,2016-01-28 07:10:26,2016-01-28 07:21:37,1,1.5,,,-74.00428771972656,40.72191619873047,-74.00700378417969,40.70649337768555,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +2,2016-01-15 00:15:12,2016-01-15 00:37:21,1,6.89,,,-74.00729370117188,40.74327850341797,-73.9251708984375,40.76826095581055,1,N,2,22.5,0.5,0.5,0.3,0.0,0.0,23.8 +2,2016-01-14 14:10:58,2016-01-14 14:41:46,1,10.09,,,-73.99932861328125,40.76066970825195,-73.87094116210938,40.774078369140625,1,N,1,32.5,0.0,0.5,0.3,7.77,5.54,46.61 +2,2016-01-22 22:25:19,2016-01-22 22:36:54,1,2.39,,,-73.9968032836914,40.742469787597656,-74.00778198242188,40.712059020996094,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-30 23:17:29,2016-01-30 23:25:28,1,1.25,,,-73.98685455322266,40.75114059448242,-73.9697036743164,40.752315521240234,1,N,1,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-06 02:18:10,2016-01-06 02:21:56,6,0.66,,,-74.00523376464844,40.74092102050781,-74.00630187988281,40.73347854614258,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-15 19:16:44,2016-01-15 19:23:59,1,0.61,,,-73.99793243408203,40.72275161743164,-73.99226379394531,40.72140884399414,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-11 16:39:30,2016-01-11 17:57:03,1,22.8,,,-73.7826919555664,40.644371032714844,-74.0112075805664,40.70439910888672,2,N,1,52.0,0.0,0.5,0.3,10.0,5.54,68.34 +1,2016-01-08 18:20:03,2016-01-08 18:29:40,1,1.3,,,-73.99102020263672,40.76068878173828,-73.99873352050781,40.74503707885742,1,N,1,8.0,1.0,0.5,0.3,1.95,0.0,11.75 +1,2016-01-06 09:36:30,2016-01-06 09:44:51,2,0.8,,,-73.9587173461914,40.76404571533203,-73.96919250488281,40.76396560668945,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-06 11:46:27,2016-01-06 12:11:39,1,4.2,,,-73.99494171142578,40.736656188964844,-73.95008850097656,40.7764892578125,1,N,1,18.5,0.0,0.5,0.3,3.85,0.0,23.15 +1,2016-01-30 15:28:51,2016-01-30 15:58:14,1,2.1,,,-73.96624755859375,40.75325393676758,-73.98847961425781,40.737510681152344,1,N,1,18.0,0.0,0.5,0.3,3.75,0.0,22.55 +2,2016-01-14 22:37:53,2016-01-14 22:52:51,1,2.74,,,-73.9727783203125,40.759220123291016,-73.99051666259766,40.727500915527344,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,17.16 +1,2016-01-12 18:11:04,2016-01-12 18:34:10,1,8.8,,,-73.88533782958984,40.77313232421875,-73.9587173461914,40.76382064819336,1,N,1,26.5,1.0,0.5,0.3,10.15,5.54,43.99 +2,2016-01-14 10:42:12,2016-01-14 10:50:05,1,0.89,,,-73.9885025024414,40.73209762573242,-73.9854507446289,40.74138259887695,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-05 23:50:40,2016-01-05 23:51:55,1,0.4,,,-73.99967956542969,40.753875732421875,-73.99380493164062,40.755672454833984,1,N,1,3.5,0.5,0.5,0.3,1.4,0.0,6.2 +2,2016-01-13 17:15:05,2016-01-13 17:19:31,1,0.5,,,-73.98052215576172,40.7476806640625,-73.97464752197266,40.75046157836914,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-23 00:37:31,2016-01-23 01:10:01,1,6.03,,,-74.0051498413086,40.7413215637207,-73.95352935791016,40.682071685791016,1,N,1,23.0,0.5,0.5,0.3,4.0,0.0,28.3 +2,2016-01-16 01:15:27,2016-01-16 01:33:37,5,4.54,,,-73.9870376586914,40.754756927490234,-73.95610809326172,40.746116638183594,1,N,1,17.0,0.5,0.5,0.3,1.7,0.0,20.0 +1,2016-01-08 19:48:37,2016-01-08 19:55:45,1,1.7,,,-73.97557067871094,40.78801345825195,-73.96686553955078,40.77072525024414,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-20 18:45:18,2016-01-20 18:57:13,1,2.8,,,-73.98846435546875,40.774105072021484,-74.00221252441406,40.74153137207031,1,N,1,11.0,1.0,0.5,0.3,3.8,0.0,16.6 +1,2016-01-11 13:03:21,2016-01-11 13:15:53,1,2.5,,,-73.9820556640625,40.77113723754883,-73.95389556884766,40.78444290161133,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-13 21:43:46,2016-01-13 21:45:27,1,0.18,,,-73.99398803710938,40.76649856567383,-73.9917221069336,40.76639938354492,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,70.01 +1,2016-01-15 21:13:07,2016-01-15 21:21:48,1,2.5,,,-73.95182037353516,40.769317626953125,-73.97652435302734,40.74945068359375,1,N,1,10.0,0.5,0.5,0.3,3.35,0.0,14.65 +2,2016-01-16 01:02:46,2016-01-16 01:14:04,1,1.69,,,-73.98943328857422,40.74372100830078,-73.99224853515625,40.72494125366211,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,11.3 +2,2016-01-05 16:57:26,2016-01-05 17:06:03,1,0.9,,,-74.00228118896484,40.740013122558594,-73.98973083496094,40.741722106933594,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-20 21:22:30,2016-01-20 21:27:11,1,0.6,,,-73.97476959228516,40.751930236816406,-73.96780395507812,40.75297164916992,1,N,1,5.0,0.5,0.5,0.3,1.55,0.0,7.85 +1,2016-01-17 10:35:51,2016-01-17 10:44:18,4,0.3,,,-73.97694396972656,40.75118637084961,-73.9763412475586,40.751792907714844,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-26 18:09:16,2016-01-26 18:54:39,1,13.7,,,-73.8637466430664,40.769901275634766,-73.9887924194336,40.72216033935547,1,N,1,43.0,1.0,0.5,0.3,5.0,5.54,55.34 +1,2016-01-13 20:45:08,2016-01-13 20:56:29,1,1.5,,,-74.00151824951172,40.74666976928711,-74.00115966796875,40.72658157348633,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +2,2016-01-16 00:06:49,2016-01-16 00:25:01,5,1.43,,,-73.98046875,40.730533599853516,-73.98931121826172,40.71812438964844,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +2,2016-01-13 16:19:25,2016-01-13 16:24:39,1,0.59,,,-73.98564910888672,40.75912094116211,-73.99034881591797,40.751338958740234,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-15 08:10:08,2016-01-15 08:16:57,1,0.8,,,-73.97715759277344,40.753597259521484,-73.98810577392578,40.75957489013672,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-06 11:29:43,2016-01-06 11:37:17,2,1.4,,,-74.00862121582031,40.71953582763672,-74.00753021240234,40.739498138427734,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +1,2016-01-04 12:26:33,2016-01-04 12:37:42,1,2.7,,,-73.87300109863281,40.7744255065918,-73.9121322631836,40.762046813964844,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-21 21:44:24,2016-01-21 21:49:54,1,0.57,,,-73.98030853271484,40.78369140625,-73.98220825195312,40.77599334716797,1,N,1,5.5,0.5,0.5,0.3,2.0,0.0,8.8 +1,2016-01-08 16:48:19,2016-01-08 16:53:57,1,1.0,,,-73.956298828125,40.779781341552734,-73.95272064208984,40.791709899902344,1,N,1,6.0,1.0,0.5,0.3,0.5,0.0,8.3 +2,2016-01-18 00:01:42,2016-01-18 00:11:58,2,1.78,,,-73.96600341796875,40.762062072753906,-73.98641967773438,40.7625732421875,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,11.3 +1,2016-01-04 15:19:47,2016-01-04 15:25:54,1,1.3,,,-73.92801666259766,40.769752502441406,-73.9424057006836,40.7540397644043,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-18 18:39:57,2016-01-18 18:57:03,1,3.6,,,-73.98468017578125,40.73215866088867,-73.98588562011719,40.76885223388672,1,N,1,15.0,0.0,0.5,0.3,1.5,0.0,17.3 +1,2016-01-30 21:28:43,2016-01-30 21:48:42,1,1.2,,,0.0,0.0,-73.99857330322266,40.724815368652344,1,N,1,12.5,0.5,0.5,0.3,2.75,0.0,16.55 +1,2016-01-09 10:27:53,2016-01-09 10:40:25,4,1.7,,,-73.982421875,40.762855529785156,-73.98942565917969,40.74176025390625,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-10 11:08:02,2016-01-10 11:10:31,1,0.5,,,-73.98873901367188,40.74607467651367,-73.98565673828125,40.75204849243164,1,N,1,4.0,0.0,0.5,0.3,1.2,0.0,6.0 +1,2016-01-11 18:20:33,2016-01-11 18:26:33,1,0.7,,,-73.99308776855469,40.742401123046875,-73.99140167236328,40.750091552734375,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-07 12:26:48,2016-01-07 12:33:54,1,0.9,,,-73.95921325683594,40.771785736083984,-73.94871520996094,40.7777214050293,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-09 13:00:48,2016-01-09 13:03:24,1,0.54,,,-73.9548110961914,40.78057861328125,-73.95999145507812,40.773681640625,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-20 07:07:19,2016-01-20 07:23:19,1,3.95,,,-74.00334930419922,40.743858337402344,-74.0074462890625,40.70508575439453,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,19.56 +2,2016-01-09 14:34:34,2016-01-09 14:48:54,1,1.91,,,-73.99559020996094,40.74017333984375,-73.97763061523438,40.743812561035156,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-04 18:25:30,2016-01-04 18:32:28,1,1.19,,,-73.97198486328125,40.762168884277344,-73.96053314208984,40.772682189941406,1,N,1,7.0,1.0,0.5,0.3,2.2,0.0,11.0 +2,2016-01-16 11:46:27,2016-01-16 11:56:56,2,1.57,,,-73.98728942871094,40.7226676940918,-73.99747467041016,40.73661804199219,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-16 19:31:44,2016-01-16 19:52:36,2,3.3,,,-73.97842407226562,40.74561309814453,-73.97107696533203,40.78300094604492,1,N,1,16.0,0.0,0.5,0.3,3.35,0.0,20.15 +2,2016-01-01 02:11:42,2016-01-01 02:49:05,1,10.04,,,-73.97664642333984,40.76593017578125,-73.91532135009766,40.87883377075195,1,N,2,34.0,0.5,0.5,0.3,0.0,2.54,37.84 +2,2016-01-15 22:35:15,2016-01-15 23:07:53,1,16.49,,,-73.78953552246094,40.646793365478516,-73.96136474609375,40.660003662109375,1,N,1,47.0,0.5,0.5,0.3,9.66,0.0,57.96 +1,2016-01-07 08:07:52,2016-01-07 08:16:57,1,2.1,,,-73.98469543457031,40.77436447143555,-74.005615234375,40.750911712646484,1,N,1,9.0,0.0,0.5,0.3,2.0,0.0,11.8 +2,2016-01-20 15:10:28,2016-01-20 15:28:10,2,2.01,,,-73.95481872558594,40.78947067260742,-73.96488952636719,40.765769958496094,1,N,1,12.5,0.0,0.5,0.3,3.32,0.0,16.62 +1,2016-01-20 11:16:43,2016-01-20 11:33:46,1,1.5,,,-73.97344207763672,40.75826644897461,-73.95417022705078,40.76702117919922,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,14.75 +1,2016-01-06 15:51:06,2016-01-06 15:58:51,1,1.0,,,-73.98260498046875,40.745601654052734,-73.9946060180664,40.73892593383789,1,Y,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-13 08:03:33,2016-01-13 08:41:13,6,7.75,,,-73.98326110839844,40.693260192871094,-73.9684829711914,40.762481689453125,1,N,1,31.5,0.0,0.5,0.3,3.0,0.0,35.3 +2,2016-01-27 16:54:14,2016-01-27 17:03:48,2,0.79,,,-73.99347686767578,40.74198913574219,-73.98240661621094,40.73590850830078,1,N,1,7.5,1.0,0.5,0.3,1.75,0.0,11.05 +2,2016-01-01 08:51:33,2016-01-01 08:55:02,1,0.96,,,-73.99620056152344,40.766571044921875,-74.00031280517578,40.762001037597656,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-04 22:42:55,2016-01-04 22:54:26,1,2.19,,,-73.96887969970703,40.75831985473633,-73.99849700927734,40.75688171386719,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-11 06:52:52,2016-01-11 06:56:38,1,0.82,,,-73.9827651977539,40.74203872680664,-73.99211120605469,40.749576568603516,1,N,1,4.5,0.0,0.5,0.3,0.5,0.0,5.8 +1,2016-01-01 16:41:35,2016-01-01 16:46:58,2,1.6,,,-73.98213195800781,40.773990631103516,-73.9742660522461,40.79378128051758,1,N,1,7.0,1.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-13 12:43:26,2016-01-13 13:00:25,1,6.04,,,-73.97709655761719,40.75934982299805,-74.01233673095703,40.702640533447266,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,20.8 +2,2016-01-14 23:30:09,2016-01-14 23:48:10,1,14.44,,,-74.06057739257812,40.7960205078125,-74.26464080810547,40.91476058959961,5,N,2,121.0,0.0,0.0,0.3,0.0,12.5,133.8 +2,2016-01-15 11:43:30,2016-01-15 11:46:55,1,0.45,,,-73.98204040527344,40.77543640136719,-73.98114776611328,40.78131103515625,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,5.76 +2,2016-01-02 10:28:40,2016-01-02 10:35:11,2,1.26,,,-74.0052261352539,40.73621368408203,-74.0023422241211,40.72169876098633,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-11 23:07:00,2016-01-11 23:14:52,1,1.4,,,-73.98963928222656,40.66912841796875,-73.97473907470703,40.67992401123047,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +1,2016-01-06 18:26:27,2016-01-06 18:35:59,1,1.6,,,-73.9702377319336,40.7615966796875,-73.95831298828125,40.780731201171875,1,N,1,8.5,1.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-24 20:07:15,2016-01-24 20:15:11,1,1.22,,,-73.97083282470703,40.751808166503906,-73.9910659790039,40.75783920288086,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,10.38 +2,2016-01-27 12:09:27,2016-01-27 12:41:14,1,1.92,,,-73.99478149414062,40.74030303955078,-73.99635314941406,40.76081466674805,1,N,1,19.0,0.0,0.5,0.3,3.0,0.0,22.8 +2,2016-01-27 16:36:48,2016-01-27 16:54:20,1,5.52,,,-73.97864532470703,40.75127029418945,-74.00889587402344,40.70254135131836,1,N,1,18.5,1.0,0.5,0.3,4.06,0.0,24.36 +2,2016-01-01 04:39:36,2016-01-01 04:57:20,1,7.75,,,-73.98799896240234,40.72240447998047,-73.97257995605469,40.79592514038086,5,N,1,40.0,0.0,0.0,0.3,8.06,0.0,48.36 +1,2016-01-07 09:33:48,2016-01-07 09:47:53,1,1.6,,,-74.00431060791016,40.752403259277344,-73.9930419921875,40.738399505615234,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-21 22:46:37,2016-01-21 22:56:57,1,1.88,,,-73.97981262207031,40.776058197021484,-73.98761749267578,40.75419998168945,1,N,1,9.0,0.5,0.5,0.3,3.09,0.0,13.39 +2,2016-01-16 22:57:33,2016-01-16 23:06:32,1,1.86,,,-73.9823989868164,40.77302551269531,-73.9917984008789,40.75016784667969,1,N,1,8.5,0.5,0.5,0.3,1.5,0.0,11.3 +2,2016-01-04 13:15:01,2016-01-04 13:17:28,1,0.9,,,-73.94561767578125,40.782005310058594,-73.94442749023438,40.79157257080078,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +2,2016-01-14 17:22:51,2016-01-14 17:39:37,1,2.43,,,-73.97508239746094,40.74599838256836,-73.96180725097656,40.773719787597656,1,N,1,12.5,1.0,0.5,0.3,1.0,0.0,15.3 +2,2016-01-03 08:22:37,2016-01-03 08:37:42,1,10.83,,,-73.97622680664062,40.74509048461914,-73.87079620361328,40.774051666259766,1,N,1,30.5,0.0,0.5,0.3,7.37,5.54,44.21 +2,2016-01-26 20:39:43,2016-01-26 20:47:40,5,1.3,,,-73.98152923583984,40.749290466308594,-73.99893188476562,40.74717330932617,1,N,1,6.5,0.5,0.5,0.3,1.0,0.0,8.8 +2,2016-01-28 18:18:28,2016-01-28 18:31:38,6,2.54,,,-73.99575805664062,40.76450729370117,-74.00431823730469,40.73406982421875,1,N,1,11.0,1.0,0.5,0.3,3.2,0.0,16.0 +2,2016-01-09 23:46:51,2016-01-09 23:51:20,1,1.21,,,-73.97012329101562,40.768428802490234,-73.9772720336914,40.753849029541016,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-17 22:02:24,2016-01-17 22:20:58,1,3.87,,,-74.00091552734375,40.72956466674805,-73.9610824584961,40.75918197631836,1,N,1,15.5,0.5,0.5,0.3,2.0,0.0,18.8 +1,2016-01-29 11:08:29,2016-01-29 11:25:26,1,0.8,,,-74.00597381591797,40.751216888427734,-73.99642944335938,40.75830078125,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +1,2016-01-16 18:43:45,2016-01-16 18:48:25,2,0.7,,,-74.00760650634766,40.740867614746094,-74.00576782226562,40.74543380737305,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-06 11:43:48,2016-01-06 12:05:05,2,2.16,,,-73.97968292236328,40.739620208740234,-73.9996566772461,40.72043991088867,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +1,2016-01-19 19:37:19,2016-01-19 19:41:51,1,0.8,,,-73.99351501464844,40.72145462036133,-73.98634338378906,40.72962188720703,1,N,1,5.0,1.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-06 08:20:54,2016-01-06 08:26:42,1,0.8,,,-73.99170684814453,40.74941635131836,-73.987548828125,40.74163818359375,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-02 16:07:32,2016-01-02 16:28:38,1,3.59,,,-74.0009536743164,40.741912841796875,-73.96517181396484,40.77214050292969,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,20.76 +1,2016-01-06 14:30:51,2016-01-06 14:42:10,1,1.8,,,-73.98307800292969,40.76759719848633,-73.96661376953125,40.78901290893555,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-26 11:53:31,2016-01-26 12:03:26,1,3.4,,,-74.00791931152344,40.711769104003906,-73.97604370117188,40.73249435424805,1,N,1,12.5,0.0,0.5,0.3,3.95,0.0,17.25 +1,2016-01-05 20:09:42,2016-01-05 20:15:24,1,1.5,,,-73.99872589111328,40.74540710449219,-73.996337890625,40.76237106323242,1,N,1,7.0,0.5,0.5,0.3,2.05,0.0,10.35 +1,2016-01-15 10:45:33,2016-01-15 11:54:51,2,28.1,,,-73.77915954589844,40.64671325683594,-74.13597869873047,40.782344818115234,5,N,1,129.0,0.0,0.0,0.3,0.0,10.5,139.8 +2,2016-01-26 06:28:09,2016-01-26 06:45:56,1,4.66,,,-73.96019744873047,40.813358306884766,-73.95234680175781,40.766571044921875,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,17.3 +1,2016-01-20 19:21:27,2016-01-20 19:36:09,1,1.0,,,-73.97460174560547,40.74208068847656,-73.98920440673828,40.747840881347656,1,N,1,10.0,1.0,0.5,0.3,2.35,0.0,14.15 +2,2016-01-29 14:49:23,2016-01-29 15:10:25,4,1.73,,,-73.97821807861328,40.75080871582031,-74.00411987304688,40.752601623535156,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,17.16 +2,2016-01-07 22:33:16,2016-01-07 22:36:39,6,0.69,,,-73.98944091796875,40.73017883300781,-73.98090362548828,40.72959899902344,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,6.96 +2,2016-01-30 11:40:41,2016-01-30 11:58:07,1,3.11,,,-73.94766235351562,40.775150299072266,-73.98149108886719,40.75128936767578,1,N,1,14.0,0.0,0.5,0.3,1.0,0.0,15.8 +2,2016-01-22 11:03:37,2016-01-22 11:08:29,1,0.75,,,-73.96365356445312,40.75688934326172,-73.95594024658203,40.76369857788086,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-01 04:06:03,2016-01-01 04:39:00,2,4.5,,,-73.98194122314453,40.75509262084961,-73.85609436035156,40.72757339477539,1,N,3,2.5,0.5,0.5,0.3,0.0,0.0,3.8 +1,2016-01-29 23:34:14,2016-01-29 23:51:50,1,4.4,,,-73.95930480957031,40.720497131347656,-73.99020385742188,40.687469482421875,1,N,1,17.0,0.5,0.5,0.3,3.65,0.0,21.95 +1,2016-01-21 19:04:54,2016-01-21 19:11:22,1,0.6,,,-74.00574493408203,40.745758056640625,-73.9963607788086,40.74041748046875,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-05 20:03:26,2016-01-05 20:09:19,1,0.75,,,-73.99358367919922,40.73361587524414,-74.0021743774414,40.72818374633789,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +2,2016-01-11 21:36:46,2016-01-11 21:42:58,1,1.51,,,0.0,0.0,0.0,0.0,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,10.38 +1,2016-01-15 00:25:01,2016-01-15 00:52:53,1,6.3,,,-73.98945617675781,40.72999572753906,-73.90831756591797,40.765380859375,1,N,2,24.0,0.5,0.5,0.3,0.0,0.0,25.3 +2,2016-01-21 11:33:04,2016-01-21 11:41:45,6,1.0,,,-73.98255157470703,40.755760192871094,-73.97239685058594,40.76074981689453,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-07 20:24:13,2016-01-07 20:31:22,1,0.9,,,-73.98180389404297,40.74876022338867,-73.9715576171875,40.754371643066406,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-15 02:13:07,2016-01-15 02:25:52,1,3.1,,,-73.98934936523438,40.745330810546875,-73.9557113647461,40.77250289916992,1,N,1,12.5,0.5,0.5,0.3,2.75,0.0,16.55 +1,2016-01-26 00:01:04,2016-01-26 00:13:11,1,2.0,,,-73.9872055053711,40.741493225097656,-73.99958038330078,40.71952819824219,1,N,1,10.0,0.5,0.5,0.3,2.0,0.0,13.3 +1,2016-01-21 09:55:28,2016-01-21 10:10:13,1,2.2,,,-73.96017456054688,40.76197814941406,-73.95355224609375,40.78705978393555,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-09 14:44:07,2016-01-09 14:52:14,1,1.4,,,-73.94584655761719,40.775306701660156,-73.96310424804688,40.76787567138672,1,N,1,7.5,0.0,0.5,0.3,2.05,0.0,10.35 +1,2016-01-04 13:51:49,2016-01-04 13:58:59,1,1.2,,,-73.89217376708984,40.76873016357422,-73.9115982055664,40.77547836303711,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +1,2016-01-15 00:32:50,2016-01-15 01:03:35,1,6.0,,,-73.99024963378906,40.75148010253906,-73.97209930419922,40.68029022216797,1,N,1,23.5,0.5,0.5,0.3,6.2,0.0,31.0 +2,2016-01-26 11:04:02,2016-01-26 11:23:50,1,1.65,,,-73.97821044921875,40.75410842895508,-73.96293640136719,40.77517318725586,1,N,1,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-02 13:05:35,2016-01-02 13:10:02,1,0.91,,,-73.97093963623047,40.755760192871094,-73.97605895996094,40.763946533203125,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-03 00:30:36,2016-01-03 00:37:08,1,1.2,,,-73.95301818847656,40.78667449951172,-73.94171142578125,40.80121612548828,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-02 19:29:59,2016-01-02 19:44:21,1,0.8,,,-73.98323059082031,40.760719299316406,-73.99099731445312,40.75042724609375,1,N,1,9.5,0.0,0.5,0.3,1.0,0.0,11.3 +1,2016-01-05 18:29:36,2016-01-05 18:51:56,2,3.1,,,-73.96936798095703,40.80038070678711,-73.9818344116211,40.76230239868164,1,N,1,16.0,1.0,0.5,0.3,3.55,0.0,21.35 +1,2016-01-13 16:05:25,2016-01-13 16:20:03,1,3.3,,,-73.99642944335938,40.71538543701172,-73.94621276855469,40.714866638183594,1,N,1,13.5,1.0,0.5,0.3,3.0,0.0,18.3 +1,2016-01-01 02:34:39,2016-01-01 02:38:49,1,0.8,,,-73.96332550048828,40.774742126464844,-73.96302795410156,40.767433166503906,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-28 01:29:51,2016-01-28 01:31:53,1,0.75,,,-73.97467803955078,40.76160430908203,-73.9774169921875,40.75347900390625,1,N,1,4.0,0.5,0.5,0.3,1.32,0.0,6.62 +1,2016-01-03 19:10:50,2016-01-03 19:13:29,1,0.2,,,-73.97592163085938,40.74968338012695,-73.97166442871094,40.748409271240234,1,N,1,3.5,0.0,0.5,0.3,1.05,0.0,5.35 +1,2016-01-21 19:59:20,2016-01-21 20:22:39,2,4.3,,,-73.97798919677734,40.75251770019531,-74.00779724121094,40.72449493408203,1,N,1,18.5,1.0,0.5,0.3,5.05,0.0,25.35 +1,2016-01-05 09:38:08,2016-01-05 09:48:36,1,1.6,,,-73.98219299316406,40.74900436401367,-73.9952621459961,40.729698181152344,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-25 21:25:25,2016-01-25 21:45:12,1,6.84,,,-73.96833038330078,40.76182556152344,-73.99305725097656,40.69751739501953,1,N,1,22.0,0.5,0.5,0.3,5.0,0.0,28.3 +2,2016-01-22 11:45:14,2016-01-22 12:09:43,1,10.09,,,-73.87301635742188,40.774051666259766,-73.97065734863281,40.75178146362305,1,N,1,29.0,0.0,0.5,0.3,7.07,5.54,42.41 +1,2016-01-04 19:57:13,2016-01-04 20:34:14,1,20.2,,,-73.78618621826172,40.64337921142578,-73.94888305664062,40.8299674987793,2,N,1,52.0,0.0,0.5,0.3,13.2,0.0,66.0 +2,2016-01-24 18:30:55,2016-01-24 18:44:37,1,2.14,,,-73.97740173339844,40.75876998901367,-73.97840881347656,40.7830696105957,1,N,1,10.5,0.0,0.5,0.3,2.0,0.0,13.3 +2,2016-01-05 06:59:42,2016-01-05 07:01:03,1,0.52,,,-73.992919921875,40.730010986328125,-73.99799346923828,40.723609924316406,1,N,1,3.5,0.0,0.5,0.3,0.86,0.0,5.16 +1,2016-01-16 19:36:49,2016-01-16 19:42:36,1,1.2,,,-73.96074676513672,40.76979446411133,-73.94599914550781,40.77880859375,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +2,2016-01-30 10:11:26,2016-01-30 10:27:57,1,11.87,,,-73.80732727050781,40.656158447265625,-73.9186019897461,40.73862838745117,1,N,2,32.5,0.0,0.5,0.3,0.0,0.0,33.3 +2,2016-01-30 19:04:31,2016-01-30 19:15:27,1,0.88,,,-73.99784851074219,40.72433090209961,-73.99217224121094,40.72111892700195,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-21 21:18:00,2016-01-21 21:28:18,1,1.2,,,-73.983154296875,40.76805877685547,-73.99314880371094,40.75751876831055,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,11.15 +1,2016-01-04 05:20:56,2016-01-04 05:27:27,1,2.0,,,-73.98119354248047,40.7739372253418,-73.99111938476562,40.750423431396484,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +2,2016-01-12 08:03:58,2016-01-12 08:07:14,1,0.64,,,-73.98301696777344,40.7391242980957,-73.98250579833984,40.745365142822266,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +2,2016-01-19 20:00:00,2016-01-19 20:12:29,5,1.86,,,-73.97496032714844,40.75244903564453,-73.9666976928711,40.77233123779297,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +1,2016-01-21 16:10:33,2016-01-21 16:29:15,2,1.9,,,-73.95724487304688,40.78551483154297,-73.9748306274414,40.76091766357422,1,N,1,13.0,1.0,0.5,0.3,3.7,0.0,18.5 +2,2016-01-02 14:54:46,2016-01-02 15:01:33,1,1.5,,,-73.96993255615234,40.76557159423828,-73.97273254394531,40.78059387207031,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-16 23:21:58,2016-01-16 23:35:35,3,2.7,,,-73.97738647460938,40.7642936706543,-73.97078704833984,40.789188385009766,1,N,1,11.5,0.5,0.5,0.3,3.2,0.0,16.0 +1,2016-01-23 00:17:15,2016-01-23 00:44:30,2,4.6,,,-73.99542236328125,40.724998474121094,-73.92423248291016,40.707393646240234,1,N,1,20.0,0.5,0.5,0.3,4.26,0.0,25.56 +2,2016-01-16 14:06:08,2016-01-16 14:13:31,2,0.76,,,-73.9821548461914,40.768436431884766,-73.97124481201172,40.76386260986328,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-16 21:23:11,2016-01-16 21:30:35,1,1.8,,,-73.97653198242188,40.76454162597656,-73.98079681396484,40.74446105957031,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +2,2016-01-14 11:29:26,2016-01-14 11:39:04,1,1.85,,,-73.98049926757812,40.76026916503906,-73.9581298828125,40.768680572509766,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-10 09:00:20,2016-01-10 09:02:06,1,0.79,,,-73.9631118774414,40.7988395690918,-73.97187805175781,40.7905387878418,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-30 23:26:12,2016-01-30 23:34:36,1,2.98,,,-73.9840087890625,40.72105026245117,-73.97252655029297,40.74974822998047,1,N,1,11.5,0.5,0.5,0.3,1.5,0.0,14.3 +2,2016-01-20 16:35:46,2016-01-20 16:37:12,1,0.33,,,-73.9979476928711,40.76145935058594,-73.99833679199219,40.757511138916016,1,N,2,3.0,1.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-04 21:58:15,2016-01-04 22:19:23,3,12.25,,,-73.8642349243164,40.76985168457031,-73.97712707519531,40.72646713256836,1,N,1,35.0,0.5,0.5,0.3,8.37,5.54,50.21 +2,2016-01-27 09:10:22,2016-01-27 09:30:53,5,1.75,,,-73.96992492675781,40.753562927246094,-73.99230194091797,40.74929428100586,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-22 01:33:17,2016-01-22 01:40:54,1,2.7,,,-73.97969055175781,40.751609802246094,-73.97126007080078,40.78257751464844,1,N,1,9.5,0.5,0.5,0.3,1.6,0.0,12.4 +2,2016-01-28 21:36:17,2016-01-28 21:44:29,1,1.27,,,-73.99434661865234,40.73543167114258,-73.9864730834961,40.747501373291016,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +2,2016-01-15 17:31:52,2016-01-15 17:54:31,1,3.54,,,-73.99170684814453,40.749088287353516,-73.95458221435547,40.77804183959961,1,N,1,16.5,1.0,0.5,0.3,2.5,0.0,20.8 +2,2016-01-20 08:05:10,2016-01-20 08:24:14,5,1.13,,,-73.95014190673828,40.77616882324219,-73.96415710449219,40.772132873535156,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,15.36 +2,2016-01-14 12:46:25,2016-01-14 13:02:00,5,4.6,,,-73.97606658935547,40.7888298034668,-74.00965118408203,40.73960876464844,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,17.3 +2,2016-01-17 05:34:36,2016-01-17 05:49:30,2,4.73,,,-73.99803924560547,40.737552642822266,-73.98200988769531,40.68180465698242,1,N,1,16.5,0.5,0.5,0.3,0.0,0.0,17.8 +2,2016-01-12 21:31:46,2016-01-12 21:37:47,1,0.93,,,-73.98692321777344,40.73958206176758,-73.97804260253906,40.7510986328125,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-02 18:54:25,2016-01-02 18:58:44,2,0.6,,,-73.979248046875,40.749637603759766,-73.97364044189453,40.757076263427734,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +1,2016-01-04 20:35:36,2016-01-04 21:14:26,1,10.5,,,-73.92742919921875,40.65121078491211,-73.98761749267578,40.75065612792969,1,N,1,34.5,0.5,0.5,0.3,7.15,0.0,42.95 +2,2016-01-15 21:01:43,2016-01-15 21:10:25,2,1.44,,,-73.97508239746094,40.7613410949707,-73.97557067871094,40.74536895751953,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-04 09:26:44,2016-01-04 10:10:25,2,18.29,,,-73.78194427490234,40.64470672607422,-73.99164581298828,40.73522186279297,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,70.01 +1,2016-01-20 10:58:41,2016-01-20 11:02:18,1,0.4,,,-73.94947052001953,40.78096008300781,-73.95360565185547,40.7752571105957,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-30 00:05:31,2016-01-30 00:15:24,1,1.93,,,-73.95337677001953,40.77560043334961,-73.97827911376953,40.784080505371094,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,11.3 +2,2016-01-19 16:39:46,2016-01-19 16:54:58,1,1.4,,,-73.9804916381836,40.7469482421875,-74.00404357910156,40.75679016113281,1,N,1,10.5,1.0,0.5,0.3,1.5,0.0,13.8 +1,2016-01-07 12:51:50,2016-01-07 13:06:20,2,1.0,,,-73.9627685546875,40.77402114868164,-73.97102355957031,40.76155471801758,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-11 09:59:31,2016-01-11 10:06:50,1,1.5,,,-73.96369934082031,40.7979850769043,-73.95014190673828,40.78724670410156,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-01 21:31:26,2016-01-01 21:38:34,1,2.3,,,-73.98690032958984,40.761932373046875,-74.00609588623047,40.73980712890625,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-06 17:29:40,2016-01-06 17:56:09,2,10.4,,,-73.97402954101562,40.75110626220703,-73.87297058105469,40.77426528930664,1,N,1,30.0,1.0,0.5,0.3,9.34,5.54,46.68 +2,2016-01-21 00:41:47,2016-01-21 00:41:52,4,0.0,,,0.0,0.0,0.0,0.0,5,N,1,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-10 04:21:02,2016-01-10 04:29:34,1,2.87,,,-73.96517944335938,40.75543975830078,-73.92637634277344,40.74382019042969,1,N,1,10.5,0.5,0.5,0.3,2.0,0.0,13.8 +1,2016-01-20 17:00:19,2016-01-20 17:14:29,1,1.6,,,-73.95476531982422,40.76549530029297,-73.98120880126953,40.77354049682617,1,N,1,10.5,1.0,0.5,0.3,2.0,0.0,14.3 +2,2016-01-21 11:09:26,2016-01-21 11:18:59,1,0.97,,,-74.00729370117188,40.710655212402344,-74.00554656982422,40.71506118774414,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-12 13:58:14,2016-01-12 14:23:33,1,14.5,,,-73.86349487304688,40.76979446411133,-74.01506805419922,40.70918655395508,1,N,1,40.0,0.0,0.5,0.3,11.55,5.54,57.89 +2,2016-01-08 08:27:16,2016-01-08 08:51:47,6,3.12,,,-73.9476089477539,40.77545928955078,-73.98306274414062,40.7681999206543,1,N,1,17.0,0.0,0.5,0.3,3.56,0.0,21.36 +1,2016-01-09 09:21:20,2016-01-09 09:23:26,1,0.5,,,-73.9807357788086,40.73067855834961,-73.98851776123047,40.73308563232422,1,N,1,3.5,0.0,0.5,0.3,1.5,0.0,5.8 +2,2016-01-07 18:56:24,2016-01-07 19:09:05,1,1.8,,,-73.98230743408203,40.74536895751953,-74.0009765625,40.73666000366211,1,N,1,9.5,1.0,0.5,0.3,2.26,0.0,13.56 +2,2016-01-17 19:25:51,2016-01-17 19:32:35,1,1.95,,,-73.98123168945312,40.78105163574219,-73.9657211303711,40.80390167236328,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-14 19:45:57,2016-01-14 19:55:16,1,1.61,,,-73.99945831298828,40.763031005859375,-73.98323822021484,40.771400451660156,1,N,1,8.5,1.0,0.5,0.3,3.09,0.0,13.39 +2,2016-01-16 14:24:35,2016-01-16 14:28:56,4,0.94,,,-73.97647094726562,40.76382064819336,-73.97923278808594,40.753509521484375,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-02 00:09:55,2016-01-02 00:22:16,2,6.5,,,-73.98926544189453,40.71875762939453,-73.94769287109375,40.78337478637695,1,N,1,19.5,0.5,0.5,0.3,4.15,0.0,24.95 +2,2016-01-24 19:00:17,2016-01-24 19:19:25,2,10.09,,,-73.86263275146484,40.769405364990234,-73.96221160888672,40.762786865234375,1,N,1,29.0,0.0,0.5,0.3,4.5,5.54,39.84 +2,2016-01-01 01:32:38,2016-01-01 01:51:16,1,4.41,,,-73.99372100830078,40.721500396728516,-73.95545959472656,40.776710510253906,1,N,1,16.5,0.5,0.5,0.3,1.8,0.0,19.6 +2,2016-01-02 18:19:11,2016-01-02 18:25:18,2,1.07,,,-74.00011444091797,40.73291778564453,-74.00739288330078,40.7410888671875,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-17 03:06:01,2016-01-17 03:11:28,1,1.04,,,-73.98681640625,40.761329650878906,-73.98091125488281,40.755470275878906,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-22 13:23:40,2016-01-22 14:26:48,1,18.11,,,-73.79013061523438,40.64698028564453,-73.97785949707031,40.7637939453125,2,N,1,52.0,0.0,0.5,0.3,17.5,5.54,75.84 +1,2016-01-19 11:29:37,2016-01-19 11:54:17,1,2.8,,,-74.00556182861328,40.72578430175781,-74.00157165527344,40.756446838378906,1,N,1,17.0,0.0,0.5,0.3,3.0,0.0,20.8 +1,2016-01-19 15:25:46,2016-01-19 15:40:57,1,1.7,,,-73.99481201171875,40.7402458190918,-73.9920425415039,40.75939178466797,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +1,2016-01-07 23:19:14,2016-01-07 23:19:21,1,0.0,,,-74.00122833251953,40.73089599609375,-74.00122833251953,40.73089599609375,1,N,1,2.5,0.5,0.5,0.3,5.0,0.0,8.8 +1,2016-01-25 12:34:31,2016-01-25 12:54:50,1,0.6,,,-73.97708129882812,40.75394821166992,-73.98192596435547,40.75933074951172,1,N,1,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-19 21:59:23,2016-01-19 22:11:11,1,2.78,,,-73.98079681396484,40.76792907714844,-73.95157623291016,40.77838897705078,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +1,2016-01-02 12:13:00,2016-01-02 12:36:46,3,6.9,,,-74.01538848876953,40.704776763916016,-73.9721908569336,40.78142547607422,1,N,2,23.5,0.0,0.5,0.3,0.0,0.0,24.3 +2,2016-01-29 02:40:10,2016-01-29 02:50:15,1,1.25,,,-73.98515319824219,40.738590240478516,-74.00402069091797,40.742130279541016,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-18 15:26:36,2016-01-18 15:31:54,2,0.62,,,-73.98558044433594,40.760128021240234,-73.97989654541016,40.758365631103516,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-25 09:36:36,2016-01-25 09:43:26,1,1.22,,,-74.01783752441406,40.7094612121582,-74.0100326538086,40.702049255371094,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-16 18:03:55,2016-01-16 19:28:26,2,14.6,,,-73.97904968261719,40.75465393066406,-73.98951721191406,40.6197509765625,1,N,2,59.5,0.0,0.5,0.3,0.0,0.0,60.3 +1,2016-01-21 17:14:36,2016-01-21 17:27:35,1,1.3,,,-73.97700500488281,40.749542236328125,-73.97730255126953,40.762733459472656,1,N,1,9.5,1.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-25 13:36:46,2016-01-25 14:16:42,1,10.37,,,-73.87599182128906,40.77158737182617,-73.9808578491211,40.76775360107422,1,N,1,38.0,0.0,0.5,0.3,8.87,5.54,53.21 +1,2016-01-10 04:41:36,2016-01-10 04:48:49,1,2.4,,,-73.98343658447266,40.73834991455078,-73.9767074584961,40.764923095703125,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,11.3 +1,2016-01-13 20:14:42,2016-01-13 20:26:13,1,1.8,,,-73.97616577148438,40.75526428222656,-73.956298828125,40.7687873840332,1,N,1,9.5,1.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-27 21:47:00,2016-01-27 21:59:41,1,1.79,,,-73.97086334228516,40.7617301940918,-73.98999786376953,40.74702835083008,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +1,2016-01-01 02:24:14,2016-01-01 02:38:01,1,0.9,,,-73.998046875,40.76082992553711,-73.98826599121094,40.75960922241211,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,12.95 +1,2016-01-20 21:39:44,2016-01-20 21:54:25,1,2.9,,,-74.0000991821289,40.72861862182617,-74.00269317626953,40.760658264160156,1,N,1,13.0,0.5,0.5,0.3,2.85,0.0,17.15 +1,2016-01-13 07:56:11,2016-01-13 08:07:42,2,1.5,,,-73.962646484375,40.758365631103516,-73.96272277832031,40.775001525878906,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-03 11:40:06,2016-01-03 11:46:52,3,1.2,,,-73.9621353149414,40.779090881347656,-73.97308349609375,40.76398468017578,1,N,1,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-12 19:09:03,2016-01-12 19:17:25,3,1.15,,,-73.94863891601562,40.7975959777832,-73.95049285888672,40.78569412231445,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-16 15:58:35,2016-01-16 16:12:08,2,2.4,,,-73.97808074951172,40.75741195678711,-73.95294952392578,40.780357360839844,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,14.75 +2,2016-01-03 22:52:44,2016-01-03 23:12:12,1,5.35,,,-73.98274230957031,40.77699661254883,-74.00550079345703,40.71113204956055,1,N,1,18.0,0.5,0.5,0.3,3.0,0.0,22.3 +2,2016-01-25 09:28:43,2016-01-25 09:35:11,1,0.84,,,-73.98713684082031,40.77920913696289,-73.98188781738281,40.76926040649414,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-10 13:51:18,2016-01-10 13:57:50,1,1.1,,,-73.99343872070312,40.733184814453125,-73.9797592163086,40.73731994628906,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +2,2016-01-13 19:46:43,2016-01-13 19:50:34,1,0.51,,,-73.98115539550781,40.76567840576172,-73.98786163330078,40.765045166015625,1,N,1,4.5,1.0,0.5,0.3,1.58,0.0,7.88 +2,2016-01-23 14:23:27,2016-01-23 14:36:53,1,1.69,,,-73.94331359863281,40.836387634277344,-73.95829772949219,40.815670013427734,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-10 01:11:07,2016-01-10 01:14:05,1,0.7,,,-73.97664642333984,40.75059127807617,-73.98556518554688,40.74724578857422,1,N,1,4.5,0.5,0.5,0.3,1.15,0.0,6.95 +2,2016-01-21 20:39:01,2016-01-21 20:49:29,5,1.39,,,-73.99411010742188,40.75127029418945,-73.98529815673828,40.73974609375,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,12.25 +2,2016-01-20 08:16:32,2016-01-20 08:17:58,1,0.42,,,-74.00604248046875,40.735355377197266,-74.00151062011719,40.73759841918945,1,N,1,3.5,0.0,0.5,0.3,1.7,0.0,6.0 +1,2016-01-13 10:46:10,2016-01-13 11:07:04,1,3.6,,,-73.98606872558594,40.759864807128906,-73.94964599609375,40.7845458984375,1,N,1,16.0,0.0,0.5,0.3,3.35,0.0,20.15 +2,2016-01-18 06:55:35,2016-01-18 06:56:08,1,0.0,,,-73.9632339477539,40.809146881103516,0.0,0.0,2,N,1,52.0,0.0,0.5,0.3,10.0,5.54,68.34 +2,2016-01-19 13:19:37,2016-01-19 13:51:28,1,4.41,,,-73.95254516601562,40.792301177978516,-73.98381042480469,40.738983154296875,1,N,1,22.0,0.0,0.5,0.3,2.0,0.0,24.8 +1,2016-01-06 14:40:10,2016-01-06 14:51:02,1,1.9,,,-73.99011993408203,40.733375549316406,-73.97650909423828,40.75815963745117,1,N,1,9.5,0.0,0.5,0.3,2.55,0.0,12.85 +2,2016-01-09 21:28:03,2016-01-09 21:38:03,3,1.74,,,-74.00128936767578,40.7311897277832,-74.00730895996094,40.71467208862305,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-29 08:14:50,2016-01-29 08:18:57,1,0.6,,,-74.01538848876953,40.715843200683594,-74.01754760742188,40.710487365722656,1,N,1,5.0,0.0,0.5,0.3,1.7,0.0,7.5 +2,2016-01-17 04:23:19,2016-01-17 04:48:16,1,8.63,,,-73.98944854736328,40.72787857055664,-73.9408187866211,40.81155014038086,1,N,1,26.0,0.5,0.5,0.3,1.0,0.0,28.3 +1,2016-01-20 13:46:00,2016-01-20 13:50:57,1,0.7,,,-73.9885025024414,40.73690414428711,-73.97863006591797,40.73604202270508,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-30 14:58:50,2016-01-30 15:11:54,2,1.1,,,-73.99685668945312,40.73723220825195,-73.98921966552734,40.726505279541016,1,N,1,9.5,0.0,0.5,0.3,1.5,0.0,11.8 +1,2016-01-09 00:59:38,2016-01-09 01:06:39,5,1.4,,,0.0,0.0,0.0,0.0,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-29 08:32:04,2016-01-29 08:41:22,1,0.9,,,-73.96224975585938,40.770267486572266,-73.97159576416016,40.76042938232422,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-13 20:42:17,2016-01-13 21:01:15,1,6.59,,,-73.98641967773438,40.74617004394531,-73.9577407836914,40.8161506652832,1,N,2,22.0,0.5,0.5,0.3,0.0,0.0,23.3 +1,2016-01-27 07:39:49,2016-01-27 07:41:50,1,0.5,,,-73.95206451416016,40.77313232421875,-73.95405578613281,40.77803421020508,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-13 12:29:54,2016-01-13 12:35:09,1,0.7,,,-74.00491333007812,40.73741149902344,-73.99581146240234,40.745201110839844,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-15 13:16:49,2016-01-15 13:27:04,4,2.07,,,-73.98216247558594,40.771976470947266,-73.96576690673828,40.79543685913086,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-13 17:24:45,2016-01-13 18:23:44,1,17.6,,,-73.7902603149414,40.643775939941406,-73.98638916015625,40.718074798583984,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +2,2016-01-26 22:51:54,2016-01-26 23:15:29,1,5.21,,,-73.97093963623047,40.75558090209961,-73.91251373291016,40.77082824707031,1,N,2,20.5,0.5,0.5,0.3,0.0,0.0,21.8 +1,2016-01-13 10:53:38,2016-01-13 11:03:35,2,1.5,,,-73.98210906982422,40.76874923706055,-73.97242736816406,40.785499572753906,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +1,2016-01-29 11:05:29,2016-01-29 11:21:01,1,1.4,,,-73.9852294921875,40.72772216796875,-73.99431610107422,40.74089813232422,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-22 11:35:09,2016-01-22 11:44:28,1,1.48,,,-73.96772766113281,40.78763961791992,-73.98535919189453,40.778751373291016,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-04 07:55:17,2016-01-04 08:09:39,3,0.83,,,-73.983642578125,40.759700775146484,-73.97486877441406,40.7533073425293,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-28 19:41:38,2016-01-28 19:48:18,1,0.79,,,-73.98825073242188,40.74325180053711,-73.9957275390625,40.73313903808594,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-04 05:05:17,2016-01-04 05:24:44,1,9.9,,,-73.97666931152344,40.76607894897461,-73.8613052368164,40.76805877685547,1,N,1,28.5,0.5,0.5,0.3,5.95,0.0,35.75 +1,2016-01-20 08:41:58,2016-01-20 08:56:02,1,1.6,,,-73.98157501220703,40.76707077026367,-73.96189880371094,40.76789855957031,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-30 18:52:56,2016-01-30 19:00:57,2,1.0,,,-73.99407958984375,40.75106430053711,-73.98423767089844,40.7615966796875,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-25 09:18:28,2016-01-25 09:21:20,3,0.54,,,-73.98058319091797,40.745182037353516,-73.98625183105469,40.74016571044922,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,5.76 +2,2016-01-24 11:43:44,2016-01-24 11:52:46,1,1.47,,,-73.98894500732422,40.73671340942383,-73.99430847167969,40.750953674316406,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-10 09:36:54,2016-01-10 09:45:57,1,1.46,,,-74.00653839111328,40.73900604248047,-73.99012756347656,40.75227737426758,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-29 11:15:48,2016-01-29 11:26:53,1,1.0,,,-73.96879577636719,40.786163330078125,-73.96432495117188,40.774574279785156,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +2,2016-01-14 18:00:56,2016-01-14 18:04:40,1,0.48,,,-73.98004150390625,40.7807502746582,-73.98013305664062,40.78567886352539,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-22 19:36:08,2016-01-22 19:46:06,1,1.1,,,-73.97857666015625,40.752803802490234,-73.9907455444336,40.75102615356445,1,N,1,8.0,1.0,0.5,0.3,2.9,0.0,12.7 +1,2016-01-05 19:53:00,2016-01-05 19:58:35,1,0.7,,,-73.99529266357422,40.74388122558594,-73.98500061035156,40.74362564086914,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-16 15:22:39,2016-01-16 15:53:33,2,3.63,,,-73.98851776123047,40.7499885559082,-73.98143768310547,40.71717071533203,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,21.3 +2,2016-01-11 10:00:36,2016-01-11 10:11:28,1,1.39,,,-73.96438598632812,40.767417907714844,-73.9869155883789,40.77586364746094,1,N,1,9.0,0.0,0.5,0.3,2.0,0.0,11.8 +1,2016-01-15 21:36:33,2016-01-15 22:06:18,3,4.0,,,-73.99185180664062,40.7264404296875,-73.98125457763672,40.77359390258789,1,N,1,20.5,0.5,0.5,0.3,4.35,0.0,26.15 +1,2016-01-26 13:03:10,2016-01-26 13:36:08,1,15.9,,,-73.98640441894531,40.73540115356445,-74.18147277832031,40.68770217895508,3,N,1,63.0,0.0,0.0,0.3,14.75,10.5,88.55 +1,2016-01-03 08:43:30,2016-01-03 08:57:47,3,8.2,,,-73.95187377929688,40.7864875793457,-73.86135864257812,40.7680549621582,1,N,2,23.5,0.0,0.5,0.3,0.0,5.54,29.84 +2,2016-01-24 21:02:37,2016-01-24 21:11:55,1,1.6,,,-73.98003387451172,40.76081848144531,-73.9935531616211,40.74568557739258,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-20 19:01:31,2016-01-20 19:07:18,1,0.9,,,-73.99861907958984,40.73393249511719,-73.99187469482422,40.74445343017578,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-17 17:17:52,2016-01-17 17:37:38,1,6.55,,,-74.01400756835938,40.71262741088867,-73.9766845703125,40.75187301635742,1,N,1,21.5,0.0,0.5,0.3,4.46,0.0,26.76 +2,2016-01-09 23:31:28,2016-01-09 23:39:12,2,2.0,,,-74.01535034179688,40.709930419921875,-74.009765625,40.73796844482422,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-07 17:07:43,2016-01-07 17:17:10,2,2.01,,,-73.99667358398438,40.752925872802734,-73.97765350341797,40.76372146606445,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-14 05:59:29,2016-01-14 06:03:16,1,0.8,,,-73.98982238769531,40.75670623779297,-73.97904968261719,40.753440856933594,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-21 21:53:37,2016-01-21 21:58:24,1,0.6,,,-73.95926666259766,40.774620056152344,-73.96552276611328,40.76592254638672,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-23 12:41:27,2016-01-23 12:42:42,1,0.2,,,-73.99107360839844,40.73019027709961,-73.98890686035156,40.73082733154297,1,N,1,3.0,0.0,0.5,0.3,1.5,0.0,5.3 +2,2016-01-04 23:29:03,2016-01-04 23:56:47,5,10.9,,,-73.87318420410156,40.77412414550781,-73.98258972167969,40.7672004699707,1,N,1,33.5,0.5,0.5,0.3,8.07,5.54,48.41 +2,2016-01-25 11:20:36,2016-01-25 11:48:49,1,2.54,,,-73.95194244384766,40.78156661987305,-73.97730255126953,40.75817108154297,1,N,2,17.5,0.0,0.5,0.3,0.0,0.0,18.3 +2,2016-01-30 06:49:23,2016-01-30 07:07:25,1,4.91,,,-74.0080337524414,40.70465850830078,-74.00232696533203,40.75511932373047,1,N,1,18.5,0.0,0.5,0.3,3.86,0.0,23.16 +2,2016-01-25 21:53:40,2016-01-25 22:02:54,6,1.46,,,-73.99449157714844,40.734806060791016,-74.00724792480469,40.746585845947266,1,N,1,7.5,0.5,0.5,0.3,1.28,0.0,10.08 +2,2016-01-01 10:46:49,2016-01-01 10:52:06,6,1.12,,,-73.97508239746094,40.75868606567383,-73.96379852294922,40.761383056640625,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-25 19:19:15,2016-01-25 19:29:31,3,1.49,,,-73.99095916748047,40.73957061767578,-73.99342346191406,40.72444152832031,1,N,1,8.5,1.0,0.5,0.3,2.58,0.0,12.88 +1,2016-01-03 09:37:40,2016-01-03 09:45:24,1,2.1,,,-73.9610595703125,40.76175308227539,-73.97604370117188,40.751094818115234,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-19 09:44:19,2016-01-19 10:05:03,1,3.5,,,-73.98643493652344,40.777469635009766,-73.99122619628906,40.73912048339844,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,19.56 +2,2016-01-29 18:42:19,2016-01-29 18:57:09,5,1.32,,,-73.98216247558594,40.731239318847656,-74.00090789794922,40.74156188964844,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,14.76 +1,2016-01-10 14:53:55,2016-01-10 15:06:39,1,2.1,,,-73.98228454589844,40.740177154541016,-74.000732421875,40.72224044799805,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-08 13:12:05,2016-01-08 13:28:37,5,2.26,,,-73.97364807128906,40.76020050048828,-73.9503173828125,40.78369903564453,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +1,2016-01-28 22:51:39,2016-01-28 22:52:26,1,0.3,,,0.0,0.0,0.0,0.0,1,N,1,3.0,0.5,0.5,0.3,0.85,0.0,5.15 +1,2016-01-04 21:03:57,2016-01-04 21:14:47,1,2.2,,,-74.00381469726562,40.73833084106445,-73.98787689208984,40.76546859741211,1,N,1,10.0,0.5,0.5,0.3,2.0,0.0,13.3 +1,2016-01-13 19:02:10,2016-01-13 19:24:21,2,0.5,,,-73.93012237548828,40.73689270019531,-73.9715347290039,40.750858306884766,1,N,2,4.0,1.0,0.5,0.3,0.0,5.54,11.34 +2,2016-01-12 12:14:29,2016-01-12 12:34:00,1,3.79,,,-74.00908660888672,40.71330642700195,-73.99913787841797,40.76073455810547,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,20.76 +2,2016-01-06 07:01:35,2016-01-06 07:26:12,5,12.72,,,-74.00808715820312,40.722389221191406,-73.8616714477539,40.768280029296875,1,N,1,36.5,0.0,0.5,0.3,7.46,0.0,44.76 +1,2016-01-15 21:53:50,2016-01-15 22:03:55,1,2.5,,,-73.9832992553711,40.760398864746094,-73.9782485961914,40.79000473022461,1,N,1,10.0,0.5,0.5,0.3,1.7,0.0,13.0 +2,2016-01-22 18:20:33,2016-01-22 18:28:10,5,1.33,,,-73.97064208984375,40.764060974121094,-73.95642852783203,40.77528762817383,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-06 06:23:51,2016-01-06 06:25:36,1,0.6,,,-73.95841217041016,40.775665283203125,-73.96501159667969,40.769004821777344,1,N,1,4.0,0.0,0.5,0.3,0.86,0.0,5.66 +2,2016-01-08 19:48:56,2016-01-08 20:08:09,1,2.33,,,-74.00862121582031,40.73300552368164,-73.98986053466797,40.717132568359375,1,N,2,13.0,1.0,0.5,0.3,0.0,0.0,14.8 +1,2016-01-07 18:50:31,2016-01-07 18:54:24,2,0.7,,,-73.97952270507812,40.7519645690918,-73.97300720214844,40.758766174316406,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-03 11:54:35,2016-01-03 12:01:10,1,1.32,,,-73.9919662475586,40.759483337402344,-73.99315643310547,40.74713134765625,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-30 21:05:20,2016-01-30 21:12:24,5,1.5,,,-73.95999145507812,40.81364059448242,-73.97183227539062,40.79484176635742,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +1,2016-01-19 12:06:57,2016-01-19 12:13:07,1,0.9,,,-73.99503326416016,40.740142822265625,-74.00396728515625,40.73348617553711,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-16 18:11:16,2016-01-16 18:15:33,2,0.9,,,-73.97267150878906,40.780941009521484,-73.9615249633789,40.780067443847656,1,N,1,5.5,0.0,0.5,0.3,1.55,0.0,7.85 +2,2016-01-21 17:07:40,2016-01-21 17:56:43,1,10.56,,,-73.87525939941406,40.77389144897461,-73.97714233398438,40.76386260986328,1,N,2,38.0,1.0,0.5,0.3,0.0,5.54,45.34 +1,2016-01-16 17:50:05,2016-01-16 17:56:40,1,1.2,,,-73.97003936767578,40.761112213134766,-73.98201751708984,40.7467155456543,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-28 18:21:44,2016-01-28 18:35:22,1,1.37,,,-74.00560760498047,40.74040985107422,-73.9874267578125,40.74287033081055,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-05 10:30:39,2016-01-05 10:53:29,1,4.98,,,-73.96001434326172,40.77621841430664,-73.95909118652344,40.728729248046875,1,N,2,19.0,0.0,0.5,0.3,0.0,0.0,19.8 +1,2016-01-22 09:04:03,2016-01-22 09:07:50,1,0.6,,,-73.964111328125,40.792503356933594,-73.9736557006836,40.792259216308594,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,6.3 +1,2016-01-09 01:18:43,2016-01-09 01:30:23,1,0.9,,,-73.9853515625,40.738407135009766,-73.98866271972656,40.74513244628906,1,N,1,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-29 13:31:16,2016-01-29 13:41:14,1,1.0,,,-73.9843521118164,40.74589538574219,-73.97063446044922,40.74930191040039,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-19 20:04:20,2016-01-19 20:14:59,1,2.2,,,-73.97093200683594,40.76469421386719,-73.97975158691406,40.787109375,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,13.55 +2,2016-01-28 09:15:31,2016-01-28 09:40:15,4,8.28,,,-73.950439453125,40.7790412902832,-74.01541900634766,40.711517333984375,1,N,1,27.0,0.0,0.5,0.3,5.56,0.0,33.36 +1,2016-01-19 08:15:46,2016-01-19 08:22:43,2,0.8,,,-73.9886703491211,40.757747650146484,-74.00017547607422,40.758609771728516,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-21 09:41:29,2016-01-21 09:58:33,1,2.5,,,-73.95368957519531,40.76711654663086,-73.98313903808594,40.7550163269043,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,17.15 +2,2016-01-20 21:34:45,2016-01-20 21:39:45,1,1.01,,,-73.9975357055664,40.761375427246094,-73.9873275756836,40.765830993652344,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-17 15:04:55,2016-01-17 15:30:39,3,3.5,,,-73.9967269897461,40.72526931762695,-73.98091125488281,40.76449966430664,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +1,2016-01-07 22:31:06,2016-01-07 22:40:44,2,2.5,,,-73.98979949951172,40.7728157043457,-73.96746826171875,40.80030822753906,1,N,1,10.0,0.5,0.5,0.3,1.5,0.0,12.8 +1,2016-01-05 19:56:21,2016-01-05 20:13:58,1,3.2,,,-73.97055053710938,40.76475524902344,-73.99929809570312,40.72999954223633,1,N,1,13.5,1.0,0.5,0.3,1.0,0.0,16.3 +1,2016-01-03 10:19:04,2016-01-03 10:28:53,1,1.7,,,-73.96865844726562,40.754634857177734,-73.99132537841797,40.74991989135742,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-26 22:10:26,2016-01-26 22:24:02,1,3.1,,,-73.9800033569336,40.760616302490234,-73.96942138671875,40.79787826538086,1,N,1,12.5,0.5,0.5,0.3,2.0,0.0,15.8 +1,2016-01-19 11:00:44,2016-01-19 11:24:49,1,2.4,,,-74.00833892822266,40.73478317260742,-73.97499084472656,40.74173355102539,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-20 07:37:22,2016-01-20 07:46:38,1,1.85,,,-74.00596618652344,40.74549102783203,-73.98139953613281,40.755489349365234,1,N,1,8.5,0.0,0.5,0.3,1.5,0.0,10.8 +2,2016-01-08 07:44:27,2016-01-08 08:14:04,1,3.77,,,-73.96450805664062,40.7651252746582,-73.9628677368164,40.804264068603516,1,N,1,20.0,0.0,0.5,0.3,4.16,0.0,24.96 +1,2016-01-30 19:05:18,2016-01-30 19:10:40,2,0.9,,,-73.98250579833984,40.723323822021484,-73.9851303100586,40.73247146606445,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-25 17:42:57,2016-01-25 17:53:59,2,1.47,,,-73.98173522949219,40.77320098876953,-73.9631576538086,40.77517318725586,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-06 17:35:36,2016-01-06 17:59:45,1,9.7,,,-73.96847534179688,40.75053787231445,-73.86538696289062,40.770870208740234,1,Y,1,28.5,1.0,0.5,0.3,8.95,5.54,44.79 +1,2016-01-22 11:39:34,2016-01-22 11:55:15,1,4.6,,,-73.99081420898438,40.73821258544922,-74.01168060302734,40.703857421875,1,N,1,17.0,0.0,0.5,0.3,3.55,0.0,21.35 +2,2016-01-15 08:05:22,2016-01-15 08:13:34,1,1.13,,,-73.98209381103516,40.75716018676758,-73.99149322509766,40.74992752075195,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-26 09:44:56,2016-01-26 09:58:57,1,2.0,,,-73.95918273925781,40.79938888549805,-73.97887420654297,40.777225494384766,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,12.3 +1,2016-01-26 21:37:05,2016-01-26 21:45:53,1,1.6,,,-73.96963500976562,40.785377502441406,-73.94721221923828,40.78009033203125,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,12.25 +1,2016-01-20 09:58:46,2016-01-20 10:20:41,1,2.4,,,-73.9951171875,40.73979568481445,-73.99626159667969,40.76359176635742,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,19.75 +1,2016-01-28 09:04:05,2016-01-28 09:36:39,1,3.9,,,-74.01472473144531,40.71564865112305,-73.992431640625,40.76380157470703,1,N,1,22.0,0.0,0.5,0.3,3.0,0.0,25.8 +2,2016-01-25 22:54:45,2016-01-25 23:04:40,1,1.88,,,-73.98934173583984,40.74193572998047,-73.96978759765625,40.7536506652832,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,11.3 +2,2016-01-21 08:08:58,2016-01-21 08:12:52,4,0.36,,,-73.99032592773438,40.75641632080078,-73.98439025878906,40.75532913208008,1,N,1,4.5,0.0,0.5,0.3,1.32,0.0,6.62 +1,2016-01-27 16:40:10,2016-01-27 17:35:58,1,8.3,,,-73.86286163330078,40.76919174194336,-73.94847106933594,40.718406677246094,1,N,1,37.0,1.0,0.5,0.3,7.76,0.0,46.56 +2,2016-01-22 09:17:07,2016-01-22 09:19:38,1,0.62,,,-73.95270538330078,40.823516845703125,-73.95980834960938,40.820091247558594,1,N,1,4.0,0.0,0.5,0.3,2.0,0.0,6.8 +2,2016-01-24 18:41:15,2016-01-24 18:54:00,2,2.32,,,-73.98025512695312,40.77043151855469,-73.9558334350586,40.787750244140625,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-15 13:07:20,2016-01-15 13:13:51,1,1.1,,,0.0,0.0,0.0,0.0,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-12 09:59:52,2016-01-12 10:20:02,1,2.6,,,-73.94954681396484,40.77254867553711,-73.97906494140625,40.7601203918457,1,N,1,14.0,0.0,0.5,0.3,1.0,0.0,15.8 +1,2016-01-12 22:29:36,2016-01-12 22:38:48,1,2.1,,,-73.99034118652344,40.718963623046875,-73.95572662353516,40.70964431762695,1,N,1,9.5,0.5,0.5,0.3,1.0,0.0,11.8 +1,2016-01-29 11:22:22,2016-01-29 11:43:23,1,1.6,,,-73.98358917236328,40.747100830078125,-73.97425079345703,40.76469421386719,1,N,1,13.5,0.0,0.5,0.3,1.0,0.0,15.3 +2,2016-01-11 14:34:19,2016-01-11 14:37:06,4,0.35,,,-73.9845962524414,40.759368896484375,-73.98655700683594,40.75539016723633,1,N,1,3.5,0.0,0.5,0.3,1.08,0.0,5.38 +2,2016-01-09 20:15:36,2016-01-09 20:24:55,1,1.83,,,-73.98189544677734,40.7786750793457,-73.95721435546875,40.7744255065918,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +1,2016-01-30 21:39:17,2016-01-30 21:49:50,2,2.1,,,-73.98576354980469,40.76316833496094,-73.9572525024414,40.76610565185547,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,13.55 +2,2016-01-14 10:54:46,2016-01-14 10:56:57,2,0.46,,,-73.95394134521484,40.779090881347656,-73.94943237304688,40.78512954711914,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-03 13:27:43,2016-01-03 14:11:34,1,17.82,,,-73.78972625732422,40.64292907714844,-73.98594665527344,40.7581901550293,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-16 13:23:05,2016-01-16 13:32:16,1,1.0,,,-74.0094223022461,40.71505355834961,-74.01395416259766,40.70253372192383,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +1,2016-01-26 15:03:37,2016-01-26 15:27:26,1,2.0,,,-73.98438262939453,40.77386474609375,-73.9616928100586,40.779964447021484,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-07 18:35:36,2016-01-07 18:46:48,2,1.2,,,-73.9806137084961,40.75352478027344,-74.00031280517578,40.757530212402344,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-30 23:27:18,2016-01-30 23:32:54,6,0.8,,,-73.9752197265625,40.75008010864258,-73.9657974243164,40.755409240722656,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +2,2016-01-16 20:56:13,2016-01-16 21:00:38,2,0.69,,,-73.99800872802734,40.7458381652832,-73.98806762695312,40.749900817871094,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-30 02:00:14,2016-01-30 02:10:05,6,1.8,,,-74.00580596923828,40.739959716796875,-74.01040649414062,40.720211029052734,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,11.3 +1,2016-01-12 13:23:30,2016-01-12 13:37:04,1,1.4,,,-73.96974182128906,40.76279830932617,-73.95171356201172,40.77154541015625,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,11.8 +2,2016-01-06 17:18:23,2016-01-06 17:28:09,3,0.95,,,-73.9595718383789,40.776851654052734,-73.95475006103516,40.77061080932617,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-16 00:23:12,2016-01-16 00:37:22,1,4.0,,,-74.0111083984375,40.703453063964844,-73.97283935546875,40.69325256347656,1,N,1,14.5,0.5,0.5,0.3,3.15,0.0,18.95 +2,2016-01-03 04:16:53,2016-01-03 04:24:16,1,2.76,,,-73.98875427246094,40.76375198364258,-73.99027252197266,40.73463821411133,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-17 15:38:55,2016-01-17 15:49:26,2,2.1,,,-73.98729705810547,40.760807037353516,-74.00542449951172,40.73867416381836,1,N,1,9.5,0.0,0.5,0.3,2.2,0.0,12.5 +1,2016-01-06 23:48:49,2016-01-07 00:01:04,1,3.3,,,-73.9898681640625,40.718997955322266,-73.94957733154297,40.71537780761719,1,N,1,13.0,0.5,0.5,0.3,1.5,0.0,15.8 +1,2016-01-20 08:32:31,2016-01-20 08:36:51,1,0.8,,,-73.96400451660156,40.771358489990234,-73.95755767822266,40.78227996826172,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-13 21:12:47,2016-01-13 21:23:57,1,2.3,,,-73.98014068603516,40.78052520751953,-73.95035552978516,40.78384017944336,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,13.55 +1,2016-01-01 19:38:23,2016-01-01 19:45:01,1,0.8,,,-73.9787368774414,40.7552604675293,-73.98841094970703,40.75014877319336,1,N,1,6.0,0.0,0.5,0.3,3.0,0.0,9.8 +2,2016-01-15 17:11:07,2016-01-15 17:24:44,2,2.54,,,-73.98081970214844,40.730621337890625,-73.99117279052734,40.75539016723633,1,N,1,11.5,1.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-18 01:01:17,2016-01-18 01:05:00,1,1.3,,,-73.99636840820312,40.74299621582031,-73.98258209228516,40.747703552246094,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +2,2016-01-03 23:26:30,2016-01-03 23:36:07,5,2.23,,,-74.00114440917969,40.73092269897461,-74.00371551513672,40.75151824951172,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-15 16:04:29,2016-01-15 16:11:35,1,1.2,,,-73.99222564697266,40.74369430541992,-73.97860717773438,40.75250244140625,1,N,1,7.0,1.0,0.5,0.3,1.2,0.0,10.0 +1,2016-01-16 21:44:46,2016-01-16 21:49:11,1,0.7,,,-73.9754409790039,40.75825500488281,-73.97637939453125,40.7642936706543,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-08 00:00:17,2016-01-08 00:17:34,2,4.26,,,-73.99364471435547,40.73995590209961,-73.948974609375,40.77352523803711,1,N,1,15.5,0.5,0.5,0.3,4.2,0.0,21.0 +1,2016-01-13 16:04:57,2016-01-13 16:21:41,1,2.0,,,-73.96209716796875,40.779029846191406,-73.97660064697266,40.79322814941406,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +2,2016-01-22 09:18:39,2016-01-22 09:21:11,5,0.54,,,-73.96259307861328,40.76716995239258,-73.95970916748047,40.773590087890625,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-08 07:37:01,2016-01-08 07:59:29,1,5.4,,,-74.01607513427734,40.715721130371094,-73.98534393310547,40.772918701171875,1,N,2,21.0,0.0,0.5,0.3,0.0,0.0,21.8 +1,2016-01-19 20:05:35,2016-01-19 20:13:10,1,0.9,,,-73.97283172607422,40.743289947509766,-73.9816665649414,40.75130081176758,1,N,1,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-05 23:13:14,2016-01-05 23:51:55,1,20.0,,,-73.78182983398438,40.64479446411133,-73.97390747070312,40.64933776855469,1,N,2,57.5,0.5,0.5,0.3,0.0,0.0,58.8 +2,2016-01-07 16:50:18,2016-01-07 16:55:23,1,0.93,,,-73.97643280029297,40.780860900878906,-73.98509979248047,40.76898956298828,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-28 23:18:54,2016-01-28 23:29:26,2,1.81,,,-73.9884033203125,40.74586868286133,-74.00652313232422,40.73094177246094,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +2,2016-01-18 08:11:54,2016-01-18 08:31:43,3,4.67,,,-73.95796966552734,40.800987243652344,-73.98359680175781,40.74986267089844,1,N,1,17.5,0.0,0.5,0.3,3.0,0.0,21.3 +1,2016-01-14 19:59:44,2016-01-14 20:14:46,1,5.5,,,-74.00870513916016,40.73927307128906,-73.96651458740234,40.80424880981445,1,N,1,18.5,0.5,0.5,0.3,2.0,0.0,21.8 +1,2016-01-14 06:19:27,2016-01-14 06:34:48,1,8.8,,,-73.9736557006836,40.74821472167969,-73.86133575439453,40.76805114746094,1,N,1,25.0,0.0,0.5,0.3,9.4,5.54,40.74 +2,2016-01-14 18:20:02,2016-01-14 18:40:41,2,2.07,,,-73.95565795898438,40.77909469604492,-73.98236083984375,40.77368927001953,1,N,1,13.5,1.0,0.5,0.3,2.4,0.0,17.7 +2,2016-01-27 13:06:45,2016-01-27 13:25:57,5,2.05,,,-73.97811889648438,40.75714874267578,-73.9577407836914,40.77941131591797,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-26 00:50:40,2016-01-26 01:26:22,1,9.5,,,-73.87093353271484,40.77374267578125,-73.97854614257812,40.79155731201172,1,N,2,35.5,0.5,0.5,0.3,0.0,5.54,42.34 +1,2016-01-07 21:17:29,2016-01-07 21:28:04,1,2.3,,,-73.97447204589844,40.75241470336914,-73.95911407470703,40.780189514160156,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +1,2016-01-26 19:24:24,2016-01-26 19:40:08,2,1.9,,,-73.97329711914062,40.74382019042969,-73.9835433959961,40.761722564697266,1,N,1,11.5,1.0,0.5,0.3,2.65,0.0,15.95 +1,2016-01-30 12:20:18,2016-01-30 12:24:49,1,0.9,,,-73.9638671875,40.75692367553711,-73.95972442626953,40.765933990478516,1,N,1,5.5,0.0,0.5,0.3,1.55,0.0,7.85 +2,2016-01-27 17:55:20,2016-01-27 17:59:15,1,0.7,,,-73.96617889404297,40.76470947265625,-73.95993041992188,40.77090072631836,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-12 12:04:19,2016-01-12 12:26:14,2,2.5,,,-73.974365234375,40.764549255371094,-73.99121856689453,40.73255920410156,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,18.96 +2,2016-01-06 17:13:34,2016-01-06 17:25:46,5,2.18,,,-73.99295043945312,40.72996520996094,-74.01487731933594,40.715553283691406,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,14.76 +1,2016-01-09 17:00:35,2016-01-09 17:04:47,2,0.8,,,-73.97936248779297,40.7530632019043,-73.97051239013672,40.761783599853516,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,6.8 +2,2016-01-02 17:51:09,2016-01-02 17:57:57,6,1.27,,,-73.97267150878906,40.780860900878906,-73.97045135498047,40.76805114746094,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-11 14:47:53,2016-01-11 15:15:12,2,5.0,,,-73.99012756347656,40.73464584350586,-73.93314361572266,40.76029586791992,1,N,1,21.0,0.0,0.5,0.3,3.0,0.0,24.8 +1,2016-01-08 18:29:24,2016-01-08 18:36:04,1,1.4,,,-73.96769714355469,40.793033599853516,-73.95606231689453,40.77982711791992,1,N,1,7.0,1.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-14 13:01:37,2016-01-14 13:22:46,1,2.84,,,-73.973876953125,40.7565803527832,-73.97908020019531,40.78688049316406,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +1,2016-01-03 17:53:58,2016-01-03 18:09:00,1,4.4,,,-73.96791076660156,40.762699127197266,-73.98914337158203,40.718963623046875,1,N,1,15.5,0.0,0.5,0.3,4.85,0.0,21.15 +2,2016-01-14 15:18:01,2016-01-14 15:25:43,1,0.25,,,-73.97856140136719,40.75057601928711,-73.98226165771484,40.7500114440918,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-18 16:25:43,2016-01-18 16:36:27,1,1.39,,,-73.97644805908203,40.78862762451172,-73.95624542236328,40.77809143066406,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-29 02:09:39,2016-01-29 02:21:16,1,6.37,,,-73.97530364990234,40.74123001098633,-73.91925811767578,40.815181732177734,1,N,2,19.0,0.5,0.5,0.3,0.0,0.0,20.3 +1,2016-01-04 20:13:47,2016-01-04 20:31:50,1,9.9,,,-73.87457275390625,40.77405548095703,-73.98454284667969,40.691192626953125,1,N,1,29.0,0.5,0.5,0.3,7.55,0.0,37.85 +2,2016-01-19 22:10:17,2016-01-19 22:21:31,1,3.88,,,-73.99738311767578,40.71929931640625,-73.94029235839844,40.715721130371094,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,15.3 +1,2016-01-30 19:47:56,2016-01-30 19:54:14,2,0.9,,,-73.98865509033203,40.77853012084961,-73.97746276855469,40.78428268432617,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,8.3 +1,2016-01-17 04:09:27,2016-01-17 04:14:44,1,1.0,,,-73.99761199951172,40.720909118652344,-73.98989868164062,40.73392105102539,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,8.3 +1,2016-01-18 05:43:04,2016-01-18 06:01:12,2,4.6,,,-73.98131561279297,40.724769592285156,-73.94407653808594,40.68386459350586,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,18.8 +2,2016-01-06 19:08:39,2016-01-06 19:16:44,5,1.23,,,-73.99772644042969,40.7254638671875,-73.99655151367188,40.737648010253906,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-11 10:36:28,2016-01-11 10:54:16,1,2.64,,,-73.97457122802734,40.761478424072266,-73.99101257324219,40.733306884765625,1,N,1,13.5,0.0,0.5,0.3,3.58,0.0,17.88 +1,2016-01-19 22:55:08,2016-01-19 23:29:03,3,9.0,,,-73.98306274414062,40.72113037109375,-73.99763488769531,40.64385986328125,1,N,2,31.0,0.5,0.5,0.3,0.0,0.0,32.3 +1,2016-01-07 09:24:21,2016-01-07 09:51:28,1,6.0,,,-73.9704360961914,40.78902816772461,-74.0099105834961,40.72114562988281,1,N,1,22.5,0.0,0.5,0.3,2.0,0.0,25.3 +1,2016-01-22 19:32:16,2016-01-22 19:55:11,1,8.8,,,-73.8628158569336,40.769065856933594,-73.96247863769531,40.75982666015625,1,N,1,28.0,1.0,0.5,0.3,0.0,0.0,29.8 +2,2016-01-08 06:53:47,2016-01-08 06:59:54,4,1.77,,,-73.9795150756836,40.73550796508789,-73.96993255615234,40.75630187988281,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-25 07:37:24,2016-01-25 07:45:56,1,0.98,,,-73.96607971191406,40.76547622680664,-73.97465515136719,40.7568359375,1,N,1,7.0,0.0,0.5,0.3,1.2,0.0,9.0 +1,2016-01-08 19:00:59,2016-01-08 19:10:40,2,1.1,,,-73.99909973144531,40.74440383911133,-73.98147583007812,40.74102020263672,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-20 18:59:40,2016-01-20 19:22:21,1,3.6,,,-73.9819107055664,40.77181625366211,-73.9864730834961,40.7343635559082,1,N,1,16.5,1.0,0.5,0.3,3.66,0.0,21.96 +1,2016-01-10 23:13:05,2016-01-10 23:13:19,1,0.0,,,-73.98741149902344,40.73331832885742,-73.98741149902344,40.73331832885742,1,N,3,2.5,0.5,0.5,0.3,0.0,0.0,3.8 +1,2016-01-28 11:41:22,2016-01-28 11:58:03,1,1.1,,,-73.97850799560547,40.761783599853516,-73.97508239746094,40.75076675415039,1,N,1,11.0,0.0,0.5,0.3,3.0,0.0,14.8 +2,2016-01-01 18:00:06,2016-01-01 18:04:43,1,0.78,,,-73.98197937011719,40.76828384399414,-73.98029327392578,40.775569915771484,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +2,2016-01-06 15:17:44,2016-01-06 15:27:13,2,1.17,,,-73.9735336303711,40.76327133178711,-73.98236846923828,40.74911880493164,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-06 08:45:08,2016-01-06 09:05:25,1,1.48,,,-73.97016906738281,40.74953842163086,-73.99017333984375,40.751556396484375,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,17.16 +2,2016-01-14 14:22:20,2016-01-14 14:30:06,1,1.33,,,-73.9815902709961,40.768375396728516,-73.99577331542969,40.762142181396484,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-13 17:43:05,2016-01-13 17:46:44,1,0.7,,,-73.99764251708984,40.736602783203125,-73.99098205566406,40.74565124511719,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-24 16:29:29,2016-01-24 16:55:49,1,4.5,,,-73.98915100097656,40.718753814697266,-73.9352035522461,40.6839714050293,1,N,1,20.0,0.0,0.5,0.3,4.15,0.0,24.95 +1,2016-01-06 10:41:53,2016-01-06 10:50:09,1,1.0,,,-73.99424743652344,40.751060485839844,-74.00788879394531,40.752017974853516,1,N,1,7.0,0.0,0.5,0.3,3.0,0.0,10.8 +1,2016-01-09 13:01:00,2016-01-09 13:21:26,2,12.3,,,-73.93387603759766,40.7453498840332,-73.80379486083984,40.66281509399414,2,N,1,52.0,0.0,0.5,0.3,13.2,0.0,66.0 +1,2016-01-10 18:09:24,2016-01-10 18:13:43,1,0.6,,,-73.96031188964844,40.762203216552734,-73.96807861328125,40.760498046875,1,N,1,5.0,0.0,0.5,0.3,1.25,0.0,7.05 +2,2016-01-30 17:49:06,2016-01-30 17:58:36,5,1.31,,,-73.99980163574219,40.7333984375,-73.9917984008789,40.7492790222168,1,N,1,7.5,0.0,0.5,0.3,2.49,0.0,10.79 +2,2016-01-05 13:40:03,2016-01-05 13:48:10,2,1.4,,,-73.983154296875,40.742000579833984,-73.97342681884766,40.75804138183594,1,N,1,7.5,0.0,0.5,0.3,2.08,0.0,10.38 +2,2016-01-29 19:02:00,2016-01-29 19:11:36,1,1.36,,,-73.99263763427734,40.758609771728516,-73.98526763916016,40.77349853515625,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-30 16:12:08,2016-01-30 16:14:19,1,0.19,,,-73.98725891113281,40.742393493652344,-73.99097442626953,40.7440071105957,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +2,2016-01-14 18:49:50,2016-01-14 18:55:52,6,0.8,,,-73.95657348632812,40.78315353393555,-73.94402313232422,40.77806091308594,1,N,1,5.5,1.0,0.5,0.3,2.0,0.0,9.3 +2,2016-01-25 09:49:27,2016-01-25 09:54:36,2,0.89,,,-73.99517822265625,40.733543395996094,-74.00759887695312,40.73029327392578,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-08 13:49:16,2016-01-08 13:51:40,6,0.6,,,-73.97142791748047,40.792388916015625,-73.96354675292969,40.794490814208984,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-20 18:01:41,2016-01-20 18:12:19,2,0.7,,,-73.98038482666016,40.764041900634766,-73.97602844238281,40.758121490478516,1,N,1,8.0,1.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-08 17:18:06,2016-01-08 17:24:41,1,1.3,,,-73.98114013671875,40.753570556640625,-73.96408081054688,40.75627136230469,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-28 23:59:39,2016-01-29 00:08:20,2,1.2,,,-73.99588775634766,40.758609771728516,-73.98881530761719,40.74839782714844,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +2,2016-01-10 22:32:57,2016-01-10 22:38:19,1,0.8,,,-73.9914321899414,40.755409240722656,-73.97737121582031,40.749839782714844,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-22 23:37:11,2016-01-23 00:04:20,1,12.1,,,-73.99017333984375,40.74174880981445,-73.81558990478516,40.724266052246094,1,N,1,34.5,0.5,0.5,0.3,5.0,5.54,46.34 +2,2016-01-02 13:45:19,2016-01-02 14:07:56,6,4.16,,,-73.97425079345703,40.78316116333008,-73.99165344238281,40.73517608642578,1,N,1,17.0,0.0,0.5,0.3,3.56,0.0,21.36 +1,2016-01-06 12:26:52,2016-01-06 12:33:26,1,0.6,,,-73.9748764038086,40.75849914550781,-73.96907043457031,40.762393951416016,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-29 11:52:40,2016-01-29 12:09:02,2,2.2,,,-73.96387481689453,40.76536178588867,-73.98980712890625,40.756256103515625,1,N,1,12.0,0.0,0.5,0.3,3.0,0.0,15.8 +1,2016-01-23 12:45:26,2016-01-23 13:00:34,2,2.5,,,0.0,0.0,-73.96215057373047,40.77909469604492,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-17 14:50:18,2016-01-17 15:17:04,1,4.96,,,-73.99459838867188,40.740360260009766,-73.9640884399414,40.71950149536133,1,N,1,21.5,0.0,0.5,0.3,4.46,0.0,26.76 +1,2016-01-30 20:10:50,2016-01-30 20:15:46,1,0.8,,,-73.98150634765625,40.77859878540039,-73.98097229003906,40.786766052246094,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +1,2016-01-28 13:53:41,2016-01-28 14:08:50,1,1.2,,,-73.97925567626953,40.75326919555664,-73.9812240600586,40.759063720703125,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-17 03:53:27,2016-01-17 04:05:28,1,5.69,,,-73.97209167480469,40.78892517089844,-73.93700408935547,40.84318923950195,1,N,2,18.0,0.5,0.5,0.3,0.0,0.0,19.3 +1,2016-01-20 18:01:20,2016-01-20 18:05:40,2,0.6,,,-73.98695373535156,40.779144287109375,-73.9810562133789,40.782527923583984,1,N,1,5.0,1.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-03 03:08:31,2016-01-03 03:11:58,2,0.6,,,-73.91370391845703,40.76542663574219,-73.9166030883789,40.77054977416992,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-10 02:57:59,2016-01-10 03:09:01,1,4.29,,,-73.98899841308594,40.725929260253906,-73.94994354248047,40.7730598449707,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,15.3 +1,2016-01-10 18:39:29,2016-01-10 18:44:08,1,0.7,,,-73.98027038574219,40.734127044677734,-73.99085235595703,40.73463821411133,1,N,1,5.0,0.0,0.5,0.3,2.0,0.0,7.8 +1,2016-01-17 22:21:40,2016-01-17 22:26:33,2,1.2,,,-74.00115203857422,40.731563568115234,-73.98663330078125,40.740386962890625,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,8.75 +2,2016-01-26 08:16:48,2016-01-26 08:25:04,1,1.01,,,-73.97695922851562,40.75015640258789,-73.98834991455078,40.74332046508789,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-20 23:14:44,2016-01-20 23:17:40,2,1.05,,,-73.96528625488281,40.755210876464844,-73.96038818359375,40.7669792175293,1,N,1,5.0,0.5,0.5,0.3,1.89,0.0,8.19 +2,2016-01-14 19:01:58,2016-01-14 19:11:28,1,0.68,,,-73.97299194335938,40.764381408691406,-73.9732894897461,40.75685119628906,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-07 18:23:13,2016-01-07 18:28:38,1,1.1,,,-73.96317291259766,40.7746467590332,-73.94794464111328,40.77475357055664,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-28 12:57:30,2016-01-28 13:21:02,1,1.6,,,-73.98336791992188,40.767520904541016,-73.9794921875,40.751556396484375,1,N,1,14.5,0.0,0.5,0.3,4.59,0.0,19.89 +1,2016-01-02 11:54:33,2016-01-02 12:00:46,1,0.8,,,-73.97675323486328,40.747798919677734,-73.96817016601562,40.7564697265625,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-28 15:17:14,2016-01-28 15:47:26,5,8.43,,,-73.86323547363281,40.76971435546875,-73.94269561767578,40.77671813964844,1,N,1,27.5,0.0,0.5,0.3,6.77,5.54,40.61 +2,2016-01-10 23:23:59,2016-01-10 23:53:38,1,20.8,,,-73.78307342529297,40.64664840698242,-74.01075744628906,40.71207046508789,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +1,2016-01-19 22:12:21,2016-01-19 22:20:40,1,2.1,,,-74.00348663330078,40.73194885253906,-73.98047637939453,40.75007629394531,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +2,2016-01-04 07:34:12,2016-01-04 07:38:06,1,0.47,,,-73.9996566772461,40.732669830322266,-74.00797271728516,40.7327995300293,1,N,1,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-17 14:59:54,2016-01-17 15:09:03,1,2.4,,,-73.97950744628906,40.75307083129883,-73.95307922363281,40.77156066894531,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-17 02:54:11,2016-01-17 03:05:26,1,2.8,,,-74.00000762939453,40.72710418701172,-73.97368621826172,40.74873733520508,1,N,1,11.0,0.5,0.5,0.3,1.0,0.0,13.3 +2,2016-01-03 18:26:11,2016-01-03 18:44:13,1,1.48,,,-73.97884368896484,40.76395034790039,-73.9912338256836,40.74989318847656,1,N,1,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +1,2016-01-16 07:11:22,2016-01-16 07:17:35,1,1.4,,,-73.9832992553711,40.764610290527344,-74.00102996826172,40.75807189941406,1,N,1,6.5,0.0,0.5,0.3,4.0,0.0,11.3 +2,2016-01-13 23:21:44,2016-01-13 23:27:53,2,1.33,,,-73.98892211914062,40.7216682434082,-73.99900817871094,40.73405838012695,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-25 07:03:43,2016-01-25 07:15:02,1,1.9,,,-73.9993667602539,40.744178771972656,-73.97978973388672,40.765777587890625,1,N,1,9.5,0.0,0.5,0.3,1.7,0.0,12.0 +2,2016-01-21 19:43:05,2016-01-21 19:49:31,5,0.88,,,-73.9735107421875,40.7547492980957,-73.98650360107422,40.75661087036133,1,N,1,6.0,1.0,0.5,0.3,2.34,0.0,10.14 +2,2016-01-24 08:18:23,2016-01-24 08:26:50,1,1.51,,,-74.029052734375,40.62298583984375,-74.0401382446289,40.62169647216797,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-16 15:47:52,2016-01-16 16:05:43,1,8.5,,,-73.7898178100586,40.646915435791016,-73.88493347167969,40.65386199951172,1,N,1,24.5,0.0,0.5,0.3,2.0,0.0,27.3 +2,2016-01-21 08:11:07,2016-01-21 08:22:54,1,1.59,,,-73.96585845947266,40.75859069824219,-73.9845199584961,40.748443603515625,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +2,2016-01-18 01:09:40,2016-01-18 01:15:18,2,0.94,,,-73.98754119873047,40.72874450683594,-74.00048828125,40.729896545410156,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-17 11:12:49,2016-01-17 11:16:42,1,0.8,,,-73.98737335205078,40.760597229003906,-73.99188232421875,40.76884841918945,1,N,1,5.0,0.0,0.5,0.3,1.7,0.0,7.5 +1,2016-01-09 23:35:43,2016-01-09 23:44:28,1,1.6,,,-73.99421691894531,40.76648712158203,-73.9725570678711,40.763057708740234,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-16 10:01:14,2016-01-16 10:05:11,1,0.7,,,-73.9930191040039,40.75273132324219,-74.000732421875,40.7584228515625,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,6.35 +2,2016-01-01 23:07:00,2016-01-01 23:13:26,2,1.06,,,-73.99610900878906,40.744361877441406,-73.98255157470703,40.737060546875,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-13 17:17:52,2016-01-13 17:36:22,2,4.1,,,-73.95025634765625,40.78404235839844,-73.97383880615234,40.73858642578125,1,N,1,16.5,1.0,0.5,0.3,3.65,0.0,21.95 +1,2016-01-08 13:26:29,2016-01-08 13:49:03,4,2.7,,,-73.97492218017578,40.761436462402344,-73.9778060913086,40.7864875793457,1,N,1,15.0,0.0,0.5,0.3,2.0,0.0,17.8 +1,2016-01-02 13:37:36,2016-01-02 13:47:08,1,1.7,,,-73.99906158447266,40.734352111816406,-73.9937744140625,40.75310134887695,1,N,1,9.0,0.0,0.5,0.3,2.9,0.0,12.7 +2,2016-01-15 22:01:55,2016-01-15 22:25:28,1,3.06,,,-73.98602294921875,40.72276306152344,-73.98794555664062,40.75414276123047,1,N,1,16.0,0.5,0.5,0.3,3.46,0.0,20.76 +2,2016-01-07 16:48:08,2016-01-07 17:02:38,1,5.19,,,-74.0101547241211,40.703369140625,-73.97742462158203,40.7523078918457,1,N,1,17.0,1.0,0.5,0.3,3.76,0.0,22.56 +2,2016-01-26 02:55:56,2016-01-26 02:59:50,1,0.83,,,-73.98469543457031,40.7674446105957,-73.98649597167969,40.75952911376953,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-20 08:29:04,2016-01-20 08:43:13,1,2.8,,,-74.00619506835938,40.71731948852539,-73.99977111816406,40.753353118896484,1,N,1,12.5,0.0,0.5,0.3,1.5,0.0,14.8 +2,2016-01-29 09:01:44,2016-01-29 09:23:46,1,10.53,,,-73.974853515625,40.75664138793945,-73.87110900878906,40.77421188354492,1,N,1,30.5,0.0,0.5,0.3,7.37,5.54,44.21 +2,2016-01-08 20:16:59,2016-01-08 20:33:00,2,4.89,,,-73.99195861816406,40.748878479003906,-73.95320129394531,40.78842544555664,1,N,1,16.5,0.5,0.5,0.3,2.5,0.0,20.3 +2,2016-01-21 21:56:51,2016-01-21 22:15:02,5,3.2,,,-73.99114990234375,40.71956253051758,-73.99142456054688,40.74455642700195,1,N,1,14.5,0.5,0.5,0.3,1.5,0.0,17.3 +2,2016-01-11 11:13:53,2016-01-11 11:22:27,1,0.4,,,-73.99331665039062,40.74317169189453,-73.99198150634766,40.74742889404297,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-03 19:21:18,2016-01-03 19:31:27,1,1.38,,,-73.98786163330078,40.749481201171875,-73.9709701538086,40.751930236816406,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-15 07:55:32,2016-01-15 08:25:28,2,4.32,,,-73.94329071044922,40.83652114868164,-73.95384216308594,40.78899002075195,1,N,2,21.0,0.0,0.5,0.3,0.0,0.0,21.8 +1,2016-01-19 23:11:38,2016-01-19 23:41:59,1,6.2,,,-73.99163055419922,40.73849105834961,-73.94927978515625,40.8074836730957,1,N,1,24.0,0.5,0.5,0.3,2.0,0.0,27.3 +2,2016-01-08 12:28:49,2016-01-08 12:41:07,6,1.07,,,-73.98313903808594,40.766780853271484,-73.97722625732422,40.75685119628906,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-15 14:57:57,2016-01-15 15:08:59,1,1.0,,,-73.97195434570312,40.76578140258789,-73.96055603027344,40.76834487915039,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-28 18:08:05,2016-01-28 18:35:07,1,6.4,,,-73.95602416992188,40.78471374511719,-73.99076843261719,40.72358322143555,1,N,2,24.0,1.0,0.5,0.3,0.0,0.0,25.8 +2,2016-01-07 17:53:43,2016-01-07 18:09:46,1,2.91,,,-73.95880889892578,40.810020446777344,-73.98229217529297,40.775779724121094,1,N,1,13.5,1.0,0.5,0.3,3.06,0.0,18.36 +2,2016-01-17 23:16:36,2016-01-17 23:23:36,1,2.05,,,-73.98563385009766,40.74726104736328,-73.98331451416016,40.72665023803711,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-27 19:19:53,2016-01-27 19:30:08,1,1.5,,,-73.98260498046875,40.73530960083008,-73.97901916503906,40.719791412353516,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-15 20:59:27,2016-01-15 21:03:57,2,0.5,,,-73.9861831665039,40.76753234863281,-73.9841079711914,40.76177215576172,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-02 03:26:47,2016-01-02 03:29:20,1,0.62,,,-73.9937515258789,40.724369049072266,-73.98641204833984,40.72650909423828,1,N,1,4.0,0.5,0.5,0.3,1.59,0.0,6.89 +1,2016-01-13 18:55:20,2016-01-13 19:01:31,1,0.6,,,-73.98942565917969,40.7407112121582,-73.99961853027344,40.7410888671875,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-01 00:54:38,2016-01-01 01:14:18,1,1.42,,,-73.97750091552734,40.74951171875,-73.9874496459961,40.76018142700195,1,N,1,12.5,0.5,0.5,0.3,1.0,0.0,14.8 +1,2016-01-27 16:14:05,2016-01-27 16:21:22,1,0.6,,,-74.00038146972656,40.717708587646484,-73.99322509765625,40.722476959228516,1,N,1,6.0,1.0,0.5,0.3,1.55,0.0,9.35 +2,2016-01-07 10:47:25,2016-01-07 11:06:44,4,2.6,,,-73.98897552490234,40.75285720825195,-73.99839782714844,40.722923278808594,1,N,1,13.0,0.0,0.5,0.3,1.5,0.0,15.3 +1,2016-01-22 11:46:23,2016-01-22 12:18:01,1,2.7,,,-73.97189331054688,40.749549865722656,-74.00325775146484,40.732688903808594,1,N,1,20.0,0.0,0.5,0.3,4.0,0.0,24.8 +2,2016-01-28 06:05:03,2016-01-28 06:09:50,1,1.07,,,-73.97613525390625,40.78132629394531,-73.9822006225586,40.76797866821289,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-05 03:53:16,2016-01-05 04:06:27,1,5.23,,,-73.98978424072266,40.729713439941406,-73.94073486328125,40.79324722290039,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,16.8 +2,2016-01-06 11:02:21,2016-01-06 11:06:15,1,0.43,,,-73.99105072021484,40.742279052734375,-73.99471282958984,40.7404899597168,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +1,2016-01-06 17:43:56,2016-01-06 17:53:09,1,1.2,,,-73.9494857788086,40.772911071777344,-73.96179962158203,40.76134490966797,1,N,1,7.5,1.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-03 01:19:00,2016-01-03 01:34:49,1,2.78,,,-73.95216369628906,40.77726364135742,-73.9648666381836,40.80162048339844,1,N,1,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +1,2016-01-12 16:47:37,2016-01-12 17:04:24,3,2.0,,,-73.989501953125,40.739994049072266,-73.98397064208984,40.758140563964844,1,N,2,12.0,1.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-07 16:51:04,2016-01-07 17:06:51,1,2.7,,,-73.97869110107422,40.76116180419922,-73.9969482421875,40.73247146606445,1,N,1,12.0,1.0,0.5,0.3,2.75,0.0,16.55 +1,2016-01-06 00:28:16,2016-01-06 00:31:29,1,0.9,,,-73.97766876220703,40.778690338134766,-73.96745300292969,40.78775405883789,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-19 21:48:43,2016-01-19 21:54:45,5,0.82,,,0.0,0.0,0.0,0.0,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +2,2016-01-22 09:13:20,2016-01-22 09:25:49,1,2.32,,,-73.9627685546875,40.79930114746094,-73.95081329345703,40.77759552001953,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-21 11:48:32,2016-01-21 12:25:12,1,4.39,,,-74.0047378540039,40.737491607666016,-73.95487213134766,40.7650032043457,1,N,2,24.5,0.0,0.5,0.3,0.0,0.0,25.3 +2,2016-01-05 21:45:12,2016-01-05 21:54:13,1,1.39,,,-74.00642395019531,40.739707946777344,-73.98941802978516,40.74567413330078,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +1,2016-01-24 09:58:22,2016-01-24 10:06:07,1,1.5,,,-73.96347045898438,40.7577018737793,-73.96711730957031,40.7723388671875,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-16 19:58:47,2016-01-16 20:18:28,1,3.4,,,-73.99089813232422,40.74531555175781,-74.01742553710938,40.71090316772461,1,N,1,15.0,0.5,0.5,0.3,2.5,0.0,18.8 +2,2016-01-09 23:15:10,2016-01-09 23:22:02,1,0.77,,,-73.99172973632812,40.71622085571289,-73.99348449707031,40.724544525146484,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-14 19:51:49,2016-01-14 20:00:33,1,1.51,,,-73.97174072265625,40.758338928222656,-73.98249053955078,40.7394905090332,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-11 08:30:15,2016-01-11 08:38:54,2,1.78,,,-73.99556732177734,40.74915313720703,-73.99274444580078,40.730743408203125,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-04 07:33:15,2016-01-04 07:58:37,1,5.78,,,-73.99532318115234,40.696189880371094,-73.97071838378906,40.757049560546875,1,N,2,21.5,0.0,0.5,0.3,0.0,0.0,22.3 +1,2016-01-22 20:06:04,2016-01-22 20:16:33,1,2.4,,,-73.97498321533203,40.75791931152344,-73.98326873779297,40.77933120727539,1,N,1,10.5,0.5,0.5,0.3,2.0,0.0,13.8 +1,2016-01-16 19:33:44,2016-01-16 19:49:59,2,2.7,,,0.0,0.0,0.0,0.0,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-25 19:41:58,2016-01-25 19:48:33,2,0.9,,,-73.99600982666016,40.76430892944336,-73.98780822753906,40.756290435791016,1,N,1,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-01 17:28:35,2016-01-01 18:00:00,1,18.0,,,-73.95110321044922,40.79765319824219,-73.78976440429688,40.64698028564453,2,Y,1,52.0,0.0,0.5,0.3,14.55,5.54,72.89 +1,2016-01-04 17:02:42,2016-01-04 17:16:47,1,2.4,,,-74.00674438476562,40.70549392700195,-73.98606872558594,40.73476791381836,1,N,1,11.5,1.0,0.5,0.3,2.65,0.0,15.95 +1,2016-01-10 00:21:40,2016-01-10 00:27:00,2,1.5,,,-73.98835754394531,40.764305114746094,-73.98272705078125,40.782230377197266,1,N,1,6.5,0.5,0.5,0.3,1.0,0.0,8.8 +1,2016-01-22 00:29:04,2016-01-22 00:34:00,1,0.6,,,-73.98631286621094,40.75739288330078,-73.97908782958984,40.75266647338867,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-08 21:12:58,2016-01-08 21:17:23,3,1.01,,,-73.98771667480469,40.770267486572266,-73.97675323486328,40.778324127197266,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-03 19:50:01,2016-01-03 20:01:27,1,2.1,,,-73.97640991210938,40.758155822753906,-73.99705505371094,40.738372802734375,1,N,1,9.5,0.0,0.5,0.3,1.0,0.0,11.3 +1,2016-01-22 12:49:21,2016-01-22 12:54:26,1,0.6,,,0.0,0.0,-73.94676208496094,40.772117614746094,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-07 10:04:00,2016-01-07 10:25:43,1,3.2,,,-74.0084457397461,40.721126556396484,-73.9804458618164,40.749969482421875,1,N,1,16.0,0.0,0.5,0.3,3.35,0.0,20.15 +2,2016-01-06 23:47:16,2016-01-06 23:53:14,1,1.0,,,-73.99417114257812,40.740840911865234,-73.97807312011719,40.7342529296875,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +1,2016-01-21 06:00:46,2016-01-21 06:07:08,1,1.2,,,-73.97854614257812,40.754112243652344,-73.98285675048828,40.76686096191406,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +1,2016-01-05 16:17:10,2016-01-05 16:23:25,1,1.5,,,-73.96590423583984,40.75436782836914,-73.95236206054688,40.77286911010742,1,N,1,7.0,1.0,0.5,0.3,1.0,0.0,9.8 +1,2016-01-06 23:00:40,2016-01-06 23:22:14,1,9.5,,,-73.97376251220703,40.78453063964844,-73.89366912841797,40.863563537597656,1,N,2,29.0,0.5,0.5,0.3,0.0,0.0,30.3 +2,2016-01-21 00:10:03,2016-01-21 00:35:48,5,7.45,,,-73.96976470947266,40.75828170776367,-73.94132232666016,40.8438835144043,1,N,1,25.0,0.5,0.5,0.3,5.26,0.0,31.56 +2,2016-01-17 12:29:02,2016-01-17 12:40:05,2,2.33,,,-73.95552062988281,40.77971267700195,-73.98191833496094,40.76869583129883,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-21 19:45:34,2016-01-21 19:52:26,1,1.3,,,-73.97503662109375,40.77737045288086,-73.98017120361328,40.78981018066406,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-03 23:52:30,2016-01-04 23:48:07,4,1.48,,,0.0,0.0,0.0,0.0,1,N,1,8.0,0.5,0.5,0.3,1.4,0.0,10.7 +1,2016-01-28 12:54:50,2016-01-28 13:22:25,1,5.8,,,-73.97472381591797,40.7602653503418,-74.0066909790039,40.705623626708984,1,N,1,23.5,0.0,0.5,0.3,7.25,0.0,31.55 +2,2016-01-08 20:47:44,2016-01-08 21:07:27,5,2.25,,,-74.01398468017578,40.715335845947266,-73.9957046508789,40.72507858276367,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +2,2016-01-03 13:07:51,2016-01-03 13:29:40,1,11.14,,,-73.98387145996094,40.7684211730957,-73.86189270019531,40.76845169067383,1,N,1,31.5,0.0,0.5,0.3,9.46,5.54,47.3 +1,2016-01-13 17:52:23,2016-01-13 17:56:42,4,0.9,,,-73.98085021972656,40.78173828125,-73.97267150878906,40.79322052001953,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-14 11:50:20,2016-01-14 12:09:34,1,3.13,,,-73.97444152832031,40.75742721557617,-74.00646209716797,40.73202133178711,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +2,2016-01-19 12:24:49,2016-01-19 12:31:08,1,0.82,,,-73.9795913696289,40.776283264160156,-73.9870376586914,40.76601791381836,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-05 18:34:01,2016-01-05 18:43:07,1,1.8,,,-73.97151184082031,40.74851989746094,-73.97817993164062,40.7293586730957,1,N,1,8.5,1.0,0.5,0.3,2.55,0.0,12.85 +2,2016-01-04 07:48:58,2016-01-04 07:55:09,2,0.93,,,-73.99390411376953,40.75103759765625,-73.98589324951172,40.76213836669922,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-11 10:53:33,2016-01-11 11:01:54,2,1.3,,,-73.96910858154297,40.76067352294922,-73.95800018310547,40.77039337158203,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-11 18:32:24,2016-01-11 18:38:57,1,1.26,,,-74.00457000732422,40.741641998291016,-73.99424743652344,40.74625015258789,1,N,1,6.5,1.0,0.5,0.3,2.08,0.0,10.38 +1,2016-01-06 15:31:23,2016-01-06 15:42:11,1,1.1,,,-73.99058532714844,40.75632095336914,-73.98453521728516,40.749393463134766,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-24 19:32:48,2016-01-24 19:48:06,1,1.84,,,-73.9729232788086,40.76681137084961,-73.96659851074219,40.75490188598633,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +2,2016-01-03 21:23:28,2016-01-03 21:25:38,1,0.29,,,-73.8272933959961,40.853187561035156,-73.83078002929688,40.85373306274414,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,4.8 +1,2016-01-25 07:48:28,2016-01-25 08:05:17,1,2.1,,,-73.95303344726562,40.76780700683594,-73.98145294189453,40.762359619140625,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +2,2016-01-24 16:49:41,2016-01-24 16:56:06,1,0.9,,,-74.00273132324219,40.7393684387207,-73.99456787109375,40.75069046020508,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-02 17:40:20,2016-01-02 17:54:38,1,2.62,,,-73.9510498046875,40.79434585571289,-73.95571899414062,40.76594161987305,1,N,1,12.0,0.0,0.5,0.3,3.84,0.0,16.64 +1,2016-01-12 21:53:15,2016-01-12 22:05:33,1,5.6,,,-73.86315155029297,40.76986312866211,-73.86589813232422,40.72573471069336,1,N,1,17.0,0.5,0.5,0.3,4.0,0.0,22.3 +2,2016-01-28 00:34:24,2016-01-28 00:39:09,4,1.83,,,-73.98831939697266,40.71818161010742,-73.95610046386719,40.708858489990234,1,N,1,7.5,0.5,0.5,0.3,1.0,0.0,9.8 +1,2016-01-27 09:23:41,2016-01-27 09:30:03,1,0.7,,,-73.96614837646484,40.7654914855957,-73.95511627197266,40.76571273803711,1,N,1,6.0,0.0,0.5,0.3,2.0,0.0,8.8 +2,2016-01-16 00:59:05,2016-01-16 01:03:49,3,1.12,,,-73.98430633544922,40.769771575927734,-73.99491119384766,40.75542068481445,1,N,1,5.5,0.5,0.5,0.3,1.7,0.0,8.5 +1,2016-01-16 20:51:25,2016-01-16 21:05:56,2,1.7,,,-73.99879455566406,40.76041030883789,-73.98031616210938,40.746063232421875,1,N,1,11.0,0.5,0.5,0.3,3.05,0.0,15.35 +1,2016-01-18 01:04:59,2016-01-18 01:08:20,1,0.9,,,-73.99127960205078,40.75624465942383,-74.00143432617188,40.74631118774414,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,7.3 +1,2016-01-04 09:41:57,2016-01-04 09:49:14,1,1.4,,,-73.9634780883789,40.76854705810547,-73.95539093017578,40.78271484375,1,N,1,7.5,0.0,0.5,0.3,2.05,0.0,10.35 +2,2016-01-19 23:38:57,2016-01-19 23:46:32,5,2.18,,,-73.9729995727539,40.762611389160156,-73.99649047851562,40.746185302734375,1,N,1,8.5,0.5,0.5,0.3,1.5,0.0,11.3 +1,2016-01-16 19:10:41,2016-01-16 19:23:37,3,2.0,,,-73.99113464355469,40.719635009765625,-74.00840759277344,40.73484802246094,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +1,2016-01-19 13:59:15,2016-01-19 14:07:37,1,1.2,,,-73.9723892211914,40.79661178588867,-73.9805908203125,40.78105163574219,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-01 01:22:43,2016-01-01 01:28:38,6,0.86,,,-73.9983139038086,40.739967346191406,-74.00662231445312,40.7302131652832,1,N,1,6.0,0.5,0.5,0.3,0.7,0.0,8.0 +2,2016-01-12 22:30:21,2016-01-12 22:38:47,1,1.95,,,-73.98613739013672,40.75722885131836,-73.98104858398438,40.78098678588867,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-30 11:32:26,2016-01-30 12:03:10,1,3.96,,,-73.95304870605469,40.70676040649414,-73.98983001708984,40.73527145385742,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,20.8 +1,2016-01-14 20:42:32,2016-01-14 20:50:49,1,1.4,,,-73.98932647705078,40.73830032348633,-73.98426818847656,40.75298309326172,1,N,1,7.5,0.5,0.5,0.3,1.11,0.0,9.91 +2,2016-01-07 16:26:14,2016-01-07 16:31:44,2,1.0,,,-73.99980926513672,40.73841094970703,-74.00862884521484,40.72807312011719,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-29 23:22:40,2016-01-29 23:34:02,1,2.44,,,-74.0159912109375,40.71110153198242,-74.0074234008789,40.74103927612305,1,N,1,11.0,0.5,0.5,0.3,1.0,0.0,13.3 +1,2016-01-22 21:20:26,2016-01-22 21:26:46,2,0.4,,,-73.99275970458984,40.7363166809082,-73.98822021484375,40.734275817871094,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-28 14:31:42,2016-01-28 15:01:04,1,4.9,,,-74.00279998779297,40.74386978149414,-73.9729995727539,40.79844284057617,1,N,1,23.0,0.0,0.5,0.3,4.75,0.0,28.55 +2,2016-01-04 07:31:24,2016-01-04 07:38:26,2,1.2,,,-74.00920104980469,40.705841064453125,-74.00528717041016,40.71910095214844,1,N,1,6.5,0.0,0.5,0.3,2.19,0.0,9.49 +2,2016-01-08 19:01:54,2016-01-08 19:14:58,1,1.94,,,-73.94755554199219,40.77535629272461,-73.9686279296875,40.75908660888672,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-08 00:41:06,2016-01-08 00:47:28,1,1.4,,,-73.95543670654297,40.77943801879883,-73.96936798095703,40.79041290283203,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +1,2016-01-14 17:00:43,2016-01-14 17:40:18,1,10.0,,,-73.87068176269531,40.773704528808594,-73.98277282714844,40.780029296875,1,N,1,34.5,1.0,0.5,0.3,6.0,5.54,47.84 +1,2016-01-15 14:37:01,2016-01-15 14:45:39,1,1.2,,,-73.97791290283203,40.75242233276367,-73.99891662597656,40.761104583740234,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-15 22:21:10,2016-01-15 22:32:29,1,2.86,,,-73.9832992553711,40.74347686767578,-73.98320007324219,40.71494674682617,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,13.3 +2,2016-01-29 22:43:35,2016-01-29 22:55:01,1,2.12,,,-73.98250579833984,40.772422790527344,-73.96975708007812,40.75232696533203,1,N,1,9.5,0.5,0.5,0.3,1.0,0.0,11.8 +2,2016-01-21 12:38:34,2016-01-21 12:52:26,1,0.96,,,-73.99824523925781,40.735477447509766,-73.98767852783203,40.74317932128906,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,12.88 +1,2016-01-01 20:12:26,2016-01-01 20:39:55,1,17.8,,,-73.78357696533203,40.64863967895508,-73.9819564819336,40.74040222167969,2,N,1,52.0,0.0,0.5,0.3,7.5,5.54,65.84 +2,2016-01-17 00:40:30,2016-01-17 00:54:37,1,2.62,,,-73.98311614990234,40.730525970458984,-74.00382232666016,40.73827362060547,1,N,1,12.0,0.5,0.5,0.3,2.0,0.0,15.3 +2,2016-01-03 18:25:46,2016-01-03 18:48:25,1,8.71,,,-73.87300872802734,40.7741584777832,-73.98127746582031,40.754539489746094,1,N,1,27.0,0.0,0.5,0.3,6.67,5.54,40.01 +2,2016-01-28 13:00:14,2016-01-28 13:22:27,1,1.41,,,-73.97280883789062,40.76205825805664,-73.95404815673828,40.76520919799805,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +2,2016-01-03 07:36:57,2016-01-03 07:43:16,3,2.68,,,-73.950927734375,40.78609085083008,-73.97583770751953,40.75823974609375,1,N,1,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-21 22:03:22,2016-01-21 22:35:29,1,8.2,,,-73.9918212890625,40.716304779052734,-73.90767669677734,40.77597427368164,1,N,1,29.0,0.5,0.5,0.3,6.05,0.0,36.35 +2,2016-01-03 13:44:09,2016-01-03 13:59:42,1,2.75,,,-73.99150848388672,40.74984359741211,-73.95870208740234,40.76398849487305,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-30 21:18:50,2016-01-30 21:22:05,1,0.45,,,-73.9820785522461,40.728050231933594,-73.98130798339844,40.73296356201172,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +1,2016-01-05 10:33:10,2016-01-05 10:40:06,1,1.1,,,-73.9854736328125,40.753143310546875,-73.97247314453125,40.76240158081055,1,N,1,7.0,0.0,0.5,0.3,2.3,0.0,10.1 +2,2016-01-17 10:11:39,2016-01-17 10:15:33,1,1.03,,,-73.93575286865234,40.761051177978516,-73.94696044921875,40.74924087524414,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-15 17:48:11,2016-01-15 18:11:24,1,1.49,,,-73.98481750488281,40.75912857055664,-73.9839859008789,40.75631332397461,1,N,2,14.5,1.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-16 10:11:12,2016-01-16 10:24:23,1,4.6,,,-73.97509002685547,40.761409759521484,-73.9892807006836,40.72037124633789,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,19.75 +2,2016-01-25 09:03:30,2016-01-25 09:13:25,2,1.42,,,-73.9919662475586,40.73107147216797,-74.00872802734375,40.71820068359375,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-21 10:20:37,2016-01-21 10:22:51,1,0.46,,,-73.95337677001953,40.77959060668945,-73.94983673095703,40.78548812866211,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-16 02:27:50,2016-01-16 02:30:51,1,0.4,,,-73.95543670654297,40.779327392578125,-73.95012664794922,40.77594757080078,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +2,2016-01-18 08:24:53,2016-01-18 08:27:03,1,0.85,,,-73.96585083007812,40.75849914550781,-73.97515869140625,40.75225830078125,1,N,1,4.5,0.0,0.5,0.3,0.7,0.0,6.0 +1,2016-01-17 15:47:20,2016-01-17 16:10:59,2,3.5,,,-73.95886993408203,40.71683120727539,-74.00550842285156,40.71816635131836,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,17.8 +1,2016-01-09 11:33:02,2016-01-09 11:49:49,1,3.2,,,-73.9976806640625,40.73615646362305,-73.96803283691406,40.77043151855469,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,17.15 +2,2016-01-18 23:43:20,2016-01-18 23:47:29,1,1.11,,,-73.9757308959961,40.767005920410156,-73.97509765625,40.77729797363281,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-29 20:22:59,2016-01-29 20:41:30,3,1.9,,,-73.99222564697266,40.7481575012207,-73.98084259033203,40.730621337890625,1,N,1,12.5,0.5,0.5,0.3,2.75,0.0,16.55 +1,2016-01-01 03:14:18,2016-01-01 03:19:02,1,0.8,,,0.0,0.0,0.0,0.0,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +1,2016-01-02 01:17:40,2016-01-02 01:32:57,1,5.6,,,-73.9796142578125,40.761077880859375,-73.93875122070312,40.823204040527344,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,18.3 +1,2016-01-04 19:09:10,2016-01-04 19:14:18,1,0.8,,,-74.01143646240234,40.714298248291016,-74.00052642822266,40.714515686035156,1,N,1,5.0,1.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-28 07:31:30,2016-01-28 07:47:08,1,2.8,,,-73.98997497558594,40.740848541259766,-74.01390838623047,40.71391677856445,1,N,1,12.5,0.0,0.5,0.3,3.3,0.0,16.6 +2,2016-01-22 16:28:38,2016-01-22 16:40:22,5,1.74,,,-74.00332641601562,40.7489013671875,-73.9922103881836,40.73374938964844,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-17 00:47:57,2016-01-17 01:02:45,2,7.73,,,-73.99314880371094,40.76266098022461,-73.9306411743164,40.8537483215332,1,N,2,23.0,0.5,0.5,0.3,0.0,0.0,24.3 +1,2016-01-02 18:18:41,2016-01-02 18:38:37,3,7.1,,,-74.01407623291016,40.71304702758789,-73.96468353271484,40.63331604003906,1,N,2,23.5,0.0,0.5,0.3,0.0,5.54,29.84 +2,2016-01-26 10:19:56,2016-01-26 10:57:12,1,6.88,,,-73.87442779541016,40.77399826049805,-73.93855285644531,40.805721282958984,1,N,1,30.5,0.0,0.5,0.3,7.37,5.54,44.21 +1,2016-01-16 17:41:37,2016-01-16 17:50:17,1,1.7,,,0.0,0.0,-74.00530242919922,40.72872543334961,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-01 03:03:47,2016-01-01 03:13:42,2,2.0,,,-73.90489959716797,40.753292083740234,-73.93650817871094,40.75518798828125,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +2,2016-01-05 08:08:03,2016-01-05 08:30:57,1,1.85,,,-73.9455795288086,40.8018798828125,-73.95800018310547,40.77936935424805,1,N,1,14.5,0.0,0.5,0.3,2.0,0.0,17.3 +2,2016-01-03 11:24:03,2016-01-03 11:29:56,1,1.34,,,-73.95245361328125,40.77714157104492,-73.96452331542969,40.760162353515625,1,N,1,6.5,0.0,0.5,0.3,1.2,0.0,8.5 +2,2016-01-04 20:58:45,2016-01-04 21:12:02,1,2.65,,,-73.9892578125,40.748069763183594,-73.95993041992188,40.767730712890625,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,15.36 +2,2016-01-23 02:53:33,2016-01-23 02:56:35,5,0.39,,,-73.99057006835938,40.73374938964844,-73.98400115966797,40.73017883300781,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +1,2016-01-18 03:51:57,2016-01-18 04:01:23,1,2.0,,,-73.98716735839844,40.729034423828125,-74.00604248046875,40.70954513549805,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +2,2016-01-20 14:00:48,2016-01-20 14:16:03,2,1.52,,,-73.9964599609375,40.74171829223633,-73.97882843017578,40.75300598144531,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,12.3 +2,2016-01-01 23:49:50,2016-01-02 00:21:08,1,20.73,,,-73.77669525146484,40.645320892333984,-74.0251235961914,40.62910079956055,1,N,1,56.0,0.5,0.5,0.3,8.0,0.0,65.3 +1,2016-01-09 23:54:54,2016-01-10 00:03:00,4,1.2,,,-73.99430084228516,40.71944046020508,-74.005126953125,40.719207763671875,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +2,2016-01-19 20:22:43,2016-01-19 20:33:42,1,2.4,,,-73.98111724853516,40.76161575317383,-73.95207214355469,40.772972106933594,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-12 12:58:28,2016-01-12 13:04:06,5,0.49,,,-73.9775390625,40.779300689697266,-73.98206329345703,40.772918701171875,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-07 06:01:48,2016-01-07 06:24:54,1,5.8,,,-73.9706802368164,40.79376983642578,-73.93313598632812,40.73704147338867,1,N,1,21.0,0.0,0.5,0.3,4.35,0.0,26.15 +1,2016-01-27 18:19:14,2016-01-27 18:57:44,1,6.8,,,-73.9929428100586,40.76841354370117,-73.95724487304688,40.71210861206055,1,N,1,28.0,1.0,0.5,0.3,5.95,0.0,35.75 +1,2016-01-22 12:56:52,2016-01-22 13:12:51,1,2.7,,,-73.97399139404297,40.75340270996094,-73.97239685058594,40.781288146972656,1,N,1,13.0,0.0,0.5,0.3,2.75,0.0,16.55 +2,2016-01-20 07:26:29,2016-01-20 07:29:23,1,0.82,,,-73.9922866821289,40.74907684326172,-73.99029541015625,40.74090576171875,1,N,1,4.5,0.0,0.5,0.3,1.32,0.0,6.62 +2,2016-01-29 20:12:40,2016-01-29 20:25:52,2,1.69,,,-73.9800796508789,40.775691986083984,-73.98121643066406,40.75886154174805,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-15 15:37:03,2016-01-15 15:52:28,1,1.97,,,-73.96444702148438,40.773162841796875,-73.98756408691406,40.76530838012695,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-08 11:40:54,2016-01-08 11:57:56,1,2.0,,,-73.94711303710938,40.77157974243164,-73.97355651855469,40.7636604309082,1,N,1,12.5,0.0,0.5,0.3,3.33,0.0,16.63 +2,2016-01-22 17:48:55,2016-01-22 17:55:30,1,0.67,,,-74.0038833618164,40.72377014160156,-74.00957489013672,40.721492767333984,1,N,1,6.0,1.0,0.5,0.3,1.95,0.0,9.75 +2,2016-01-29 20:12:32,2016-01-29 20:22:19,1,2.49,,,-73.95767974853516,40.76517105102539,-73.97509002685547,40.73483657836914,1,N,1,10.5,0.5,0.5,0.3,1.2,0.0,13.0 +1,2016-01-28 14:36:52,2016-01-28 14:44:47,1,0.9,,,-73.96580505371094,40.76283645629883,-73.96699523925781,40.772464752197266,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-07 17:34:41,2016-01-07 18:00:35,1,3.9,,,-73.97149658203125,40.75875473022461,-73.93482971191406,40.80330276489258,1,N,2,18.5,1.0,0.5,0.3,0.0,0.0,20.3 +1,2016-01-01 03:11:18,2016-01-01 03:35:16,4,5.8,,,0.0,0.0,0.0,0.0,1,N,1,21.5,0.5,0.5,0.3,4.55,0.0,27.35 +1,2016-01-03 10:58:06,2016-01-03 11:02:23,1,0.7,,,-73.97879791259766,40.76247787475586,-73.98190307617188,40.77000045776367,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-05 07:49:40,2016-01-05 08:00:04,2,2.2,,,-73.96176147460938,40.7769775390625,-73.98174285888672,40.75236892700195,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-30 23:33:46,2016-01-31 00:04:09,1,6.0,,,-73.9851303100586,40.760379791259766,-74.01271057128906,40.70179748535156,1,N,2,23.5,0.5,0.5,0.3,0.0,0.0,24.8 +2,2016-01-26 10:02:58,2016-01-26 10:13:38,6,0.73,,,-74.00199890136719,40.7404899597168,-73.99523162841797,40.74962615966797,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-16 10:50:30,2016-01-16 10:57:43,1,2.1,,,-73.99501037597656,40.759586334228516,-73.96780395507812,40.766849517822266,1,Y,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-01 21:34:37,2016-01-01 21:49:55,1,1.6,,,-73.98832702636719,40.75838088989258,-73.98738098144531,40.76875686645508,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +1,2016-01-29 21:59:42,2016-01-29 22:58:45,1,29.0,,,-74.0005874633789,40.738853454589844,-73.78388214111328,40.78346252441406,1,N,1,81.5,0.5,0.5,0.3,0.0,5.54,88.34 +1,2016-01-12 12:31:57,2016-01-12 12:48:27,1,2.6,,,-74.01004028320312,40.72083282470703,-73.98408508300781,40.693748474121094,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-11 10:08:20,2016-01-11 10:25:48,1,5.5,,,-73.97526550292969,40.74561309814453,-74.01576232910156,40.7117919921875,1,N,1,19.5,0.0,0.5,0.3,4.05,0.0,24.35 +2,2016-01-19 06:54:28,2016-01-20 06:00:04,1,9.79,,,-73.77690124511719,40.64550018310547,-73.79788208007812,40.72024917602539,1,N,1,35.0,0.0,0.5,0.3,0.0,0.0,35.8 +2,2016-01-16 15:45:25,2016-01-16 15:50:38,5,1.78,,,-73.96829986572266,40.75918960571289,-73.9524154663086,40.78099822998047,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-12 15:07:56,2016-01-12 16:06:47,1,21.59,,,-73.77665710449219,40.645320892333984,-73.93769073486328,40.84587097167969,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-17 00:02:24,2016-01-17 00:23:30,1,3.0,,,-73.98811340332031,40.74582290649414,-73.98802185058594,40.745826721191406,1,N,1,14.5,0.5,0.5,0.3,3.16,0.0,18.96 +1,2016-01-20 22:06:59,2016-01-20 22:30:51,1,5.2,,,-73.98872375488281,40.748592376708984,-73.97368621826172,40.68754196166992,1,N,1,20.0,0.5,0.5,0.3,3.2,0.0,24.5 +2,2016-01-01 01:40:48,2016-01-01 01:54:17,1,5.42,,,-73.99199676513672,40.7696418762207,-73.93939208984375,40.805118560791016,1,N,1,17.0,0.5,0.5,0.3,0.0,0.0,18.3 +2,2016-01-15 22:32:57,2016-01-15 22:46:40,5,1.4,,,-73.98200988769531,40.76553726196289,-73.99809265136719,40.75662612915039,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-04 09:42:24,2016-01-04 10:03:25,4,3.53,,,-73.9849624633789,40.74619674682617,-74.01131439208984,40.70857238769531,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-12 17:43:53,2016-01-12 17:46:49,3,0.6,,,-73.94779968261719,40.780548095703125,-73.95613098144531,40.77872085571289,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-04 08:01:49,2016-01-04 08:15:43,2,1.8,,,-73.99656677246094,40.7318229675293,-73.97483825683594,40.73556137084961,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +1,2016-01-02 18:13:59,2016-01-02 18:37:48,1,2.8,,,-73.97765350341797,40.78411102294922,-73.99032592773438,40.75113296508789,1,N,1,16.5,0.0,0.5,0.3,3.45,0.0,20.75 +2,2016-01-27 01:26:30,2016-01-27 01:26:38,1,0.01,,,-73.93667602539062,40.764808654785156,-73.93663787841797,40.764888763427734,1,N,3,-2.5,-0.5,-0.5,-0.3,0.0,0.0,-3.8 +1,2016-01-28 00:01:20,2016-01-28 00:07:25,1,1.3,,,-73.9189224243164,40.75910186767578,-73.92630767822266,40.77168273925781,1,N,1,6.5,0.5,0.5,0.3,1.4,0.0,9.2 +1,2016-01-05 08:11:40,2016-01-05 08:18:10,2,0.8,,,-73.9695816040039,40.75730514526367,-73.9771499633789,40.75886154174805,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-22 02:22:47,2016-01-22 02:29:07,1,1.7,,,-74.0050277709961,40.719486236572266,-74.0049819946289,40.739952087402344,1,N,1,7.5,0.5,0.5,0.3,1.0,0.0,9.8 +2,2016-01-20 22:44:40,2016-01-20 22:51:58,1,1.94,,,-73.99650573730469,40.762657165527344,-73.99669647216797,40.74254608154297,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +2,2016-01-06 14:24:01,2016-01-06 14:37:42,5,1.36,,,-73.986572265625,40.7428092956543,-73.98178100585938,40.75865936279297,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-05 21:13:40,2016-01-05 21:23:27,1,1.77,,,-73.98291015625,40.7448616027832,-73.96576690673828,40.7628288269043,1,N,1,9.0,0.5,0.5,0.3,1.0,0.0,11.3 +1,2016-01-11 19:58:02,2016-01-11 20:12:39,1,6.3,,,-74.01182556152344,40.70293426513672,-73.98899841308594,40.75865173339844,1,N,2,20.0,1.0,0.5,0.3,0.0,0.0,21.8 +1,2016-01-29 18:00:13,2016-01-29 18:04:03,1,0.6,,,-73.97550964355469,40.78992462158203,-73.97215270996094,40.797088623046875,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-17 20:41:33,2016-01-17 20:46:29,1,0.7,,,-73.98332977294922,40.76118469238281,-73.97309875488281,40.75565719604492,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-21 22:25:36,2016-01-21 22:33:52,1,1.57,,,-73.99496459960938,40.76047134399414,-73.97386932373047,40.76410675048828,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-07 16:37:40,2016-01-07 16:59:19,2,3.95,,,-73.98808288574219,40.73774719238281,-73.94881439208984,40.77366638183594,1,N,1,15.5,1.0,0.5,0.3,2.0,0.0,19.3 +1,2016-01-29 07:54:36,2016-01-29 08:04:45,1,1.3,,,-73.97380828857422,40.76131820678711,-73.9900894165039,40.75695037841797,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-07 19:33:57,2016-01-07 19:58:00,1,5.2,,,-73.97970581054688,40.783958435058594,-73.9876937866211,40.73284912109375,1,N,2,20.5,1.0,0.5,0.3,0.0,0.0,22.3 +2,2016-01-11 10:16:20,2016-01-11 10:30:57,1,1.73,,,-73.98932647705078,40.776729583740234,-73.9986343383789,40.75599670410156,1,N,1,10.5,0.0,0.5,0.3,2.0,0.0,13.3 +1,2016-01-13 17:43:12,2016-01-13 17:50:29,2,1.2,,,-73.99147033691406,40.73163986206055,-74.00375366210938,40.716949462890625,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-24 20:06:08,2016-01-24 20:12:26,1,1.07,,,-73.98990631103516,40.7352409362793,-73.98017883300781,40.74592971801758,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-22 08:02:37,2016-01-22 08:10:06,1,0.75,,,-73.99073791503906,40.74562072753906,-73.97911834716797,40.74123001098633,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-18 15:29:40,2016-01-18 15:38:28,1,1.5,,,-73.97489166259766,40.75887680053711,-73.9803466796875,40.77445983886719,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-18 17:18:01,2016-01-18 17:21:20,2,0.54,,,-73.97148895263672,40.78236389160156,-73.97663879394531,40.78048324584961,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-30 03:59:11,2016-01-30 04:29:52,2,5.9,,,-74.00083923339844,40.731685638427734,-73.91270446777344,40.698001861572266,1,N,1,23.5,0.5,0.5,0.3,7.4,0.0,32.2 +1,2016-01-16 22:42:20,2016-01-16 22:42:20,4,0.0,,,-73.98005676269531,40.780548095703125,0.0,0.0,1,Y,2,2.5,0.5,0.5,0.3,0.0,0.0,3.8 +2,2016-01-22 08:33:32,2016-01-22 08:40:19,1,1.05,,,-73.99286651611328,40.7368278503418,-73.99381256103516,40.7465934753418,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-20 22:31:03,2016-01-20 22:35:46,1,1.58,,,-74.00324249267578,40.7507209777832,-73.9913558959961,40.765174865722656,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-17 03:46:01,2016-01-17 04:01:30,1,4.99,,,-73.98543548583984,40.732643127441406,-74.0149154663086,40.70956039428711,1,N,1,17.0,0.5,0.5,0.3,2.0,0.0,20.3 +1,2016-01-03 13:35:22,2016-01-03 13:45:52,1,2.4,,,-73.98628234863281,40.74625778198242,-74.00096893310547,40.72399139404297,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-04 13:06:52,2016-01-04 13:30:46,1,4.3,,,-73.99510192871094,40.72511291503906,-73.96116638183594,40.77922439575195,1,N,1,18.5,0.0,0.5,0.3,3.0,0.0,22.3 +2,2016-01-22 10:21:36,2016-01-22 10:24:46,1,0.31,,,-73.96500396728516,40.75584030151367,-73.9704818725586,40.75750732421875,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-11 10:26:46,2016-01-11 10:35:01,2,4.85,,,-73.97175598144531,40.79438781738281,-73.93540954589844,40.8505744934082,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,18.96 +1,2016-01-22 20:17:17,2016-01-22 20:29:18,1,2.2,,,-73.96172332763672,40.764095306396484,-73.9830093383789,40.73872756958008,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,13.55 +1,2016-01-16 15:07:38,2016-01-16 15:30:19,1,3.4,,,-73.99360656738281,40.74992752075195,-73.95892333984375,40.78068542480469,1,N,2,17.0,0.0,0.5,0.3,0.0,0.0,17.8 +2,2016-01-26 20:16:34,2016-01-26 20:31:47,1,4.57,,,-74.01273345947266,40.71723175048828,-73.9908676147461,40.77513885498047,1,N,1,16.0,0.5,0.5,0.3,3.46,0.0,20.76 +1,2016-01-14 18:00:18,2016-01-14 18:19:17,1,1.4,,,-73.99290466308594,40.742469787597656,-73.98860931396484,40.758663177490234,1,N,1,12.5,1.0,0.5,0.3,1.5,0.0,15.8 +2,2016-01-29 20:18:19,2016-01-29 20:29:24,1,1.8,,,-73.97540283203125,40.758243560791016,-73.99226379394531,40.7494010925293,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +1,2016-01-14 20:44:59,2016-01-14 20:54:35,2,1.5,,,-73.97205352783203,40.753753662109375,-73.99267578125,40.751007080078125,1,N,1,8.0,0.5,0.5,0.3,2.3,0.0,11.6 +1,2016-01-21 06:36:47,2016-01-21 06:46:44,1,2.1,,,-73.99295806884766,40.757110595703125,-73.9847412109375,40.736595153808594,1,N,1,9.5,0.0,0.5,0.3,1.5,0.0,11.8 +1,2016-01-29 21:35:49,2016-01-29 21:47:19,2,1.6,,,-74.00542449951172,40.739051818847656,-74.00703430175781,40.715946197509766,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,12.95 +2,2016-01-19 10:39:36,2016-01-19 10:48:15,1,0.7,,,-73.998046875,40.740779876708984,-73.99594116210938,40.74831008911133,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-29 08:56:17,2016-01-29 09:06:09,1,1.1,,,-73.98260498046875,40.7311897277832,-73.98076629638672,40.74435043334961,1,N,1,8.5,0.0,0.5,0.3,2.3,0.0,11.6 +1,2016-01-03 05:33:26,2016-01-03 05:55:22,1,9.3,,,-73.9820556640625,40.778076171875,-73.86156463623047,40.76820755004883,1,N,2,27.5,0.5,0.5,0.3,0.0,0.0,28.8 +1,2016-01-19 16:27:38,2016-01-19 16:39:15,1,2.2,,,-73.98097229003906,40.730743408203125,-73.96578979492188,40.75438690185547,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-03 02:48:05,2016-01-03 03:04:25,1,2.7,,,-73.98872375488281,40.72119903564453,-73.9787826538086,40.741241455078125,1,N,1,13.0,0.5,0.5,0.3,2.85,0.0,17.15 +2,2016-01-07 18:18:27,2016-01-07 18:34:48,1,2.54,,,-74.00248718261719,40.750179290771484,-73.9726333618164,40.76288986206055,1,N,1,12.5,1.0,0.5,0.3,1.0,0.0,15.3 +1,2016-01-20 13:23:53,2016-01-20 13:32:17,1,0.9,,,-73.97891998291016,40.762393951416016,-73.97494506835938,40.75260925292969,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-09 10:38:02,2016-01-09 10:41:55,3,0.6,,,-73.96029663085938,40.766117095947266,-73.96859741210938,40.76412582397461,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,6.8 +1,2016-01-22 22:49:52,2016-01-22 23:18:11,1,8.1,,,-73.97614288330078,40.75224685668945,-73.96410369873047,40.68532180786133,1,N,1,26.5,0.5,0.5,0.3,5.0,0.0,32.8 +1,2016-01-05 00:50:11,2016-01-05 01:07:48,1,9.5,,,-73.78271484375,40.64442825317383,-73.90219116210938,40.63140869140625,1,N,2,28.0,0.5,0.5,0.3,0.0,0.0,29.3 +2,2016-01-16 16:21:41,2016-01-16 16:32:08,1,4.23,,,-73.77669525146484,40.64537811279297,-73.81226348876953,40.67634582519531,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,18.36 +1,2016-01-03 08:17:54,2016-01-03 08:19:57,2,0.4,,,-73.97508239746094,40.724979400634766,-73.97814178466797,40.72925567626953,1,N,1,3.5,0.0,0.5,0.3,1.8,0.0,6.1 +2,2016-01-01 11:43:06,2016-01-01 11:56:40,2,4.38,,,-74.01409149169922,40.710079193115234,-73.98695373535156,40.7469596862793,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-30 22:15:47,2016-01-30 22:25:07,5,1.69,,,-73.98872375488281,40.758846282958984,-74.00585174560547,40.74516296386719,1,N,1,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-14 10:35:09,2016-01-14 11:06:12,1,12.0,,,-73.9847640991211,40.76963424682617,-73.86146545410156,40.76813888549805,1,N,1,37.0,0.0,0.5,0.3,13.0,5.54,56.34 +1,2016-01-05 21:25:26,2016-01-05 21:38:52,1,2.5,,,-73.98419952392578,40.72092819213867,-73.97730255126953,40.749534606933594,1,N,1,11.0,0.5,0.5,0.3,3.0,0.0,15.3 +1,2016-01-30 23:57:23,2016-01-31 00:14:37,1,1.8,,,-73.98089599609375,40.74272918701172,-74.00302124023438,40.733150482177734,1,N,1,11.5,0.5,0.5,0.3,2.55,0.0,15.35 +2,2016-01-05 09:23:58,2016-01-05 09:28:28,1,0.56,,,-73.96112823486328,40.77492904663086,-73.95401763916016,40.7772102355957,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-07 18:56:54,2016-01-07 19:00:22,1,1.35,,,-73.97795867919922,40.783607482910156,-73.96663665771484,40.7999382019043,1,N,1,5.5,1.0,0.5,0.3,1.82,0.0,9.12 +1,2016-01-21 18:38:30,2016-01-21 19:01:12,1,2.0,,,-73.98995971679688,40.7441291809082,-73.98927307128906,40.7219123840332,1,N,1,15.0,1.0,0.5,0.3,3.35,0.0,20.15 +2,2016-01-28 20:49:34,2016-01-28 20:56:40,1,1.06,,,-73.968017578125,40.75559997558594,-73.98107147216797,40.75120162963867,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-11 08:54:37,2016-01-11 09:02:44,1,0.99,,,-73.95545959472656,40.782718658447266,-73.96479034423828,40.77268981933594,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-11 08:21:09,2016-01-11 08:25:07,1,0.69,,,-74.00821685791016,40.7220458984375,-74.00668334960938,40.731746673583984,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +2,2016-01-29 07:27:04,2016-01-29 07:34:06,2,1.8,,,-73.98303985595703,40.76675033569336,-73.97319793701172,40.79018020629883,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-08 19:42:04,2016-01-08 19:50:09,2,0.9,,,-73.95584869384766,40.772342681884766,-73.95977783203125,40.76127243041992,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-30 18:24:10,2016-01-30 18:40:49,2,3.69,,,-73.9558334350586,40.77242660522461,-73.97931671142578,40.734981536865234,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,18.36 +2,2016-01-19 07:12:02,2016-01-19 07:15:10,1,1.08,,,-73.99246978759766,40.76369857788086,-73.98342895507812,40.77648162841797,1,N,1,5.0,0.0,0.5,0.3,1.0,0.0,6.8 +2,2016-01-29 19:34:24,2016-01-29 19:39:00,6,1.25,,,-73.9732437133789,40.764034271240234,-73.96092224121094,40.77485656738281,1,N,1,6.0,1.0,0.5,0.3,1.5,0.0,9.3 +2,2016-01-13 09:27:50,2016-01-13 09:46:06,2,2.72,,,-73.99309539794922,40.752349853515625,-73.96369171142578,40.77410888671875,1,N,1,13.5,0.0,0.5,0.3,3.58,0.0,17.88 +2,2016-01-25 10:12:50,2016-01-25 10:22:58,5,1.12,,,-73.9808349609375,40.733665466308594,-73.97936248779297,40.7453727722168,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-07 14:30:21,2016-01-07 14:36:56,1,1.49,,,-74.00289916992188,40.760433197021484,-74.00579833984375,40.741146087646484,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-27 14:36:57,2016-01-27 14:42:26,4,0.46,,,-73.98883819580078,40.75333023071289,-73.99346160888672,40.747711181640625,1,N,1,5.0,0.0,0.5,0.3,1.16,0.0,6.96 +1,2016-01-05 08:39:44,2016-01-05 08:48:58,1,1.0,,,-73.95114135742188,40.77464294433594,-73.95496368408203,40.76521301269531,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-14 15:03:17,2016-01-14 15:23:55,2,8.7,,,-73.87446594238281,40.77408218383789,-73.9828872680664,40.7393684387207,1,N,1,26.5,0.0,0.5,0.3,6.55,5.54,39.39 +2,2016-01-09 16:38:28,2016-01-09 16:49:20,2,2.0,,,-73.96704864501953,40.76655960083008,-73.967529296875,40.7877311706543,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-03 02:16:22,2016-01-03 02:27:02,1,1.69,,,-74.00251007080078,40.73427963256836,-73.9846420288086,40.72018814086914,1,N,1,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-05 17:37:46,2016-01-05 17:44:05,1,0.7,,,-73.99171447753906,40.737815856933594,-73.99917602539062,40.744361877441406,1,N,1,6.0,1.0,0.5,0.3,1.95,0.0,9.75 +1,2016-01-07 12:50:46,2016-01-07 13:30:51,1,7.9,,,-73.99690246582031,40.737117767333984,-73.91252136230469,40.684871673583984,1,N,3,31.5,0.0,0.5,0.3,0.0,0.0,32.3 +2,2016-01-17 23:48:57,2016-01-17 23:53:59,1,1.34,,,-74.00273132324219,40.73080062866211,-74.00408935546875,40.72188186645508,1,N,1,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-21 05:31:41,2016-01-21 05:35:45,1,0.4,,,-74.00645446777344,40.71400833129883,-74.01373291015625,40.7146110534668,1,N,1,4.5,0.5,0.5,0.3,1.7,0.0,7.5 +2,2016-01-04 20:01:11,2016-01-04 20:04:09,1,0.49,,,-73.96511840820312,40.75553894042969,-73.96050262451172,40.7617301940918,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +2,2016-01-08 19:00:48,2016-01-08 19:18:15,1,2.82,,,-73.98184967041016,40.765350341796875,-73.94577026367188,40.77326965332031,1,N,1,13.5,1.0,0.5,0.3,2.0,0.0,17.3 +2,2016-01-09 04:00:56,2016-01-09 04:19:12,1,2.94,,,-74.00686645507812,40.74446105957031,-73.97176361083984,40.754249572753906,1,N,1,13.5,0.5,0.5,0.3,1.0,0.0,15.8 +2,2016-01-07 10:16:04,2016-01-07 10:33:18,4,5.96,,,-73.97177124023438,40.75486755371094,-74.01727294921875,40.70539093017578,1,N,1,20.0,0.0,0.5,0.3,3.2,0.0,24.0 +2,2016-01-10 07:39:54,2016-01-10 07:49:42,5,3.79,,,-73.93961334228516,40.81018829345703,-73.97322845458984,40.764041900634766,1,N,1,12.5,0.0,0.5,0.3,1.5,0.0,14.8 +1,2016-01-14 10:57:57,2016-01-14 11:05:19,1,1.2,,,-73.99041748046875,40.756072998046875,-73.97540283203125,40.76536560058594,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-30 11:55:52,2016-01-30 11:56:43,1,0.18,,,-73.96627807617188,40.75312042236328,-73.96910858154297,40.75444793701172,5,N,1,20.0,0.0,0.0,0.3,4.06,0.0,24.36 +1,2016-01-28 19:44:24,2016-01-28 20:03:04,2,2.0,,,-73.98211669921875,40.740413665771484,-74.00323486328125,40.728702545166016,1,N,1,12.5,1.0,0.5,0.3,3.55,0.0,17.85 +2,2016-01-10 20:49:16,2016-01-10 20:55:05,6,1.11,,,-73.97982788085938,40.78321838378906,-73.99127960205078,40.77486038208008,1,N,1,6.0,0.5,0.5,0.3,1.82,0.0,9.12 +1,2016-01-12 21:40:32,2016-01-12 22:01:36,1,10.2,,,-73.86314392089844,40.769813537597656,-73.96407318115234,40.679443359375,1,N,1,30.5,0.5,0.5,0.3,2.5,0.0,34.3 +2,2016-01-26 04:52:44,2016-01-26 05:03:54,5,4.09,,,-73.96813201904297,40.762271881103516,-73.9001693725586,40.74795150756836,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +1,2016-01-08 10:46:27,2016-01-08 10:55:18,1,1.4,,,-73.97191619873047,40.74629211425781,-73.9802017211914,40.76057434082031,1,N,1,7.5,0.0,0.5,0.3,1.7,0.0,10.0 +2,2016-01-06 08:51:02,2016-01-06 08:57:40,1,0.99,,,-74.01017761230469,40.72013854980469,-74.00688934326172,40.73003005981445,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-11 21:38:26,2016-01-11 21:59:25,5,6.07,,,-73.98481750488281,40.744781494140625,-73.95870208740234,40.8148307800293,1,N,1,20.5,0.5,0.5,0.3,4.36,0.0,26.16 +2,2016-01-15 18:20:49,2016-01-15 18:30:13,1,1.48,,,-73.9588394165039,40.77745056152344,-73.97380065917969,40.763336181640625,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-27 14:55:26,2016-01-27 15:13:10,1,2.2,,,-73.98906707763672,40.75362014770508,-73.99691009521484,40.726715087890625,1,N,1,12.5,0.0,0.5,0.3,1.0,0.0,14.3 +2,2016-01-22 07:55:59,2016-01-22 08:08:06,2,1.54,,,-73.99176788330078,40.738651275634766,-73.97853088378906,40.753971099853516,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-29 09:30:55,2016-01-29 09:39:29,1,1.17,,,-73.98258209228516,40.76414108276367,-73.97978210449219,40.751251220703125,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-26 12:35:06,2016-01-26 12:51:49,1,1.3,,,-73.95782470703125,40.761497497558594,-73.97181701660156,40.7503662109375,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-11 09:26:45,2016-01-11 10:06:47,1,8.3,,,-73.9937744140625,40.69594955444336,-73.9971923828125,40.756439208984375,1,N,2,31.5,0.0,0.5,0.3,0.0,0.0,32.3 +1,2016-01-03 19:49:20,2016-01-03 20:01:30,2,2.8,,,-73.96743774414062,40.79804611206055,-73.94189453125,40.82986831665039,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-16 00:06:27,2016-01-16 00:12:08,1,1.18,,,-73.98240661621094,40.76462936401367,-73.99456024169922,40.7625617980957,1,N,1,6.0,0.5,0.5,0.3,1.82,0.0,9.12 +1,2016-01-11 12:53:37,2016-01-11 13:06:48,1,1.5,,,-73.97415161132812,40.757530212402344,-73.95557403564453,40.76422119140625,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-28 10:17:55,2016-01-28 10:49:12,5,11.9,,,-73.7862548828125,40.64189910888672,-73.93883514404297,40.665592193603516,1,N,2,37.0,0.0,0.5,0.3,0.0,0.0,37.8 +2,2016-01-01 02:26:21,2016-01-01 02:27:18,1,0.13,,,-73.9962387084961,40.763458251953125,-73.99517059326172,40.765201568603516,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,4.3 +1,2016-01-22 10:06:44,2016-01-22 10:23:55,1,2.3,,,-73.98982238769531,40.7520866394043,-74.00241088867188,40.7238883972168,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-05 11:23:57,2016-01-05 11:31:37,1,1.05,,,-73.98847961425781,40.723148345947266,-74.00372314453125,40.722599029541016,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +1,2016-01-13 07:35:56,2016-01-13 07:51:30,1,3.1,,,-73.99055480957031,40.7390022277832,-74.00765991210938,40.70589828491211,1,N,1,12.5,0.0,0.5,0.3,1.33,0.0,14.63 +2,2016-01-26 14:15:53,2016-01-26 14:43:44,1,4.58,,,-73.98491668701172,40.76015853881836,-74.01319122314453,40.714500427246094,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,20.3 +1,2016-01-06 22:21:50,2016-01-06 22:39:39,1,3.5,,,-73.94320678710938,40.77785110473633,-73.98479461669922,40.76650619506836,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,15.8 +1,2016-01-06 20:46:33,2016-01-06 21:12:35,1,6.8,,,-73.99153137207031,40.735111236572266,-73.95552825927734,40.800331115722656,1,N,1,25.0,0.5,0.5,0.3,5.25,0.0,31.55 +1,2016-01-22 07:21:07,2016-01-22 07:26:58,1,1.0,,,-73.99542999267578,40.75458908081055,-73.99134826660156,40.76445770263672,1,N,1,5.5,0.0,0.5,0.3,1.85,0.0,8.15 +2,2016-01-18 20:03:14,2016-01-18 20:03:29,1,0.08,,,-73.99790954589844,40.736000061035156,-73.99726867675781,40.73662185668945,1,N,1,2.5,0.5,0.5,0.3,1.0,0.0,4.8 +2,2016-01-03 02:56:20,2016-01-03 03:00:34,2,0.9,,,-73.99498748779297,40.73649978637695,-73.9826431274414,40.73554992675781,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +1,2016-01-20 18:16:42,2016-01-20 18:36:42,1,1.7,,,-73.9914321899414,40.74988555908203,-73.97732543945312,40.74930953979492,1,N,2,13.0,1.0,0.5,0.3,0.0,0.0,14.8 +2,2016-01-16 03:30:15,2016-01-16 03:36:40,1,1.44,,,-73.98051452636719,40.67648696899414,-73.98969268798828,40.688785552978516,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +2,2016-01-15 19:35:46,2016-01-15 19:54:45,1,5.7,,,-73.98518371582031,40.763336181640625,-73.94380187988281,40.80720138549805,1,N,1,20.0,1.0,0.5,0.3,4.36,0.0,26.16 +2,2016-01-05 08:29:27,2016-01-05 08:34:59,5,1.13,,,-73.99381256103516,40.73566818237305,-74.00692749023438,40.72872543334961,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-13 19:30:41,2016-01-13 19:52:10,2,3.9,,,-73.97420501708984,40.75062561035156,-73.96257019042969,40.794944763183594,1,N,1,16.5,1.0,0.5,0.3,3.66,0.0,21.96 +2,2016-01-14 09:01:03,2016-01-14 09:42:14,1,4.15,,,-73.95886993408203,40.7689208984375,-73.98700714111328,40.745269775390625,1,N,1,26.5,0.0,0.5,0.3,6.82,0.0,34.12 +1,2016-01-11 01:00:47,2016-01-11 01:03:26,1,0.9,,,-73.9598617553711,40.762306213378906,-73.95632934570312,40.771461486816406,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-06 05:38:35,2016-01-06 05:43:38,2,0.89,,,-73.99022674560547,40.75592803955078,-73.97779083251953,40.75450134277344,1,N,1,5.5,0.5,0.5,0.3,2.04,0.0,8.84 +2,2016-01-03 21:23:44,2016-01-03 21:23:50,1,0.0,,,0.0,0.0,-73.78972625732422,40.64365005493164,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,3.8 +2,2016-01-27 18:06:15,2016-01-27 18:08:13,1,0.6,,,-73.95599365234375,40.788055419921875,-73.96053314208984,40.781551361083984,1,N,1,4.0,1.0,0.5,0.3,1.0,0.0,6.8 +2,2016-01-10 14:49:39,2016-01-10 14:53:49,1,0.92,,,-73.99104309082031,40.760311126708984,-74.002197265625,40.755619049072266,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-17 10:37:34,2016-01-17 10:44:30,1,1.2,,,-73.96656036376953,40.76703643798828,-73.98201751708984,40.76823806762695,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-21 16:00:22,2016-01-21 16:12:02,1,1.0,,,-73.96743774414062,40.7618408203125,-73.95442962646484,40.76592254638672,1,N,1,8.5,1.0,0.5,0.3,1.0,0.0,11.3 +2,2016-01-28 12:24:22,2016-01-28 12:35:09,3,0.66,,,-73.97241973876953,40.75953674316406,-73.97974395751953,40.755001068115234,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-09 21:28:06,2016-01-09 21:38:44,1,1.57,,,-73.97872924804688,40.74272537231445,-73.97735595703125,40.72612380981445,1,N,1,8.5,0.5,0.5,0.3,1.76,0.0,11.56 +2,2016-01-10 15:37:13,2016-01-10 15:54:07,1,2.87,,,-73.9912109375,40.7471809387207,-73.96732330322266,40.7724609375,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-13 12:26:37,2016-01-13 12:37:10,1,0.54,,,-73.98241424560547,40.7684211730957,-73.97348022460938,40.764488220214844,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +2,2016-01-21 21:37:55,2016-01-21 21:53:32,1,2.21,,,-73.97201538085938,40.759464263916016,-73.98773956298828,40.73249816894531,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +1,2016-01-10 11:50:31,2016-01-10 11:55:51,1,0.9,,,-74.00128173828125,40.73118209838867,-74.00725555419922,40.73394012451172,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +2,2016-01-07 17:42:45,2016-01-07 17:48:43,1,1.0,,,-73.94692993164062,40.77598190307617,-73.95065307617188,40.78580856323242,1,N,1,6.0,1.0,0.5,0.3,3.0,0.0,10.8 +1,2016-01-16 19:08:53,2016-01-16 19:27:55,1,3.4,,,-73.98638153076172,40.743289947509766,-73.98282623291016,40.78007888793945,1,N,1,15.0,0.0,0.5,0.3,3.15,0.0,18.95 +1,2016-01-22 07:53:17,2016-01-22 08:04:57,1,1.7,,,-73.99431610107422,40.751590728759766,-73.99112701416016,40.73600387573242,1,N,1,9.5,0.0,0.5,0.3,3.05,0.0,13.35 +2,2016-01-13 11:19:27,2016-01-13 11:27:09,2,1.03,,,-73.98343658447266,40.76939010620117,-73.97496795654297,40.7619514465332,1,N,1,6.5,0.0,0.5,0.3,2.19,0.0,9.49 +1,2016-01-19 09:57:11,2016-01-19 10:07:07,1,0.8,,,-73.98587036132812,40.75228500366211,-73.99983215332031,40.75893783569336,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-29 22:39:17,2016-01-29 22:57:56,1,2.79,,,-73.98859405517578,40.75899124145508,-74.0008316040039,40.729061126708984,1,N,1,14.0,0.5,0.5,0.3,3.06,0.0,18.36 +1,2016-01-08 19:41:50,2016-01-08 19:50:42,2,1.2,,,-73.9882583618164,40.73196029663086,-74.00597381591797,40.73601150512695,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-18 15:14:15,2016-01-18 15:18:32,1,1.3,,,-74.00326538085938,40.72758483886719,-74.00507354736328,40.74090576171875,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-09 13:36:04,2016-01-09 13:41:36,1,0.86,,,-73.98049926757812,40.73057174682617,-73.99064636230469,40.736671447753906,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-26 14:19:23,2016-01-26 15:09:42,1,19.84,,,-73.78202819824219,40.64473342895508,-73.95893859863281,40.77821731567383,2,N,1,52.0,0.0,0.5,0.3,14.58,5.54,72.92 +2,2016-01-30 10:51:50,2016-01-30 10:58:56,1,1.31,,,-73.9593734741211,40.77151870727539,-73.97429656982422,40.762699127197266,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-07 07:37:54,2016-01-07 07:42:37,1,0.73,,,-73.98432922363281,40.76602554321289,-73.99195861816406,40.77789306640625,1,N,1,5.0,0.0,0.5,0.3,1.2,0.0,7.0 +2,2016-01-17 12:02:25,2016-01-17 12:18:32,1,4.37,,,-73.99812316894531,40.74273681640625,-73.99559020996094,40.69206619262695,1,N,1,15.5,0.0,0.5,0.3,4.08,0.0,20.38 +1,2016-01-12 15:25:30,2016-01-12 15:29:19,1,0.7,,,-73.96232604980469,40.77640914916992,-73.9722900390625,40.7823371887207,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-12 11:15:14,2016-01-12 11:47:15,1,4.02,,,-73.95503997802734,40.78321838378906,-73.99162292480469,40.732269287109375,1,N,1,21.5,0.0,0.5,0.3,4.0,0.0,26.3 +1,2016-01-21 09:22:24,2016-01-21 09:51:33,1,7.3,,,-73.96168518066406,40.774166107177734,-74.01114654541016,40.70193099975586,1,N,1,28.0,0.0,0.5,0.3,5.75,0.0,34.55 +1,2016-01-22 22:20:33,2016-01-22 22:37:51,2,2.0,,,-73.99000549316406,40.73408126831055,-73.9911117553711,40.755069732666016,1,N,1,12.0,0.5,0.5,0.3,0.0,0.0,13.3 +1,2016-01-04 10:02:07,2016-01-04 10:29:33,2,11.5,,,-73.86312866210938,40.76988220214844,-73.97903442382812,40.758487701416016,1,N,1,34.0,0.0,0.5,0.3,10.05,5.54,50.39 +1,2016-01-20 07:36:57,2016-01-20 07:40:50,1,0.5,,,-73.98104095458984,40.75075912475586,-73.98249816894531,40.7559928894043,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,6.35 +2,2016-01-22 21:29:40,2016-01-22 21:40:55,1,2.01,,,-73.99749755859375,40.75670623779297,-74.0001220703125,40.735008239746094,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +1,2016-01-07 17:53:41,2016-01-07 18:04:00,1,1.3,,,-74.00131225585938,40.756954193115234,-73.98568725585938,40.759010314941406,1,N,1,8.0,1.0,0.5,0.3,2.0,0.0,11.8 +1,2016-01-18 07:41:04,2016-01-18 08:07:46,1,14.6,,,-73.80110931396484,40.66841125488281,-73.97124481201172,40.7552490234375,2,N,1,52.0,0.0,0.5,0.3,11.65,5.54,69.99 +1,2016-01-19 23:54:59,2016-01-20 00:07:55,1,5.9,,,-73.99465942382812,40.75535583496094,-73.95209503173828,40.80972671508789,1,N,1,18.0,0.5,0.5,0.3,3.85,0.0,23.15 +1,2016-01-01 21:56:31,2016-01-01 22:12:10,2,4.1,,,-73.95832824707031,40.81603240966797,-73.92765808105469,40.834144592285156,1,N,1,14.5,0.5,0.5,0.3,0.0,0.0,15.8 +2,2016-01-18 16:23:35,2016-01-18 16:30:40,5,1.26,,,-73.99971008300781,40.73334884643555,-73.99321746826172,40.73604965209961,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-29 14:46:17,2016-01-29 15:10:28,5,9.1,,,-73.87464904785156,40.77394104003906,-73.98674011230469,40.73871994018555,1,N,1,28.0,0.0,0.5,0.3,5.0,5.54,39.34 +1,2016-01-07 16:06:13,2016-01-07 16:08:50,1,0.3,,,-74.01073455810547,40.7101936340332,-74.0103988647461,40.714508056640625,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-09 20:40:29,2016-01-09 20:54:13,1,1.6,,,-73.97872161865234,40.75027084350586,-73.99413299560547,40.73189926147461,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,13.55 +1,2016-01-10 00:28:09,2016-01-10 00:48:22,1,5.0,,,-73.98371124267578,40.7215576171875,-73.98551177978516,40.66624069213867,1,N,1,19.0,0.5,0.5,0.3,5.05,0.0,25.35 +1,2016-01-12 10:21:14,2016-01-12 10:28:12,1,2.5,,,-73.94622802734375,40.77286148071289,-73.97354888916016,40.7479362487793,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-01 01:53:37,2016-01-01 02:02:13,5,1.21,,,-73.95338439941406,40.785526275634766,-73.95578002929688,40.7723503112793,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +2,2016-01-04 16:39:30,2016-01-04 16:50:35,1,1.56,,,-73.97290802001953,40.79104995727539,-73.98876953125,40.77494812011719,1,N,1,9.0,1.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-20 21:49:23,2016-01-20 21:53:10,1,1.0,,,-74.00711822509766,40.71597671508789,-74.00228118896484,40.72924041748047,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-20 15:22:24,2016-01-20 15:32:40,1,1.1,,,-73.96255493164062,40.77290344238281,-73.97587585449219,40.765708923339844,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,11.0 +2,2016-01-29 09:43:16,2016-01-29 09:58:40,1,1.6,,,-73.99131774902344,40.75011444091797,-73.97933197021484,40.76103973388672,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-19 06:44:32,2016-01-19 06:53:23,5,1.21,,,-73.95845031738281,40.764259338378906,-73.97602081298828,40.76565933227539,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +1,2016-01-08 18:27:42,2016-01-08 18:32:23,1,1.0,,,-73.97195434570312,40.76356887817383,-73.96210479736328,40.775390625,1,N,1,5.5,1.0,0.5,0.3,2.0,0.0,9.3 +2,2016-01-03 00:38:35,2016-01-03 00:41:21,2,0.19,,,-73.98512268066406,40.732078552246094,-73.98672485351562,40.73006820678711,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,4.8 +1,2016-01-12 21:34:49,2016-01-12 21:58:40,1,7.3,,,-73.98621368408203,40.740421295166016,-73.98656463623047,40.665122985839844,1,N,1,24.0,0.5,0.5,0.3,5.06,0.0,30.36 +2,2016-01-28 06:37:22,2016-01-28 06:51:15,1,7.48,,,-73.86327362060547,40.73066329956055,-73.96733093261719,40.75204086303711,1,N,2,21.0,0.0,0.5,0.3,0.0,5.54,27.34 +1,2016-01-02 10:47:09,2016-01-02 10:50:34,1,0.6,,,-73.97855377197266,40.72443389892578,-73.9879150390625,40.72798538208008,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-17 19:17:12,2016-01-17 19:25:53,1,2.2,,,-74.017578125,40.706607818603516,-74.00692749023438,40.73020553588867,1,N,1,9.0,0.0,0.5,0.3,1.5,0.0,11.3 +2,2016-01-29 14:07:23,2016-01-29 14:31:41,1,8.39,,,-73.98188781738281,40.75386047363281,-73.88555145263672,40.77322006225586,1,N,1,26.5,0.0,0.5,0.3,6.57,5.54,39.41 +1,2016-01-26 12:13:24,2016-01-26 13:04:21,1,11.4,,,-73.87458801269531,40.77409362792969,-74.00255584716797,40.71868896484375,1,N,1,41.5,0.0,0.5,0.3,8.45,0.0,50.75 +2,2016-01-17 14:54:18,2016-01-17 15:13:06,1,3.25,,,-73.95552825927734,40.78276062011719,-73.98969268798828,40.75043869018555,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +1,2016-01-17 16:07:55,2016-01-17 16:17:46,1,2.2,,,-73.99410247802734,40.73530960083008,-74.0095443725586,40.71318054199219,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-15 14:20:08,2016-01-15 14:32:46,1,1.25,,,-73.99995422363281,40.72187042236328,-74.00520324707031,40.70667266845703,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-19 13:32:52,2016-01-19 13:40:25,1,0.93,,,-73.97183227539062,40.76298522949219,-73.98240661621094,40.76403045654297,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-28 13:01:19,2016-01-28 13:18:31,6,1.2,,,-73.98285675048828,40.75056838989258,-73.970458984375,40.76478958129883,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-30 21:30:21,2016-01-30 21:54:44,1,9.7,,,-73.9781494140625,40.75735855102539,-73.93006134033203,40.86231994628906,1,N,1,30.5,0.5,0.5,0.3,6.36,0.0,38.16 +2,2016-01-20 17:04:11,2016-01-20 17:11:53,2,1.34,,,-73.95411682128906,40.779048919677734,-73.97400665283203,40.7841911315918,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-29 01:14:40,2016-01-29 01:19:22,2,0.78,,,-73.9741439819336,40.74710464477539,-73.9822769165039,40.744083404541016,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-20 21:41:01,2016-01-20 21:49:19,5,1.39,,,-73.97447967529297,40.75054168701172,-73.99494934082031,40.755218505859375,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-29 21:19:56,2016-01-29 21:25:54,1,0.76,,,-73.98668670654297,40.763710021972656,-73.98938751220703,40.75712966918945,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +2,2016-01-15 21:26:34,2016-01-15 21:41:05,1,2.38,,,-73.98190307617188,40.7684211730957,-73.98238372802734,40.742759704589844,1,N,1,11.0,0.5,0.5,0.3,2.0,0.0,14.3 +2,2016-01-20 17:23:10,2016-01-20 17:38:30,2,2.11,,,-74.00176239013672,40.71957015991211,-74.00395965576172,40.74208068847656,1,N,2,11.0,1.0,0.5,0.3,0.0,0.0,12.8 +1,2016-01-25 19:45:00,2016-01-25 19:47:33,1,0.4,,,-73.95210266113281,40.77724075317383,-73.95630645751953,40.771568298339844,1,N,1,3.5,1.0,0.5,0.3,1.0,0.0,6.3 +2,2016-01-27 16:46:46,2016-01-27 17:23:52,1,5.52,,,-73.96678924560547,40.757259368896484,-73.88510131835938,40.7440185546875,1,N,1,25.5,1.0,0.5,0.3,3.7,0.0,31.0 +2,2016-01-17 15:09:58,2016-01-17 15:44:37,1,11.2,,,-73.98534393310547,40.759681701660156,-73.8709487915039,40.774112701416016,1,N,1,36.5,0.0,0.5,0.3,8.57,5.54,51.41 +2,2016-01-05 18:50:12,2016-01-05 18:58:36,1,1.3,,,-73.99278259277344,40.74272155761719,-73.97634887695312,40.747989654541016,1,N,1,7.5,1.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-11 22:55:04,2016-01-11 23:19:40,6,10.55,,,-73.96843719482422,40.75848388671875,-73.98280334472656,40.663265228271484,1,N,1,31.0,0.5,0.5,0.3,9.46,5.54,47.3 +1,2016-01-19 07:35:07,2016-01-19 07:51:12,1,1.6,,,-73.97920227050781,40.73627471923828,-73.99495697021484,40.750144958496094,1,N,1,11.5,0.0,0.5,0.3,3.65,0.0,15.95 +2,2016-01-22 18:06:52,2016-01-22 18:10:32,2,0.67,,,-73.95686340332031,40.774627685546875,-73.96359252929688,40.774078369140625,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-18 09:50:01,2016-01-18 10:01:35,1,1.2,,,-73.98979187011719,40.74693298339844,-74.00093078613281,40.75747299194336,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +2,2016-01-19 18:56:12,2016-01-19 19:10:26,5,1.88,,,-74.00982666015625,40.721622467041016,-73.99224853515625,40.731380462646484,1,N,1,10.5,1.0,0.5,0.3,1.0,0.0,13.3 +2,2016-01-24 19:35:03,2016-01-24 19:46:33,2,1.94,,,-73.97987365722656,40.783870697021484,-73.9542007446289,40.784141540527344,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,12.88 +1,2016-01-05 21:06:00,2016-01-05 21:09:42,2,0.7,,,-73.98545837402344,40.76360321044922,-73.97661590576172,40.76498031616211,1,N,1,4.5,0.5,0.5,0.3,1.15,0.0,6.95 +1,2016-01-08 21:14:22,2016-01-08 21:23:53,1,0.7,,,-73.99800109863281,40.737884521484375,-73.9863052368164,40.7328987121582,1,N,1,7.5,0.5,0.5,0.3,1.5,0.0,10.3 +2,2016-01-13 10:56:51,2016-01-13 11:11:11,5,0.79,,,-73.9675064086914,40.768795013427734,-73.96636962890625,40.76187515258789,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-30 10:05:57,2016-01-30 10:17:45,3,1.61,,,-73.97074127197266,40.75178146362305,-73.99082946777344,40.74549865722656,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-20 13:15:41,2016-01-20 13:20:29,2,0.94,,,-73.98832702636719,40.74885177612305,-73.98027038574219,40.76068878173828,1,N,1,5.5,0.0,0.5,0.3,1.58,0.0,7.88 +2,2016-01-16 20:11:05,2016-01-16 20:14:36,2,0.78,,,-73.99787139892578,40.76170349121094,-73.99655151367188,40.75326156616211,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-04 15:14:58,2016-01-04 15:28:38,1,1.43,,,-73.98794555664062,40.73805618286133,-73.99398040771484,40.751380920410156,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-28 11:51:41,2016-01-28 12:01:56,1,1.57,,,-73.97541046142578,40.78705978393555,-73.96125793457031,40.806480407714844,1,N,1,8.5,0.0,0.5,0.3,1.4,0.0,10.7 +1,2016-01-16 20:12:12,2016-01-16 20:17:27,1,1.7,,,-73.99517059326172,40.760292053222656,-73.9801025390625,40.780906677246094,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +2,2016-01-19 05:14:31,2016-01-19 05:32:02,2,9.32,,,-73.7823486328125,40.64472579956055,-73.9128189086914,40.67931365966797,1,N,2,27.0,0.5,0.5,0.3,0.0,0.0,28.3 +1,2016-01-21 07:24:37,2016-01-21 07:42:28,1,2.3,,,-73.94770812988281,40.775421142578125,-73.97354888916016,40.75761032104492,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +1,2016-01-10 15:33:43,2016-01-10 15:41:26,1,1.0,,,-73.96153259277344,40.78020095825195,-73.95064544677734,40.771629333496094,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +1,2016-01-20 12:24:20,2016-01-20 12:39:17,1,3.0,,,-73.95500183105469,40.765018463134766,-73.98748016357422,40.740779876708984,1,N,4,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +1,2016-01-05 07:30:42,2016-01-05 07:37:16,1,3.0,,,-73.94844055175781,40.7731819152832,-73.9749984741211,40.73704147338867,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +1,2016-01-12 11:21:09,2016-01-12 11:24:08,1,0.6,,,-73.94575500488281,40.77812957763672,-73.95579528808594,40.77953338623047,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-07 15:20:30,2016-01-07 15:38:33,2,2.36,,,-73.9786605834961,40.740989685058594,-73.97765350341797,40.71609878540039,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-25 15:00:15,2016-01-25 15:12:08,1,1.2,,,-74.00111389160156,40.75722122192383,-73.98382568359375,40.748191833496094,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-30 04:06:02,2016-01-30 04:12:42,1,1.4,,,-73.98580169677734,40.73815155029297,-74.00275421142578,40.74990463256836,1,N,1,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-17 02:40:57,2016-01-17 02:50:40,1,2.7,,,-73.9714126586914,40.76237869262695,-73.96653747558594,40.79252624511719,1,N,1,10.5,0.5,0.5,0.3,2.0,0.0,13.8 +1,2016-01-19 07:24:56,2016-01-19 07:50:20,1,5.1,,,-73.95092010498047,40.785743713378906,-73.88825225830078,40.81658172607422,1,N,1,21.5,0.0,0.5,0.3,4.45,0.0,26.75 +2,2016-01-16 22:55:33,2016-01-16 23:11:37,2,2.21,,,-73.98487091064453,40.768741607666016,-73.99954986572266,40.75238037109375,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +2,2016-01-28 17:14:25,2016-01-28 17:27:57,1,2.15,,,-74.00196075439453,40.71925735473633,-73.98003387451172,40.73392868041992,1,N,2,11.0,1.0,0.5,0.3,0.0,0.0,12.8 +2,2016-01-18 18:28:10,2016-01-18 18:39:46,1,2.13,,,-73.98607635498047,40.75910186767578,-73.96375274658203,40.76121139526367,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-10 11:57:36,2016-01-10 12:13:47,1,2.82,,,-73.99063873291016,40.74025344848633,-74.01040649414062,40.71135711669922,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-11 22:58:21,2016-01-11 23:07:47,1,2.61,,,-73.9977035522461,40.73860549926758,-73.98843383789062,40.76496124267578,1,N,1,10.5,0.5,0.5,0.3,1.0,0.0,12.8 +2,2016-01-11 19:57:54,2016-01-11 20:14:25,5,4.24,,,-73.97413635253906,40.75101852416992,-73.94436645507812,40.71525955200195,1,N,1,15.5,1.0,0.5,0.3,6.85,5.54,29.69 +1,2016-01-09 18:32:12,2016-01-09 18:39:29,1,0.5,,,-74.00251770019531,40.72486114501953,-73.99403381347656,40.72105026245117,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-12 21:10:21,2016-01-12 21:23:22,2,2.6,,,-73.98802185058594,40.73774337768555,-73.9677963256836,40.77029800415039,1,N,1,11.5,0.5,0.5,0.3,2.55,0.0,15.35 +2,2016-01-21 17:22:11,2016-01-21 17:27:05,1,1.28,,,-73.9766616821289,40.782413482666016,-73.96880340576172,40.79759216308594,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-16 02:33:51,2016-01-16 02:57:30,4,4.9,,,-73.9870376586914,40.7296257019043,-73.98841094970703,40.668521881103516,1,N,1,20.0,0.5,0.5,0.3,4.25,0.0,25.55 +2,2016-01-11 12:29:13,2016-01-11 12:41:34,1,1.89,,,-73.95494842529297,40.78017044067383,-73.98124694824219,40.7834587097168,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-16 06:45:33,2016-01-16 06:51:02,1,1.89,,,-73.95027160644531,40.786766052246094,-73.95326232910156,40.76754379272461,1,N,1,7.5,0.0,0.5,0.3,1.7,0.0,10.0 +2,2016-01-30 21:21:02,2016-01-30 21:31:46,1,1.0,,,-73.98780059814453,40.71942901611328,-73.98336029052734,40.730308532714844,1,N,1,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-15 16:53:34,2016-01-15 17:05:14,1,2.5,,,-74.00498962402344,40.74649429321289,-73.98897552490234,40.77723693847656,1,N,1,10.5,1.0,0.5,0.3,1.0,0.0,13.3 +2,2016-01-01 01:58:39,2016-01-01 02:08:20,1,5.14,,,-74.00656127929688,40.705501556396484,-73.96439361572266,40.756290435791016,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,17.3 +2,2016-01-19 09:19:31,2016-01-19 09:32:09,6,1.67,,,-73.97542572021484,40.751853942871094,-73.99336242675781,40.73845672607422,1,N,1,9.5,0.0,0.5,0.3,1.0,0.0,11.3 +2,2016-01-04 21:56:13,2016-01-04 21:58:47,2,0.59,,,-73.97605895996094,40.7811393737793,-73.97979736328125,40.77627944946289,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +1,2016-01-30 23:10:57,2016-01-30 23:23:39,1,2.2,,,-73.9830551147461,40.77155685424805,-74.00318908691406,40.751625061035156,1,N,1,10.0,0.5,0.5,0.3,2.0,0.0,13.3 +2,2016-01-01 20:50:51,2016-01-01 20:59:35,1,2.36,,,-73.9712142944336,40.7514533996582,-73.98514556884766,40.723873138427734,1,N,1,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-17 17:10:38,2016-01-17 17:19:12,1,1.6,,,-73.97664642333984,40.74381637573242,-73.96617889404297,40.76209259033203,1,N,1,8.0,1.0,0.5,0.3,1.0,0.0,10.8 +2,2016-01-22 15:43:43,2016-01-22 15:44:34,1,0.23,,,-73.9652328491211,40.772125244140625,-73.96320343017578,40.77491760253906,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,3.8 +2,2016-01-30 16:09:24,2016-01-30 16:27:30,1,2.76,,,-73.99131774902344,40.727481842041016,-73.96365356445312,40.75740051269531,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,17.16 +1,2016-01-09 20:47:06,2016-01-09 20:52:09,2,0.9,,,-73.97557830810547,40.78976821899414,-73.98037719726562,40.78304672241211,1,N,1,5.5,0.5,0.5,0.3,1.2,0.0,8.0 +2,2016-01-29 13:19:36,2016-01-29 13:24:37,5,1.01,,,-73.96693420410156,40.76974105834961,-73.97711944580078,40.774593353271484,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-30 13:16:40,2016-01-30 13:22:07,5,1.05,,,-73.97267150878906,40.7646484375,-73.98407745361328,40.75584030151367,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-29 11:40:21,2016-01-29 11:55:55,1,2.3,,,-74.01070404052734,40.70900344848633,-74.00259399414062,40.73952865600586,1,N,1,12.0,0.0,0.5,0.3,3.2,0.0,16.0 +2,2016-01-01 04:32:41,2016-01-01 04:42:21,1,2.08,,,-73.99823760986328,40.74531936645508,-73.97654724121094,40.75925827026367,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-12 20:01:00,2016-01-12 20:02:02,1,0.4,,,-73.95880889892578,40.7723274230957,-73.955078125,40.77748107910156,1,Y,1,3.5,1.0,0.5,0.3,1.05,0.0,6.35 +1,2016-01-25 20:19:00,2016-01-25 20:36:52,1,4.1,,,-73.99605560302734,40.76567077636719,-73.95170593261719,40.7845573425293,1,N,1,16.5,0.5,0.5,0.3,3.55,0.0,21.35 +2,2016-01-27 14:36:07,2016-01-27 14:44:46,1,1.1,,,-73.97013854980469,40.764923095703125,-73.96014404296875,40.77897644042969,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-20 20:50:39,2016-01-20 21:03:25,1,1.82,,,-73.97637939453125,40.755821228027344,-73.95772552490234,40.77199172973633,1,N,1,10.0,0.5,0.5,0.3,3.39,0.0,14.69 +1,2016-01-15 00:56:51,2016-01-15 01:03:58,1,1.1,,,-74.00450134277344,40.70817565917969,-74.01578521728516,40.71531295776367,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-27 13:11:34,2016-01-27 13:22:38,2,4.42,,,-73.99046325683594,40.771549224853516,-73.95852661132812,40.81064987182617,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,18.36 +2,2016-01-04 21:50:49,2016-01-04 21:56:31,1,1.09,,,-73.94658660888672,40.77313995361328,-73.9613037109375,40.776798248291016,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-30 13:23:37,2016-01-30 13:35:31,1,1.8,,,0.0,0.0,0.0,0.0,1,N,1,10.0,0.0,0.5,0.3,1.5,0.0,12.3 +1,2016-01-20 15:44:07,2016-01-20 16:04:12,2,3.3,,,-73.99744415283203,40.73577117919922,-74.01676940917969,40.708187103271484,1,N,1,15.5,0.0,0.5,0.3,1.5,0.0,17.8 +2,2016-01-09 21:20:35,2016-01-09 21:28:32,1,0.79,,,-73.98487091064453,40.74288558959961,-73.99681854248047,40.742916107177734,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-25 15:25:49,2016-01-25 15:32:46,2,1.0,,,-73.99031066894531,40.73185348510742,-73.97773742675781,40.738094329833984,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-17 07:34:45,2016-01-17 07:39:32,1,0.9,,,-73.97802734375,40.73349380493164,-73.98023986816406,40.74286651611328,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-30 13:40:48,2016-01-30 13:51:10,1,1.8,,,-74.01444244384766,40.71232986450195,-74.00274658203125,40.73434066772461,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-05 20:17:11,2016-01-05 20:28:51,1,3.16,,,-73.98301696777344,40.7558708190918,-73.94963836669922,40.784481048583984,1,N,1,11.5,0.5,0.5,0.3,2.56,0.0,15.36 +1,2016-01-14 20:42:31,2016-01-14 20:56:11,1,2.1,,,-73.96759033203125,40.762760162353516,-73.97956085205078,40.78276062011719,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +1,2016-01-22 23:41:51,2016-01-22 23:52:15,1,2.2,,,-73.98824310302734,40.73737716674805,-73.97740936279297,40.76405334472656,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +2,2016-01-12 00:21:01,2016-01-12 00:26:55,5,1.51,,,-73.9897232055664,40.725921630859375,-73.98216247558594,40.74340057373047,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-06 18:05:25,2016-01-06 18:14:26,1,0.84,,,-73.9586181640625,40.781455993652344,-73.9502182006836,40.775482177734375,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-11 10:49:58,2016-01-11 11:14:02,2,2.15,,,-73.97406005859375,40.7572021484375,-74.00349426269531,40.7592887878418,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-22 15:31:30,2016-01-22 15:32:35,1,0.26,,,-73.96307373046875,40.79938888549805,-73.96762084960938,40.801231384277344,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,3.8 +1,2016-01-03 05:51:29,2016-01-03 05:57:59,2,1.5,,,-73.95669555664062,40.76780700683594,-73.95277404785156,40.78327941894531,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-18 21:38:24,2016-01-18 21:48:16,6,2.34,,,-73.96888732910156,40.79676818847656,-73.9389419555664,40.80500030517578,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +1,2016-01-16 23:07:15,2016-01-16 23:24:11,1,3.1,,,-73.99417114257812,40.7409782409668,-73.98368072509766,40.77587890625,1,N,1,13.5,0.5,0.5,0.3,2.95,0.0,17.75 +1,2016-01-08 16:13:37,2016-01-08 16:33:54,1,3.8,,,-73.95511627197266,40.782981872558594,-73.97464752197266,40.7442512512207,1,N,1,16.5,1.0,0.5,0.3,2.0,0.0,20.3 +2,2016-01-05 18:34:02,2016-01-05 18:38:46,1,0.9,,,-73.95452117919922,40.7699089050293,-73.95530700683594,40.7794189453125,1,N,1,5.5,1.0,0.5,0.3,1.82,0.0,9.12 +1,2016-01-16 18:26:16,2016-01-16 18:46:17,1,10.3,,,-73.87289428710938,40.77400588989258,-73.97309112548828,40.755470275878906,1,N,1,29.0,0.0,0.5,0.3,7.05,5.54,42.39 +2,2016-01-28 17:09:35,2016-01-28 17:15:30,3,0.7,,,-73.9841537475586,40.74223327636719,-73.97760772705078,40.750755310058594,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-23 02:51:37,2016-01-23 03:02:26,4,2.45,,,-73.99600982666016,40.74372863769531,-73.96855163574219,40.756507873535156,1,N,1,10.0,0.5,0.5,0.3,2.0,0.0,13.3 +2,2016-01-16 23:43:54,2016-01-16 23:53:07,2,1.69,,,-73.98539733886719,40.746978759765625,-73.96729278564453,40.760658264160156,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,12.25 +2,2016-01-21 18:39:33,2016-01-21 18:48:41,2,1.93,,,-73.99890899658203,40.75493240356445,-73.9812240600586,40.7790412902832,1,N,1,8.5,1.0,0.5,0.3,2.58,0.0,12.88 +1,2016-01-29 13:44:15,2016-01-29 14:07:37,1,2.0,,,-73.96971130371094,40.757171630859375,-73.99105834960938,40.750572204589844,1,N,1,15.0,0.0,0.5,0.3,3.15,0.0,18.95 +2,2016-01-13 14:27:09,2016-01-13 14:36:43,1,0.82,,,-73.9771957397461,40.7529411315918,-73.98827362060547,40.753475189208984,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +1,2016-01-22 08:14:43,2016-01-22 08:32:42,1,5.5,,,-73.97272491455078,40.748435974121094,-74.01526641845703,40.71147155761719,1,N,1,20.0,0.0,0.5,0.3,4.15,0.0,24.95 +2,2016-01-18 11:47:13,2016-01-18 11:52:05,1,1.08,,,-73.9546127319336,40.775718688964844,-73.96315002441406,40.76224136352539,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-25 13:32:10,2016-01-25 13:51:39,1,9.55,,,-74.01624298095703,40.7152099609375,-73.95368957519531,40.78215026855469,1,N,1,28.0,0.0,0.5,0.3,4.0,0.0,32.8 +2,2016-01-04 09:22:38,2016-01-04 09:26:22,1,0.48,,,-73.96510314941406,40.75531005859375,-73.96219635009766,40.76158905029297,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-16 14:27:43,2016-01-16 14:39:45,1,1.4,,,-73.97905731201172,40.736629486083984,-73.99208068847656,40.74955368041992,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-06 06:44:53,2016-01-06 06:53:05,1,1.0,,,-73.98860931396484,40.75590133666992,-73.97647857666016,40.75685119628906,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +1,2016-01-28 10:00:12,2016-01-28 10:16:43,1,2.0,,,-73.9900131225586,40.734642028808594,-73.9726333618164,40.759395599365234,1,N,1,11.5,0.0,0.5,0.3,3.05,0.0,15.35 +2,2016-01-07 22:28:23,2016-01-07 22:38:33,1,2.54,,,-73.99842834472656,40.735130310058594,-73.99442291259766,40.763389587402344,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-03 00:16:05,2016-01-03 00:24:51,2,1.56,,,-73.9854965209961,40.747310638427734,-73.96797943115234,40.75579071044922,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +1,2016-01-19 13:48:51,2016-01-19 14:06:47,2,2.1,,,-73.99124908447266,40.75001907348633,-73.97407531738281,40.76393127441406,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,15.95 +1,2016-01-20 12:15:59,2016-01-20 12:38:45,1,0.9,,,-73.97488403320312,40.75020980834961,-73.97737121582031,40.76072692871094,1,N,1,14.0,0.0,0.5,0.3,2.95,0.0,17.75 +2,2016-01-22 23:22:24,2016-01-22 23:24:32,2,0.73,,,-73.96964263916016,40.76900863647461,-73.98130798339844,40.77362823486328,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,6.96 +2,2016-01-25 13:11:04,2016-01-25 13:24:15,1,1.8,,,-73.98948669433594,40.74161148071289,-73.99664306640625,40.724456787109375,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-07 09:00:06,2016-01-07 09:08:20,1,0.8,,,-73.99180603027344,40.74428176879883,-73.98268127441406,40.75258255004883,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-09 12:02:49,2016-01-09 12:14:07,1,2.36,,,-74.00831604003906,40.74565887451172,-73.99118041992188,40.7704963684082,1,N,1,10.5,0.0,0.5,0.3,2.0,0.0,13.3 +2,2016-01-05 11:50:02,2016-01-05 11:52:05,1,0.61,,,-73.96703338623047,40.760589599609375,-73.96136474609375,40.76674270629883,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-18 10:01:19,2016-01-18 10:35:54,1,11.1,,,-73.96759796142578,40.677452087402344,-73.96215057373047,40.805381774902344,1,N,1,36.0,0.0,0.5,0.3,9.2,0.0,46.0 +2,2016-01-14 20:40:51,2016-01-14 20:51:02,1,0.92,,,-73.98494720458984,40.742191314697266,-73.99569702148438,40.73944091796875,1,N,1,8.0,0.5,0.5,0.3,2.32,0.0,11.62 +2,2016-01-10 21:45:47,2016-01-10 21:53:49,1,1.67,,,-73.98603820800781,40.73099899291992,-74.00421142578125,40.715999603271484,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +2,2016-01-09 09:37:02,2016-01-09 09:42:46,1,1.08,,,-73.95375061035156,40.78485107421875,-73.96308898925781,40.7938117980957,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-27 18:44:45,2016-01-27 19:21:47,1,15.5,,,-73.8627700805664,40.769073486328125,-74.00408935546875,40.71856689453125,1,N,1,44.0,1.0,0.5,0.3,10.25,5.54,61.59 +1,2016-01-17 07:55:10,2016-01-17 08:03:07,1,1.3,,,-73.9857406616211,40.75934982299805,-74.0015640258789,40.75651931762695,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +1,2016-01-20 13:35:34,2016-01-20 13:42:08,1,1.2,,,-73.96134185791016,40.76035690307617,-73.94893646240234,40.77057647705078,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-06 08:02:33,2016-01-06 08:10:39,1,2.08,,,-74.00825500488281,40.72188186645508,-73.99401092529297,40.744510650634766,1,N,1,8.5,0.0,0.5,0.3,1.1,0.0,10.4 +2,2016-01-10 16:51:02,2016-01-10 17:04:18,1,1.64,,,-73.94781494140625,40.77613830566406,-73.96038055419922,40.7706413269043,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-02 21:19:09,2016-01-02 21:44:14,1,8.66,,,-73.99774169921875,40.73613357543945,-73.93933868408203,40.82421112060547,1,N,1,28.0,0.5,0.5,0.3,5.86,0.0,35.16 +2,2016-01-11 15:06:32,2016-01-11 15:22:28,5,4.23,,,-73.87303924560547,40.7741584777832,-73.93328857421875,40.751808166503906,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,19.56 +1,2016-01-15 15:28:30,2016-01-15 15:43:50,1,1.6,,,-73.97314453125,40.76417922973633,-73.99178314208984,40.74997329711914,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +2,2016-01-05 19:02:17,2016-01-05 19:03:28,1,0.27,,,-73.96320343017578,40.766136169433594,-73.96095275878906,40.76931381225586,1,N,1,3.0,1.0,0.5,0.3,1.2,0.0,6.0 +2,2016-01-04 20:52:55,2016-01-04 21:12:44,1,8.78,,,-73.86382293701172,40.769622802734375,-73.97811126708984,40.748619079589844,1,N,1,27.0,0.5,0.5,0.3,6.77,5.54,40.61 +1,2016-01-08 11:35:16,2016-01-08 11:50:25,1,2.2,,,-73.99385833740234,40.74331283569336,-74.00717163085938,40.72309112548828,1,N,1,11.5,0.0,0.5,0.3,1.7,0.0,14.0 +1,2016-01-05 19:00:40,2016-01-05 19:11:47,1,2.3,,,-74.00332641601562,40.71388626098633,-73.99967193603516,40.74335861206055,1,N,1,10.0,1.0,0.5,0.3,2.95,0.0,14.75 +1,2016-01-01 04:35:23,2016-01-01 04:40:13,1,1.2,,,-73.98433685302734,40.74333572387695,-73.97135162353516,40.75419616699219,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-21 22:03:12,2016-01-21 22:22:14,1,10.0,,,-73.87446594238281,40.7740364074707,-73.98551177978516,40.726139068603516,1,N,1,29.0,0.5,0.5,0.3,5.0,0.0,35.3 +1,2016-01-02 12:30:15,2016-01-02 12:42:04,1,6.6,,,-74.01246643066406,40.70151138305664,-73.956298828125,40.76708984375,1,N,2,19.5,0.0,0.5,0.3,0.0,0.0,20.3 +1,2016-01-12 21:32:12,2016-01-12 21:40:35,1,0.9,,,-73.98217010498047,40.75965118408203,-73.97618865966797,40.757568359375,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,9.3 +2,2016-01-26 18:47:51,2016-01-26 19:18:29,1,2.68,,,-74.00140380859375,40.756568908691406,-73.96888732910156,40.76449966430664,1,N,1,18.5,1.0,0.5,0.3,6.09,0.0,26.39 +1,2016-01-12 14:59:20,2016-01-12 15:12:44,1,3.1,,,-73.9229736328125,40.74388122558594,-73.97016906738281,40.754844665527344,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +1,2016-01-29 18:10:02,2016-01-29 18:14:18,1,0.4,,,-74.00109100341797,40.731571197509766,-73.99466705322266,40.72846984863281,1,N,1,4.5,1.0,0.5,0.3,1.25,0.0,7.55 +2,2016-01-02 17:08:22,2016-01-02 17:21:15,3,1.87,,,-73.96648406982422,40.757789611816406,-73.98898315429688,40.7474365234375,1,N,1,10.5,0.0,0.5,0.3,2.5,0.0,13.8 +2,2016-01-03 03:07:45,2016-01-03 03:15:49,5,2.9,,,-73.98651885986328,40.74742126464844,-73.95673370361328,40.77825164794922,1,N,1,10.0,0.5,0.5,0.3,1.5,0.0,12.8 +2,2016-01-14 11:09:59,2016-01-14 11:16:00,1,0.87,,,-73.97509002685547,40.79051971435547,-73.98193359375,40.77914047241211,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-02 15:52:43,2016-01-02 16:04:08,1,1.7,,,-73.98930358886719,40.753684997558594,-73.96633911132812,40.75727462768555,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-14 20:31:19,2016-01-14 20:43:55,1,1.8,,,-73.9872055053711,40.7560920715332,-74.00321197509766,40.735008239746094,1,N,1,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-22 14:58:33,2016-01-22 15:08:25,1,1.4,,,-73.98646545410156,40.7564697265625,-73.98829650878906,40.77080154418945,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-24 22:37:50,2016-01-24 22:51:00,1,3.65,,,-73.99173736572266,40.75031661987305,-74.01300048828125,40.7040901184082,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,17.16 +1,2016-01-29 18:11:47,2016-01-29 18:25:21,1,1.8,,,-73.96646881103516,40.75400924682617,-73.96371459960938,40.774349212646484,1,N,1,10.0,1.0,0.5,0.3,2.35,0.0,14.15 +1,2016-01-05 07:29:05,2016-01-05 07:31:50,1,0.8,,,-73.99095153808594,40.74913787841797,-73.99868774414062,40.73971176147461,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-04 13:29:17,2016-01-04 13:47:16,1,2.47,,,-73.97795867919922,40.763328552246094,-73.97976684570312,40.76380157470703,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-21 18:44:29,2016-01-21 18:53:22,1,1.42,,,-73.9557113647461,40.7830696105957,-73.95020294189453,40.77116012573242,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-29 21:36:38,2016-01-29 21:45:42,1,1.06,,,-73.9778823852539,40.75209045410156,-73.99244689941406,40.756690979003906,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-29 08:09:41,2016-01-29 08:13:10,1,0.6,,,-73.99425506591797,40.75917434692383,-74.00248718261719,40.75517272949219,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-12 08:06:03,2016-01-12 08:13:08,1,1.1,,,-73.958984375,40.78107833862305,-73.96904754638672,40.789459228515625,1,N,2,6.5,0.0,0.0,0.3,0.0,0.0,6.8 +2,2016-01-26 20:07:03,2016-01-26 20:18:07,5,1.28,,,-73.97689819335938,40.761566162109375,-73.97689819335938,40.761566162109375,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,10.8 +2,2016-01-20 23:21:26,2016-01-20 23:27:05,1,1.08,,,-73.99158477783203,40.75010681152344,-73.99580383300781,40.75886154174805,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-05 23:00:44,2016-01-05 23:07:54,1,2.25,,,-73.99891662597656,40.75484085083008,-73.9847183227539,40.78252029418945,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-09 14:48:13,2016-01-09 14:48:13,4,0.0,,,-73.9525375366211,40.79830551147461,0.0,0.0,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,3.3 +2,2016-01-07 10:15:04,2016-01-07 10:32:31,1,1.8,,,-73.99468994140625,40.745399475097656,-73.98407745361328,40.76054000854492,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +2,2016-01-25 14:05:18,2016-01-25 14:08:10,1,0.78,,,-73.98351287841797,40.73423385620117,-73.9907455444336,40.724517822265625,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,6.3 +2,2016-01-29 00:33:41,2016-01-29 00:51:40,1,3.29,,,-73.97958374023438,40.68695831298828,-74.00599670410156,40.6815299987793,1,N,1,14.5,0.5,0.5,0.3,45.0,0.0,60.8 +2,2016-01-06 10:51:35,2016-01-06 11:06:34,1,2.38,,,-73.9810562133789,40.75946044921875,-73.95621490478516,40.78121566772461,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,15.38 +2,2016-01-06 00:30:26,2016-01-06 00:46:05,2,5.45,,,-73.99169921875,40.74998092651367,-73.9420166015625,40.80683517456055,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,18.3 +1,2016-01-25 21:40:09,2016-01-25 21:43:56,2,0.6,,,-73.98423767089844,40.76988983154297,-73.99002838134766,40.762027740478516,1,N,1,4.5,0.5,0.5,0.3,1.15,0.0,6.95 +2,2016-01-27 10:59:53,2016-01-27 11:06:58,1,0.93,,,-73.98185729980469,40.75234603881836,-73.99110412597656,40.750301361083984,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-09 16:59:51,2016-01-09 17:17:51,1,4.6,,,-73.97715759277344,40.753509521484375,-73.94825744628906,40.806514739990234,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +1,2016-01-21 10:28:12,2016-01-21 10:46:13,1,1.3,,,-73.99406433105469,40.75120162963867,-73.97450256347656,40.751014709472656,1,N,1,12.0,0.0,0.5,0.3,2.55,0.0,15.35 +2,2016-01-15 22:21:32,2016-01-15 23:00:58,5,20.12,,,-73.78966522216797,40.646751403808594,-73.99698638916016,40.68477249145508,1,N,1,55.0,0.5,0.5,0.3,8.7,0.0,65.0 +2,2016-01-12 15:40:50,2016-01-12 16:27:06,2,18.12,,,-73.78990936279297,40.64685821533203,-73.98133087158203,40.76915740966797,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,70.01 +1,2016-01-12 06:46:11,2016-01-12 06:51:23,1,1.1,,,-73.97341918945312,40.74820327758789,-73.99078369140625,40.751182556152344,1,N,1,6.0,0.0,0.5,0.3,1.02,0.0,7.82 +2,2016-01-21 14:17:08,2016-01-21 14:44:28,5,2.39,,,-73.97025299072266,40.761837005615234,-73.97709655761719,40.787750244140625,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,18.8 +2,2016-01-07 23:36:01,2016-01-07 23:44:15,1,1.42,,,-73.98676300048828,40.76247024536133,-73.99417114257812,40.7459602355957,1,N,1,7.5,0.5,0.5,0.3,2.2,0.0,11.0 +1,2016-01-09 23:29:59,2016-01-09 23:36:16,1,0.9,,,-74.00567626953125,40.725616455078125,-74.0015869140625,40.73080825805664,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-09 22:04:33,2016-01-09 22:15:09,1,2.1,,,-73.95368957519531,40.76637649536133,-73.96749114990234,40.768558502197266,1,N,1,9.5,0.5,0.5,0.3,1.0,0.0,11.8 +2,2016-01-06 13:48:25,2016-01-06 13:50:08,1,0.51,,,-73.99227905273438,40.737770080566406,-73.99714660644531,40.731510162353516,1,N,1,3.5,0.0,0.5,0.3,1.5,0.0,5.8 +2,2016-01-20 23:12:41,2016-01-20 23:37:24,4,6.75,,,-73.98738861083984,40.755287170410156,-73.96214294433594,40.67854690551758,1,N,1,23.0,0.5,0.5,0.3,6.0,0.0,30.3 +2,2016-01-14 05:04:14,2016-01-14 05:30:12,1,18.6,,,-73.77686309814453,40.646026611328125,-73.97538757324219,40.763877868652344,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +1,2016-01-19 23:24:22,2016-01-19 23:36:39,1,3.7,,,-73.9538803100586,40.766517639160156,-73.93008422851562,40.738548278808594,1,N,2,14.0,0.5,0.5,0.3,0.0,0.0,15.3 +1,2016-01-25 00:00:02,2016-01-25 00:05:40,1,0.8,,,-73.98908996582031,40.76826095581055,-73.9850082397461,40.76211166381836,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-08 08:02:44,2016-01-08 08:21:45,1,2.2,,,-73.98025512695312,40.73535919189453,-73.9823989868164,40.757164001464844,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,17.15 +2,2016-01-19 13:38:43,2016-01-19 13:48:36,1,1.38,,,-73.99579620361328,40.76436996459961,-73.99523162841797,40.74980926513672,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-04 09:26:00,2016-01-04 09:36:38,1,1.34,,,-73.99185180664062,40.74443054199219,-73.97708129882812,40.75579833984375,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-17 09:43:24,2016-01-17 10:00:50,1,3.5,,,-73.97328186035156,40.785118103027344,-73.95735931396484,40.811988830566406,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-01 12:58:10,2016-01-01 13:07:33,1,2.46,,,-73.9847640991211,40.72822570800781,-73.97319030761719,40.75602722167969,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-11 20:42:11,2016-01-11 20:44:20,2,0.8,,,-73.95286560058594,40.78308868408203,-73.96004486083984,40.7729377746582,1,N,1,4.5,0.5,0.5,0.3,1.7,0.0,7.5 +1,2016-01-26 21:50:18,2016-01-26 21:53:15,2,0.5,,,-73.95941162109375,40.81383514404297,-73.9548110961914,40.82012939453125,1,N,1,4.0,0.5,0.5,0.3,1.0,0.0,6.3 +2,2016-01-11 20:48:57,2016-01-11 21:10:29,1,10.4,,,-74.0022201538086,40.73973846435547,-73.8702621459961,40.773536682128906,1,N,1,30.5,0.5,0.5,0.3,7.47,5.54,44.81 +1,2016-01-14 17:53:55,2016-01-14 17:56:50,1,0.8,,,-73.96239471435547,40.7786979675293,-73.9718246459961,40.782161712646484,1,N,1,4.5,1.0,0.5,0.3,1.25,0.0,7.55 +2,2016-01-10 18:36:04,2016-01-10 18:46:11,2,1.12,,,-73.9910659790039,40.756221771240234,-73.9842758178711,40.74855041503906,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-29 19:52:18,2016-01-29 19:54:24,1,0.62,,,-73.95533752441406,40.77688217163086,-73.95014953613281,40.784027099609375,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-22 09:37:33,2016-01-22 09:44:44,1,0.9,,,-73.99149322509766,40.7493782043457,-73.98500061035156,40.742191314697266,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-06 22:56:05,2016-01-06 23:03:54,1,2.42,,,-73.98233795166016,40.7703742980957,-74.00467681884766,40.74209213256836,1,N,1,9.0,0.5,0.5,0.3,2.58,0.0,12.88 +1,2016-01-18 20:24:05,2016-01-18 20:27:25,1,0.6,,,-73.98587036132812,40.72229766845703,-73.98030090332031,40.72640609741211,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-28 00:04:13,2016-01-28 00:10:08,1,1.18,,,-73.989501953125,40.739158630371094,-73.98931121826172,40.728485107421875,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-03 20:38:22,2016-01-03 20:56:37,1,10.43,,,0.0,0.0,0.0,0.0,1,N,2,29.5,0.5,0.5,0.3,0.0,5.54,36.34 +2,2016-01-10 18:51:55,2016-01-10 19:01:34,2,1.87,,,-73.98975372314453,40.7341194152832,-73.97342681884766,40.75511932373047,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +2,2016-01-08 18:38:05,2016-01-08 18:44:42,6,0.87,,,-74.0045394897461,40.74190902709961,-74.00763702392578,40.73271942138672,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-19 08:15:56,2016-01-19 08:21:22,1,0.9,,,-73.997802734375,40.6829833984375,-73.9916763305664,40.69352722167969,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,7.55 +1,2016-01-10 03:38:39,2016-01-10 03:48:26,1,2.3,,,-74.00469207763672,40.7211799621582,-73.98442077636719,40.746116638183594,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +1,2016-01-04 20:16:46,2016-01-04 20:22:06,2,1.2,,,-74.00332641601562,40.74375915527344,-73.99767303466797,40.75652313232422,1,N,1,6.0,0.5,0.5,0.3,1.3,0.0,8.6 +1,2016-01-22 08:09:44,2016-01-22 08:18:37,1,1.0,,,-73.97921752929688,40.77690505981445,-73.97045135498047,40.76776123046875,1,N,1,7.0,0.0,0.5,0.3,0.5,0.0,8.3 +1,2016-01-08 23:24:51,2016-01-08 23:33:31,1,2.2,,,-74.0105972290039,40.72022247314453,-74.00606536865234,40.74843978881836,1,N,1,9.5,0.5,0.5,0.3,0.1,0.0,10.9 +1,2016-01-22 18:02:19,2016-01-22 18:12:01,1,1.5,,,-73.97517395019531,40.7621955871582,-73.98760986328125,40.74307632446289,1,N,1,8.0,1.0,0.5,0.3,2.45,0.0,12.25 +1,2016-01-11 15:09:25,2016-01-11 15:25:41,2,8.4,,,-73.97740173339844,40.74717712402344,-73.873046875,40.77446365356445,1,N,1,24.0,0.0,0.5,0.3,7.55,5.54,37.89 +2,2016-01-29 16:33:19,2016-01-29 16:50:01,1,2.26,,,-73.98287963867188,40.75531768798828,-73.9603500366211,40.775882720947266,1,N,1,12.0,1.0,0.5,0.3,1.0,0.0,14.8 +2,2016-01-15 09:57:51,2016-01-15 10:03:24,5,0.45,,,-73.97753143310547,40.753868103027344,-73.98181915283203,40.758331298828125,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-20 13:35:32,2016-01-20 13:44:55,1,0.9,,,-73.98139190673828,40.74123764038086,-73.97331237792969,40.752769470214844,1,N,1,7.5,0.0,0.5,0.3,3.0,0.0,11.3 +1,2016-01-08 15:03:09,2016-01-08 15:20:59,1,2.5,,,-73.96467590332031,40.77312088012695,-73.98358917236328,40.74408721923828,1,N,1,13.5,0.0,0.5,0.3,1.0,0.0,15.3 +2,2016-01-12 01:51:45,2016-01-12 01:54:32,1,0.61,,,-73.98822784423828,40.72001647949219,-73.9969711303711,40.722206115722656,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-02 22:03:02,2016-01-02 22:21:51,2,3.6,,,-73.962158203125,40.76350402832031,-74.0,40.73043441772461,1,N,1,15.5,0.5,0.5,0.3,2.0,0.0,18.8 +2,2016-01-02 16:50:56,2016-01-02 17:15:44,1,9.8,,,-73.87084197998047,40.77374267578125,-73.99153900146484,40.72624206542969,1,N,2,29.0,0.0,0.5,0.3,0.0,5.54,35.34 +1,2016-01-29 17:41:35,2016-01-29 17:43:15,1,0.4,,,-73.97134399414062,40.79430389404297,-73.96891784667969,40.7992057800293,1,Y,1,3.5,1.0,0.5,0.3,1.05,0.0,6.35 +2,2016-01-24 12:12:11,2016-01-24 12:29:48,1,4.68,,,-74.01647186279297,40.71014404296875,-73.98448181152344,40.759246826171875,1,N,1,16.5,0.0,0.5,0.3,4.32,0.0,21.62 +2,2016-01-22 17:19:51,2016-01-22 17:52:28,1,17.21,,,-74.00372314453125,40.741939544677734,-74.18151092529297,40.687721252441406,3,N,1,65.0,1.0,0.0,0.3,15.76,12.5,94.56 +2,2016-01-29 14:42:31,2016-01-29 14:43:47,6,0.11,,,-73.98696899414062,40.73672103881836,-73.98493957519531,40.737220764160156,1,N,2,3.0,0.0,0.5,0.3,0.0,0.0,3.8 +1,2016-01-07 19:58:34,2016-01-07 20:07:45,1,2.4,,,-73.97421264648438,40.76259994506836,-73.96688079833984,40.78883361816406,1,N,1,9.5,1.0,0.5,0.3,1.4,0.0,12.7 +1,2016-01-07 07:53:50,2016-01-07 08:24:35,1,6.2,,,-73.91228485107422,40.746826171875,-73.9837646484375,40.69377517700195,1,N,1,25.0,0.0,0.5,0.3,3.0,0.0,28.8 +2,2016-01-08 07:06:11,2016-01-08 07:15:45,1,1.99,,,-73.98914337158203,40.73731994628906,-73.96743774414062,40.75923156738281,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-19 09:28:15,2016-01-19 09:36:47,1,2.54,,,-74.01313018798828,40.71659851074219,-73.99961853027344,40.74626159667969,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-22 07:18:47,2016-01-22 07:26:31,1,2.1,,,-73.97758483886719,40.76423263549805,-73.99365997314453,40.74333190917969,1,N,1,9.0,0.0,0.5,0.3,5.0,0.0,14.8 +1,2016-01-17 11:56:21,2016-01-17 12:00:56,1,1.2,,,-73.97366333007812,40.763309478759766,-73.97671508789062,40.77537155151367,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-15 13:22:18,2016-01-15 13:39:06,1,2.3,,,-73.9604263305664,40.769622802734375,-73.98070526123047,40.789546966552734,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-24 21:14:23,2016-01-24 21:24:26,1,1.71,,,-74.00595092773438,40.7357063293457,-73.98739624023438,40.7479133605957,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +2,2016-01-29 00:34:46,2016-01-29 00:54:30,4,4.64,,,-73.9915771484375,40.73291015625,-73.97697448730469,40.78497314453125,1,N,1,17.5,0.5,0.5,0.3,2.0,0.0,20.8 +2,2016-01-02 19:42:06,2016-01-02 19:48:08,1,1.32,,,-73.98757934570312,40.759891510009766,-73.98381042480469,40.773738861083984,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-27 08:33:10,2016-01-27 08:46:59,1,1.5,,,-73.98531341552734,40.768497467041016,-73.99073028564453,40.752044677734375,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-06 19:32:53,2016-01-06 19:44:09,1,2.04,,,-74.00028228759766,40.728721618652344,-73.9925537109375,40.74856948852539,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-25 16:06:51,2016-01-25 16:46:09,1,9.6,,,-73.9865493774414,40.760826110839844,-74.01148986816406,40.67242431640625,1,N,1,33.5,1.0,0.5,0.3,4.0,0.0,39.3 +2,2016-01-07 20:14:44,2016-01-07 20:34:15,1,6.48,,,-73.95230102539062,40.78711700439453,-73.90045166015625,40.773048400878906,1,N,1,21.5,0.5,0.5,0.3,5.67,5.54,34.01 +1,2016-01-10 15:47:53,2016-01-10 15:50:45,1,0.7,,,-73.9292221069336,40.768184661865234,-73.93894958496094,40.76599884033203,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-13 14:41:04,2016-01-13 14:47:05,3,1.0,,,-73.98143005371094,40.74714660644531,-73.99072265625,40.734596252441406,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-28 05:51:53,2016-01-28 06:27:49,3,17.63,,,-73.9812240600586,40.72509002685547,-73.78364562988281,40.64374923706055,2,N,1,52.0,0.0,0.5,0.3,10.56,0.0,63.36 +2,2016-01-20 18:51:07,2016-01-20 19:33:29,1,18.97,,,-73.97409057617188,40.79155731201172,-74.17767333984375,40.690528869628906,3,N,1,71.0,1.0,0.0,0.3,8.8,12.5,93.6 +2,2016-01-18 23:42:07,2016-01-19 00:08:32,1,8.16,,,-73.99059295654297,40.76114273071289,-73.95204162597656,40.669036865234375,1,N,1,26.0,0.5,0.5,0.3,8.19,0.0,35.49 +1,2016-01-20 23:03:49,2016-01-20 23:09:19,2,1.4,,,-73.9843978881836,40.76389694213867,-73.97679138183594,40.78069305419922,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-17 13:16:57,2016-01-17 13:25:01,1,2.48,,,-73.95894622802734,40.768951416015625,-73.97244262695312,40.74361038208008,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-01 14:11:08,2016-01-01 14:24:09,2,2.2,,,-73.9873275756836,40.72888946533203,-73.99752044677734,40.714073181152344,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +1,2016-01-10 01:31:15,2016-01-10 01:54:47,1,7.2,,,-74.00252532958984,40.733455657958984,-73.90476989746094,40.75786590576172,1,N,1,23.0,0.5,0.5,0.3,4.0,0.0,28.3 +1,2016-01-18 15:05:32,2016-01-18 15:13:33,2,1.7,,,-73.9659423828125,40.75974655151367,-73.94772338867188,40.77518844604492,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,9.8 +1,2016-01-12 18:23:44,2016-01-12 18:33:45,1,1.5,,,-73.95664978027344,40.78069305419922,-73.96853637695312,40.79250717163086,1,N,1,8.5,1.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-19 13:10:53,2016-01-19 13:45:41,1,9.8,,,-73.87457275390625,40.77408218383789,-73.98096466064453,40.782413482666016,1,N,1,34.0,0.0,0.5,0.3,8.05,5.54,48.39 +1,2016-01-30 16:38:33,2016-01-30 16:53:50,1,1.2,,,-73.9933090209961,40.747047424316406,-73.98088836669922,40.75721740722656,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-29 02:56:39,2016-01-29 03:00:54,1,1.55,,,-73.9723892211914,40.752830505371094,-73.97221374511719,40.7530517578125,1,N,1,6.5,0.5,0.5,0.3,1.95,0.0,9.75 +1,2016-01-15 13:37:22,2016-01-15 13:50:27,1,1.0,,,-74.0059585571289,40.733154296875,-73.99730682373047,40.72473907470703,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-12 09:11:23,2016-01-12 09:18:52,3,0.78,,,-73.98793029785156,40.761478424072266,-73.98988342285156,40.75693130493164,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-13 13:43:58,2016-01-13 14:01:41,6,2.07,,,-73.98529052734375,40.74462127685547,-73.96597290039062,40.770999908447266,1,N,1,12.5,0.0,0.5,0.3,1.5,0.0,14.8 +2,2016-01-06 14:42:41,2016-01-06 15:08:32,2,4.64,,,-73.9909896850586,40.755897521972656,-73.95648956298828,40.747962951660156,1,N,2,20.5,0.0,0.5,0.3,0.0,0.0,21.3 +2,2016-01-29 06:33:27,2016-01-29 06:44:49,3,2.15,,,-73.94861602783203,40.78226852416992,-73.93668365478516,40.8040885925293,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,11.8 +1,2016-01-08 15:07:48,2016-01-08 15:16:56,1,1.1,,,-73.9504623413086,40.79521942138672,-73.9473648071289,40.78373336791992,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-20 17:07:17,2016-01-20 17:37:35,1,4.47,,,-73.97026824951172,40.75897216796875,-73.95630645751953,40.726356506347656,1,N,1,20.0,1.0,0.5,0.3,4.36,0.0,26.16 +2,2016-01-05 19:06:55,2016-01-05 19:22:21,3,2.12,,,-73.98030090332031,40.784786224365234,-73.95291900634766,40.78645706176758,1,N,1,11.5,1.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-28 22:26:39,2016-01-28 22:34:50,1,2.06,,,-74.0055923461914,40.73817443847656,-73.99547576904297,40.76051330566406,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,12.25 +2,2016-01-03 21:26:25,2016-01-03 21:30:21,1,1.28,,,-73.97325134277344,40.74842834472656,-73.97467803955078,40.73289489746094,1,N,1,5.5,0.5,0.5,0.3,2.04,0.0,8.84 +2,2016-01-06 13:12:52,2016-01-06 13:29:46,1,1.37,,,-73.97848510742188,40.75177764892578,-73.9831314086914,40.76616287231445,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-28 15:31:31,2016-01-28 15:46:12,1,1.87,,,-73.98997497558594,40.73500442504883,-73.97189331054688,40.75450897216797,1,N,1,10.5,0.0,0.5,0.3,2.0,0.0,13.3 +1,2016-01-17 10:28:55,2016-01-17 10:33:29,1,1.2,,,-73.9813461303711,40.76472473144531,-73.99149322509766,40.749427795410156,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-05 07:56:12,2016-01-05 08:11:10,4,4.9,,,-73.97877502441406,40.74774169921875,-74.01068878173828,40.70285415649414,1,N,1,17.0,0.0,0.5,0.3,3.56,0.0,21.36 +1,2016-01-06 13:19:20,2016-01-06 13:36:40,1,3.3,,,-74.01509857177734,40.714149475097656,-73.98997497558594,40.7438850402832,1,N,1,15.0,0.0,0.5,0.3,3.0,0.0,18.8 +2,2016-01-03 00:55:41,2016-01-03 00:58:41,1,0.39,,,-73.98893737792969,40.730918884277344,-73.99210357666016,40.72576141357422,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,6.36 +1,2016-01-20 12:06:25,2016-01-20 12:19:26,1,0.9,,,-73.96696472167969,40.761253356933594,-73.97920227050781,40.76521682739258,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-19 23:28:07,2016-01-19 23:44:57,1,4.78,,,-73.9860610961914,40.74138641357422,-73.98018646240234,40.68033218383789,1,N,1,17.5,0.5,0.5,0.3,5.64,0.0,24.44 +2,2016-01-24 19:44:43,2016-01-24 20:54:07,2,1.24,,,-74.0082778930664,40.73834991455078,-73.98773956298828,40.732521057128906,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-26 06:40:52,2016-01-26 06:48:52,2,2.15,,,-74.00048828125,40.738956451416016,-74.00048828125,40.738956451416016,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +1,2016-01-10 21:05:30,2016-01-10 21:09:03,1,0.7,,,-73.945068359375,40.6892204284668,-73.94398498535156,40.697757720947266,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-12 19:18:38,2016-01-12 19:24:40,2,0.97,,,-74.00066375732422,40.75778579711914,-73.99578857421875,40.764530181884766,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-27 20:13:49,2016-01-27 20:19:49,2,1.02,,,-73.97687530517578,40.75031280517578,-73.98910522460938,40.74470520019531,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +1,2016-01-18 07:47:39,2016-01-18 08:00:55,1,3.7,,,-73.97518920898438,40.76534652709961,-74.0000991821289,40.71952819824219,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,17.15 +2,2016-01-19 23:22:49,2016-01-19 23:36:29,2,2.58,,,-73.9912109375,40.717288970947266,-73.99549102783203,40.744049072265625,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +1,2016-01-18 20:47:42,2016-01-18 20:53:34,1,1.5,,,-73.97344970703125,40.763370513916016,-73.99117279052734,40.754859924316406,1,N,1,7.0,0.5,0.5,0.3,2.07,0.0,10.37 +1,2016-01-17 14:32:54,2016-01-17 14:36:21,2,0.5,,,-73.99887084960938,40.722938537597656,-74.00452423095703,40.71635055541992,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,6.3 +2,2016-01-09 21:02:40,2016-01-09 21:27:17,1,4.19,,,-73.99785614013672,40.71693420410156,-73.98358917236328,40.765384674072266,1,N,2,18.5,0.5,0.5,0.3,0.0,0.0,19.8 +2,2016-01-20 16:53:13,2016-01-20 16:56:37,1,0.63,,,-73.98056030273438,40.78296661376953,-73.9764175415039,40.790000915527344,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-14 13:15:48,2016-01-14 13:19:29,3,0.72,,,-73.96951293945312,40.789947509765625,-73.97837829589844,40.786216735839844,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-26 14:02:50,2016-01-26 14:16:22,1,0.98,,,-73.96711730957031,40.766361236572266,-73.95368194580078,40.766780853271484,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-03 09:58:49,2016-01-03 10:03:12,1,1.06,,,-73.9585952758789,40.783355712890625,-73.96174621582031,40.771949768066406,1,N,1,5.5,0.0,0.5,0.3,0.94,0.0,7.24 +1,2016-01-26 07:43:00,2016-01-26 08:16:44,1,3.7,,,-73.9876708984375,40.73280334472656,-73.95236206054688,40.76961135864258,1,N,1,21.5,0.0,0.5,0.3,2.0,0.0,24.3 +2,2016-01-28 23:47:41,2016-01-29 00:11:20,5,3.93,,,-73.99846649169922,40.72291946411133,-73.96759033203125,40.75721740722656,1,N,1,17.5,0.5,0.5,0.3,3.76,0.0,22.56 +2,2016-01-02 22:47:11,2016-01-02 22:50:08,1,0.69,,,-73.9951171875,40.725318908691406,-73.99067687988281,40.73394012451172,1,N,1,4.5,0.5,0.5,0.3,1.0,0.0,6.8 +1,2016-01-02 02:35:05,2016-01-02 02:39:34,3,0.6,,,-73.98680877685547,40.76449203491211,-73.98506164550781,40.75818634033203,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-14 20:52:52,2016-01-14 21:10:13,2,6.13,,,-73.95318603515625,40.77265167236328,-74.00325775146484,40.722843170166016,1,N,1,20.5,0.5,0.5,0.3,1.0,0.0,22.8 +1,2016-01-08 15:07:02,2016-01-08 15:07:02,1,0.0,,,-73.95572662353516,40.77933120727539,0.0,0.0,1,N,2,22.5,0.0,0.5,0.3,0.0,0.0,23.3 +1,2016-01-16 13:09:13,2016-01-16 13:40:26,1,11.6,,,-73.9501724243164,40.78013610839844,-73.99523162841797,40.66610336303711,1,N,1,36.5,0.0,0.5,0.3,4.0,0.0,41.3 +2,2016-01-09 18:41:36,2016-01-09 19:22:13,1,18.15,,,-73.95982360839844,40.77629089355469,-73.78173828125,40.64448165893555,2,N,1,52.0,0.0,0.5,0.3,10.56,0.0,63.36 +2,2016-01-16 00:41:33,2016-01-16 00:46:37,1,0.86,,,-73.91667938232422,40.68650817871094,-73.92969512939453,40.693763732910156,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-09 18:19:01,2016-01-09 18:37:20,2,1.94,,,-74.00639343261719,40.73323059082031,-73.98764038085938,40.72121047973633,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +2,2016-01-10 22:35:42,2016-01-10 22:46:04,2,2.41,,,-73.99481964111328,40.75390625,-74.00007629394531,40.73050308227539,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-19 08:39:45,2016-01-19 08:54:29,4,1.98,,,-73.98599243164062,40.743560791015625,-73.98820495605469,40.76152038574219,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-07 18:50:12,2016-01-07 19:05:34,1,2.2,,,-73.97777557373047,40.78893280029297,-73.95690155029297,40.76979446411133,1,N,1,11.5,1.0,0.5,0.3,3.95,0.0,17.25 +2,2016-01-19 18:11:12,2016-01-19 18:20:09,1,2.39,,,-73.9614028930664,40.80126953125,-73.95648956298828,40.776458740234375,1,N,1,9.0,1.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-16 02:35:47,2016-01-16 02:43:24,1,2.0,,,-74.00236511230469,40.733463287353516,-74.01509094238281,40.71007537841797,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-20 07:45:17,2016-01-20 07:57:09,1,1.5,,,-73.97156524658203,40.75751876831055,-73.95291137695312,40.76526641845703,1,N,1,9.0,0.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-06 21:23:17,2016-01-06 21:35:51,1,2.28,,,-74.00135803222656,40.74565887451172,-73.9718017578125,40.75136184692383,1,N,1,10.5,0.5,0.5,0.3,2.29,0.0,14.09 +1,2016-01-10 19:38:36,2016-01-10 19:53:00,2,6.7,,,-73.87300872802734,40.77412414550781,-73.88842010498047,40.73111343383789,1,N,1,20.0,0.0,0.5,0.3,2.08,0.0,22.88 +1,2016-01-18 21:29:52,2016-01-18 21:34:34,1,0.8,,,0.0,0.0,0.0,0.0,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-19 12:01:05,2016-01-19 12:07:55,1,0.68,,,-73.99913024902344,40.733951568603516,-73.9948501586914,40.74217224121094,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-06 18:37:18,2016-01-06 18:48:32,1,0.6,,,-73.97881317138672,40.76689910888672,-73.97544860839844,40.759376525878906,1,N,1,8.0,1.0,0.5,0.3,2.0,0.0,11.8 +1,2016-01-15 12:46:08,2016-01-15 12:57:31,1,0.9,,,-73.9805908203125,40.753963470458984,-73.99151611328125,40.74951934814453,1,N,1,8.5,0.0,0.5,0.3,2.75,0.0,12.05 +1,2016-01-13 17:21:24,2016-01-13 17:29:42,1,1.4,,,-73.98896026611328,40.72172164916992,-73.98273468017578,40.73940658569336,1,N,1,8.0,1.0,0.5,0.3,1.95,0.0,11.75 +2,2016-01-07 13:35:38,2016-01-07 13:45:55,1,1.48,,,-73.9760513305664,40.75703048706055,-73.96143341064453,40.77143096923828,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-03 01:26:27,2016-01-03 01:31:07,1,1.58,,,-73.95846557617188,40.76864242553711,-73.9725570678711,40.74909591674805,1,N,1,6.5,0.5,0.5,0.3,1.0,0.0,8.8 +2,2016-01-07 13:46:59,2016-01-07 13:52:07,1,0.88,,,-73.9656753540039,40.76832580566406,-73.9578857421875,40.779273986816406,1,N,1,5.5,0.0,0.5,0.3,1.89,0.0,8.19 +1,2016-01-15 20:36:56,2016-01-15 20:44:48,1,1.6,,,-73.96507263183594,40.755184173583984,-73.95669555664062,40.77513885498047,1,N,1,8.0,0.5,0.5,0.3,2.3,0.0,11.6 +1,2016-01-16 00:01:37,2016-01-16 00:07:21,2,0.9,,,-73.9869384765625,40.72966384887695,-73.9998550415039,40.73032760620117,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,8.15 +1,2016-01-30 19:03:19,2016-01-30 19:27:51,2,3.6,,,-73.97662353515625,40.785797119140625,-73.96630096435547,40.76713180541992,1,N,1,17.5,0.0,0.5,0.3,3.66,0.0,21.96 +2,2016-01-29 09:49:23,2016-01-29 10:11:03,1,2.28,,,-73.98023223876953,40.73925018310547,-73.97769927978516,40.763675689697266,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,18.96 +2,2016-01-05 20:22:54,2016-01-05 20:35:40,1,3.48,,,-73.99561309814453,40.723358154296875,-73.96923065185547,40.68959045410156,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +2,2016-01-18 16:42:49,2016-01-18 16:48:09,5,1.17,,,-73.962158203125,40.779300689697266,-73.97638702392578,40.780906677246094,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-30 17:39:55,2016-01-30 18:06:02,3,8.18,,,-73.87471771240234,40.77406311035156,-73.96204376220703,40.79549026489258,1,N,1,26.5,0.0,0.5,0.3,7.0,5.54,39.84 +1,2016-01-19 13:27:35,2016-01-19 13:52:46,1,2.1,,,-73.99147033691406,40.73915481567383,-73.97435760498047,40.75973129272461,1,N,1,16.0,0.0,0.5,0.3,1.0,0.0,17.8 +2,2016-01-22 04:12:12,2016-01-22 04:28:36,1,4.32,,,-73.95903015136719,40.814998626708984,-73.97846984863281,40.761558532714844,1,N,1,16.0,0.5,0.5,0.3,2.0,0.0,19.3 +1,2016-01-11 14:53:41,2016-01-11 15:42:11,1,21.3,,,-73.78282165527344,40.6466064453125,-74.00908660888672,40.706233978271484,2,N,1,52.0,0.0,0.5,0.3,11.66,5.54,70.0 +1,2016-01-14 13:45:54,2016-01-14 14:05:54,2,2.4,,,-73.98092651367188,40.76541519165039,-73.97943878173828,40.78958511352539,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +2,2016-01-14 00:27:26,2016-01-14 00:40:42,5,3.28,,,-73.95220947265625,40.82426071166992,-73.9502182006836,40.786869049072266,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +1,2016-01-09 14:45:55,2016-01-09 14:50:51,2,1.6,,,-74.00374603271484,40.732086181640625,-74.01444244384766,40.712669372558594,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +1,2016-01-26 10:45:09,2016-01-26 10:56:53,1,1.6,,,0.0,0.0,0.0,0.0,1,N,1,9.5,0.0,0.5,0.3,1.55,0.0,11.85 +1,2016-01-06 18:15:33,2016-01-06 18:20:33,1,0.6,,,-73.98515319824219,40.739837646484375,-73.99508666992188,40.74413299560547,1,N,1,5.0,1.0,0.5,0.3,3.0,0.0,9.8 +2,2016-01-07 11:49:05,2016-01-07 11:57:26,2,0.66,,,-73.9737777709961,40.75188064575195,-73.97248077392578,40.75934982299805,1,N,1,6.5,0.0,0.5,0.3,1.1,0.0,8.4 +1,2016-01-16 11:17:25,2016-01-16 11:29:09,1,2.0,,,-73.95219421386719,40.78128433227539,-73.97457122802734,40.79108810424805,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-02 23:26:36,2016-01-02 23:32:17,5,2.16,,,-73.97528839111328,40.741249084472656,-73.95600128173828,40.767921447753906,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +1,2016-01-13 08:06:18,2016-01-13 08:14:55,1,0.9,,,-73.95606231689453,40.78158187866211,-73.96826934814453,40.78675079345703,1,N,1,7.0,0.0,0.5,0.3,1.2,0.0,9.0 +2,2016-01-28 19:16:22,2016-01-28 19:29:43,1,2.15,,,-73.97840118408203,40.757198333740234,-73.9820785522461,40.77885055541992,1,N,1,10.5,1.0,0.5,0.3,2.0,0.0,14.3 +2,2016-01-07 21:55:52,2016-01-07 22:01:09,1,1.62,,,-73.98238372802734,40.77288818359375,-73.97434997558594,40.78868865966797,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-16 18:26:13,2016-01-16 18:41:39,3,3.1,,,-73.99284362792969,40.768211364746094,-73.95628356933594,40.779666900634766,1,N,1,13.0,0.0,0.5,0.3,2.75,0.0,16.55 +2,2016-01-02 19:12:25,2016-01-02 19:29:23,2,3.31,,,-73.99015045166016,40.75661849975586,-73.95246124267578,40.772857666015625,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +1,2016-01-24 10:15:34,2016-01-24 10:25:14,1,2.7,,,-73.98115539550781,40.72093200683594,-74.00796508789062,40.7116584777832,1,N,1,11.0,0.0,0.5,0.3,2.95,0.0,14.75 +1,2016-01-09 14:27:43,2016-01-09 14:33:42,1,0.8,,,-73.95772552490234,40.77959442138672,-73.95777130126953,40.772727966308594,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-29 18:37:22,2016-01-29 18:59:23,2,4.9,,,-73.98267364501953,40.76510238647461,-74.0141830444336,40.713897705078125,1,N,1,19.0,1.0,0.5,0.3,6.2,0.0,27.0 +1,2016-01-27 01:57:46,2016-01-27 02:08:20,1,4.3,,,-73.99279022216797,40.76337814331055,-73.95186614990234,40.809200286865234,1,N,1,13.0,0.5,0.5,0.3,1.2,0.0,15.5 +2,2016-01-18 09:19:15,2016-01-18 09:36:16,1,4.21,,,-74.00086212158203,40.75768280029297,-74.01152038574219,40.710079193115234,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,20.76 +1,2016-01-13 12:35:04,2016-01-13 13:13:39,1,3.6,,,-74.00746154785156,40.70748519897461,-73.98009490966797,40.74859619140625,1,N,1,24.0,0.0,0.5,0.3,4.0,0.0,28.8 +1,2016-01-08 07:48:02,2016-01-08 08:08:33,1,4.8,,,-73.94918823242188,40.773399353027344,-73.99932861328125,40.73872756958008,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,18.8 +2,2016-01-28 06:35:47,2016-01-28 06:38:12,1,0.52,,,-73.97820281982422,40.7458610534668,-73.97470092773438,40.7515983581543,1,N,1,4.0,0.0,0.5,0.3,0.96,0.0,5.76 +1,2016-01-25 12:22:41,2016-01-25 12:35:37,1,2.3,,,-73.99002838134766,40.74483871459961,-74.00638580322266,40.71870422363281,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-27 07:53:36,2016-01-27 08:00:10,5,0.93,,,-73.98684692382812,40.7664794921875,-73.9877700805664,40.756378173828125,1,N,1,6.5,0.0,0.5,0.3,1.7,0.0,9.0 +2,2016-01-23 05:39:39,2016-01-23 05:56:13,1,2.55,,,-73.98290252685547,40.731449127197266,-73.99241638183594,40.7540283203125,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,13.3 +2,2016-01-09 18:22:18,2016-01-09 18:28:26,1,0.66,,,-73.98280334472656,40.75580978393555,-73.9723892211914,40.753448486328125,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-17 19:25:42,2016-01-17 19:32:06,2,0.8,,,-73.97866821289062,40.787757873535156,-73.97919464111328,40.77752685546875,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +1,2016-01-10 19:23:31,2016-01-10 19:27:11,1,0.6,,,-74.01132202148438,40.715599060058594,-74.0057601928711,40.71752166748047,1,N,1,4.5,1.0,0.5,0.3,1.25,0.0,7.55 +2,2016-01-29 07:35:46,2016-01-29 07:40:49,1,0.5,,,-73.97193908691406,40.757118225097656,-73.96897888183594,40.75838088989258,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-06 20:06:35,2016-01-06 20:10:52,3,0.95,,,-73.9498062133789,40.772159576416016,-73.95398712158203,40.78131866455078,1,N,1,5.5,0.5,0.5,0.3,1.2,0.0,8.0 +1,2016-01-26 20:30:35,2016-01-26 20:48:41,1,4.3,,,-73.96774291992188,40.683712005615234,-73.98235321044922,40.731483459472656,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,16.8 +1,2016-01-27 11:20:01,2016-01-27 11:43:13,1,2.9,,,-73.96546173095703,40.75951385498047,-73.9781723022461,40.7885856628418,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +2,2016-01-08 23:20:19,2016-01-08 23:28:25,1,1.53,,,-73.99347686767578,40.747188568115234,-73.98098754882812,40.733917236328125,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-02 13:45:10,2016-01-02 13:52:47,2,2.26,,,-73.96800994873047,40.75564956665039,-73.99095916748047,40.72602844238281,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-01 21:32:20,2016-01-01 21:39:37,3,1.4,,,-73.98868560791016,40.731475830078125,-73.990234375,40.74661636352539,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +1,2016-01-12 23:54:17,2016-01-13 00:05:00,1,2.1,,,-73.96996307373047,40.760074615478516,-73.99827575683594,40.756717681884766,1,N,1,9.5,0.5,0.5,0.3,2.15,0.0,12.95 +1,2016-01-01 02:02:22,2016-01-01 02:10:10,1,1.8,,,-73.92044830322266,40.7681770324707,-73.94022369384766,40.75111770629883,1,Y,1,8.0,0.5,0.5,0.3,1.85,0.0,11.15 +1,2016-01-16 02:07:49,2016-01-16 02:20:51,1,6.1,,,-73.93901824951172,40.84861373901367,-73.98694610595703,40.869117736816406,5,N,1,30.0,0.0,0.0,0.3,5.0,0.0,35.3 +1,2016-01-05 13:21:23,2016-01-05 13:27:12,1,1.0,,,-73.99030303955078,40.75122833251953,-73.99412536621094,40.739498138427734,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-17 16:21:42,2016-01-17 16:29:53,1,1.2,,,-73.95606231689453,40.77600860595703,-73.97039031982422,40.78484344482422,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-27 17:52:46,2016-01-27 18:02:03,1,1.5,,,-73.96236419677734,40.778690338134766,-73.98136901855469,40.77864074707031,1,N,1,8.0,1.0,0.5,0.3,1.5,0.0,11.3 +2,2016-01-14 18:49:44,2016-01-14 19:17:16,1,4.66,,,-73.9735336303711,40.751861572265625,-73.96221160888672,40.80522155761719,1,N,1,20.0,1.0,0.5,0.3,5.45,0.0,27.25 +2,2016-01-19 14:34:58,2016-01-19 15:23:26,1,12.34,,,-73.94918060302734,40.695518493652344,-73.7763900756836,40.64529037475586,1,N,1,44.5,0.0,0.5,0.3,9.06,0.0,54.36 +2,2016-01-30 13:39:46,2016-01-30 13:49:00,2,1.47,,,-73.99644470214844,40.72547149658203,-73.99330139160156,40.742122650146484,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-15 08:47:10,2016-01-15 08:52:15,1,0.85,,,-73.96336364746094,40.7579231262207,-73.96464538574219,40.766265869140625,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-28 07:26:02,2016-01-28 07:29:19,1,0.8,,,-73.97677612304688,40.74350357055664,-73.98529052734375,40.735023498535156,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,6.3 +2,2016-01-03 10:35:27,2016-01-04 09:58:40,1,8.08,,,-73.99764251708984,40.76521301269531,-74.01455688476562,40.6819953918457,1,N,2,26.0,0.0,0.5,0.3,0.0,5.54,32.34 +1,2016-01-15 13:08:38,2016-01-15 13:22:46,2,4.0,,,-73.98296356201172,40.766845703125,-73.96463775634766,40.808712005615234,1,N,1,15.0,0.0,0.5,0.3,1.5,0.0,17.3 +2,2016-01-22 12:32:04,2016-01-22 12:34:05,1,0.45,,,-73.96697998046875,40.7936897277832,-73.96890258789062,40.78847885131836,1,N,1,3.5,0.0,0.5,0.3,1.08,0.0,5.38 +2,2016-01-30 13:47:48,2016-01-30 14:01:58,1,1.17,,,-73.97488403320312,40.76188659667969,-73.98954772949219,40.77131652832031,1,N,1,9.5,0.0,0.5,0.3,2.0,0.0,12.3 +1,2016-01-18 21:15:36,2016-01-18 21:25:20,1,1.5,,,-73.98863220214844,40.77382278442383,-73.98985290527344,40.75730895996094,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,10.8 +1,2016-01-29 22:55:48,2016-01-29 23:11:23,1,2.5,,,-73.96822357177734,40.76551818847656,-73.98158264160156,40.74103546142578,1,N,1,11.5,0.5,0.5,0.3,3.2,0.0,16.0 +2,2016-01-25 19:30:43,2016-01-25 19:36:50,1,1.11,,,-73.98987579345703,40.75058364868164,-73.99427032470703,40.76128005981445,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-11 22:02:45,2016-01-11 22:13:02,4,2.1,,,-73.99128723144531,40.74950408935547,-73.98433685302734,40.728851318359375,1,N,3,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +2,2016-01-25 21:37:48,2016-01-25 21:43:23,1,0.81,,,-73.98985290527344,40.73404312133789,-73.97967529296875,40.73523712158203,1,N,1,5.5,0.5,0.5,0.3,1.25,0.0,8.05 +2,2016-01-11 17:58:51,2016-01-11 18:04:25,1,0.72,,,-73.96446990966797,40.76725769042969,-73.95604705810547,40.76369094848633,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-17 19:45:50,2016-01-17 19:52:48,2,1.28,,,-73.99496459960938,40.749603271484375,-73.9884262084961,40.75776290893555,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-27 07:43:16,2016-01-27 08:08:56,1,2.9,,,-73.98615264892578,40.72635269165039,-73.97296142578125,40.761497497558594,1,N,1,17.0,0.0,0.5,0.3,3.0,0.0,20.8 +2,2016-01-02 12:46:20,2016-01-02 12:54:30,1,1.63,,,-73.97965240478516,40.74665069580078,-73.97606658935547,40.76382827758789,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-26 15:12:16,2016-01-26 15:21:01,5,1.24,,,-73.99652099609375,40.753334045410156,-73.98955535888672,40.74131774902344,1,N,1,7.5,0.0,0.5,0.3,0.11,0.0,8.41 +2,2016-01-26 18:43:35,2016-01-26 18:59:59,1,1.46,,,-73.97998046875,40.78377151489258,-73.95929718017578,40.77621078491211,1,N,1,11.0,1.0,0.5,0.3,2.56,0.0,15.36 +2,2016-01-30 16:06:12,2016-01-30 16:17:27,6,0.84,,,-74.00477600097656,40.74189376831055,-73.99212646484375,40.73565673828125,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,9.8 +1,2016-01-11 15:34:51,2016-01-11 15:39:41,1,0.5,,,-73.95742797851562,40.77452087402344,-73.95880126953125,40.77238082885742,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-21 07:50:20,2016-01-21 08:09:24,1,3.96,,,-73.95065307617188,40.7862663269043,-73.99117279052734,40.742286682128906,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-06 13:19:11,2016-01-06 13:22:35,4,0.5,,,-73.98663330078125,40.75589370727539,-73.99140930175781,40.74949264526367,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,6.35 +2,2016-01-07 14:33:17,2016-01-07 14:38:05,2,0.78,,,-73.98428344726562,40.749114990234375,-73.98766326904297,40.73964309692383,1,N,1,5.5,0.0,0.5,0.3,1.58,0.0,7.88 +2,2016-01-21 09:52:40,2016-01-21 09:59:52,1,1.41,,,-73.9505844116211,40.771453857421875,-73.97157287597656,40.781978607177734,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-25 20:10:45,2016-01-25 20:52:09,1,5.82,,,-73.99205017089844,40.731048583984375,-73.94316864013672,40.67850875854492,1,N,2,27.0,0.5,0.5,0.3,0.0,0.0,28.3 +2,2016-01-06 00:30:37,2016-01-06 01:00:06,1,16.87,,,-73.78825378417969,40.64080810546875,-73.9520034790039,40.75931167602539,1,N,1,46.5,0.5,0.5,0.3,9.56,0.0,57.36 +2,2016-01-27 18:53:27,2016-01-27 19:11:09,5,2.04,,,-73.98130798339844,40.74610900878906,-73.96308135986328,40.76913833618164,1,N,1,12.5,1.0,0.5,0.3,2.0,0.0,16.3 +1,2016-01-21 21:06:41,2016-01-21 21:17:42,1,1.5,,,-73.98343658447266,40.74398422241211,-73.99556732177734,40.754554748535156,1,N,1,8.5,0.5,0.5,0.3,1.95,0.0,11.75 +2,2016-01-16 11:45:24,2016-01-16 11:50:56,5,1.22,,,-73.96224975585938,40.76622009277344,-73.95118713378906,40.7793083190918,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +1,2016-01-03 17:06:49,2016-01-03 17:53:09,2,21.8,,,-73.98443603515625,40.767425537109375,-73.79084777832031,40.64656066894531,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-04 00:25:23,2016-01-04 00:45:59,2,11.6,,,-74.00761413574219,40.7408332824707,-73.92874145507812,40.82463073730469,1,N,2,33.5,0.5,0.5,0.3,0.0,0.0,34.8 +1,2016-01-27 12:29:07,2016-01-27 12:55:46,1,5.1,,,-73.98367309570312,40.7494010925293,-74.01129150390625,40.7103157043457,1,N,1,21.0,0.0,0.5,0.3,5.45,0.0,27.25 +2,2016-01-05 21:55:03,2016-01-05 22:16:16,1,11.87,,,-73.87104034423828,40.7736701965332,-74.00933837890625,40.715599060058594,1,N,1,33.5,0.5,0.5,0.3,6.0,0.0,40.8 +2,2016-01-02 00:39:14,2016-01-02 00:46:59,2,1.24,,,-73.99004364013672,40.73801040649414,-74.00428771972656,40.73754119873047,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +2,2016-01-18 02:28:37,2016-01-18 02:30:15,1,0.59,,,-73.9951171875,40.739540100097656,-73.99031829833984,40.746891021728516,1,N,1,3.5,0.5,0.5,0.3,0.96,0.0,5.76 +1,2016-01-09 01:15:34,2016-01-09 01:26:59,2,2.7,,,-73.9871597290039,40.722408294677734,-73.9544448852539,40.716922760009766,1,N,1,11.5,0.5,0.5,0.3,3.8,0.0,16.6 +1,2016-01-25 18:17:53,2016-01-25 18:30:09,1,2.6,,,-73.98126983642578,40.78070831298828,-73.95690155029297,40.81227111816406,1,N,1,10.5,1.0,0.5,0.3,2.45,0.0,14.75 +1,2016-01-21 21:28:31,2016-01-21 21:33:27,1,1.1,,,-73.96099853515625,40.775962829589844,-73.97584533691406,40.78160095214844,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +2,2016-01-22 23:49:15,2016-01-22 23:58:38,2,1.04,,,-73.986083984375,40.76245880126953,-73.99795532226562,40.76405334472656,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-09 01:37:29,2016-01-09 01:43:00,1,2.42,,,-73.98784637451172,40.76896286010742,-73.97533416748047,40.79618453979492,1,N,1,9.0,0.5,0.5,0.3,2.58,0.0,12.88 +1,2016-01-30 20:26:36,2016-01-30 20:48:33,2,4.2,,,-73.99022674560547,40.756080627441406,-73.94657897949219,40.78316879272461,1,N,1,17.5,0.5,0.5,0.3,3.75,0.0,22.55 +1,2016-01-15 16:48:19,2016-01-15 17:19:15,1,4.9,,,-73.97425842285156,40.754119873046875,-73.96125030517578,40.80668640136719,1,N,1,22.0,1.0,0.5,0.3,0.04,0.0,23.84 +2,2016-01-21 07:21:02,2016-01-21 07:30:10,1,1.6,,,-73.98487091064453,40.74730682373047,-73.97260284423828,40.76469039916992,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-30 05:47:32,2016-01-30 05:53:42,2,3.68,,,-73.9885482788086,40.71875,-74.01278686523438,40.70220184326172,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +2,2016-01-25 09:45:55,2016-01-25 09:58:51,1,1.58,,,-73.97516632080078,40.76518249511719,-73.99112701416016,40.75017547607422,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-13 08:11:03,2016-01-13 08:21:02,3,1.69,,,-73.9637680053711,40.75722885131836,-73.98001098632812,40.75111770629883,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +1,2016-01-16 14:53:50,2016-01-16 15:01:32,1,1.5,,,-73.96517181396484,40.775211334228516,-73.97949981689453,40.77667999267578,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-17 22:14:06,2016-01-17 22:30:47,6,4.51,,,-73.97818756103516,40.75231170654297,-74.01113891601562,40.702999114990234,1,N,1,15.5,0.5,0.5,0.3,3.36,0.0,20.16 +1,2016-01-03 05:49:19,2016-01-03 06:13:25,2,16.7,,,-73.97699737548828,40.76438522338867,-73.7900619506836,40.64344787597656,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +2,2016-01-20 09:21:07,2016-01-20 09:32:13,1,1.49,,,-74.00336456298828,40.727210998535156,-73.988525390625,40.73741149902344,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +1,2016-01-04 21:31:42,2016-01-04 21:35:48,1,0.6,,,-73.98062133789062,40.77816390991211,-73.9793701171875,40.785316467285156,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-14 19:36:55,2016-01-14 19:54:24,1,6.6,,,-74.01386260986328,40.71316146850586,-73.98435974121094,40.7458381652832,1,N,1,22.0,1.0,0.5,0.3,4.75,0.0,28.55 +2,2016-01-22 18:37:09,2016-01-22 19:02:49,1,3.7,,,-73.98988342285156,40.733333587646484,-73.9839859008789,40.77372360229492,1,N,1,18.0,1.0,0.5,0.3,3.96,0.0,23.76 +2,2016-01-06 09:22:57,2016-01-06 09:39:04,3,3.66,,,-73.9941635131836,40.7512092590332,-74.01524353027344,40.71138000488281,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,18.96 +1,2016-01-23 00:23:51,2016-01-23 01:01:57,1,6.8,,,-73.95176696777344,40.74298858642578,-73.9642562866211,40.67228317260742,1,N,2,27.0,0.5,0.5,0.3,0.0,0.0,28.3 +2,2016-01-17 11:46:51,2016-01-17 12:00:51,1,5.55,,,-74.01171875,40.70953369140625,-73.97044372558594,40.756187438964844,1,N,2,18.0,0.0,0.5,0.3,0.0,0.0,18.8 +2,2016-01-01 01:23:59,2016-01-01 01:28:31,1,0.93,,,-73.99676513671875,40.74251174926758,-73.99614715576172,40.73302459716797,1,N,1,5.0,0.5,0.5,0.3,1.58,0.0,7.88 +2,2016-01-13 21:06:54,2016-01-13 21:43:14,5,17.98,,,-73.77674865722656,40.6453857421875,-73.99112701416016,40.74726104736328,2,N,1,52.0,0.0,0.5,0.3,10.0,5.54,68.34 +2,2016-01-23 12:09:50,2016-01-23 12:24:28,1,2.47,,,-73.96708679199219,40.793479919433594,-73.94520568847656,40.81830596923828,1,N,1,11.5,0.0,0.5,0.3,2.0,0.0,14.3 +2,2016-01-10 16:18:29,2016-01-10 16:31:17,5,1.7,,,-73.9825439453125,40.77745819091797,-73.9608154296875,40.77819061279297,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-19 07:51:23,2016-01-19 07:58:31,3,0.8,,,-73.96356964111328,40.77134323120117,-73.95580291748047,40.7823371887207,1,N,1,6.5,0.0,0.5,0.3,1.8,0.0,9.1 +2,2016-01-09 11:21:07,2016-01-09 11:27:06,1,0.84,,,-74.0062026977539,40.70817565917969,-74.00858306884766,40.71592330932617,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-25 22:15:29,2016-01-25 22:27:49,6,2.28,,,-73.99002075195312,40.73352813720703,-73.97077178955078,40.76068878173828,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,14.16 +1,2016-01-17 18:09:27,2016-01-17 18:24:12,1,2.4,,,-73.96924591064453,40.79848098754883,-73.98823547363281,40.77083206176758,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,15.95 +1,2016-01-20 21:16:22,2016-01-20 21:24:55,1,1.5,,,-73.98931121826172,40.74227523803711,-73.986572265625,40.726661682128906,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +1,2016-01-25 21:24:17,2016-01-25 21:43:56,1,7.1,,,0.0,0.0,-73.99689483642578,40.6802864074707,1,N,1,22.5,0.5,0.5,0.3,4.0,0.0,27.8 +2,2016-01-13 17:08:47,2016-01-13 17:35:33,1,4.03,,,-73.97846221923828,40.762901306152344,-73.91304779052734,40.74396514892578,1,N,1,19.0,1.0,0.5,0.3,0.0,0.0,20.8 +2,2016-01-12 15:27:48,2016-01-12 15:53:15,1,4.92,,,-74.01001739501953,40.7203254699707,-73.97683715820312,40.76422119140625,1,N,1,20.5,0.0,0.5,0.3,4.26,0.0,25.56 +2,2016-01-19 17:05:41,2016-01-19 17:08:24,1,0.62,,,-73.9522933959961,40.768943786621094,-73.95947265625,40.7672233581543,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-06 09:37:56,2016-01-06 09:59:11,2,8.13,,,-73.7896728515625,40.64712905883789,-73.89010620117188,40.668270111083984,1,N,2,25.5,0.0,0.5,0.3,0.0,0.0,26.3 +2,2016-01-27 08:17:18,2016-01-27 08:26:38,1,1.22,,,-73.98194122314453,40.7433967590332,-73.97428894042969,40.75701141357422,1,N,1,7.5,0.0,0.5,0.3,1.25,0.0,9.55 +2,2016-01-03 06:01:29,2016-01-03 06:34:44,6,20.04,,,-73.780517578125,40.6461181640625,-73.96748352050781,40.80131912231445,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,70.01 +1,2016-01-29 09:26:23,2016-01-29 09:41:53,1,3.1,,,-73.98722839355469,40.73306655883789,-73.96082305908203,40.76072692871094,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-26 12:39:15,2016-01-26 13:40:42,1,3.8,,,-74.00971221923828,40.71080780029297,-73.97686767578125,40.747615814208984,1,N,1,34.5,0.0,0.5,0.3,8.8,0.0,44.1 +2,2016-01-22 13:26:27,2016-01-22 13:48:41,1,4.51,,,-73.9906997680664,40.77109909057617,-73.93621826171875,40.79502868652344,1,N,1,17.5,0.0,0.5,0.3,1.2,0.0,19.5 +2,2016-01-11 17:48:40,2016-01-11 17:52:33,1,0.51,,,-73.94502258300781,40.779205322265625,-73.9523696899414,40.779056549072266,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-03 01:47:51,2016-01-03 02:06:43,2,7.8,,,-73.98811340332031,40.74896240234375,-73.94031524658203,40.834999084472656,1,N,2,25.0,0.5,0.5,0.3,0.0,0.0,26.3 +2,2016-01-16 20:18:28,2016-01-16 20:38:31,1,4.88,,,-73.95782470703125,40.770328521728516,-73.97327423095703,40.72361755371094,1,N,1,19.0,0.5,0.5,0.3,4.06,0.0,24.36 +2,2016-01-19 19:58:17,2016-01-19 20:05:45,1,1.03,,,-73.98722839355469,40.7358283996582,-74.00187683105469,40.74351119995117,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,9.96 +1,2016-01-30 16:11:22,2016-01-30 16:55:55,2,13.6,,,-73.863037109375,40.768775939941406,-73.99693298339844,40.73250198364258,1,N,1,43.5,0.0,0.5,0.3,12.45,5.54,62.29 +2,2016-01-07 08:55:23,2016-01-07 09:01:29,1,0.59,,,-73.97447204589844,40.757511138916016,-73.978759765625,40.76268005371094,1,N,1,5.5,0.0,0.5,0.3,1.89,0.0,8.19 +1,2016-01-09 22:36:03,2016-01-09 22:40:36,1,0.5,,,-73.99969482421875,40.72758483886719,-73.9950942993164,40.72245788574219,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-25 21:12:25,2016-01-25 21:21:46,1,1.9,,,-73.9614028930664,40.76443099975586,-73.97917175292969,40.740440368652344,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +2,2016-01-26 07:40:59,2016-01-26 08:07:14,1,2.4,,,-73.97808837890625,40.7526969909668,-73.96300506591797,40.77338790893555,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,17.3 +2,2016-01-01 15:29:31,2016-01-01 15:40:08,3,1.42,,,-73.97789001464844,40.76155090332031,-73.95967102050781,40.7677001953125,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-12 09:04:56,2016-01-12 09:20:07,2,3.0,,,-73.9469223022461,40.771942138671875,-73.9810562133789,40.747554779052734,1,N,1,13.0,0.0,0.5,0.3,2.48,0.0,16.28 +1,2016-01-16 14:47:14,2016-01-16 14:58:59,1,0.9,,,-73.98937225341797,40.7344856262207,-73.99869537353516,40.72356414794922,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-27 21:33:27,2016-01-27 22:08:37,5,19.67,,,-73.79022216796875,40.64673614501953,-73.96864318847656,40.797523498535156,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,70.01 +1,2016-01-05 02:15:11,2016-01-05 02:25:00,1,3.8,,,-74.00395965576172,40.70750427246094,-73.95445251464844,40.6993408203125,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +2,2016-01-30 17:21:33,2016-01-30 17:31:51,5,2.3,,,-73.9770736694336,40.7562370300293,-73.95602416992188,40.781944274902344,1,N,1,9.5,0.0,0.5,0.3,3.09,0.0,13.39 +2,2016-01-20 19:24:50,2016-01-20 19:30:37,2,0.6,,,-73.98776245117188,40.743709564208984,-73.98798370361328,40.74858093261719,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-30 11:20:01,2016-01-30 11:26:42,2,1.2,,,-73.98102569580078,40.764339447021484,-73.97819519042969,40.752105712890625,1,Y,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-08 10:05:25,2016-01-08 10:29:15,3,5.95,,,-73.96295166015625,40.76936721801758,-74.0002212524414,40.726776123046875,1,N,1,22.5,0.0,0.5,0.3,2.5,0.0,25.8 +1,2016-01-28 09:08:45,2016-01-28 09:10:57,1,0.5,,,-73.98432922363281,40.74861526489258,-73.9891586303711,40.7423095703125,1,N,1,4.0,0.0,0.5,0.3,0.75,0.0,5.55 +2,2016-01-11 19:06:57,2016-01-11 19:14:09,1,0.81,,,-73.9789810180664,40.76122283935547,-73.96647644042969,40.7575569152832,1,N,1,6.0,1.0,0.5,0.3,1.95,0.0,9.75 +2,2016-01-29 20:04:39,2016-01-29 20:21:08,1,1.4,,,-73.98140716552734,40.72900390625,-73.9940185546875,40.74125289916992,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +2,2016-01-21 10:53:23,2016-01-21 11:10:45,1,1.15,,,-73.991455078125,40.75037384033203,-73.978271484375,40.7513313293457,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,15.38 +1,2016-01-27 09:35:04,2016-01-27 09:45:15,2,1.0,,,-73.98655700683594,40.762359619140625,-73.99590301513672,40.7691764831543,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-10 11:56:58,2016-01-10 11:59:16,2,0.72,,,-73.98809051513672,40.72386169433594,-73.98306274414062,40.73334884643555,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-12 12:11:06,2016-01-12 12:21:09,1,2.0,,,-73.9542465209961,40.7702751159668,-73.97726440429688,40.775943756103516,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-08 12:10:26,2016-01-08 12:20:59,1,2.4,,,-73.96648406982422,40.78922653198242,-73.94385528564453,40.81205368041992,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +2,2016-01-27 18:52:44,2016-01-27 18:57:55,5,0.7,,,-73.9527816772461,40.78335189819336,-73.9543228149414,40.77562713623047,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,8.3 +1,2016-01-22 11:35:10,2016-01-22 11:50:06,1,2.4,,,-73.9446029663086,40.77924346923828,-73.97163391113281,40.762027740478516,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-27 21:14:31,2016-01-27 21:32:47,1,3.9,,,-73.99254608154297,40.743404388427734,-73.97627258300781,40.7889518737793,1,N,1,15.5,0.5,0.5,0.3,3.35,0.0,20.15 +2,2016-01-14 16:33:55,2016-01-14 16:44:09,1,1.11,,,-73.99494171142578,40.74478530883789,-73.98396301269531,40.7550163269043,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-16 03:58:22,2016-01-16 04:07:15,1,1.1,,,-73.95697021484375,40.712650299072266,-73.94285583496094,40.71611404418945,1,N,1,7.5,0.5,0.5,0.3,2.6,0.0,11.4 +1,2016-01-14 15:25:14,2016-01-14 15:30:38,2,1.0,,,-73.96601104736328,40.76210021972656,-73.95671844482422,40.77517318725586,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-02 22:59:57,2016-01-02 22:59:57,2,0.0,,,-73.98257446289062,40.772438049316406,0.0,0.0,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,3.8 +1,2016-01-14 17:50:54,2016-01-14 17:50:54,1,0.0,,,-73.97727966308594,40.732704162597656,0.0,0.0,1,N,2,8.5,1.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-17 11:11:27,2016-01-17 11:17:17,1,1.69,,,-73.97801208496094,40.75249099731445,-73.96621704101562,40.77299118041992,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-15 01:08:31,2016-01-15 01:15:23,1,1.9,,,-74.0018081665039,40.729698181152344,-73.99069213867188,40.75008773803711,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-08 15:39:19,2016-01-08 15:44:56,1,1.0,,,-73.95699310302734,40.766727447509766,-73.94739532470703,40.779598236083984,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-01 12:51:14,2016-01-01 12:52:24,1,0.47,,,-74.00663757324219,40.74386215209961,-74.00518035888672,40.749855041503906,1,N,1,3.5,0.0,0.5,0.3,2.0,0.0,6.3 +1,2016-01-01 04:50:29,2016-01-01 04:55:49,1,2.7,,,-73.9278793334961,40.80708312988281,-73.94469451904297,40.78330612182617,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-25 21:12:34,2016-01-25 21:33:42,1,8.0,,,-73.98228454589844,40.77509307861328,-74.01132202148438,40.70181655883789,1,N,1,25.0,0.5,0.5,0.3,4.0,0.0,30.3 +1,2016-01-20 08:31:50,2016-01-20 08:40:33,1,1.2,,,-73.96956634521484,40.78488540649414,-73.95508575439453,40.78575897216797,1,N,1,7.5,0.0,0.5,0.3,0.5,0.0,8.8 +1,2016-01-30 01:15:36,2016-01-30 01:21:13,1,0.9,,,-74.005615234375,40.74063491821289,-73.99393463134766,40.74146270751953,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +2,2016-01-11 20:40:56,2016-01-11 20:49:19,5,2.67,,,-73.97795867919922,40.75157165527344,-73.95169067382812,40.781829833984375,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +2,2016-01-13 17:47:20,2016-01-13 17:53:51,6,0.44,,,-73.98751068115234,40.723941802978516,-73.98751068115234,40.723941802978516,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-30 19:12:23,2016-01-30 19:21:45,1,1.79,,,-73.95858764648438,40.7805290222168,-73.967041015625,40.75971984863281,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-25 09:17:04,2016-01-25 09:23:37,5,2.42,,,-73.7765884399414,40.646358489990234,-73.7896499633789,40.647037506103516,1,N,1,9.0,0.0,0.5,0.3,2.94,0.0,12.74 +2,2016-01-08 11:16:09,2016-01-08 11:32:44,1,1.46,,,-73.99913024902344,40.749568939208984,-73.97696685791016,40.739070892333984,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-09 19:44:31,2016-01-09 19:54:10,1,1.2,,,-73.99034118652344,40.756046295166016,-73.98309326171875,40.77130126953125,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,11.0 +1,2016-01-17 13:49:15,2016-01-17 14:02:26,1,2.9,,,-73.97377014160156,40.7630615234375,-74.00192260742188,40.72825241088867,1,N,1,12.0,0.0,0.5,0.3,2.0,0.0,14.8 +2,2016-01-08 11:16:17,2016-01-08 11:23:27,5,0.78,,,-73.96690368652344,40.763877868652344,-73.96128845214844,40.766788482666016,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-10 11:53:19,2016-01-10 11:57:42,5,1.07,,,-73.99459075927734,40.75046157836914,-73.99817657470703,40.74565505981445,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-15 07:46:42,2016-01-15 07:54:19,1,1.21,,,-73.9834976196289,40.74443817138672,-73.99615478515625,40.75361251831055,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-11 07:59:01,2016-01-11 08:18:31,1,3.29,,,-73.98516845703125,40.747718811035156,-73.95121765136719,40.77418899536133,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,18.36 +2,2016-01-24 20:43:42,2016-01-24 20:54:36,1,1.77,,,-73.99968719482422,40.72842025756836,-73.98053741455078,40.740211486816406,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +1,2016-01-12 11:51:16,2016-01-12 12:01:32,1,1.0,,,-73.99932861328125,40.733924865722656,-73.9820785522461,40.72813415527344,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-21 22:20:16,2016-01-21 22:26:54,1,1.3,,,-73.97264099121094,40.793331146240234,-73.95761108398438,40.80126953125,1,N,3,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-26 20:59:30,2016-01-26 21:10:54,1,1.1,,,-73.9766845703125,40.75986862182617,-73.981689453125,40.746337890625,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +2,2016-01-14 07:57:41,2016-01-14 08:11:13,1,1.17,,,-73.96244049072266,40.775970458984375,-73.96855926513672,40.78757858276367,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +2,2016-01-18 17:40:30,2016-01-18 17:55:29,1,2.36,,,-73.97247314453125,40.78658676147461,-73.95173645019531,40.7662467956543,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-07 19:15:36,2016-01-07 19:19:37,5,0.74,,,-73.98946380615234,40.739990234375,-73.99800872802734,40.73577117919922,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-09 21:39:46,2016-01-09 21:47:23,1,1.7,,,-73.97276306152344,40.75558090209961,-73.98124694824219,40.77350616455078,1,N,1,8.0,0.5,0.5,0.3,2.32,0.0,11.62 +1,2016-01-15 13:58:37,2016-01-15 14:02:38,1,0.6,,,-73.95817565917969,40.773292541503906,-73.9522705078125,40.78144073486328,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-16 14:31:02,2016-01-16 14:49:59,5,0.0,,,-73.99650573730469,40.72523880004883,-73.97814178466797,40.67802810668945,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,15.38 +2,2016-01-29 11:59:25,2016-01-29 12:10:17,2,1.39,,,-73.97467041015625,40.74203109741211,-73.9894790649414,40.735313415527344,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-28 09:17:49,2016-01-28 09:33:50,2,1.2,,,-73.98690795898438,40.7667236328125,-74.00120544433594,40.75709533691406,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +1,2016-01-29 20:38:58,2016-01-29 20:46:02,1,1.2,,,-73.9669189453125,40.756778717041016,-73.96460723876953,40.769569396972656,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +2,2016-01-11 21:53:46,2016-01-11 21:56:53,1,0.58,,,-73.94184112548828,40.82217788696289,-73.93601989746094,40.822181701660156,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +1,2016-01-05 13:32:45,2016-01-05 13:44:34,1,2.0,,,-73.98471069335938,40.779911041259766,-73.95818328857422,40.77859878540039,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +2,2016-01-13 18:21:24,2016-01-13 18:25:48,4,0.81,,,-74.0056381225586,40.751129150390625,-73.99473571777344,40.75028991699219,1,N,1,5.0,1.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-26 21:03:30,2016-01-26 22:16:24,1,2.23,,,-73.9740982055664,40.74760055541992,-73.9912109375,40.71928024291992,1,N,1,10.5,0.5,0.5,0.3,2.36,0.0,14.16 +2,2016-01-19 21:04:37,2016-01-19 21:12:39,1,1.12,,,-73.96863555908203,40.786216735839844,-73.97560119628906,40.79542541503906,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-09 02:44:51,2016-01-09 02:52:45,2,1.87,,,-73.9780044555664,40.773433685302734,-73.95342254638672,40.767127990722656,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +1,2016-01-12 23:57:42,2016-01-13 00:13:04,2,3.6,,,-73.97744750976562,40.7639045715332,-73.98417663574219,40.72534942626953,1,N,1,14.0,0.5,0.5,0.3,3.05,0.0,18.35 +1,2016-01-10 02:25:49,2016-01-10 02:34:12,3,0.9,,,-74.00493621826172,40.741676330566406,-73.99311065673828,40.73398971557617,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +1,2016-01-27 17:40:24,2016-01-27 17:44:52,1,0.7,,,-73.9507064819336,40.779396057128906,-73.96013641357422,40.777225494384766,1,N,1,5.0,1.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-30 19:05:00,2016-01-30 19:27:07,1,2.47,,,-73.99346160888672,40.72163009643555,-73.9846420288086,40.75127029418945,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,19.75 +2,2016-01-15 21:40:13,2016-01-15 21:42:13,2,0.45,,,-73.967041015625,40.76673889160156,-73.96282196044922,40.77228927612305,1,N,1,4.0,0.5,0.5,0.3,1.06,0.0,6.36 +1,2016-01-05 13:18:21,2016-01-05 13:30:07,1,1.7,,,-73.99140930175781,40.73179626464844,-73.9777603149414,40.75046157836914,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-03 14:39:07,2016-01-03 14:53:08,1,7.5,,,-73.94598388671875,40.77814865112305,-74.00984191894531,40.70591735839844,1,N,1,22.0,0.0,0.5,0.3,4.55,0.0,27.35 +1,2016-01-27 21:45:52,2016-01-27 21:59:53,1,4.0,,,-73.98619079589844,40.745155334472656,-74.02202606201172,40.770503997802734,5,N,3,0.01,0.0,0.0,0.3,0.0,10.5,10.81 +2,2016-01-15 12:16:12,2016-01-15 12:25:54,1,1.43,,,-73.97510528564453,40.7557487487793,-73.96261596679688,40.77288818359375,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,11.62 +1,2016-01-01 09:16:16,2016-01-01 09:20:20,1,0.7,,,-73.99152374267578,40.73530578613281,-73.97926330566406,40.7310676574707,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +1,2016-01-03 09:33:34,2016-01-03 09:37:24,1,1.0,,,-73.99380493164062,40.761497497558594,-74.00438690185547,40.7523193359375,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-28 13:25:15,2016-01-28 13:42:16,1,1.9,,,-73.98672485351562,40.722476959228516,-74.00508117675781,40.74177932739258,1,N,1,12.0,0.0,0.5,0.3,1.5,0.0,14.3 +2,2016-01-14 11:40:35,2016-01-14 12:00:30,1,3.56,,,-74.01126098632812,40.710777282714844,-73.97827911376953,40.72918701171875,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,20.76 +1,2016-01-09 19:52:13,2016-01-09 20:10:09,1,2.1,,,-74.00501251220703,40.72987365722656,-73.98180389404297,40.743587493896484,1,N,1,12.0,0.0,0.5,0.3,3.2,0.0,16.0 +1,2016-01-20 23:58:07,2016-01-21 00:27:27,1,17.0,,,-73.7823486328125,40.644596099853516,-73.96129608154297,40.77012634277344,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +1,2016-01-09 17:00:48,2016-01-09 17:12:50,2,1.6,,,-73.98226165771484,40.76877212524414,-73.97489166259766,40.752750396728516,1,N,1,9.5,0.0,0.5,0.3,2.0,0.0,12.3 +2,2016-01-16 19:34:57,2016-01-16 19:44:02,1,2.27,,,-73.98467254638672,40.779788970947266,-73.97088623046875,40.75899887084961,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +2,2016-01-16 10:26:50,2016-01-16 10:38:13,1,3.47,,,-73.98091888427734,40.78456115722656,-73.99485778808594,40.750160217285156,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +1,2016-01-14 23:57:41,2016-01-15 00:14:50,1,3.0,,,-73.9919662475586,40.74977493286133,-73.9889144897461,40.72694778442383,1,N,1,13.5,0.5,0.5,0.3,1.0,0.0,15.8 +1,2016-01-05 18:32:52,2016-01-05 18:41:57,1,1.4,,,-74.00985717773438,40.72114181518555,-73.99227142333984,40.72470474243164,1,N,1,7.5,1.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-17 12:22:31,2016-01-17 12:27:12,1,0.95,,,-74.01298522949219,40.70774841308594,-74.01409149169922,40.71770477294922,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-26 18:17:33,2016-01-26 18:24:48,1,1.0,,,-73.9689712524414,40.7859001159668,-73.96056365966797,40.77570724487305,1,N,1,7.0,1.0,0.5,0.3,1.01,0.0,9.81 +1,2016-01-27 15:21:51,2016-01-27 15:34:44,1,1.1,,,-73.956298828125,40.77195358276367,-73.96634674072266,40.7574462890625,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-04 20:46:46,2016-01-04 21:00:19,1,5.0,,,-73.87300109863281,40.77421569824219,-73.94618225097656,40.766014099121094,1,N,1,16.0,0.5,0.5,0.3,4.3,0.0,21.6 +1,2016-01-12 02:48:16,2016-01-12 02:52:18,1,1.2,,,-73.95328521728516,40.775699615478516,-73.96614837646484,40.765018463134766,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-10 21:31:53,2016-01-10 21:40:28,2,1.76,,,-73.9926528930664,40.73746871948242,-74.00421142578125,40.720977783203125,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +1,2016-01-25 20:43:05,2016-01-25 20:46:11,1,0.8,,,-73.94097900390625,40.788387298583984,-73.93521881103516,40.7984619140625,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-02 12:16:04,2016-01-02 12:21:25,5,0.91,,,-73.97925567626953,40.78499221801758,-73.98240661621094,40.77325439453125,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-05 16:55:14,2016-01-05 16:59:24,2,0.71,,,-73.95227813720703,40.778228759765625,-73.95787048339844,40.76935958862305,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-09 22:01:10,2016-01-09 22:11:00,1,1.5,,,-73.99144744873047,40.74991989135742,-73.97374725341797,40.7480583190918,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +1,2016-01-02 19:38:22,2016-01-02 19:48:25,3,1.8,,,-73.98116302490234,40.742130279541016,-73.96338653564453,40.76188278198242,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +2,2016-01-12 11:01:12,2016-01-12 11:12:33,5,1.16,,,-73.960693359375,40.76955795288086,-73.97239685058594,40.75917434692383,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,11.62 +1,2016-01-18 17:07:15,2016-01-18 17:17:05,1,1.9,,,-73.95277404785156,40.7667121887207,-73.97515869140625,40.752281188964844,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-07 11:53:10,2016-01-07 12:02:35,2,1.07,,,-73.99337768554688,40.75199890136719,-73.98336029052734,40.76499938964844,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-01 16:49:57,2016-01-01 16:56:04,1,1.23,,,-74.00702667236328,40.73466110229492,-73.98838806152344,40.73204803466797,1,N,1,6.0,0.0,0.5,0.3,0.68,0.0,7.48 +2,2016-01-21 15:52:31,2016-01-21 16:02:30,1,1.67,,,-74.00257873535156,40.72901153564453,-73.98182678222656,40.73244094848633,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,11.62 +1,2016-01-04 13:26:06,2016-01-04 13:51:25,1,5.6,,,-73.96572875976562,40.762569427490234,-73.99021911621094,40.74248123168945,1,N,2,21.0,0.0,0.5,0.3,0.0,0.0,21.8 +2,2016-01-18 22:05:20,2016-01-18 22:20:46,5,7.57,,,-73.98314666748047,40.767799377441406,-73.93936157226562,40.85354995727539,1,N,2,22.0,0.5,0.5,0.3,0.0,0.0,23.3 +1,2016-01-25 18:16:20,2016-01-25 18:26:09,1,1.0,,,-73.99093627929688,40.76606369018555,-73.97731018066406,40.76523208618164,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-30 18:36:57,2016-01-30 18:57:36,1,2.57,,,-73.98833465576172,40.75397872924805,-73.99736022949219,40.72450256347656,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +1,2016-01-15 20:36:54,2016-01-15 20:43:28,1,0.6,,,-73.98484802246094,40.742855072021484,-73.98828125,40.74863052368164,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,8.75 +2,2016-01-20 18:59:12,2016-01-20 19:05:42,1,0.55,,,-73.99002075195312,40.74176025390625,-73.99813079833984,40.745948791503906,1,N,1,5.5,1.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-26 15:56:19,2016-01-26 16:11:03,6,1.95,,,-73.97650146484375,40.74393081665039,-73.99506378173828,40.72261047363281,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-28 20:16:52,2016-01-28 20:25:05,1,0.99,,,0.0,0.0,0.0,0.0,1,N,1,7.0,0.5,0.5,0.3,2.08,0.0,10.38 +1,2016-01-30 06:30:57,2016-01-30 06:36:07,1,1.1,,,-73.99827575683594,40.740482330322266,-73.99079895019531,40.75000762939453,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-29 04:17:47,2016-01-29 04:37:10,1,4.71,,,-73.98861694335938,40.72264862060547,-73.92159271240234,40.688079833984375,1,N,2,17.0,0.5,0.5,0.3,0.0,0.0,18.3 +2,2016-01-11 19:47:22,2016-01-11 19:47:33,2,0.0,,,-73.9825668334961,40.74531173706055,0.0,0.0,1,N,1,2.5,1.0,0.5,0.3,10.0,0.0,14.3 +2,2016-01-29 00:22:57,2016-01-29 00:27:58,1,0.86,,,-73.97859191894531,40.748531341552734,-73.97531127929688,40.75809860229492,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-09 19:18:34,2016-01-09 19:41:54,6,3.05,,,-73.9956283569336,40.759307861328125,-73.98660278320312,40.728233337402344,1,N,1,16.5,0.0,0.5,0.3,3.46,0.0,20.76 +2,2016-01-16 16:39:32,2016-01-16 16:56:40,1,3.13,,,-73.99530792236328,40.72515106201172,-73.98802947998047,40.75952911376953,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +1,2016-01-17 08:37:38,2016-01-17 08:49:49,1,3.4,,,-73.97360229492188,40.79227066040039,-73.97429656982422,40.75659942626953,1,N,1,13.0,0.0,0.5,0.3,2.75,0.0,16.55 +2,2016-01-02 16:39:45,2016-01-02 16:52:00,1,1.31,,,-73.9790267944336,40.762855529785156,-73.98535919189453,40.7470703125,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-10 15:02:18,2016-01-10 15:07:53,4,1.0,,,-73.96239471435547,40.779197692871094,-73.97335052490234,40.78440475463867,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-29 13:42:26,2016-01-29 13:59:04,1,2.83,,,-73.96241760253906,40.778961181640625,-73.9652328491211,40.80617141723633,1,N,1,13.5,0.0,0.5,0.3,2.5,0.0,16.8 +1,2016-01-09 23:06:44,2016-01-09 23:10:01,4,0.6,,,-73.97702026367188,40.78778076171875,-73.98136901855469,40.77958679199219,1,N,1,4.5,0.5,0.5,0.3,1.0,0.0,6.8 +1,2016-01-08 21:25:42,2016-01-08 21:32:40,1,1.3,,,-73.97916412353516,40.76189041137695,-73.98516845703125,40.776126861572266,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +2,2016-01-01 16:45:21,2016-01-01 16:48:39,6,1.24,,,-73.966064453125,40.76201629638672,-73.95594787597656,40.77708053588867,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-14 10:46:54,2016-01-14 11:03:56,1,1.4,,,-73.9751968383789,40.77757263183594,-73.96602630615234,40.77109909057617,1,N,1,12.0,0.0,0.5,0.3,3.2,0.0,16.0 +2,2016-01-20 08:07:18,2016-01-20 08:34:12,1,2.57,,,-73.9515609741211,40.769981384277344,-73.97928619384766,40.75558853149414,1,N,1,17.5,0.0,0.5,0.3,3.66,0.0,21.96 +2,2016-01-06 16:43:15,2016-01-06 16:56:16,5,1.83,,,-73.98233032226562,40.76823043823242,-73.95733642578125,40.76681900024414,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-16 19:13:55,2016-01-16 19:36:17,2,6.8,,,-74.00269317626953,40.74700927734375,-73.98910522460938,40.66463088989258,1,N,2,23.0,0.0,0.5,0.3,0.0,5.54,29.34 +1,2016-01-06 20:53:38,2016-01-06 21:09:37,2,5.5,,,-74.01505279541016,40.70865249633789,-73.98876190185547,40.77781677246094,1,N,1,18.5,0.5,0.5,0.3,5.9,0.0,25.7 +2,2016-01-02 20:53:34,2016-01-02 21:07:08,2,0.33,,,-73.97838592529297,40.758148193359375,-73.9830093383789,40.75867462158203,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-01 14:15:01,2016-01-01 14:40:47,1,12.6,,,-73.87450408935547,40.77407455444336,-74.01223754882812,40.704158782958984,1,N,1,36.0,0.0,0.5,0.3,5.0,0.0,41.8 +1,2016-01-21 21:47:05,2016-01-21 21:52:12,1,1.1,,,-73.95732879638672,40.76195526123047,-73.9505844116211,40.77546691894531,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +2,2016-01-04 16:32:58,2016-01-04 16:43:18,1,2.02,,,-74.00653839111328,40.731781005859375,-73.981689453125,40.73501968383789,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-09 11:37:21,2016-01-09 11:53:09,5,2.2,,,-73.99027252197266,40.750553131103516,-74.00672912597656,40.73933792114258,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-09 14:58:34,2016-01-09 15:10:38,1,2.08,,,-73.95384216308594,40.781978607177734,-73.98060607910156,40.779170989990234,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-12 11:36:17,2016-01-12 11:46:29,1,1.5,,,-73.97795867919922,40.75444030761719,-73.98192596435547,40.768455505371094,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-12 09:34:46,2016-01-12 09:43:41,1,1.5,,,-73.96392822265625,40.77082824707031,-73.95256042480469,40.78934860229492,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-19 05:45:16,2016-01-19 05:48:16,5,0.58,,,-74.00099182128906,40.74663162231445,-73.99462127685547,40.750431060791016,1,N,1,4.5,0.5,0.5,0.3,1.74,0.0,7.54 +2,2016-01-09 11:42:45,2016-01-09 11:46:25,1,0.52,,,-73.98249816894531,40.727970123291016,-73.98928833007812,40.72624969482422,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-08 07:10:52,2016-01-08 07:21:08,1,1.9,,,-73.9940414428711,40.751102447509766,-73.97229766845703,40.76336669921875,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-09 10:16:59,2016-01-09 10:23:54,1,0.9,,,-73.95803833007812,40.76880645751953,-73.96044921875,40.77730178833008,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +1,2016-01-12 21:47:07,2016-01-12 21:51:37,1,1.1,,,-73.9975357055664,40.756263732910156,-73.99752044677734,40.74740982055664,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +1,2016-01-09 21:31:38,2016-01-09 21:35:20,1,0.9,,,-74.00785064697266,40.714813232421875,-74.00735473632812,40.72730255126953,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-28 19:39:57,2016-01-28 20:03:37,1,2.69,,,-73.97250366210938,40.759376525878906,-73.99192810058594,40.726158142089844,1,N,1,16.0,1.0,0.5,0.3,1.75,0.0,19.55 +2,2016-01-22 08:43:48,2016-01-22 09:06:22,6,2.79,,,-73.97415161132812,40.747276306152344,-74.00818634033203,40.737648010253906,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +1,2016-01-18 16:46:22,2016-01-18 16:54:09,1,1.4,,,-73.99787139892578,40.75641632080078,-73.9820556640625,40.76372528076172,1,N,1,7.5,0.0,0.5,0.3,1.5,0.0,9.8 +1,2016-01-11 16:53:04,2016-01-11 16:57:16,1,0.6,,,-73.9793701171875,40.75262451171875,-73.9751968383789,40.76033020019531,1,N,1,4.5,1.0,0.5,0.3,1.25,0.0,7.55 +1,2016-01-05 19:17:32,2016-01-05 19:24:17,1,1.0,,,-73.99150085449219,40.75022888183594,-74.00362396240234,40.750797271728516,1,N,2,6.5,1.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-27 21:19:41,2016-01-27 21:23:03,6,0.97,,,-73.95999908447266,40.78059768676758,-73.97461700439453,40.78750991821289,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-21 11:23:25,2016-01-21 11:36:02,1,1.5,,,-74.0119857788086,40.713836669921875,-74.00126647949219,40.724220275878906,1,N,1,9.5,0.0,0.5,0.3,1.5,0.0,11.8 +1,2016-01-28 15:14:30,2016-01-28 15:28:21,1,3.7,,,-73.97056579589844,40.799007415771484,-73.9823226928711,40.76646041870117,1,N,1,14.5,0.0,0.5,0.3,0.5,0.0,15.8 +2,2016-01-12 20:24:28,2016-01-12 20:27:17,2,0.35,,,-73.99360656738281,40.75911331176758,-73.9952392578125,40.75480270385742,1,N,1,4.0,0.5,0.5,0.3,1.59,0.0,6.89 +2,2016-01-12 22:41:18,2016-01-12 22:56:03,6,7.02,,,-73.95372009277344,40.778831481933594,-74.0039291381836,40.70571517944336,1,N,2,21.5,0.5,0.5,0.3,0.0,0.0,22.8 +1,2016-01-13 15:00:50,2016-01-13 15:10:13,1,1.1,,,-73.98223114013672,40.7313232421875,-73.98213195800781,40.724735260009766,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-15 19:35:53,2016-01-15 20:01:53,1,4.8,,,-73.99063873291016,40.75600051879883,-73.92130279541016,40.76158905029297,1,N,2,21.0,1.0,0.5,0.3,0.0,0.0,22.8 +2,2016-01-04 09:16:17,2016-01-04 09:23:55,5,1.8,,,-73.96255493164062,40.75912094116211,-73.95563507080078,40.77962112426758,1,N,1,8.0,0.0,0.5,0.3,1.0,0.0,9.8 +2,2016-01-11 16:12:03,2016-01-11 16:24:52,1,1.77,,,-73.95877075195312,40.783775329589844,-73.96753692626953,40.76309585571289,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-10 08:22:37,2016-01-10 08:29:59,1,1.59,,,-73.97223663330078,40.756832122802734,-73.9960708618164,40.76017379760742,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-29 09:12:57,2016-01-29 09:23:29,2,1.14,,,-73.99600982666016,40.758811950683594,-73.98123168945312,40.76015853881836,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-25 15:08:28,2016-01-25 15:22:14,6,0.98,,,-73.97147369384766,40.7556266784668,-73.98311614990234,40.75034713745117,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,12.88 +2,2016-01-12 21:05:31,2016-01-12 21:09:31,1,0.78,,,-73.9762191772461,40.760040283203125,-73.98673248291016,40.75680923461914,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-04 22:01:45,2016-01-04 22:13:47,1,2.5,,,-73.97704315185547,40.74333190917969,-73.96334075927734,40.77089309692383,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +2,2016-01-15 22:59:41,2016-01-15 23:10:37,5,1.87,,,-73.99767303466797,40.72574996948242,-73.98113250732422,40.74462890625,1,N,1,9.5,0.5,0.5,0.3,1.0,0.0,11.8 +2,2016-01-10 06:31:44,2016-01-10 06:38:34,1,3.41,,,-73.94841003417969,40.78226089477539,-73.97322845458984,40.743736267089844,1,N,1,11.0,0.0,0.5,0.3,0.5,0.0,12.3 +2,2016-01-03 11:09:05,2016-01-03 11:14:43,2,1.03,,,-73.98734283447266,40.73338317871094,-73.97705078125,40.7431526184082,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-08 11:50:52,2016-01-08 12:30:21,1,5.2,,,-73.99568939208984,40.72914123535156,-73.9802017211914,40.6685791015625,1,N,1,26.0,0.0,0.5,0.3,1.0,0.0,27.8 +2,2016-01-12 06:43:57,2016-01-12 06:55:18,2,2.58,,,-73.95445251464844,40.779388427734375,-73.98277282714844,40.76028060913086,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-17 02:53:41,2016-01-17 03:05:00,3,4.77,,,-73.98767852783203,40.7214241027832,-73.99046325683594,40.68989181518555,1,N,2,15.5,0.5,0.5,0.3,0.0,0.0,16.8 +1,2016-01-29 09:25:06,2016-01-29 09:30:30,1,0.9,,,-73.9526138305664,40.772342681884766,-73.94859313964844,40.78218078613281,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-20 00:15:34,2016-01-20 00:19:57,1,0.9,,,-74.00245666503906,40.718875885009766,-73.9937744140625,40.72565841674805,1,N,1,5.0,0.5,0.5,0.3,1.25,0.0,7.55 +1,2016-01-26 17:23:17,2016-01-26 17:36:59,1,0.8,,,-73.99681854248047,40.74764633178711,-73.98986053466797,40.757164001464844,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-28 17:20:13,2016-01-28 17:40:12,1,1.68,,,-73.963623046875,40.77119827270508,-73.98072052001953,40.75410079956055,1,N,1,13.0,1.0,0.5,0.3,4.44,0.0,19.24 +2,2016-01-16 09:50:44,2016-01-16 09:57:35,2,1.38,,,-73.9947509765625,40.7340087890625,-73.99246978759766,40.74951934814453,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-14 18:22:42,2016-01-14 18:27:05,1,0.8,,,-73.96614074707031,40.7645378112793,-73.9642333984375,40.75650405883789,1,N,1,5.0,1.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-15 05:50:56,2016-01-15 05:54:50,1,1.0,,,-73.98342895507812,40.765708923339844,-73.98487854003906,40.7548713684082,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +2,2016-01-18 22:50:39,2016-01-18 23:11:41,1,8.55,,,-73.87287902832031,40.77421569824219,-73.96959686279297,40.751060485839844,1,N,2,26.0,0.5,0.5,0.3,0.0,5.54,32.84 +2,2016-01-14 14:00:28,2016-01-14 14:27:13,2,5.4,,,-74.00077819824219,40.74226760864258,-74.00077819824219,40.74226760864258,1,N,1,21.5,0.0,0.5,0.3,4.46,0.0,26.76 +1,2016-01-30 02:05:24,2016-01-30 02:26:44,1,4.1,,,-73.98648834228516,40.72184371948242,-73.93453979492188,40.6895637512207,1,N,2,17.5,0.5,0.5,0.3,0.0,0.0,18.8 +1,2016-01-25 10:08:57,2016-01-25 10:28:46,1,1.2,,,-73.9758529663086,40.75202178955078,-73.98979949951172,40.74965286254883,1,N,1,12.5,0.0,0.5,0.3,0.2,0.0,13.5 +2,2016-01-30 00:02:05,2016-01-30 00:11:26,1,1.48,,,-73.99565124511719,40.72164535522461,-74.00762939453125,40.734249114990234,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +2,2016-01-07 15:36:02,2016-01-07 15:44:53,5,1.87,,,-73.9869384765625,40.75639724731445,-74.00760650634766,40.74079513549805,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-01 23:42:04,2016-01-01 23:53:35,5,2.37,,,-73.99165344238281,40.72687911987305,-73.99324035644531,40.75196838378906,1,N,1,10.5,0.5,0.5,0.3,2.95,0.0,14.75 +2,2016-01-26 20:38:51,2016-01-26 20:51:56,1,1.99,,,-73.99189758300781,40.684661865234375,-73.97207641601562,40.674888610839844,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-30 12:53:37,2016-01-30 13:00:18,1,0.74,,,-73.98197174072266,40.768375396728516,-73.99020385742188,40.772186279296875,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-09 23:07:30,2016-01-09 23:20:21,2,2.4,,,-73.99639129638672,40.737953186035156,-73.9883804321289,40.76557540893555,1,N,1,11.0,0.5,0.5,0.3,1.0,0.0,13.3 +2,2016-01-14 01:09:30,2016-01-14 01:25:12,1,8.18,,,0.0,0.0,0.0,0.0,1,N,1,24.0,0.5,0.5,0.3,5.06,0.0,30.36 +1,2016-01-09 14:46:39,2016-01-09 14:55:23,1,1.5,,,-73.99266052246094,40.74847412109375,-73.9939193725586,40.73283386230469,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-15 17:42:21,2016-01-15 18:06:21,1,3.05,,,-73.99099731445312,40.749656677246094,-73.97781372070312,40.77383804321289,1,N,1,17.0,1.0,0.5,0.3,4.7,0.0,23.5 +2,2016-01-02 06:13:40,2016-01-02 06:38:05,5,16.86,,,-73.98504638671875,40.74502944946289,-73.77639770507812,40.64524841308594,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-18 22:13:31,2016-01-18 22:19:49,1,1.16,,,-73.97358703613281,40.75474166870117,-73.9930191040039,40.75749969482422,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-22 21:37:28,2016-01-22 21:50:56,2,1.9,,,-73.99980926513672,40.73811340332031,-73.98336029052734,40.7559814453125,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,11.8 +2,2016-01-22 12:10:47,2016-01-22 12:16:47,1,0.53,,,-74.0049819946289,40.71525955200195,-74.01109313964844,40.70886993408203,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-10 15:28:40,2016-01-10 15:29:46,2,0.41,,,-73.95067596435547,40.77519607543945,-73.94998931884766,40.77971649169922,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +2,2016-01-18 23:11:40,2016-01-18 23:32:11,3,8.8,,,-73.86357116699219,40.76987075805664,-73.9674072265625,40.71131134033203,1,N,2,26.5,0.5,0.5,0.3,0.0,0.0,27.8 +1,2016-01-15 07:38:49,2016-01-15 07:48:52,1,1.3,,,-73.95805358886719,40.81618881225586,-73.93888092041016,40.80757141113281,1,N,1,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-01 15:44:15,2016-01-01 15:47:49,1,0.73,,,-74.00203704833984,40.719261169433594,-74.00955963134766,40.71059036254883,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-26 22:39:00,2016-01-26 22:47:31,1,3.03,,,-73.98600006103516,40.72265625,-74.00472259521484,40.706905364990234,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,11.8 +2,2016-01-05 20:56:28,2016-01-05 21:06:20,2,1.67,,,-73.98787689208984,40.75954818725586,-73.97246551513672,40.749881744384766,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-26 08:53:42,2016-01-26 09:32:42,3,3.02,,,-73.94617462158203,40.777103424072266,-73.97384643554688,40.75798797607422,1,N,2,23.5,0.0,0.5,0.3,0.0,0.0,24.3 +1,2016-01-04 04:39:53,2016-01-04 04:41:47,1,0.5,,,-73.99760437011719,40.756587982177734,-73.99016571044922,40.75441360473633,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,4.8 +2,2016-01-21 20:14:14,2016-01-21 20:29:13,6,2.47,,,-73.98100280761719,40.75066375732422,-73.95795440673828,40.782073974609375,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +2,2016-01-29 17:17:35,2016-01-29 18:00:23,1,10.8,,,-73.87128448486328,40.77396011352539,-73.98404693603516,40.77571105957031,1,N,1,37.0,1.0,0.5,0.3,13.3,5.54,57.64 +1,2016-01-08 13:30:55,2016-01-08 13:35:38,1,0.7,,,-73.99425506591797,40.76625442504883,-73.98336029052734,40.760589599609375,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-11 16:29:57,2016-01-11 16:34:50,2,0.4,,,-73.98217010498047,40.76833724975586,-73.97843170166016,40.773136138916016,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-26 11:17:47,2016-01-26 11:21:41,1,0.6,,,-73.98672485351562,40.761783599853516,-73.99687957763672,40.76641082763672,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-15 23:41:35,2016-01-15 23:47:03,1,0.6,,,-73.98114013671875,40.72504806518555,-73.9813003540039,40.7298469543457,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +2,2016-01-21 14:22:26,2016-01-21 14:34:48,1,1.81,,,-73.99452209472656,40.75023651123047,-73.99220275878906,40.73552703857422,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-22 08:07:46,2016-01-22 08:21:30,1,2.0,,,-73.96237182617188,40.76725387573242,-73.98329162597656,40.75003433227539,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +1,2016-01-17 02:10:25,2016-01-17 02:28:55,1,5.3,,,-73.98565673828125,40.718109130859375,-73.94834899902344,40.78232955932617,1,N,1,17.5,0.5,0.5,0.3,3.75,0.0,22.55 +2,2016-01-04 11:54:06,2016-01-04 11:59:39,6,1.16,,,-73.9552230834961,40.76529312133789,-73.96846008300781,40.75902557373047,1,N,1,6.0,0.0,0.5,0.3,1.2,0.0,8.0 +2,2016-01-13 11:39:26,2016-01-13 11:50:53,1,0.81,,,-74.00296783447266,40.7250862121582,-74.00434112548828,40.71673583984375,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-07 10:44:37,2016-01-07 10:50:04,1,0.9,,,-73.97498321533203,40.741756439208984,-73.97238159179688,40.7524299621582,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-03 12:08:49,2016-01-03 12:26:30,1,3.8,,,-73.99242401123047,40.748687744140625,-73.95189666748047,40.78297424316406,1,N,1,15.0,0.0,0.5,0.3,3.95,0.0,19.75 +2,2016-01-19 08:39:46,2016-01-19 09:17:48,6,5.04,,,-73.98573303222656,40.759300231933594,-74.01364135742188,40.709228515625,1,N,1,26.0,0.0,0.5,0.3,8.04,0.0,34.84 +1,2016-01-07 22:06:27,2016-01-07 22:14:15,1,2.1,,,-73.9637680053711,40.761207580566406,-73.9833984375,40.73444366455078,1,N,1,8.5,0.5,0.5,0.3,1.95,0.0,11.75 +1,2016-01-16 18:08:34,2016-01-16 18:15:37,1,1.3,,,-73.97147369384766,40.75019454956055,-73.97180938720703,40.762996673583984,1,N,1,7.0,1.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-12 15:21:25,2016-01-12 15:29:50,1,0.7,,,-73.99210357666016,40.75938415527344,-73.99065399169922,40.751155853271484,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-27 09:08:20,2016-01-27 09:31:49,2,2.34,,,-73.9677505493164,40.78753662109375,-73.96748352050781,40.763099670410156,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-20 07:32:30,2016-01-20 08:04:29,3,5.7,,,-73.92153930664062,40.74347686767578,-73.9848403930664,40.72819519042969,1,N,1,24.5,0.0,0.5,0.3,7.55,0.0,32.85 +2,2016-01-26 22:34:55,2016-01-26 22:49:59,1,1.44,,,-73.97876739501953,40.6835823059082,-73.98423767089844,40.68345642089844,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +2,2016-01-08 04:56:26,2016-01-08 05:03:00,2,2.96,,,-73.94036865234375,40.789268493652344,-73.90259552001953,40.8070068359375,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +1,2016-01-22 17:44:19,2016-01-22 17:57:24,1,1.8,,,-73.95178985595703,40.76968002319336,-73.97395324707031,40.76311111450195,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +1,2016-01-14 21:33:27,2016-01-14 21:39:43,2,0.8,,,-73.98458099365234,40.76876449584961,-73.98711395263672,40.76442337036133,1,N,1,6.0,0.5,0.5,0.3,1.45,0.0,8.75 +1,2016-01-20 18:45:36,2016-01-20 18:54:04,1,0.9,,,-73.97532653808594,40.77729797363281,-73.98210144042969,40.76959991455078,1,N,1,7.0,1.0,0.5,0.3,1.4,0.0,10.2 +1,2016-01-14 19:05:31,2016-01-14 19:11:37,1,0.8,,,-73.9738998413086,40.79187774658203,-73.97562408447266,40.78297424316406,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-11 03:11:33,2016-01-11 03:27:23,1,5.37,,,-73.97964477539062,40.763916015625,-73.93913269042969,40.818336486816406,1,N,1,17.5,0.5,0.5,0.3,4.7,0.0,23.5 +1,2016-01-02 10:42:22,2016-01-02 10:47:11,1,1.7,,,-73.96487426757812,40.755802154541016,-73.9495620727539,40.77668762207031,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-11 08:28:26,2016-01-11 09:01:38,2,6.54,,,-74.01748657226562,40.70710754394531,-73.9746322631836,40.7589225769043,1,N,2,26.0,0.0,0.5,0.3,0.0,0.0,26.8 +1,2016-01-19 21:23:36,2016-01-19 21:40:23,1,4.0,,,-73.98218536376953,40.77516555786133,-73.97618865966797,40.735992431640625,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,17.3 +1,2016-01-07 12:01:17,2016-01-07 12:27:33,1,1.8,,,-73.9859390258789,40.75812530517578,-73.97650146484375,40.74917221069336,1,N,1,16.0,0.0,0.5,0.3,3.35,0.0,20.15 +1,2016-01-07 18:04:04,2016-01-07 18:18:48,3,2.8,,,-73.97689819335938,40.76466751098633,-74.00557708740234,40.74117660522461,1,N,1,12.0,1.0,0.5,0.3,2.75,0.0,16.55 +1,2016-01-21 22:42:22,2016-01-21 23:06:19,1,11.8,,,-73.98030090332031,40.74824142456055,-74.01919555664062,40.63163757324219,1,N,1,34.0,0.5,0.5,0.3,5.0,5.54,45.84 +1,2016-01-06 07:51:06,2016-01-06 07:59:39,1,1.7,,,-74.00093841552734,40.72553253173828,-73.98015594482422,40.73487854003906,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-30 02:12:52,2016-01-30 02:29:07,1,3.67,,,-73.98140716552734,40.68952560424805,-73.97152709960938,40.64609909057617,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,15.8 +2,2016-01-09 15:40:04,2016-01-09 15:47:05,1,1.16,,,-73.99661254882812,40.725643157958984,-74.00935363769531,40.72456359863281,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-03 11:38:19,2016-01-03 11:47:26,1,1.9,,,-73.98230743408203,40.77391052246094,-73.99508666992188,40.74997329711914,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-05 21:14:16,2016-01-05 21:24:20,1,2.1,,,-73.97976684570312,40.7608528137207,-73.956298828125,40.77553176879883,1,N,1,9.5,0.5,0.5,0.3,2.7,0.0,13.5 +1,2016-01-12 10:12:50,2016-01-12 10:18:29,1,1.9,,,-73.9827651977539,40.69274139404297,-73.99835205078125,40.717132568359375,1,N,1,8.0,0.0,0.5,0.3,1.2,0.0,10.0 +1,2016-01-14 14:56:54,2016-01-14 15:03:37,1,0.7,,,-73.95936584472656,40.77439498901367,-73.96644592285156,40.76471710205078,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-03 10:05:05,2016-01-03 10:12:14,1,1.64,,,-73.99156951904297,40.76491165161133,-73.99210357666016,40.74884796142578,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-22 09:47:24,2016-01-22 10:02:11,5,2.26,,,-73.97284698486328,40.79276657104492,-73.97569274902344,40.76537322998047,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,15.36 +2,2016-01-22 09:26:47,2016-01-22 09:41:23,1,1.84,,,-73.9732894897461,40.747928619384766,-73.99320983886719,40.73332977294922,1,N,1,10.5,0.0,0.5,0.3,1.0,0.0,12.3 +2,2016-01-10 13:58:10,2016-01-10 14:07:13,1,1.99,,,-73.96684265136719,40.75728225708008,-73.98898315429688,40.74245834350586,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +2,2016-01-06 12:58:40,2016-01-06 13:05:22,3,1.04,,,-73.97479248046875,40.75059509277344,-73.96231079101562,40.757198333740234,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-14 04:58:17,2016-01-14 05:15:03,1,5.7,,,-73.98589324951172,40.7624397277832,-73.91228485107422,40.777198791503906,1,N,1,19.5,0.5,0.5,0.3,4.15,0.0,24.95 +2,2016-01-12 15:48:36,2016-01-12 15:57:16,2,0.66,,,-73.95756530761719,40.779930114746094,-73.96234893798828,40.773128509521484,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-11 15:48:19,2016-01-11 15:49:37,1,0.3,,,-73.95398712158203,40.781829833984375,-73.95326232910156,40.77859878540039,1,N,2,3.0,1.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-03 02:56:55,2016-01-03 03:01:41,3,1.02,,,-73.99549865722656,40.724918365478516,-73.97994995117188,40.722190856933594,1,N,1,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-11 14:19:02,2016-01-11 14:29:12,1,1.08,,,-73.9903793334961,40.75471115112305,-73.97898864746094,40.75632095336914,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-28 11:03:32,2016-01-28 11:11:43,1,0.63,,,-73.98429107666016,40.755428314208984,-73.99085235595703,40.75059127807617,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-25 13:25:06,2016-01-25 14:26:40,4,32.2,,,-73.98611450195312,40.758541107177734,-73.78594207763672,40.643375396728516,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-27 17:32:11,2016-01-27 17:40:48,1,0.9,,,-74.00435638427734,40.74237823486328,-73.99494171142578,40.7501220703125,1,N,1,7.0,1.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-21 22:06:18,2016-01-21 22:20:37,1,2.78,,,-73.9693832397461,40.757625579833984,-73.9768295288086,40.78593826293945,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,13.3 +2,2016-01-15 13:52:12,2016-01-15 14:00:33,2,1.16,,,-73.95417022705078,40.7662353515625,-73.96016693115234,40.77894973754883,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-17 04:40:40,2016-01-17 04:44:58,1,0.72,,,-73.98053741455078,40.742305755615234,-73.98870849609375,40.74907302856445,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-19 11:32:21,2016-01-19 11:54:05,2,3.07,,,-73.98568725585938,40.744110107421875,-73.98703002929688,40.7760009765625,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,19.56 +1,2016-01-19 15:28:39,2016-01-19 15:44:45,1,1.8,,,-73.99290466308594,40.7382926940918,-73.97798919677734,40.7525520324707,1,N,2,11.5,0.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-26 01:58:49,2016-01-26 02:08:09,2,2.13,,,-74.00667572021484,40.744266510009766,-73.97705078125,40.745243072509766,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +1,2016-01-06 22:55:04,2016-01-06 23:09:27,2,4.1,,,0.0,0.0,-74.00051879882812,40.730167388916016,1,N,1,15.0,0.5,0.5,0.3,3.25,0.0,19.55 +1,2016-01-14 14:12:38,2016-01-14 14:18:26,1,0.6,,,-73.96595001220703,40.7544059753418,-73.9753646850586,40.757301330566406,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-21 19:32:14,2016-01-21 19:48:29,6,2.2,,,-73.98146057128906,40.78192138671875,-73.99832916259766,40.756778717041016,1,N,1,12.0,1.0,0.5,0.3,2.76,0.0,16.56 +1,2016-01-15 19:40:06,2016-01-15 19:55:43,1,1.3,,,-73.98081970214844,40.72977828979492,-74.0025405883789,40.73906707763672,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,12.3 +1,2016-01-07 02:09:14,2016-01-07 02:30:44,1,10.8,,,-73.9865493774414,40.76313018798828,-73.91515350341797,40.871578216552734,1,N,1,31.5,0.5,0.5,0.3,2.0,0.0,34.8 +2,2016-01-21 20:18:19,2016-01-21 20:32:03,1,2.29,,,-73.97193145751953,40.75983810424805,-73.97808837890625,40.734249114990234,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +2,2016-01-26 09:15:43,2016-01-26 09:21:07,1,1.03,,,-73.96227264404297,40.75910186767578,-73.96196746826172,40.77035140991211,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-03 21:07:51,2016-01-03 21:09:35,1,0.1,,,-74.0007095336914,40.72077560424805,-74.00184631347656,40.719234466552734,1,N,2,3.0,0.5,0.5,0.3,0.0,0.0,4.3 +1,2016-01-26 21:05:52,2016-01-26 21:22:17,1,4.6,,,-73.97470092773438,40.74215316772461,-73.926513671875,40.76816177368164,1,N,2,16.0,0.5,0.5,0.3,0.0,0.0,17.3 +2,2016-01-14 06:51:29,2016-01-14 06:57:44,2,1.57,,,-73.96308135986328,40.77238845825195,-73.97328186035156,40.75333023071289,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +1,2016-01-22 18:55:16,2016-01-22 19:06:25,1,1.8,,,-73.97982025146484,40.761016845703125,-73.95740509033203,40.77029037475586,1,N,1,9.5,1.0,0.5,0.3,2.82,0.0,14.12 +2,2016-01-27 19:34:05,2016-01-27 19:51:25,1,2.07,,,-73.95191955566406,40.784568786621094,-73.96592712402344,40.76203918457031,1,N,1,12.0,1.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-22 14:27:39,2016-01-22 14:41:15,1,2.36,,,-73.96907806396484,40.75442123413086,-73.9850082397461,40.72591781616211,1,N,2,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-09 00:12:48,2016-01-09 00:15:08,1,0.52,,,-73.98445892333984,40.76966094970703,-73.98812866210938,40.75956344604492,1,N,1,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +2,2016-01-08 23:05:07,2016-01-08 23:22:40,1,8.55,,,-73.8712158203125,40.773895263671875,-73.95745849609375,40.77034378051758,1,N,1,25.0,0.5,0.5,0.3,4.0,5.54,35.84 +1,2016-01-03 07:33:50,2016-01-03 07:43:49,1,5.0,,,-73.93701934814453,40.79833221435547,-73.9833984375,40.73419189453125,1,N,1,15.0,0.0,0.5,0.3,2.0,0.0,17.8 +2,2016-01-09 20:11:30,2016-01-09 20:20:43,1,1.05,,,-73.97816467285156,40.7457389831543,-73.97713470458984,40.74939727783203,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-08 09:48:42,2016-01-08 09:57:34,1,0.73,,,-73.96795654296875,40.75965881347656,-73.95899963378906,40.763580322265625,1,N,1,7.0,0.0,0.5,0.3,2.34,0.0,10.14 +2,2016-01-15 10:38:41,2016-01-15 10:52:27,1,1.13,,,-73.99845123291016,40.72869110107422,-73.99211883544922,40.73860168457031,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-27 19:05:39,2016-01-27 19:44:22,1,12.1,,,-73.97420501708984,40.67393112182617,-73.782470703125,40.64418411254883,1,N,1,38.5,1.0,0.5,0.3,12.09,0.0,52.39 +1,2016-01-03 16:29:42,2016-01-03 16:38:40,1,1.3,,,-74.00833129882812,40.73781204223633,-73.9901123046875,40.73872756958008,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +1,2016-01-17 14:38:38,2016-01-17 14:48:54,1,2.0,,,-73.9444580078125,40.8145751953125,-73.96583557128906,40.795310974121094,1,N,1,9.5,0.0,0.5,0.3,2.5,0.0,12.8 +2,2016-01-28 10:42:56,2016-01-28 10:58:39,1,1.66,,,-74.00688934326172,40.744869232177734,-73.98632049560547,40.75185012817383,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-06 11:59:55,2016-01-06 12:12:56,1,2.59,,,-73.97090148925781,40.755149841308594,-73.99458312988281,40.73496627807617,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-17 22:37:06,2016-01-17 22:47:37,4,2.0,,,-73.998291015625,40.72266387939453,-74.00385284423828,40.74190902709961,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-30 23:47:51,2016-01-31 00:06:49,1,3.5,,,-73.9896240234375,40.76225662231445,-73.98015594482422,40.72647476196289,1,N,1,15.0,0.5,0.5,0.3,3.25,0.0,19.55 +2,2016-01-16 16:12:18,2016-01-16 16:20:34,6,1.4,,,-73.96293640136719,40.774200439453125,-73.97362518310547,40.76283264160156,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-07 17:23:18,2016-01-07 17:31:46,1,1.61,,,-73.98115539550781,40.73338317871094,-73.97026062011719,40.7527961730957,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-14 17:19:54,2016-01-14 17:24:29,2,1.08,,,-73.98576354980469,40.75272750854492,-73.97601318359375,40.7656135559082,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-17 08:54:21,2016-01-17 09:01:23,1,1.06,,,-73.98735046386719,40.7587890625,-74.00173950195312,40.756370544433594,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +1,2016-01-09 00:59:08,2016-01-09 01:04:49,1,1.3,,,-73.9559326171875,40.764095306396484,-73.9547348022461,40.77771759033203,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-13 13:26:59,2016-01-13 13:39:39,5,1.25,,,-73.98153686523438,40.7536506652832,-73.97187042236328,40.76034927368164,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +1,2016-01-11 23:23:43,2016-01-11 23:35:59,1,4.2,,,-73.97677612304688,40.750736236572266,-73.9610366821289,40.79661178588867,1,N,1,14.0,0.5,0.5,0.3,3.8,0.0,19.1 +1,2016-01-02 01:27:13,2016-01-02 01:37:19,2,2.0,,,-73.98867797851562,40.73111343383789,-74.00502014160156,40.74824905395508,1,N,1,9.5,0.5,0.5,0.3,1.0,0.0,11.8 +2,2016-01-21 19:51:38,2016-01-21 20:01:53,1,1.21,,,-73.9752197265625,40.75309371948242,-73.97110748291016,40.76435852050781,1,N,1,8.0,1.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-18 22:51:20,2016-01-18 22:58:48,2,1.6,,,-73.96102905273438,40.77513885498047,-73.97991943359375,40.78105163574219,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-04 22:22:22,2016-01-04 22:27:36,1,0.9,,,-73.93720245361328,40.76219940185547,-73.92123413085938,40.754737854003906,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-22 07:57:24,2016-01-22 08:14:42,1,2.6,,,-73.96022033691406,40.76182174682617,-73.97809600830078,40.78569030761719,1,N,1,13.0,0.0,0.5,0.3,1.5,0.0,15.3 +2,2016-01-11 10:58:08,2016-01-11 11:05:13,5,1.09,,,-73.9938735961914,40.74163055419922,-74.00541687011719,40.74502944946289,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-19 18:46:34,2016-01-19 18:59:33,1,2.04,,,-73.97200012207031,40.76093673706055,-73.94696807861328,40.77195739746094,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-25 11:31:44,2016-01-25 11:45:20,1,0.83,,,-74.00650024414062,40.714420318603516,-74.01575469970703,40.71171569824219,1,N,1,9.5,0.0,0.5,0.3,2.58,0.0,12.88 +1,2016-01-12 15:25:01,2016-01-12 15:28:58,1,0.3,,,-73.95478820800781,40.7800407409668,-73.95454406738281,40.77747344970703,1,N,1,4.5,0.0,0.5,0.3,2.0,0.0,7.3 +2,2016-01-06 02:02:22,2016-01-06 02:08:57,1,1.63,,,-74.00346374511719,40.73280334472656,-73.99524688720703,40.7496337890625,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-22 21:32:00,2016-01-22 21:38:33,1,1.09,,,-73.98822021484375,40.73727035522461,-73.9911117553711,40.72536849975586,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +2,2016-01-06 08:04:13,2016-01-07 07:59:25,1,1.03,,,-73.96337890625,40.76604461669922,-73.955322265625,40.77839660644531,1,N,1,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-10 00:14:01,2016-01-10 00:18:09,1,0.4,,,-73.98688507080078,40.725093841552734,-73.9794692993164,40.72336196899414,1,N,1,4.5,0.5,0.5,0.3,1.0,0.0,6.8 +2,2016-01-30 21:04:10,2016-01-30 21:13:57,1,1.07,,,-74.00135803222656,40.731300354003906,-74.00099182128906,40.741981506347656,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-16 20:48:33,2016-01-16 21:03:24,1,1.66,,,-73.99526977539062,40.71752166748047,-73.98757934570312,40.73815155029297,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,11.8 +2,2016-01-29 18:48:40,2016-01-29 18:59:30,4,2.2,,,-73.99024200439453,40.772029876708984,-73.97023010253906,40.79927062988281,1,N,1,10.0,1.0,0.5,0.3,3.54,0.0,15.34 +2,2016-01-13 20:39:37,2016-01-13 20:46:49,3,1.09,,,-73.99744415283203,40.724586486816406,-74.01031494140625,40.716064453125,1,N,1,6.5,0.5,0.5,0.3,1.0,0.0,8.8 +2,2016-01-26 20:15:31,2016-01-26 20:24:49,1,1.88,,,-73.97395324707031,40.78291702270508,-73.94868469238281,40.774051666259766,1,N,1,9.0,0.5,0.5,0.3,2.0,0.0,12.3 +1,2016-01-08 17:57:24,2016-01-08 18:14:31,1,1.7,,,-73.97148132324219,40.75453567504883,-73.97417449951172,40.737056732177734,1,N,1,12.0,1.0,0.5,0.3,2.07,0.0,15.87 +1,2016-01-10 13:40:25,2016-01-10 14:17:24,2,17.2,,,-73.78330993652344,40.64667892456055,-73.98652648925781,40.7508430480957,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-17 09:19:02,2016-01-17 09:28:18,2,2.3,,,-73.975341796875,40.76506042480469,-74.00090026855469,40.75752258300781,1,N,1,9.5,0.0,0.5,0.3,1.5,0.0,11.8 +2,2016-01-14 22:50:55,2016-01-14 22:59:54,1,1.72,,,-73.968017578125,40.80095291137695,-73.98029327392578,40.780418395996094,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-26 19:08:19,2016-01-26 19:19:47,1,1.3,,,-73.98333740234375,40.73892593383789,-74.00137329101562,40.736080169677734,1,N,1,8.5,1.0,0.5,0.3,2.05,0.0,12.35 +2,2016-01-30 18:53:13,2016-01-30 19:09:08,5,2.59,,,-73.95780181884766,40.76530075073242,-73.9695816040039,40.78868103027344,1,N,1,12.5,0.0,0.5,0.3,2.66,0.0,15.96 +1,2016-01-13 06:02:09,2016-01-13 06:04:26,1,0.9,,,-73.955810546875,40.78773880004883,-73.96292114257812,40.77567672729492,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-24 19:53:39,2016-01-24 20:13:13,1,2.8,,,-73.98550415039062,40.75032043457031,-73.98905944824219,40.71906661987305,1,N,1,13.5,0.5,0.5,0.3,1.0,0.0,15.8 +2,2016-01-14 15:53:18,2016-01-14 15:59:34,5,0.69,,,-73.9537124633789,40.77513122558594,-73.95704650878906,40.78078842163086,1,N,1,6.0,0.0,0.5,0.3,1.7,0.0,8.5 +1,2016-01-19 13:10:45,2016-01-19 13:33:14,1,1.3,,,-73.97537994384766,40.741065979003906,-73.9883041381836,40.752498626708984,1,N,1,14.0,0.0,0.5,0.3,3.7,0.0,18.5 +2,2016-01-16 15:28:00,2016-01-16 15:40:04,5,1.52,,,-73.98786163330078,40.744041442871094,-73.99568176269531,40.72510528564453,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-28 08:56:39,2016-01-28 08:58:18,2,0.52,,,-73.97313690185547,40.744163513183594,-73.9686508178711,40.75038146972656,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +2,2016-01-02 01:14:01,2016-01-02 01:17:34,1,1.18,,,-73.97799682617188,40.78369903564453,-73.96947479248047,40.79789733886719,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-01 04:44:17,2016-01-01 04:54:11,1,2.1,,,-74.00421905517578,40.71997833251953,-73.98344421386719,40.7391471862793,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-12 08:16:38,2016-01-12 08:22:30,1,1.2,,,0.0,0.0,-73.98518371582031,40.7562255859375,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +1,2016-01-03 17:19:37,2016-01-03 17:46:06,1,8.6,,,-73.99951934814453,40.72327423095703,-73.90762329101562,40.770484924316406,1,N,1,27.0,0.0,0.5,0.3,3.0,0.0,30.8 +2,2016-01-06 08:06:45,2016-01-06 08:18:36,5,3.17,,,-74.01673126220703,40.708248138427734,-74.0033187866211,40.74903869628906,1,N,1,12.0,0.0,0.5,0.3,1.2,0.0,14.0 +2,2016-01-03 13:51:32,2016-01-03 13:56:39,2,0.84,,,-73.98401641845703,40.752986907958984,-73.9881362915039,40.74332046508789,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-18 09:35:13,2016-01-18 09:43:28,5,1.44,,,-74.01441192626953,40.71702194213867,-73.9993667602539,40.72481918334961,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-15 07:13:30,2016-01-15 07:25:18,1,2.0,,,-73.97510528564453,40.75225067138672,-74.0014419555664,40.75490188598633,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-08 15:25:05,2016-01-08 15:29:16,1,0.5,,,-73.98413848876953,40.75825119018555,-73.97958374023438,40.75556182861328,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-26 19:08:19,2016-01-26 19:18:27,1,0.73,,,-73.95992279052734,40.77657699584961,-73.96675109863281,40.76723098754883,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-12 22:42:26,2016-01-12 22:46:35,6,1.04,,,-73.96380615234375,40.77449035644531,-73.95316314697266,40.785545349121094,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-10 13:40:56,2016-01-10 13:58:23,5,8.52,,,-73.87299346923828,40.77410888671875,-73.96029663085938,40.78153991699219,1,N,1,25.5,0.0,0.5,0.3,6.37,5.54,38.21 +2,2016-01-26 23:06:45,2016-01-27 22:48:08,2,1.65,,,-73.9720458984375,40.75732421875,-73.9553451538086,40.76869583129883,1,N,1,7.5,0.5,0.5,0.3,1.76,0.0,10.56 +2,2016-01-09 21:18:18,2016-01-09 21:28:17,1,1.14,,,-73.98719787597656,40.72057342529297,-73.98139953613281,40.73313903808594,1,N,1,8.0,0.5,0.5,0.3,0.93,0.0,10.23 +2,2016-01-20 22:41:22,2016-01-20 22:54:49,2,2.98,,,-73.98524475097656,40.7633171081543,-73.94963073730469,40.778602600097656,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +1,2016-01-26 22:23:32,2016-01-26 22:30:28,1,1.2,,,-73.9567642211914,40.77499771118164,-73.96891021728516,40.78514862060547,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +2,2016-01-30 01:36:52,2016-01-30 01:40:06,2,1.13,,,-73.96028137207031,40.690181732177734,-73.98113250732422,40.68994903564453,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-05 15:28:00,2016-01-05 15:41:11,1,1.6,,,-73.95913696289062,40.771785736083984,-73.95806121826172,40.780860900878906,1,N,1,10.0,0.0,0.5,0.3,2.0,0.0,12.8 +1,2016-01-13 20:32:40,2016-01-13 20:34:25,2,0.2,,,-73.98563385009766,40.747291564941406,-73.98809814453125,40.743408203125,1,N,1,3.5,0.5,0.5,0.3,0.95,0.0,5.75 +1,2016-01-13 05:59:36,2016-01-13 06:02:15,1,0.6,,,-73.97557067871094,40.7528076171875,-73.98323059082031,40.74826431274414,1,N,1,4.5,0.0,0.5,0.3,1.3,0.0,6.6 +2,2016-01-02 08:09:59,2016-01-02 08:19:24,1,1.6,,,-73.97515106201172,40.78943634033203,-73.9532699584961,40.77696228027344,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-26 22:48:22,2016-01-26 23:03:18,1,2.68,,,-73.98374938964844,40.764400482177734,-73.95073699951172,40.774959564208984,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +1,2016-01-20 09:12:20,2016-01-20 09:21:47,1,1.2,,,-73.98870849609375,40.75362777709961,-73.97370910644531,40.75200653076172,1,N,1,7.5,0.0,0.5,0.3,1.0,0.0,9.3 +1,2016-01-28 19:58:14,2016-01-28 20:08:58,1,1.7,,,-73.9861068725586,40.75652313232422,-74.00698852539062,40.75138473510742,1,N,1,9.5,1.0,0.5,0.3,2.8,0.0,14.1 +2,2016-01-13 09:58:26,2016-01-13 10:05:47,1,1.04,,,-73.95744323730469,40.776920318603516,-73.94605255126953,40.77771759033203,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-28 16:15:25,2016-01-28 16:22:37,3,0.63,,,-73.98114013671875,40.75071334838867,-73.99105834960938,40.755313873291016,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-08 15:53:11,2016-01-08 15:57:47,1,0.7,,,-73.99083709716797,40.75077438354492,-74.0026626586914,40.75510025024414,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +2,2016-01-14 07:42:20,2016-01-14 07:44:26,1,0.89,,,-73.98126220703125,40.741519927978516,-73.9752426147461,40.75231170654297,1,N,1,4.5,0.0,0.5,0.3,1.32,0.0,6.62 +2,2016-01-04 11:20:06,2016-01-04 11:42:28,1,6.63,,,-73.95297241210938,40.785762786865234,-73.98977661132812,40.7207145690918,1,N,1,23.5,0.0,0.5,0.3,4.86,0.0,29.16 +2,2016-01-14 15:38:27,2016-01-14 15:59:41,1,2.2,,,-73.97492980957031,40.78268814086914,-73.97428131103516,40.75960922241211,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +1,2016-01-28 16:12:05,2016-01-28 16:19:54,1,1.0,,,-73.95966339111328,40.782684326171875,-73.96959686279297,40.78963088989258,1,N,1,6.5,1.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-11 12:08:32,2016-01-11 12:23:07,1,1.91,,,-73.96546936035156,40.76277160644531,-73.98876190185547,40.75862121582031,1,N,1,11.0,0.0,0.5,0.3,1.0,0.0,12.8 +1,2016-01-16 22:08:08,2016-01-16 22:16:07,1,1.1,,,-73.99491882324219,40.746097564697266,-73.97895050048828,40.7446403503418,1,N,1,7.0,0.5,0.5,0.3,1.65,0.0,9.95 +2,2016-01-20 18:43:49,2016-01-20 18:58:10,1,1.28,,,-73.97496032714844,40.75067901611328,-73.98201751708984,40.76250076293945,1,N,1,9.5,1.0,0.5,0.3,2.82,0.0,14.12 +1,2016-01-10 15:01:39,2016-01-10 15:08:25,2,1.4,,,-74.00118255615234,40.757110595703125,-74.00629425048828,40.743812561035156,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-16 21:46:07,2016-01-16 22:00:05,1,2.07,,,-74.00545501708984,40.751258850097656,-74.00509643554688,40.728668212890625,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +1,2016-01-08 09:40:05,2016-01-08 09:45:50,1,0.7,,,-73.96305847167969,40.775108337402344,-73.95359802246094,40.779502868652344,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-29 15:55:58,2016-01-29 16:29:43,1,2.6,,,-74.0057601928711,40.75088119506836,-74.00559997558594,40.75112533569336,1,N,1,20.5,1.0,0.5,0.3,4.45,0.0,26.75 +2,2016-01-25 07:26:00,2016-01-25 07:41:01,1,1.71,,,-73.95845794677734,40.76633071899414,-73.97985076904297,40.760929107666016,1,N,1,10.5,0.0,0.5,0.3,3.39,0.0,14.69 +2,2016-01-14 13:06:48,2016-01-14 13:17:30,1,4.62,,,-73.97090911865234,40.751529693603516,-74.00431060791016,40.70735168457031,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,18.96 +2,2016-01-11 17:59:27,2016-01-11 18:02:09,1,0.8,,,-73.97970581054688,40.78139114379883,-73.97126007080078,40.78609085083008,1,N,1,4.5,1.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-11 00:05:40,2016-01-11 00:12:54,1,1.8,,,-73.97290802001953,40.7644157409668,-73.95262145996094,40.776466369628906,1,N,1,8.0,0.5,0.5,0.3,1.96,0.0,11.26 +2,2016-01-21 20:10:06,2016-01-21 20:35:52,1,6.4,,,-74.00240325927734,40.74531555175781,-73.94829559326172,40.803768157958984,1,N,1,23.5,0.5,0.5,0.3,4.96,0.0,29.76 +1,2016-01-20 21:55:10,2016-01-20 22:16:06,1,6.4,,,-73.98397827148438,40.72561264038086,-73.9791030883789,40.674320220947266,1,N,1,22.5,0.5,0.5,0.3,3.3,0.0,27.1 +1,2016-01-20 18:56:52,2016-01-20 19:15:37,2,0.8,,,-73.98163604736328,40.74103546142578,-73.99101257324219,40.74852752685547,1,N,1,12.0,1.0,0.5,0.3,2.75,0.0,16.55 +2,2016-01-01 11:02:05,2016-01-01 11:04:04,1,0.63,,,-73.97350311279297,40.7923583984375,-73.96891021728516,40.79917526245117,1,N,1,4.0,0.0,0.5,0.3,1.0,0.0,5.8 +2,2016-01-20 19:02:07,2016-01-20 19:22:50,1,3.04,,,-73.9720230102539,40.760311126708984,-74.0051498413086,40.73191833496094,1,N,1,14.5,1.0,0.5,0.3,1.7,0.0,18.0 +2,2016-01-28 08:47:56,2016-01-28 08:50:53,1,0.49,,,-73.94947814941406,40.78089141845703,-73.95674896240234,40.78015899658203,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-03 19:19:21,2016-01-03 19:26:42,1,1.85,,,-73.98831176757812,40.75012969970703,-73.9857177734375,40.73107147216797,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-15 14:33:29,2016-01-15 15:43:45,1,16.93,,,-73.9758529663086,40.757293701171875,-73.78257751464844,40.644126892089844,2,N,1,52.0,0.0,0.5,0.3,13.2,0.0,66.0 +2,2016-01-20 22:29:33,2016-01-20 22:35:24,1,1.34,,,-73.96713256835938,40.75718688964844,-73.97904205322266,40.740596771240234,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-27 08:13:49,2016-01-27 08:48:22,1,11.1,,,-73.86361694335938,40.76968765258789,-73.99112701416016,40.695762634277344,1,N,1,33.0,0.0,0.5,0.3,6.75,0.0,40.55 +1,2016-01-05 15:59:02,2016-01-05 16:07:50,1,1.1,,,-73.97620391845703,40.75724792480469,-73.96054077148438,40.75782775878906,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-18 02:11:12,2016-01-18 02:21:02,1,2.5,,,-73.94957733154297,40.71415710449219,-73.96439361572266,40.68601608276367,1,N,1,10.5,0.5,0.5,0.3,2.0,0.0,13.8 +1,2016-01-05 10:59:02,2016-01-05 11:12:38,1,1.0,,,-73.95709228515625,40.766178131103516,-73.96829986572266,40.761844635009766,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-13 22:58:30,2016-01-13 23:06:52,1,1.78,,,-73.96443939208984,40.76969909667969,-73.95767974853516,40.78371047973633,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-09 14:29:51,2016-01-09 14:33:32,2,0.95,,,-73.97914123535156,40.777099609375,-73.98745727539062,40.76554870605469,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-12 12:30:52,2016-01-12 12:55:47,1,4.99,,,-73.97843170166016,40.7882194519043,-74.00157928466797,40.729393005371094,1,N,1,20.5,0.0,0.5,0.3,4.26,0.0,25.56 +2,2016-01-17 21:56:28,2016-01-17 22:02:25,1,1.67,,,-73.98985290527344,40.76237106323242,-74.00503540039062,40.741310119628906,1,N,1,7.0,0.5,0.5,0.3,1.0,0.0,9.3 +2,2016-01-17 02:19:36,2016-01-17 02:24:05,2,1.0,,,-73.99982452392578,40.73455810546875,-73.99504852294922,40.74497604370117,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-15 01:12:36,2016-01-15 01:27:42,1,3.7,,,-73.98869323730469,40.72232437133789,-73.99066925048828,40.76145553588867,1,N,1,14.0,0.5,0.5,0.3,3.05,0.0,18.35 +1,2016-01-21 12:17:27,2016-01-21 12:29:34,1,2.0,,,-74.0147933959961,40.71671676635742,-73.99369049072266,40.728092193603516,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-20 00:17:57,2016-01-20 00:23:08,1,0.91,,,-73.98551940917969,40.757911682128906,-73.97920989990234,40.7618522644043,1,N,1,5.5,0.5,0.5,0.3,2.04,0.0,8.84 +2,2016-01-05 10:04:42,2016-01-05 10:15:14,2,1.64,,,-73.97443389892578,40.74740219116211,-73.99049377441406,40.73085021972656,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-01 23:46:06,2016-01-01 23:49:53,1,0.79,,,-73.97371673583984,40.75140380859375,-73.96600341796875,40.75845718383789,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-23 01:58:43,2016-01-23 02:17:52,1,3.3,,,-74.00816345214844,40.74114990234375,-73.98448944091797,40.7701301574707,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,15.8 +2,2016-01-16 23:29:17,2016-01-17 00:33:10,1,38.58,,,-73.98411560058594,40.75624084472656,-73.53006744384766,41.05769729614258,5,N,1,120.0,0.0,0.0,0.3,0.0,0.0,120.3 +1,2016-01-08 16:05:26,2016-01-08 16:25:16,1,4.1,,,-73.99711608886719,40.722389221191406,-73.99301147460938,40.76811981201172,1,N,2,15.5,1.0,0.5,0.3,0.0,0.0,17.3 +1,2016-01-17 19:09:47,2016-01-17 19:17:17,1,1.3,,,-73.97830963134766,40.74818420410156,-73.99272918701172,40.7392692565918,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-03 01:19:40,2016-01-03 01:31:02,1,4.3,,,-73.95832061767578,40.7126579284668,-73.8924789428711,40.72763442993164,1,N,2,14.5,0.5,0.5,0.3,0.0,0.0,15.8 +1,2016-01-09 03:01:16,2016-01-09 03:04:07,1,0.8,,,-73.97186279296875,40.79438781738281,-73.96566772460938,40.805503845214844,1,N,1,4.5,0.5,0.5,0.3,1.15,0.0,6.95 +2,2016-01-07 04:33:41,2016-01-07 04:44:12,1,2.31,,,-73.9420394897461,40.79805374145508,-73.93824005126953,40.82313537597656,1,N,2,10.5,0.5,0.5,0.3,0.0,0.0,11.8 +1,2016-01-01 03:23:38,2016-01-01 03:28:39,1,1.2,,,-73.95562744140625,40.77260208129883,-73.96714782714844,40.75666046142578,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-09 21:04:06,2016-01-09 21:25:12,2,3.6,,,-74.01528930664062,40.70892333984375,-73.99799346923828,40.719661712646484,1,N,1,17.5,0.0,0.5,0.3,3.65,0.0,21.95 +2,2016-01-14 16:28:09,2016-01-14 16:36:01,5,1.1,,,-73.98990631103516,40.73487854003906,-73.97637939453125,40.73971939086914,1,N,1,6.5,1.0,0.5,0.3,2.08,0.0,10.38 +1,2016-01-07 20:06:36,2016-01-07 20:19:36,1,5.1,,,-73.98896026611328,40.71896743774414,-73.95344543457031,40.770599365234375,1,N,1,16.5,0.5,0.5,0.3,3.55,0.0,21.35 +2,2016-01-12 18:39:57,2016-01-12 19:17:59,1,13.74,,,-73.87648010253906,40.77212142944336,-74.03669738769531,40.72386169433594,5,N,1,80.0,0.0,0.5,0.3,19.77,18.04,118.61 +1,2016-01-06 18:11:12,2016-01-06 18:30:22,1,2.6,,,-73.98684692382812,40.77593231201172,-73.97077178955078,40.75173568725586,1,N,1,13.5,1.0,0.5,0.3,3.05,0.0,18.35 +2,2016-01-07 09:49:22,2016-01-07 10:02:59,1,1.36,,,-73.99378967285156,40.758941650390625,-73.98265838623047,40.77328109741211,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-30 14:22:15,2016-01-30 14:41:42,2,5.6,,,-73.99332427978516,40.7024040222168,-73.98925018310547,40.74126434326172,1,N,2,20.0,0.0,0.5,0.3,0.0,0.0,20.8 +1,2016-01-13 00:03:59,2016-01-13 00:22:55,1,3.5,,,-73.98884582519531,40.753475189208984,-73.98509216308594,40.71538543701172,1,N,1,15.0,0.5,0.5,0.3,2.7,0.0,19.0 +2,2016-01-05 20:38:08,2016-01-05 20:41:31,1,1.21,,,-74.00419616699219,40.73027420043945,-74.00999450683594,40.71461868286133,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-14 14:33:04,2016-01-14 14:38:34,1,1.1,,,-73.95912170410156,40.7833137512207,-73.97625732421875,40.78835678100586,1,N,1,6.0,0.0,0.5,0.3,1.35,0.0,8.15 +2,2016-01-21 12:04:57,2016-01-21 12:11:19,1,0.95,,,-73.98316192626953,40.726646423339844,-73.99004364013672,40.73476028442383,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-07 09:56:44,2016-01-07 10:08:40,2,1.2,,,-73.98957061767578,40.752498626708984,-73.9783935546875,40.7481575012207,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-30 23:03:35,2016-01-30 23:19:56,2,4.2,,,-73.99401092529297,40.73533248901367,-73.95625305175781,40.77816390991211,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,16.3 +2,2016-01-19 15:22:02,2016-01-19 15:39:04,5,1.93,,,-74.00215911865234,40.750389099121094,-73.98079681396484,40.763328552246094,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,15.36 +2,2016-01-19 21:02:52,2016-01-19 21:12:31,1,0.96,,,-73.97539520263672,40.74687957763672,-73.98123168945312,40.75275421142578,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-28 16:37:58,2016-01-28 17:09:12,1,2.8,,,-73.95790100097656,40.779483795166016,-73.98440551757812,40.74338150024414,1,N,2,19.5,1.0,0.5,0.3,0.0,0.0,21.3 +2,2016-01-05 19:18:22,2016-01-05 19:30:11,5,1.7,,,-73.99222564697266,40.73783874511719,-74.00153350830078,40.726097106933594,1,N,1,9.5,1.0,0.5,0.3,2.82,0.0,14.12 +2,2016-01-29 11:48:18,2016-01-29 11:59:22,5,1.36,,,-73.95313262939453,40.78596878051758,-73.96578979492188,40.76935958862305,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-26 19:43:39,2016-01-26 19:58:01,1,2.5,,,-73.98403930664062,40.773704528808594,-73.95125579833984,40.7787971496582,1,N,1,11.5,1.0,0.5,0.3,3.3,0.0,16.6 +2,2016-01-04 20:21:21,2016-01-04 20:27:52,1,0.55,,,-73.9808120727539,40.759395599365234,-73.97479248046875,40.7562370300293,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-16 19:03:18,2016-01-16 19:11:57,5,1.33,,,-73.96784973144531,40.80287170410156,-73.97515869140625,40.78752136230469,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-18 14:35:00,2016-01-18 14:51:18,2,3.07,,,-73.95919799804688,40.767738342285156,-73.98944854736328,40.734317779541016,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-06 23:13:53,2016-01-06 23:24:52,1,1.95,,,-73.9823989868164,40.73984909057617,-73.98346710205078,40.76039123535156,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-04 07:46:23,2016-01-04 08:01:31,1,3.8,,,-73.99073028564453,40.757179260253906,-73.96188354492188,40.805606842041016,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +2,2016-01-21 23:57:27,2016-01-22 00:05:10,1,1.19,,,-73.97714233398438,40.68228530883789,-73.99417877197266,40.686893463134766,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-10 15:49:19,2016-01-10 15:54:53,1,0.7,,,-73.98473358154297,40.74274444580078,-73.99102020263672,40.73969650268555,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,7.55 +1,2016-01-22 22:48:23,2016-01-22 23:14:16,1,4.1,,,-73.98841857910156,40.763832092285156,-73.98472595214844,40.723350524902344,1,N,1,18.5,0.5,0.5,0.3,3.95,0.0,23.75 +2,2016-01-09 13:21:17,2016-01-09 13:38:09,1,2.4,,,-73.99617004394531,40.721900939941406,-73.9941635131836,40.74605178833008,1,N,1,12.0,0.0,0.5,0.3,2.56,0.0,15.36 +1,2016-01-22 20:52:38,2016-01-22 21:05:15,2,4.6,,,-74.01583862304688,40.71067810058594,-73.99040985107422,40.7144775390625,1,N,1,16.0,0.5,0.5,0.3,3.45,0.0,20.75 +2,2016-01-30 12:41:38,2016-01-30 12:46:09,1,0.98,,,-73.96115112304688,40.76055145263672,-73.95223999023438,40.773067474365234,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-30 23:48:09,2016-01-30 23:59:29,1,1.02,,,-74.00240325927734,40.721458435058594,-73.98768615722656,40.71945571899414,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,12.25 +1,2016-01-16 13:21:10,2016-01-16 13:33:43,1,2.1,,,-73.95198822021484,40.73196029663086,-73.9523696899414,40.71113967895508,1,N,1,10.5,0.0,0.5,0.3,2.25,0.0,13.55 +2,2016-01-15 08:22:11,2016-01-15 08:42:34,1,2.79,,,-74.005859375,40.748291015625,-73.97197723388672,40.75986862182617,1,N,1,14.5,0.0,0.5,0.3,1.5,0.0,16.8 +1,2016-01-09 17:17:28,2016-01-09 17:27:27,1,1.6,,,-73.98233795166016,40.77301788330078,-74.00035095214844,40.758113861083984,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +1,2016-01-29 13:51:41,2016-01-29 14:11:08,1,6.4,,,-74.01158142089844,40.70299530029297,-73.95552825927734,40.767704010009766,1,N,1,21.0,0.0,0.5,0.3,2.2,0.0,24.0 +1,2016-01-08 14:39:28,2016-01-08 14:49:41,1,1.6,,,-73.9570541381836,40.78024673461914,-73.94661712646484,40.7998046875,1,N,1,9.0,0.0,0.5,0.3,1.96,0.0,11.76 +2,2016-01-22 22:16:40,2016-01-22 22:31:30,1,4.37,,,-74.0107421875,40.709251403808594,-73.98506164550781,40.665199279785156,1,N,1,14.5,0.5,0.5,0.3,4.27,5.54,25.61 +2,2016-01-06 23:45:03,2016-01-06 23:55:05,1,2.62,,,-73.99163055419922,40.73870849609375,-73.98323822021484,40.76698684692383,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-13 00:58:08,2016-01-13 01:03:57,1,1.28,,,-74.0067367553711,40.74410629272461,-73.98778533935547,40.74098587036133,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-22 16:22:58,2016-01-22 16:28:55,1,0.6,,,-73.98495483398438,40.76430130004883,-73.99302673339844,40.76318359375,1,N,2,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-25 22:16:05,2016-01-25 22:27:12,1,2.81,,,-73.95803833007812,40.77626037597656,-73.96444702148438,40.802268981933594,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +1,2016-01-08 14:49:04,2016-01-08 15:01:42,2,1.8,,,-73.9695053100586,40.76459884643555,-73.98631286621094,40.74419403076172,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-30 04:05:42,2016-01-30 04:12:08,2,1.3,,,-74.00287628173828,40.73960876464844,-74.00263214111328,40.72462844848633,1,N,1,7.0,0.5,0.5,0.3,1.7,0.0,10.0 +2,2016-01-30 04:11:32,2016-01-30 04:35:01,6,6.26,,,-73.99337768554688,40.721900939941406,-73.9490737915039,40.76308822631836,1,N,1,22.0,0.5,0.5,0.3,0.0,0.0,23.3 +1,2016-01-13 17:06:49,2016-01-13 17:23:06,1,1.4,,,-73.982421875,40.74845504760742,-73.96776580810547,40.76021194458008,1,N,1,11.0,1.0,0.5,0.3,1.0,0.0,13.8 +2,2016-01-14 11:59:57,2016-01-14 12:06:13,3,0.87,,,-73.99342346191406,40.75225830078125,-73.98573303222656,40.763038635253906,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-20 02:55:35,2016-01-20 03:03:49,2,2.66,,,-73.99436950683594,40.74629211425781,-73.98965454101562,40.77287292480469,1,N,1,10.0,0.5,0.5,0.3,2.26,0.0,13.56 +2,2016-01-02 23:04:11,2016-01-02 23:29:13,1,10.38,,,-73.79015350341797,40.646671295166016,-73.91355895996094,40.70310974121094,1,N,1,30.5,0.5,0.5,0.3,7.95,0.0,39.75 +1,2016-01-12 13:13:13,2016-01-12 13:23:38,1,2.2,,,-73.96366119384766,40.761505126953125,-73.98424530029297,40.73322296142578,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-18 17:45:24,2016-01-18 17:47:32,1,0.5,,,-73.98816680908203,40.7346305847168,-73.98076629638672,40.735408782958984,1,N,1,4.0,0.0,0.5,0.3,0.95,0.0,5.75 +2,2016-01-18 18:28:34,2016-01-18 18:42:20,2,2.29,,,-74.00285339355469,40.760501861572266,-73.98902130126953,40.737396240234375,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,15.38 +2,2016-01-10 13:52:01,2016-01-10 14:03:50,6,2.64,,,-73.95655822753906,40.778099060058594,-73.98287963867188,40.7641716003418,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-21 07:53:22,2016-01-21 07:55:48,1,0.78,,,-73.99713897705078,40.741939544677734,-73.99492645263672,40.734249114990234,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +2,2016-01-01 09:03:08,2016-01-01 09:05:27,2,0.63,,,-73.93663024902344,40.814308166503906,-73.94285583496094,40.8083610534668,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-13 07:35:06,2016-01-13 07:39:38,1,1.22,,,-73.99353790283203,40.74150848388672,-73.98306274414062,40.75654220581055,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-09 03:19:33,2016-01-09 03:27:53,5,1.71,,,-73.99217224121094,40.71873092651367,-73.98811340332031,40.737945556640625,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +2,2016-01-08 14:12:19,2016-01-08 14:27:50,1,1.54,,,-73.98222351074219,40.75809097290039,-73.96131896972656,40.76321029663086,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +1,2016-01-15 05:26:27,2016-01-15 05:26:35,1,0.1,,,-73.95381164550781,40.713356018066406,-73.95232391357422,40.714725494384766,1,N,2,2.5,0.5,0.5,0.3,0.0,0.0,3.8 +2,2016-01-11 13:39:12,2016-01-11 13:54:32,1,2.63,,,-74.00303649902344,40.72325134277344,-73.97572326660156,40.749000549316406,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-14 22:07:14,2016-01-14 22:30:12,1,5.8,,,-73.9842529296875,40.75478744506836,-74.03412628173828,40.72937774658203,5,N,1,55.55,0.0,0.0,0.3,4.0,0.0,59.85 +1,2016-01-27 10:25:59,2016-01-27 10:49:33,1,1.2,,,-73.99237060546875,40.743465423583984,-73.98172760009766,40.75880813598633,1,N,1,14.5,0.0,0.5,0.3,3.05,0.0,18.35 +2,2016-01-21 06:53:47,2016-01-21 07:04:33,5,2.6,,,-74.00615692138672,40.73405075073242,-73.99630737304688,40.76380157470703,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-06 10:58:41,2016-01-06 11:10:03,1,1.0,,,-74.0141372680664,40.7086067199707,-74.01493072509766,40.71127700805664,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +1,2016-01-01 17:22:01,2016-01-01 17:50:39,1,7.6,,,-73.99730682373047,40.74476623535156,-73.99935913085938,40.68378829956055,1,N,2,26.5,0.0,0.5,0.3,0.0,0.0,27.3 +1,2016-01-30 13:47:13,2016-01-30 13:56:43,1,1.4,,,-73.99188995361328,40.74905014038086,-74.00640106201172,40.7336540222168,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,11.0 +1,2016-01-02 03:51:45,2016-01-02 03:56:20,1,1.5,,,-73.98512268066406,40.7321662902832,-73.98406982421875,40.71516036987305,1,N,1,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-27 15:43:37,2016-01-27 16:25:36,2,5.39,,,-73.97879791259766,40.74092102050781,-73.96571350097656,40.67784118652344,1,N,2,27.0,0.0,0.5,0.3,0.0,0.0,27.8 +2,2016-01-09 15:44:00,2016-01-09 15:45:46,1,0.37,,,-74.00520324707031,40.70732116699219,-74.00033569335938,40.70814514160156,1,N,1,3.5,0.0,0.5,0.3,1.0,0.0,5.3 +2,2016-01-19 21:05:17,2016-01-19 21:14:37,1,2.4,,,-73.97349548339844,40.75761413574219,-73.9720230102539,40.78383255004883,1,N,1,9.5,0.5,0.5,0.3,2.7,0.0,13.5 +2,2016-01-14 21:01:48,2016-01-14 21:09:13,1,2.15,,,-73.97323608398438,40.76106643676758,-73.95326232910156,40.78864288330078,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +2,2016-01-15 02:58:29,2016-01-15 03:08:33,5,3.09,,,-73.98886108398438,40.74571990966797,-73.95374298095703,40.76686096191406,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +1,2016-01-20 12:45:46,2016-01-20 12:58:32,1,3.1,,,-73.9757308959961,40.79191589355469,-74.00431823730469,40.75672912597656,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-16 23:49:41,2016-01-17 00:02:47,6,3.27,,,-74.00507354736328,40.72035598754883,-73.97830200195312,40.762298583984375,1,N,1,12.0,0.5,0.5,0.3,3.99,0.0,17.29 +2,2016-01-13 20:30:59,2016-01-13 20:38:36,1,2.05,,,-73.97075653076172,40.74922180175781,-73.98302459716797,40.72269821166992,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-02 15:29:33,2016-01-02 15:38:30,1,2.1,,,-73.97148895263672,40.75785446166992,-73.98870849609375,40.731529235839844,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +1,2016-01-20 19:43:47,2016-01-20 19:53:58,1,2.4,,,-73.97796630859375,40.788902282714844,-73.9683609008789,40.76472854614258,1,N,1,10.0,1.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-01 08:02:20,2016-01-01 08:12:38,1,2.7,,,-73.94734954833984,40.77987289428711,-73.97810363769531,40.77980041503906,1,N,1,10.0,0.0,0.5,0.3,1.7,0.0,12.5 +2,2016-01-21 20:21:16,2016-01-21 20:32:24,1,2.72,,,-73.98661804199219,40.74435043334961,-73.95512390136719,40.74442672729492,1,N,1,11.0,0.5,0.5,0.3,2.0,5.54,19.84 +2,2016-01-28 09:11:45,2016-01-28 09:35:07,1,1.95,,,-73.9653549194336,40.75916290283203,-73.9856185913086,40.74134826660156,1,N,1,14.5,0.0,0.5,0.3,3.82,0.0,19.12 +2,2016-01-21 17:51:17,2016-01-21 17:55:03,5,0.55,,,-73.98783111572266,40.7381591796875,-73.98821258544922,40.73163986206055,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-14 15:18:27,2016-01-14 15:27:08,1,0.89,,,-74.00926971435547,40.71723556518555,-74.00238037109375,40.72476577758789,1,N,1,7.0,0.0,0.5,0.3,1.56,0.0,9.36 +1,2016-01-19 12:56:08,2016-01-19 13:11:16,1,0.9,,,-73.98031616210938,40.76008605957031,-73.9732437133789,40.753456115722656,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +2,2016-01-08 19:25:08,2016-01-08 19:30:25,2,0.71,,,-73.98372650146484,40.72165298461914,-73.98796081542969,40.7278938293457,1,N,1,5.5,1.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-11 20:15:17,2016-01-11 20:20:50,1,0.6,,,-73.98031616210938,40.755001068115234,-73.97425079345703,40.750789642333984,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-17 09:03:08,2016-01-17 09:09:31,2,2.7,,,-73.95809173583984,40.760257720947266,-73.9465560913086,40.7918815612793,1,N,1,10.0,0.0,0.5,0.3,2.0,0.0,12.8 +1,2016-01-08 23:38:09,2016-01-08 23:55:14,1,3.3,,,-73.9970474243164,40.72408676147461,-73.97772216796875,40.76347732543945,1,N,1,13.5,0.5,0.5,0.3,2.95,0.0,17.75 +1,2016-01-04 16:08:53,2016-01-04 16:28:23,1,4.7,,,-73.95519256591797,40.78324508666992,-73.97405242919922,40.73796844482422,1,N,1,17.0,1.0,0.5,0.3,3.75,0.0,22.55 +2,2016-01-12 20:13:37,2016-01-12 20:37:50,1,5.92,,,-73.9854965209961,40.7442626953125,-73.9144287109375,40.779850006103516,1,N,1,21.5,0.5,0.5,0.3,7.08,5.54,35.42 +2,2016-01-01 21:20:09,2016-01-01 21:24:33,2,1.09,,,-73.96812438964844,40.75901794433594,-73.9577865600586,40.76982116699219,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-13 08:11:56,2016-01-13 08:20:13,1,1.3,,,-73.98699188232422,40.7392578125,-73.98579406738281,40.753047943115234,1,N,1,7.5,0.0,0.5,0.3,2.45,0.0,10.75 +1,2016-01-03 10:46:04,2016-01-03 10:50:58,1,1.8,,,-73.99696350097656,40.73719024658203,-73.97904968261719,40.7578010559082,1,N,1,7.0,0.0,0.5,0.3,1.55,0.0,9.35 +2,2016-01-17 19:32:31,2016-01-17 19:42:48,5,1.69,,,-73.97195434570312,40.794681549072266,-73.94790649414062,40.788780212402344,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-13 16:58:18,2016-01-13 17:02:07,1,0.6,,,-73.96499633789062,40.75564956665039,-73.9694595336914,40.753257751464844,1,N,1,4.5,1.0,0.5,0.3,1.85,0.0,8.15 +1,2016-01-28 20:54:59,2016-01-28 21:05:45,1,2.5,,,-73.99578094482422,40.74896240234375,-73.98123168945312,40.77920150756836,1,N,1,10.0,0.5,0.5,0.3,2.25,0.0,13.55 +1,2016-01-19 12:47:15,2016-01-19 12:57:51,2,2.0,,,-73.99015808105469,40.77174377441406,-73.97019958496094,40.79413986206055,1,N,1,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-16 18:22:36,2016-01-16 18:41:54,1,3.22,,,-73.99535369873047,40.74399948120117,-74.00736236572266,40.70732879638672,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,18.36 +2,2016-01-01 04:15:47,2016-01-01 05:30:30,3,17.98,,,-73.95947265625,40.65402603149414,-73.94061279296875,40.833160400390625,1,N,1,64.5,0.5,0.5,0.3,9.2,0.0,75.0 +2,2016-01-29 12:26:34,2016-01-29 12:40:52,2,1.34,,,-73.97200012207031,40.754180908203125,-73.9881820678711,40.75395965576172,1,N,1,10.0,0.0,0.5,0.3,1.0,0.0,11.8 +2,2016-01-05 12:33:43,2016-01-05 12:48:47,1,0.97,,,-73.9796142578125,40.738311767578125,-73.97176361083984,40.74609375,1,N,1,10.0,0.0,0.5,0.3,3.0,0.0,13.8 +1,2016-01-27 22:57:31,2016-01-27 23:09:27,1,2.7,,,-73.97420501708984,40.758060455322266,-73.9789810180664,40.78681945800781,1,N,2,11.0,0.5,0.5,0.3,0.0,0.0,12.3 +2,2016-01-13 18:06:54,2016-01-13 18:27:43,1,1.58,,,-73.98056030273438,40.74208068847656,-73.98827362060547,40.75605010986328,1,N,1,13.5,1.0,0.5,0.3,3.82,0.0,19.12 +2,2016-01-29 00:35:05,2016-01-29 01:01:06,2,15.54,,,-73.87272644042969,40.773990631103516,-73.7284164428711,40.63922882080078,4,N,2,46.5,0.5,0.5,0.3,0.0,0.0,47.8 +1,2016-01-20 13:39:56,2016-01-20 13:58:12,1,1.5,,,-73.98318481445312,40.76667404174805,-73.96379089355469,40.75444412231445,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-03 23:11:57,2016-01-03 23:44:21,1,17.2,,,-73.78794860839844,40.641639709472656,-73.97206115722656,40.75726318359375,2,N,1,52.0,0.0,0.5,0.3,10.55,0.0,63.35 +2,2016-01-19 13:47:27,2016-01-19 13:55:31,5,1.04,,,-73.98218536376953,40.75856018066406,-73.9969253540039,40.76447677612305,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,9.75 +2,2016-01-29 12:17:13,2016-01-29 12:38:09,1,6.17,,,-73.9743881225586,40.7557487487793,-74.01522827148438,40.704750061035156,1,N,2,22.0,0.0,0.5,0.3,0.0,0.0,22.8 +2,2016-01-29 19:48:30,2016-01-29 19:57:22,1,2.48,,,-74.00431060791016,40.70735168457031,-73.9920883178711,40.687339782714844,1,N,2,9.5,1.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-14 08:40:39,2016-01-14 09:08:55,1,8.44,,,-73.87093353271484,40.773738861083984,-73.98209381103516,40.74604034423828,1,N,1,26.5,0.0,0.5,0.3,5.0,5.54,37.84 +2,2016-01-03 03:29:12,2016-01-03 03:41:00,1,3.26,,,-73.98554992675781,40.73854064941406,-74.00933837890625,40.70439147949219,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +1,2016-01-08 19:16:35,2016-01-08 19:39:38,2,1.7,,,-73.98422241210938,40.74322509765625,-73.98997497558594,40.72330093383789,1,N,1,13.5,1.0,0.5,0.3,3.05,0.0,18.35 +1,2016-01-11 11:56:15,2016-01-11 12:04:05,1,0.7,,,-73.99104309082031,40.73484802246094,-73.9806900024414,40.733726501464844,1,N,1,6.5,0.0,0.5,0.3,1.45,0.0,8.75 +1,2016-01-09 00:34:53,2016-01-09 00:50:41,1,7.5,,,-73.98316192626953,40.77128982543945,-73.93629455566406,40.8573112487793,1,N,2,22.5,0.5,0.5,0.3,0.0,0.0,23.8 +2,2016-01-07 21:01:35,2016-01-07 21:06:34,2,0.94,,,-73.96865844726562,40.78598403930664,-73.95851135253906,40.77833557128906,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-26 18:32:00,2016-01-26 18:33:10,1,0.1,,,-74.00147247314453,40.7309684753418,-74.00069427490234,40.73321533203125,1,N,2,3.0,1.0,0.5,0.3,0.0,0.0,4.8 +2,2016-01-27 18:26:56,2016-01-27 18:44:50,1,1.99,,,-73.98281860351562,40.76533126831055,-73.96119689941406,40.76906967163086,1,N,1,12.5,1.0,0.5,0.3,2.0,0.0,16.3 +1,2016-01-20 09:56:11,2016-01-20 10:13:52,1,1.5,,,-73.9670639038086,40.76112747192383,-73.98372650146484,40.77438735961914,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,15.95 +2,2016-01-16 21:29:31,2016-01-16 21:40:28,3,2.33,,,-73.9659194946289,40.758460998535156,-73.98735809326172,40.72905731201172,1,N,1,10.0,0.5,0.5,0.3,1.5,0.0,12.8 +2,2016-01-29 09:11:03,2016-01-29 09:36:42,1,2.49,,,-73.9753646850586,40.77714538574219,-73.97026062011719,40.752540588378906,1,N,1,16.5,0.0,0.5,0.3,1.0,0.0,18.3 +2,2016-01-11 17:10:25,2016-01-11 17:32:18,2,4.96,,,-74.00933074951172,40.70512390136719,-73.98274230957031,40.748443603515625,1,N,1,20.0,1.0,0.5,0.3,2.0,0.0,23.8 +1,2016-01-15 17:57:53,2016-01-15 18:07:40,2,1.2,,,-73.94391632080078,40.72014617919922,-73.93877410888672,40.70838928222656,1,N,2,8.0,1.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-27 21:42:05,2016-01-27 21:59:19,5,3.3,,,-73.98956298828125,40.739864349365234,-74.0112533569336,40.71639633178711,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,16.3 +2,2016-01-15 07:01:37,2016-01-15 07:05:57,2,0.95,,,-73.9916763305664,40.749610900878906,-73.9875717163086,40.7417106628418,1,N,1,5.5,0.0,0.5,0.3,0.7,0.0,7.0 +1,2016-01-02 13:55:17,2016-01-02 13:57:26,1,0.5,,,-73.99897766113281,40.73477554321289,-73.99372100830078,40.737754821777344,1,N,1,3.5,0.0,0.5,0.3,1.0,0.0,5.3 +1,2016-01-28 08:25:12,2016-01-28 08:36:43,3,1.0,,,-73.9547119140625,40.763771057128906,-73.96788024902344,40.761940002441406,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-20 21:15:50,2016-01-20 21:32:24,1,3.2,,,-73.99258422851562,40.72536087036133,-73.9728012084961,40.68418502807617,1,N,1,14.0,0.5,0.5,0.3,3.05,0.0,18.35 +2,2016-01-08 20:49:21,2016-01-08 21:06:02,1,2.41,,,-73.97396087646484,40.76342010498047,-73.99622344970703,40.7346305847168,1,N,1,12.0,0.5,0.5,0.3,2.66,0.0,15.96 +2,2016-01-11 19:11:18,2016-01-11 19:24:17,2,5.19,,,-73.9787368774414,40.75067138671875,-74.01244354248047,40.70161056518555,1,N,1,17.0,1.0,0.5,0.3,3.76,0.0,22.56 +1,2016-01-06 09:45:34,2016-01-06 10:05:11,1,2.9,,,-73.95417022705078,40.78710174560547,-73.97606658935547,40.75124740600586,1,N,1,14.5,0.0,0.5,0.3,3.05,0.0,18.35 +2,2016-01-23 13:58:51,2016-01-23 14:03:17,1,0.76,,,-73.95657348632812,40.76694869995117,-73.94719696044922,40.77165985107422,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-07 22:19:50,2016-01-07 22:29:16,5,1.34,,,-73.97545623779297,40.75515365600586,-73.977783203125,40.742130279541016,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +2,2016-01-03 14:51:45,2016-01-03 14:56:11,1,0.92,,,-74.00071716308594,40.71833038330078,-74.00936126708984,40.72364044189453,1,N,1,5.5,0.0,0.5,0.3,1.0,0.0,7.3 +1,2016-01-14 07:49:12,2016-01-14 07:53:27,1,0.7,,,-73.9528579711914,40.818111419677734,-73.95921325683594,40.80910110473633,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-16 16:10:15,2016-01-16 16:32:19,1,2.19,,,-73.99961853027344,40.72472381591797,-73.97784423828125,40.746009826660156,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,15.3 +1,2016-01-26 09:04:22,2016-01-26 09:30:09,1,8.3,,,-73.96295166015625,40.76639175415039,-74.01437377929688,40.714542388916016,1,N,1,26.5,0.0,0.5,0.3,4.0,0.0,31.3 +1,2016-01-25 09:28:17,2016-01-25 09:36:26,1,1.2,,,-74.00289154052734,40.739341735839844,-74.00692749023438,40.751399993896484,1,N,1,7.5,0.0,0.5,0.3,2.45,0.0,10.75 +1,2016-01-14 13:06:22,2016-01-14 13:19:58,1,1.2,,,-73.99176025390625,40.74956512451172,-73.99327850341797,40.73601150512695,1,N,1,9.5,0.0,0.5,0.3,2.55,0.0,12.85 +1,2016-01-24 19:38:39,2016-01-24 19:46:30,3,1.4,,,-73.99070739746094,40.73076248168945,-73.97779846191406,40.746368408203125,1,N,1,7.5,0.0,0.5,0.3,2.05,0.0,10.35 +2,2016-01-28 21:47:34,2016-01-28 22:07:35,3,5.19,,,-73.98358154296875,40.74382019042969,-73.91358947753906,40.76321029663086,1,N,1,18.0,0.5,0.5,0.3,4.0,0.0,23.3 +2,2016-01-28 11:41:08,2016-01-28 12:23:24,1,4.69,,,-73.97248077392578,40.781070709228516,-74.0025634765625,40.72610855102539,1,N,1,26.5,0.0,0.5,0.3,6.82,0.0,34.12 +2,2016-01-13 18:11:15,2016-01-13 18:19:22,1,1.12,,,-73.99122619628906,40.77033996582031,-73.99140167236328,40.75804138183594,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-19 23:17:16,2016-01-19 23:40:44,1,13.7,,,-73.78266143798828,40.64449691772461,-73.90746307373047,40.76101303100586,1,N,1,38.5,0.5,0.5,0.3,7.95,0.0,47.75 +1,2016-01-22 22:49:43,2016-01-22 22:58:49,2,0.8,,,-73.9832534790039,40.76151657104492,-73.97967529296875,40.752784729003906,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +1,2016-01-26 04:58:51,2016-01-26 05:15:27,1,6.7,,,-73.96146392822266,40.75941848754883,-74.01103973388672,40.708248138427734,1,N,1,21.0,0.5,0.5,0.3,3.0,0.0,25.3 +1,2016-01-29 06:51:01,2016-01-29 06:55:42,2,1.0,,,-73.97737884521484,40.77924728393555,-73.98182678222656,40.76771545410156,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-28 11:39:13,2016-01-28 12:04:38,1,1.99,,,-73.99591064453125,40.74895095825195,-73.97317504882812,40.76247024536133,1,N,1,15.5,0.0,0.5,0.3,3.26,0.0,19.56 +2,2016-01-06 08:13:44,2016-01-06 08:22:52,2,1.3,,,-73.97366333007812,40.74722671508789,-73.97149658203125,40.75934600830078,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +2,2016-01-04 11:46:26,2016-01-04 11:57:59,1,1.99,,,-74.00505828857422,40.7465934753418,-73.9996109008789,40.7266731262207,1,N,1,9.5,0.0,0.5,0.3,2.06,0.0,12.36 +1,2016-01-15 06:53:07,2016-01-15 06:58:36,1,1.0,,,-73.990966796875,40.75638961791992,-73.9761962890625,40.75823211669922,1,N,1,5.5,0.0,0.5,0.3,1.25,0.0,7.55 +1,2016-01-04 13:15:11,2016-01-04 13:19:44,1,0.9,,,-73.9804916381836,40.77458572387695,-73.9708251953125,40.78343200683594,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-29 22:19:03,2016-01-29 22:38:16,1,2.0,,,-73.98992919921875,40.733280181884766,-73.99263000488281,40.75429916381836,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,17.16 +2,2016-01-30 10:51:15,2016-01-30 10:57:53,2,1.35,,,-73.9576187133789,40.768394470214844,-73.94727325439453,40.78343963623047,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-30 19:26:47,2016-01-30 19:32:30,1,0.64,,,-73.98590087890625,40.73273849487305,-73.98149871826172,40.73896789550781,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-29 22:55:06,2016-01-29 23:00:35,1,1.46,,,-73.95001983642578,40.79573059082031,-73.96920013427734,40.790550231933594,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-17 00:32:06,2016-01-17 00:36:35,6,1.22,,,-73.9738998413086,40.79153060913086,-73.96346282958984,40.80615997314453,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +1,2016-01-19 10:58:21,2016-01-19 11:24:01,1,1.6,,,-73.9500503540039,40.79039001464844,-73.95809173583984,40.77041244506836,1,N,1,16.0,0.0,0.5,0.3,1.0,0.0,17.8 +2,2016-01-09 22:11:08,2016-01-09 22:26:35,1,3.37,,,-73.97025299072266,40.79393005371094,-73.97151947021484,40.75835037231445,1,N,2,13.5,0.5,0.5,0.3,0.0,0.0,14.8 +2,2016-01-08 11:00:58,2016-01-08 11:19:50,1,2.9,,,-74.00089263916016,40.76197814941406,-73.99703979492188,40.72690963745117,1,N,1,14.5,0.0,0.5,0.3,3.06,0.0,18.36 +2,2016-01-14 23:38:11,2016-01-14 23:42:42,2,1.09,,,-73.95158386230469,40.71405792236328,-73.94888305664062,40.726051330566406,1,N,1,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +1,2016-01-19 20:52:36,2016-01-19 21:03:28,3,1.7,,,-73.97212219238281,40.76541519165039,-73.98075103759766,40.744606018066406,1,N,1,9.0,0.5,0.5,0.3,2.05,0.0,12.35 +1,2016-01-21 13:01:33,2016-01-21 13:10:33,1,0.9,,,-73.97254180908203,40.765167236328125,-73.97998809814453,40.77274703979492,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-12 11:22:01,2016-01-12 11:43:40,1,1.82,,,-74.00596618652344,40.73986053466797,-73.98406219482422,40.74414825439453,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +1,2016-01-21 07:16:52,2016-01-21 07:27:30,1,2.0,,,-73.98396301269531,40.743492126464844,-73.9639892578125,40.75688934326172,1,N,1,9.5,0.0,0.5,0.3,2.0,0.0,12.3 +1,2016-01-28 21:41:32,2016-01-28 21:51:14,1,2.2,,,-74.00579071044922,40.74543380737305,-73.97880554199219,40.752315521240234,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +1,2016-01-15 21:27:38,2016-01-15 21:38:34,1,1.0,,,-73.99323272705078,40.72005081176758,-73.99019622802734,40.72969436645508,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +2,2016-01-07 10:28:11,2016-01-07 10:44:59,6,2.17,,,-73.99581909179688,40.73884582519531,-73.9753189086914,40.76533889770508,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +1,2016-01-04 11:14:06,2016-01-04 11:34:26,1,2.8,,,-73.9703140258789,40.76313400268555,-74.00509643554688,40.75149917602539,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,15.3 +2,2016-01-06 20:22:51,2016-01-06 20:32:43,1,1.62,,,-73.98188018798828,40.74669647216797,-74.00315856933594,40.744056701660156,1,N,1,8.5,0.5,0.5,0.3,1.47,0.0,11.27 +2,2016-01-05 07:36:01,2016-01-05 07:50:14,1,6.17,,,-73.95613861083984,40.757720947265625,-74.00389862060547,40.710784912109375,1,N,1,19.0,0.0,0.5,0.3,3.0,0.0,22.8 +1,2016-01-08 20:49:48,2016-01-08 20:58:14,1,1.5,,,-73.97821044921875,40.76335906982422,-73.97933959960938,40.78095626831055,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,11.15 +1,2016-01-05 12:50:27,2016-01-05 12:57:46,1,1.0,,,-73.97235870361328,40.7646484375,-73.984619140625,40.75898361206055,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-22 07:03:16,2016-01-22 07:10:17,1,2.4,,,-73.94498443603516,40.774871826171875,-73.97343444824219,40.75563430786133,1,N,1,9.0,0.0,0.5,0.3,1.0,0.0,10.8 +2,2016-01-29 09:48:40,2016-01-29 10:12:16,5,1.55,,,-73.96385192871094,40.77391815185547,-73.95967864990234,40.75885009765625,1,N,1,15.0,0.0,0.5,0.3,3.16,0.0,18.96 +1,2016-01-01 19:50:26,2016-01-01 19:56:18,1,1.3,,,-73.95559692382812,40.772647857666016,-73.94689178466797,40.784202575683594,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-04 06:05:26,2016-01-04 06:51:26,1,17.88,,,-73.7783432006836,40.64678955078125,-73.98127746582031,40.763248443603516,2,N,1,52.0,0.0,0.5,0.3,6.0,5.54,64.34 +1,2016-01-12 22:38:35,2016-01-12 22:44:17,2,1.3,,,-73.9769058227539,40.68156433105469,-73.95310974121094,40.677188873291016,1,N,1,6.5,0.5,0.5,0.3,1.55,0.0,9.35 +2,2016-01-09 23:10:06,2016-01-09 23:13:58,1,0.6,,,-73.9567642211914,40.78042984008789,-73.95420837402344,40.787200927734375,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-09 12:35:06,2016-01-09 12:43:17,1,0.92,,,-73.99315643310547,40.72977066040039,-73.98724365234375,40.72222900390625,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-10 18:09:38,2016-01-10 18:22:15,1,1.47,,,-73.97772979736328,40.7611198425293,-73.96370697021484,40.765289306640625,1,N,1,10.0,0.0,0.5,0.3,3.24,0.0,14.04 +2,2016-01-18 18:36:50,2016-01-18 19:22:03,2,20.8,,,-73.78800964355469,40.64154815673828,-73.98934936523438,40.6846809387207,1,N,1,58.0,0.0,0.5,0.3,10.0,0.0,68.8 +2,2016-01-02 18:05:25,2016-01-02 18:35:06,2,8.95,,,-73.9913330078125,40.727256774902344,-73.95793151855469,40.82045364379883,1,N,1,30.5,0.0,0.5,0.3,6.26,0.0,37.56 +2,2016-01-28 23:30:52,2016-01-28 23:39:20,1,1.62,,,-73.98041534423828,40.73052978515625,-73.99579620361328,40.74422836303711,1,N,1,8.0,0.5,0.5,0.3,2.79,0.0,12.09 +1,2016-01-09 14:56:11,2016-01-09 14:58:31,1,0.7,,,-73.9660415649414,40.75823974609375,-73.97303009033203,40.74873352050781,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,6.3 +2,2016-01-04 10:36:10,2016-01-04 10:36:29,6,0.0,,,0.0,0.0,0.0,0.0,2,N,2,52.0,0.0,0.5,0.3,0.0,0.0,52.8 +2,2016-01-22 18:17:06,2016-01-22 18:25:11,5,1.37,,,-73.99028778076172,40.751220703125,-73.97875213623047,40.76179122924805,1,N,2,7.0,1.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-13 18:12:27,2016-01-13 18:26:13,2,1.74,,,-73.95823669433594,40.77859115600586,-73.9689712524414,40.758819580078125,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-27 08:07:47,2016-01-27 08:15:19,1,0.74,,,-74.0171890258789,40.70547103881836,-74.00933074951172,40.704559326171875,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-11 09:11:17,2016-01-11 09:18:34,1,1.7,,,-73.96627044677734,40.7619514465332,-73.94984436035156,40.781986236572266,1,N,1,7.5,0.0,0.5,0.3,1.5,0.0,9.8 +1,2016-01-11 00:38:27,2016-01-11 00:45:01,1,2.0,,,-73.99407196044922,40.751129150390625,-73.97027587890625,40.75979995727539,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +1,2016-01-30 00:18:07,2016-01-30 00:41:51,2,4.6,,,0.0,0.0,0.0,0.0,1,N,1,18.0,0.5,0.5,0.3,5.75,0.0,25.05 +1,2016-01-30 00:20:22,2016-01-30 00:32:11,2,1.4,,,-73.98982238769531,40.73358154296875,-73.98075103759766,40.72160339355469,1,N,1,9.0,0.5,0.5,0.3,1.75,0.0,12.05 +1,2016-01-07 10:29:20,2016-01-07 10:38:45,1,1.3,,,-74.00017547607422,40.7479362487793,-73.99410247802734,40.735103607177734,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-14 20:36:03,2016-01-14 20:45:59,1,1.46,,,-73.98004913330078,40.7706413269043,-73.96565246582031,40.76289749145508,1,N,1,8.5,0.5,0.5,0.3,1.8,0.0,11.6 +2,2016-01-02 03:57:11,2016-01-02 04:17:14,1,4.9,,,-73.92794799804688,40.75197982788086,-73.85440826416016,40.739810943603516,1,N,2,18.0,0.5,0.5,0.3,0.0,0.0,19.3 +2,2016-01-24 19:20:23,2016-01-24 19:35:13,1,2.54,,,-73.97160339355469,40.76057052612305,-73.98023223876953,40.7321891784668,1,N,1,11.5,0.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-17 10:03:31,2016-01-17 10:14:28,2,2.91,,,-73.9642562866211,40.79227066040039,-73.94178771972656,40.829708099365234,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +1,2016-01-30 17:54:33,2016-01-30 18:11:49,1,2.6,,,-73.97258758544922,40.7586669921875,-74.00019073486328,40.72685623168945,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,15.95 +2,2016-01-01 02:03:11,2016-01-01 02:14:39,1,3.97,,,-73.98231506347656,40.739952087402344,-73.94454956054688,40.788204193115234,1,N,1,13.0,0.5,0.5,0.3,2.86,0.0,17.16 +2,2016-01-12 10:12:05,2016-01-12 10:14:57,1,0.46,,,-73.99614715576172,40.68648147583008,-73.9935302734375,40.691890716552734,1,N,2,4.0,0.0,0.5,0.3,0.0,0.0,4.8 +1,2016-01-08 23:03:52,2016-01-08 23:22:04,3,3.0,,,-73.98768615722656,40.71969985961914,-73.99532318115234,40.749534606933594,1,N,1,14.0,0.5,0.5,0.3,3.05,0.0,18.35 +1,2016-01-20 12:11:58,2016-01-20 12:32:38,1,1.6,,,-73.9942398071289,40.75067901611328,-73.97468566894531,40.75581359863281,1,N,1,13.5,0.0,0.5,0.3,3.0,0.0,17.3 +1,2016-01-21 09:50:54,2016-01-21 10:00:50,1,1.1,,,-73.96222686767578,40.770320892333984,-73.97586822509766,40.76388168334961,1,N,1,8.0,0.0,0.5,0.3,1.75,0.0,10.55 +2,2016-01-14 13:03:47,2016-01-14 13:11:27,5,1.13,,,-73.96187591552734,40.763824462890625,-73.97225952148438,40.75324249267578,1,N,1,7.0,0.0,0.5,0.3,1.2,0.0,9.0 +1,2016-01-04 14:10:56,2016-01-04 14:17:01,1,1.1,,,-74.00670623779297,40.71609115600586,-74.01667022705078,40.708194732666016,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-14 06:49:03,2016-01-14 07:10:21,1,10.7,,,-73.98509216308594,40.760433197021484,-73.86575317382812,40.770992279052734,1,N,1,30.0,0.0,0.5,0.3,9.05,5.54,45.39 +2,2016-01-21 07:45:17,2016-01-21 07:55:02,1,1.53,,,-73.99217224121094,40.764102935791016,-73.98677062988281,40.756507873535156,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-04 17:05:50,2016-01-04 17:32:13,1,10.49,,,-73.87529754638672,40.77386474609375,-73.97843170166016,40.762271881103516,1,N,1,31.5,1.0,0.5,0.3,0.0,5.54,38.84 +1,2016-01-22 23:14:14,2016-01-22 23:23:06,1,1.9,,,-73.9933853149414,40.757259368896484,-74.0025634765625,40.734169006347656,1,N,1,8.5,0.5,0.5,0.3,1.96,0.0,11.76 +1,2016-01-07 15:28:59,2016-01-07 15:40:13,1,1.5,,,-73.97103118896484,40.754764556884766,-73.966796875,40.772403717041016,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-17 23:51:28,2016-01-18 00:02:53,1,3.47,,,-73.96347045898438,40.75767135620117,-73.9128189086914,40.74229049682617,1,N,2,12.0,0.5,0.5,0.3,0.0,0.0,13.3 +2,2016-01-19 09:37:34,2016-01-19 09:51:16,1,1.29,,,-73.9849624633789,40.759151458740234,-74.00045013427734,40.75865173339844,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-20 16:42:02,2016-01-20 16:50:29,1,1.13,,,-73.98431396484375,40.75437545776367,-73.96951293945312,40.757511138916016,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +1,2016-01-21 18:25:31,2016-01-21 18:36:19,1,1.9,,,-74.00540924072266,40.70591735839844,-73.9798812866211,40.71371078491211,1,N,1,9.5,1.0,0.5,0.3,2.25,0.0,13.55 +1,2016-01-22 15:54:22,2016-01-22 16:00:16,1,1.0,,,-73.95743560791016,40.77004623413086,-73.9459228515625,40.778709411621094,1,N,1,6.0,0.0,0.5,0.3,3.0,0.0,9.8 +2,2016-01-01 14:37:31,2016-01-01 14:42:28,4,0.96,,,-73.99273681640625,40.753318786621094,-74.00479125976562,40.756839752197266,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-25 22:16:38,2016-01-25 22:30:36,1,3.04,,,-73.98284912109375,40.744789123535156,-73.9542465209961,40.778411865234375,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,16.56 +1,2016-01-20 02:16:37,2016-01-20 02:34:00,2,9.8,,,-73.98162078857422,40.73277282714844,-73.9211654663086,40.84392166137695,1,N,1,28.0,0.5,0.5,0.3,1.0,0.0,30.3 +2,2016-01-29 23:26:28,2016-01-29 23:28:34,3,0.21,,,-73.98573303222656,40.75849151611328,-73.98745727539062,40.76025390625,1,N,2,3.5,0.5,0.5,0.3,0.0,0.0,4.8 +1,2016-01-18 01:53:24,2016-01-18 02:05:47,1,6.4,,,-73.94898986816406,40.773433685302734,-74.00192260742188,40.7076416015625,1,N,1,19.5,0.5,0.5,0.3,1.0,0.0,21.8 +1,2016-01-19 14:27:25,2016-01-19 14:35:54,1,0.7,,,-73.9591064453125,40.771728515625,-73.95811462402344,40.77924346923828,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-25 11:05:25,2016-01-25 11:36:54,2,3.3,,,-74.0137939453125,40.71310806274414,-73.99655151367188,40.75880432128906,1,N,1,21.0,0.0,0.5,0.3,4.35,0.0,26.15 +2,2016-01-14 10:43:22,2016-01-14 11:01:07,2,1.98,,,-73.9940185546875,40.75115966796875,-73.9704360961914,40.761470794677734,1,N,1,12.5,0.0,0.5,0.3,1.0,0.0,14.3 +1,2016-01-26 12:37:39,2016-01-26 13:05:11,1,1.2,,,-73.98499298095703,40.75358200073242,-73.97100067138672,40.760963439941406,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +1,2016-01-07 18:13:23,2016-01-07 18:45:44,1,4.8,,,-73.98328399658203,40.73466873168945,-73.97502899169922,40.787811279296875,1,N,2,22.5,1.0,0.5,0.3,0.0,0.0,24.3 +1,2016-01-06 20:17:10,2016-01-06 20:36:04,2,4.5,,,-74.01283264160156,40.71678924560547,-73.97555541992188,40.75785827636719,1,N,1,17.0,0.5,0.5,0.3,5.45,0.0,23.75 +2,2016-01-15 15:23:11,2016-01-15 15:34:35,1,1.87,,,-73.97734069824219,40.774375915527344,-73.96876525878906,40.79671859741211,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-11 06:16:56,2016-01-11 06:20:43,1,0.93,,,-73.9553451538086,40.779502868652344,-73.96886444091797,40.785133361816406,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-15 00:44:30,2016-01-15 00:52:24,3,1.63,,,-73.93672180175781,40.69785690307617,-73.91643524169922,40.68186569213867,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-20 13:34:12,2016-01-20 13:52:05,2,2.52,,,-74.00396728515625,40.717079162597656,-73.9881820678711,40.74956130981445,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-11 14:18:17,2016-01-11 14:22:13,1,1.05,,,-73.95887756347656,40.772125244140625,-73.95475769042969,40.783226013183594,1,N,1,5.0,0.0,0.5,0.3,1.74,0.0,7.54 +2,2016-01-08 12:16:57,2016-01-08 12:31:25,1,1.88,,,-73.96553039550781,40.76581954956055,-73.99240112304688,40.76744842529297,1,N,1,10.5,0.0,0.5,0.3,2.0,0.0,13.3 +1,2016-01-21 15:06:27,2016-01-21 15:16:07,1,1.5,,,-73.98031616210938,40.78377914428711,-73.98551177978516,40.7636604309082,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +2,2016-01-07 22:16:30,2016-01-07 22:19:50,2,1.26,,,-73.9962387084961,40.753639221191406,-74.00261688232422,40.73876190185547,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-12 08:23:30,2016-01-12 08:48:22,1,5.8,,,-73.98941040039062,40.721492767333984,-73.9670181274414,40.75491714477539,1,N,1,22.5,0.0,0.5,0.3,4.65,0.0,27.95 +2,2016-01-26 15:26:59,2016-01-26 15:49:16,1,0.95,,,-73.98189544677734,40.767860412597656,-73.97390747070312,40.75879669189453,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-19 19:19:52,2016-01-19 19:26:05,1,1.0,,,-73.9691162109375,40.76315689086914,-73.956787109375,40.76811981201172,1,N,1,6.5,1.0,0.5,0.3,1.0,0.0,9.3 +1,2016-01-02 15:43:30,2016-01-02 16:09:40,1,10.6,,,0.0,0.0,0.0,0.0,1,N,1,32.0,0.0,0.5,0.3,9.55,5.54,47.89 +1,2016-01-08 20:08:49,2016-01-08 20:13:24,1,0.7,,,-73.98136901855469,40.76326370239258,-73.98883819580078,40.75416946411133,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-08 11:25:48,2016-01-08 11:44:08,1,2.8,,,-73.9764404296875,40.775848388671875,-74.00437927246094,40.75034713745117,1,N,1,14.0,0.0,0.5,0.3,4.4,0.0,19.2 +2,2016-01-27 19:34:55,2016-01-27 19:45:43,2,1.23,,,-73.97000885009766,40.785850524902344,-73.95362091064453,40.775291442871094,1,N,1,8.5,1.0,0.5,0.3,1.0,0.0,11.3 +2,2016-01-25 01:15:57,2016-01-25 01:40:17,1,11.75,,,-73.86263275146484,40.76897048950195,-73.93128204345703,40.85694885253906,1,N,1,34.0,0.5,0.5,0.3,0.0,5.54,40.84 +2,2016-01-10 13:12:09,2016-01-10 13:28:24,5,4.82,,,-74.00672149658203,40.73141098022461,-73.96553039550781,40.771690368652344,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +2,2016-01-22 21:49:31,2016-01-22 22:08:44,1,2.31,,,-73.99127960205078,40.76049041748047,-73.98065185546875,40.73847961425781,1,N,1,13.0,0.5,0.5,0.3,1.0,0.0,15.3 +1,2016-01-01 12:56:23,2016-01-01 13:03:39,1,2.1,,,-73.98379516601562,40.746822357177734,-73.9632339477539,40.774784088134766,1,N,1,8.5,0.0,0.5,0.3,1.5,0.0,10.8 +2,2016-01-02 02:41:44,2016-01-02 02:49:55,6,2.52,,,-73.98992919921875,40.7293815612793,-73.9644775390625,40.75605010986328,1,N,1,9.5,0.5,0.5,0.3,2.7,0.0,13.5 +2,2016-01-29 23:36:44,2016-01-29 23:43:43,5,0.87,,,-74.00689697265625,40.743446350097656,-73.9933853149414,40.737586975097656,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-09 19:25:26,2016-01-09 19:34:02,2,1.1,,,-73.9930419921875,40.74386215209961,-74.0049819946289,40.74129104614258,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-29 00:55:18,2016-01-29 01:23:52,1,6.44,,,-73.98856353759766,40.721282958984375,-73.9518051147461,40.78050231933594,1,N,1,23.0,0.5,0.5,0.3,0.0,0.0,24.3 +1,2016-01-13 08:44:52,2016-01-13 09:02:30,1,1.7,,,-73.9880142211914,40.737548828125,-73.97723388671875,40.75562286376953,1,N,1,12.0,0.0,0.5,0.3,2.0,0.0,14.8 +2,2016-01-14 23:08:34,2016-01-14 23:27:50,1,3.55,,,-73.96807098388672,40.75882339477539,-74.00884246826172,40.73128128051758,1,N,1,15.0,0.5,0.5,0.3,3.26,0.0,19.56 +2,2016-01-02 15:08:33,2016-01-02 15:36:42,1,11.22,,,-73.8635482788086,40.769935607910156,-73.97386932373047,40.68818664550781,1,N,1,33.0,0.0,0.5,0.3,6.76,0.0,40.56 +2,2016-01-15 22:06:43,2016-01-15 22:11:24,1,1.04,,,-73.99082946777344,40.76089859008789,-74.0005111694336,40.747718811035156,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +2,2016-01-20 17:03:01,2016-01-20 17:04:56,1,0.19,,,-73.98811340332031,40.74757385253906,-73.99098205566406,40.748966217041016,1,N,2,3.5,1.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-06 16:23:46,2016-01-06 16:41:00,1,1.6,,,-73.96973419189453,40.76900100708008,-73.98606872558594,40.75144577026367,1,N,1,12.0,1.0,0.5,0.3,4.0,0.0,17.8 +1,2016-01-07 00:10:38,2016-01-07 00:15:01,1,1.0,,,-73.98128509521484,40.763641357421875,-73.99068450927734,40.75091552734375,1,N,1,5.5,0.5,0.5,0.3,1.35,0.0,8.15 +2,2016-01-07 09:03:32,2016-01-07 09:17:30,1,2.22,,,-73.99578094482422,40.72454833984375,-73.98629760742188,40.751800537109375,1,N,1,11.0,0.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-21 09:14:12,2016-01-21 09:27:20,1,1.95,,,-73.97653198242188,40.78242111206055,-73.99549102783203,40.7647590637207,1,N,1,10.5,0.0,0.5,0.3,2.26,0.0,13.56 +2,2016-01-11 14:05:01,2016-01-11 15:15:54,6,32.74,,,-73.77664184570312,40.645442962646484,-73.9752426147461,40.76532745361328,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-27 18:57:14,2016-01-27 19:07:55,1,1.6,,,-74.00749206542969,40.715423583984375,-73.99132537841797,40.72759246826172,1,N,1,8.5,1.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-17 15:41:25,2016-01-17 15:48:22,1,1.0,,,-73.97705841064453,40.7264289855957,-73.99015808105469,40.734535217285156,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-16 00:53:18,2016-01-16 01:01:38,1,1.43,,,-73.98480987548828,40.759178161621094,-73.97136688232422,40.754600524902344,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-16 03:09:55,2016-01-16 03:14:22,2,0.93,,,-73.99187469482422,40.73532485961914,-74.00370025634766,40.742828369140625,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +2,2016-01-15 13:51:53,2016-01-15 13:55:54,2,0.5,,,-73.9658432006836,40.76694869995117,-73.9671630859375,40.76905822753906,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-11 20:16:04,2016-01-11 20:28:44,1,2.8,,,-73.98145294189453,40.76198959350586,-73.94982147216797,40.785457611083984,1,N,1,11.5,0.5,0.5,0.3,2.55,0.0,15.35 +2,2016-01-10 14:04:46,2016-01-10 14:13:09,1,2.17,,,-73.96795654296875,40.756160736083984,-73.94827270507812,40.772239685058594,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-19 18:35:27,2016-01-19 19:25:28,6,19.02,,,-73.86270141601562,40.770320892333984,-74.00312805175781,40.74414825439453,1,N,1,55.0,1.0,0.5,0.3,12.47,5.54,74.81 +2,2016-01-18 18:08:46,2016-01-18 18:29:25,1,3.18,,,-74.00520324707031,40.72024154663086,-73.97405242919922,40.74290084838867,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-16 01:22:04,2016-01-16 01:29:51,4,0.8,,,-73.98697662353516,40.7296257019043,-73.97883605957031,40.72427749633789,1,N,1,6.5,0.5,0.5,0.3,1.55,0.0,9.35 +2,2016-01-21 20:24:15,2016-01-21 21:09:55,1,18.64,,,-73.78087615966797,40.645118713378906,-73.99954223632812,40.73128128051758,2,N,1,52.0,0.0,0.5,0.3,14.58,5.54,72.92 +1,2016-01-24 13:06:12,2016-01-24 13:21:51,1,2.6,,,-73.98115539550781,40.781856536865234,-73.97555541992188,40.75197219848633,1,N,2,12.5,0.0,0.5,0.3,0.0,0.0,13.3 +1,2016-01-11 16:00:39,2016-01-11 16:15:49,1,1.7,,,-73.98674774169922,40.72577667236328,-74.00923156738281,40.73196029663086,1,N,1,11.0,0.0,0.5,0.3,1.77,0.0,13.57 +1,2016-01-21 11:06:16,2016-01-21 11:20:51,1,2.2,,,-73.98981475830078,40.72011947631836,-73.981689453125,40.746395111083984,1,N,1,11.5,0.0,0.5,0.3,2.45,0.0,14.75 +2,2016-01-19 21:58:00,2016-01-19 22:01:57,1,0.72,,,-73.999755859375,40.738792419433594,-73.98844909667969,40.73442077636719,1,N,2,5.0,0.5,0.5,0.3,0.0,0.0,6.3 +1,2016-01-17 20:34:36,2016-01-17 20:51:18,1,4.5,,,-73.98750305175781,40.72460174560547,-73.94578552246094,40.7819938659668,1,N,1,16.0,0.5,0.5,0.3,1.0,0.0,18.3 +2,2016-01-19 22:26:25,2016-01-19 22:31:58,1,1.13,,,-73.99447631835938,40.7404899597168,-73.98590850830078,40.73114013671875,1,N,1,6.0,0.5,0.5,0.3,2.19,0.0,9.49 +2,2016-01-21 23:25:54,2016-01-21 23:31:44,1,1.01,,,-73.9879150390625,40.718994140625,-73.9758529663086,40.71662139892578,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +2,2016-01-21 18:30:17,2016-01-21 18:35:34,3,1.04,,,-73.9495849609375,40.772586822509766,-73.9525375366211,40.78236770629883,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-10 00:19:48,2016-01-10 00:26:21,2,0.74,,,-73.9622802734375,40.767356872558594,-73.96263122558594,40.77387237548828,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,8.3 +2,2016-01-25 21:19:51,2016-01-25 21:24:56,1,1.48,,,-73.99382781982422,40.762001037597656,-73.98151397705078,40.77956771850586,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-23 00:26:04,2016-01-23 00:34:40,1,1.6,,,-74.00818634033203,40.73768997192383,-74.0051498413086,40.71881866455078,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +1,2016-01-17 23:56:04,2016-01-17 23:57:35,3,0.3,,,-73.9900894165039,40.729496002197266,-73.99232482910156,40.72513198852539,1,N,1,3.5,0.5,0.5,0.3,0.96,0.0,5.76 +2,2016-01-14 08:58:46,2016-01-14 09:41:14,2,10.36,,,-73.87499237060547,40.77389144897461,-73.97553253173828,40.75516128540039,1,N,1,35.0,0.0,0.5,0.3,8.27,5.54,49.61 +1,2016-01-08 10:30:33,2016-01-08 10:38:42,1,1.1,,,-73.97945404052734,40.7616081237793,-73.99126434326172,40.750221252441406,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +2,2016-01-26 14:57:32,2016-01-26 15:04:27,1,0.85,,,-73.94374084472656,40.82548141479492,-73.93824005126953,40.826271057128906,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-28 09:27:23,2016-01-28 09:39:52,1,1.31,,,-73.96083068847656,40.76542663574219,-73.97240447998047,40.74961853027344,1,N,1,9.0,0.0,0.5,0.3,2.45,0.0,12.25 +2,2016-01-04 01:28:31,2016-01-04 01:49:08,6,13.13,,,-73.7767333984375,40.64527893066406,-73.65093231201172,40.66392135620117,1,N,1,37.0,0.5,0.5,0.3,0.0,0.0,38.3 +1,2016-01-13 19:53:44,2016-01-13 20:08:27,1,3.8,,,-73.98374938964844,40.75709915161133,-73.9638900756836,40.8038444519043,1,N,2,14.0,1.0,0.5,0.3,0.0,0.0,15.8 +2,2016-01-14 20:42:13,2016-01-14 20:44:45,1,0.77,,,-73.96553802490234,40.762699127197266,-73.95659637451172,40.766998291015625,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,6.96 +2,2016-01-07 18:33:15,2016-01-07 18:48:39,5,2.39,,,-73.97444152832031,40.7630500793457,-73.97395324707031,40.79180145263672,1,N,2,12.0,1.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-11 03:13:22,2016-01-11 03:24:28,3,4.85,,,-73.93309020996094,40.79907989501953,-73.91258239746094,40.8443489074707,1,N,2,15.0,0.5,0.5,0.3,0.0,0.0,16.3 +2,2016-01-28 21:36:43,2016-01-28 21:50:24,2,3.39,,,-73.995361328125,40.759830474853516,-73.96733093261719,40.803199768066406,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +2,2016-01-28 10:39:31,2016-01-28 11:04:14,1,1.27,,,-73.99015045166016,40.756736755371094,-73.99081420898438,40.74611282348633,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +1,2016-01-09 10:11:04,2016-01-09 10:18:35,1,1.6,,,-73.9511489868164,40.778751373291016,-73.9700698852539,40.76844024658203,1,N,1,7.5,0.0,0.5,0.3,1.65,0.0,9.95 +2,2016-01-09 21:29:04,2016-01-09 21:45:13,5,1.75,,,-73.99745178222656,40.744873046875,-73.99288177490234,40.72608947753906,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +2,2016-01-24 22:51:01,2016-01-24 22:58:44,2,1.92,,,-73.98051452636719,40.7366828918457,-73.9689712524414,40.75666809082031,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-28 23:33:05,2016-01-28 23:33:05,1,0.0,,,0.0,0.0,-73.95921325683594,40.76327896118164,2,N,1,52.0,0.0,0.5,0.3,10.56,0.0,63.36 +2,2016-01-07 10:33:59,2016-01-07 10:45:24,2,3.66,,,-73.98077392578125,40.72129821777344,-73.97626495361328,40.75755310058594,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-07 14:55:27,2016-01-07 15:02:58,1,0.99,,,-73.96925354003906,40.800811767578125,-73.96512603759766,40.791015625,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-15 09:28:57,2016-01-15 09:56:08,1,2.88,,,-73.9957275390625,40.759185791015625,-73.96998596191406,40.78550338745117,1,N,1,18.0,0.0,0.5,0.3,3.76,0.0,22.56 +1,2016-01-06 19:30:28,2016-01-06 19:50:41,1,5.3,,,-73.99141693115234,40.74909973144531,-73.96173095703125,40.800453186035156,1,N,2,19.5,1.0,0.5,0.3,0.0,0.0,21.3 +2,2016-01-01 17:03:13,2016-01-01 17:16:36,2,3.53,,,-73.96034240722656,40.773048400878906,-73.95623016357422,40.74761962890625,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,17.16 +2,2016-01-05 19:58:38,2016-01-05 20:01:29,1,0.43,,,-73.97422790527344,40.76261901855469,-73.96798706054688,40.761470794677734,1,N,2,4.0,0.5,0.5,0.3,0.0,0.0,5.3 +1,2016-01-14 19:08:37,2016-01-14 19:19:56,1,1.7,,,-73.98372650146484,40.76547622680664,-73.97529602050781,40.787662506103516,1,N,1,9.5,1.0,0.5,0.3,2.25,0.0,13.55 +1,2016-01-28 06:21:26,2016-01-28 06:25:30,1,1.3,,,-73.96742248535156,40.76009750366211,-73.95582580566406,40.77642059326172,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +2,2016-01-06 20:09:43,2016-01-06 20:16:56,1,0.91,,,-73.99974060058594,40.718387603759766,-73.9847183227539,40.71527099609375,1,N,1,6.5,0.5,0.5,0.3,2.34,0.0,10.14 +1,2016-01-16 23:47:48,2016-01-16 23:57:21,1,1.6,,,-74.00257873535156,40.73966598510742,-73.98146057128906,40.74113845825195,1,N,4,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +1,2016-01-19 22:57:55,2016-01-19 23:05:45,2,1.5,,,-73.97953033447266,40.77121353149414,-73.95909118652344,40.77229690551758,1,N,1,8.0,0.5,0.5,0.3,1.0,0.0,10.3 +1,2016-01-30 17:27:58,2016-01-30 17:42:55,1,2.5,,,-73.95356750488281,40.770511627197266,-73.982666015625,40.7652702331543,1,N,1,12.0,0.0,0.5,0.3,3.2,0.0,16.0 +2,2016-01-11 16:06:35,2016-01-11 16:20:24,5,2.45,,,-73.96661376953125,40.761531829833984,-73.96896362304688,40.787662506103516,1,N,2,11.5,1.0,0.5,0.3,0.0,0.0,13.3 +2,2016-01-17 12:14:57,2016-01-17 12:20:02,1,1.46,,,-73.97823333740234,40.7542839050293,-73.96455383300781,40.77128219604492,1,N,1,6.5,0.0,0.5,0.3,1.0,0.0,8.3 +2,2016-01-21 12:01:44,2016-01-21 12:05:35,1,0.87,,,-73.95355987548828,40.791019439697266,-73.96672821044922,40.793548583984375,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-03 15:30:31,2016-01-03 15:38:20,2,1.3,,,-73.98947143554688,40.73675537109375,-74.00651550292969,40.736976623535156,1,N,1,7.5,0.0,0.5,0.3,1.5,0.0,9.8 +1,2016-01-01 15:31:01,2016-01-01 15:41:52,1,2.1,,,-73.99629974365234,40.724090576171875,-74.00462341308594,40.74627685546875,1,N,1,9.5,0.0,0.5,0.3,2.0,0.0,12.3 +2,2016-01-05 23:20:38,2016-01-05 23:24:09,2,0.64,,,-73.99593353271484,40.74443817138672,-73.99393463134766,40.73788833618164,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +1,2016-01-04 06:56:39,2016-01-04 06:59:31,1,0.6,,,-73.9723892211914,40.749237060546875,-73.97588348388672,40.74153518676758,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-02 23:25:37,2016-01-02 23:28:44,2,0.4,,,-73.92415618896484,40.752716064453125,-73.9327621459961,40.75262451171875,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-01 14:21:12,2016-01-01 14:27:22,1,1.09,,,-73.99799346923828,40.745811462402344,-74.00283813476562,40.756351470947266,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-08 14:58:32,2016-01-08 15:04:15,1,0.8,,,-73.96623992919922,40.76486587524414,-73.96207427978516,40.7738151550293,1,N,1,6.0,0.0,0.5,0.3,2.0,0.0,8.8 +1,2016-01-01 07:07:35,2016-01-01 07:22:57,1,3.8,,,-73.98777770996094,40.71959686279297,-73.92806243896484,40.70196533203125,1,N,1,14.5,0.0,0.5,0.3,3.05,0.0,18.35 +2,2016-01-19 23:41:13,2016-01-19 23:44:01,4,0.96,,,-73.96212005615234,40.76771926879883,-73.95262908935547,40.77833938598633,1,N,1,5.0,0.5,0.5,0.3,1.26,0.0,7.56 +2,2016-01-26 05:16:59,2016-01-26 05:22:02,1,1.17,,,-73.98625946044922,40.740257263183594,-73.97988891601562,40.75415802001953,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,8.3 +1,2016-01-10 11:22:00,2016-01-10 11:29:56,1,1.2,,,-73.95219421386719,40.78371047973633,-73.9529037475586,40.769100189208984,1,N,1,7.0,0.0,0.5,0.3,1.0,0.0,8.8 +1,2016-01-25 09:33:09,2016-01-25 09:53:03,1,0.8,,,-73.96575927734375,40.758506774902344,-73.97749328613281,40.75760269165039,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,15.95 +2,2016-01-12 18:15:29,2016-01-12 18:23:44,2,1.22,,,-73.97254943847656,40.75844955444336,-73.98323059082031,40.74367904663086,1,N,1,7.5,1.0,0.5,0.3,1.86,0.0,11.16 +1,2016-01-13 15:26:10,2016-01-13 15:36:25,1,0.9,,,-73.97587585449219,40.75190353393555,-73.97941589355469,40.75798034667969,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,11.0 +2,2016-01-17 16:36:40,2016-01-17 16:42:44,1,0.46,,,-73.91996765136719,40.847381591796875,-73.92202758789062,40.84096145629883,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-10 00:29:47,2016-01-10 00:41:19,4,3.57,,,-73.9951171875,40.72153854370117,-73.94991302490234,40.722171783447266,1,N,1,13.0,0.5,0.5,0.3,4.29,0.0,18.59 +1,2016-01-05 18:21:46,2016-01-05 18:34:37,1,1.5,,,-73.97357940673828,40.751792907714844,-73.95875549316406,40.76902770996094,1,N,1,10.0,1.0,0.5,0.3,3.5,0.0,15.3 +2,2016-01-26 22:39:36,2016-01-26 22:55:50,1,4.84,,,-74.00208282470703,40.72956848144531,-73.95523834228516,40.69484329223633,1,N,1,16.5,0.5,0.5,0.3,2.0,0.0,19.8 +1,2016-01-01 15:37:40,2016-01-01 15:59:10,2,3.9,,,0.0,0.0,0.0,0.0,1,N,1,17.5,0.0,0.5,0.3,4.55,0.0,22.85 +2,2016-01-21 13:00:26,2016-01-21 13:03:49,5,0.7,,,-73.98133087158203,40.78114318847656,-73.97566986083984,40.78927230834961,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-09 03:59:34,2016-01-09 04:06:38,1,1.5,,,-73.99374389648438,40.727352142333984,-74.0107421875,40.72352981567383,1,N,1,7.5,0.5,0.5,0.3,1.0,0.0,9.8 +2,2016-01-09 22:38:06,2016-01-09 22:50:28,2,1.86,,,-73.98477172851562,40.75907897949219,-74.0047607421875,40.7418098449707,1,N,2,9.5,0.5,0.5,0.3,0.0,0.0,10.8 +2,2016-01-25 18:06:15,2016-01-25 18:45:46,5,3.25,,,-73.98136901855469,40.78269577026367,-73.97904968261719,40.74934005737305,1,N,2,23.5,1.0,0.5,0.3,0.0,0.0,25.3 +2,2016-01-22 19:43:18,2016-01-22 19:49:10,2,0.76,,,-73.9876480102539,40.73844909667969,-73.98284912109375,40.731380462646484,1,N,1,6.0,1.0,0.5,0.3,1.56,0.0,9.36 +2,2016-01-16 15:27:58,2016-01-16 15:35:23,1,1.62,,,-74.00608825683594,40.735042572021484,-73.9916000366211,40.754940032958984,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +2,2016-01-08 14:53:48,2016-01-08 15:04:18,1,1.18,,,-73.98048400878906,40.746620178222656,-73.99870300292969,40.754478454589844,1,N,1,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-23 02:48:29,2016-01-23 02:55:51,4,1.13,,,-73.92032623291016,40.76628112792969,-73.9300537109375,40.77307891845703,1,N,2,6.5,0.5,0.5,0.3,0.0,0.0,7.8 +1,2016-01-20 10:42:35,2016-01-20 11:04:10,1,6.7,,,-73.96749877929688,40.76578903198242,-74.01607513427734,40.700294494628906,1,N,1,24.0,0.0,0.5,0.3,2.0,0.0,26.8 +2,2016-01-25 19:54:10,2016-01-25 20:14:11,1,3.96,,,-73.96781158447266,40.76042938232422,-73.9676513671875,40.80278396606445,1,N,1,16.0,1.0,0.5,0.3,3.0,0.0,20.8 +1,2016-01-15 23:13:07,2016-01-15 23:36:15,1,9.5,,,-73.86296844482422,40.769412994384766,-73.96782684326172,40.79033279418945,1,N,1,29.0,0.5,0.5,0.3,5.97,5.54,41.81 +2,2016-01-08 14:38:47,2016-01-08 14:48:30,2,1.2,,,-73.99407958984375,40.741085052490234,-73.97682189941406,40.73908996582031,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-16 18:06:50,2016-01-16 18:14:42,1,1.35,,,-73.95770263671875,40.800758361816406,-73.96025085449219,40.81406021118164,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-29 23:42:23,2016-01-29 23:53:33,1,1.6,,,-73.97058868408203,40.7625617980957,-73.98677062988281,40.74691390991211,1,N,1,9.0,0.5,0.5,0.3,1.5,0.0,11.8 +1,2016-01-27 20:45:33,2016-01-27 20:53:58,1,1.6,,,-73.97490692138672,40.749794006347656,-73.96481323242188,40.769466400146484,1,N,1,7.5,0.5,0.5,0.3,1.75,0.0,10.55 +1,2016-01-14 18:21:20,2016-01-14 18:25:55,2,0.5,,,-73.98695373535156,40.734073638916016,-73.98782348632812,40.73930740356445,1,N,1,5.0,1.0,0.5,0.3,1.35,0.0,8.15 +1,2016-01-02 19:15:56,2016-01-02 19:24:45,1,1.3,,,-73.9996109008789,40.74409866333008,-73.99616241455078,40.758548736572266,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-04 07:16:15,2016-01-04 07:20:27,1,0.5,,,-73.97700500488281,40.75670623779297,-73.98133850097656,40.76103973388672,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-28 00:39:05,2016-01-28 01:02:33,1,9.82,,,-73.9909896850586,40.68594741821289,-73.89400482177734,40.77171325683594,1,N,2,30.5,0.5,0.5,0.3,0.0,0.0,31.8 +1,2016-01-06 19:17:20,2016-01-06 19:50:25,1,6.8,,,-73.9845199584961,40.74262237548828,-73.95687103271484,40.65772247314453,1,N,2,26.0,1.0,0.5,0.3,0.0,0.0,27.8 +1,2016-01-15 18:06:35,2016-01-15 18:20:45,2,2.0,,,-73.95407104492188,40.7640266418457,-73.97747802734375,40.75300979614258,1,N,2,10.5,1.0,0.5,0.3,0.0,0.0,12.3 +2,2016-01-30 17:32:31,2016-01-30 17:41:35,2,1.37,,,-73.98920440673828,40.74213790893555,-73.99099731445312,40.754539489746094,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +1,2016-01-24 20:12:27,2016-01-24 20:30:03,1,3.1,,,-73.98944854736328,40.73001480102539,-73.95858001708984,40.764183044433594,1,N,1,13.5,0.5,0.5,0.3,2.95,0.0,17.75 +2,2016-01-08 09:17:00,2016-01-08 09:26:09,1,1.62,,,-74.0071792602539,40.70502853393555,-74.01396942138672,40.714988708496094,1,N,1,8.5,0.0,0.5,0.3,2.32,0.0,11.62 +2,2016-01-14 06:38:12,2016-01-14 06:51:39,1,2.85,,,-73.9397964477539,40.79418182373047,-73.94277954101562,40.82332229614258,1,N,1,12.0,0.0,0.5,0.3,2.0,0.0,14.8 +1,2016-01-29 22:50:08,2016-01-29 23:06:06,1,3.8,,,-73.98978424072266,40.75700759887695,-74.00995635986328,40.720008850097656,1,N,1,14.5,0.5,0.5,0.3,3.95,0.0,19.75 +1,2016-01-06 15:24:09,2016-01-06 16:12:28,2,15.7,,,-73.80134582519531,40.67363357543945,-73.9752426147461,40.76536560058594,2,Y,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-06 11:51:05,2016-01-06 12:11:44,1,3.73,,,-73.97384643554688,40.762969970703125,-73.96778106689453,40.80112838745117,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-18 20:07:18,2016-01-18 20:14:47,2,1.36,,,-73.99919128417969,40.73347854614258,-73.97814178466797,40.7292594909668,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +1,2016-01-13 18:59:06,2016-01-13 19:02:40,1,0.6,,,-73.98763275146484,40.7497444152832,-73.97806549072266,40.74569320678711,1,N,1,4.5,1.0,0.5,0.3,1.0,0.0,7.3 +2,2016-01-10 16:44:55,2016-01-10 16:48:55,1,0.69,,,-74.00983428955078,40.7056884765625,-74.00958251953125,40.712608337402344,1,N,1,4.5,0.0,0.5,0.3,1.06,0.0,6.36 +2,2016-01-03 13:46:39,2016-01-03 13:54:36,2,1.47,,,-73.98082733154297,40.78158950805664,-73.98973846435547,40.76240158081055,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-08 20:19:29,2016-01-08 20:30:06,1,1.8,,,-73.97203826904297,40.757511138916016,-73.99461364746094,40.75012969970703,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +2,2016-01-11 10:54:56,2016-01-11 11:00:03,4,0.69,,,-74.00455474853516,40.752227783203125,-74.00348663330078,40.75865936279297,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-13 23:00:33,2016-01-13 23:04:56,1,0.68,,,-73.98486328125,40.69697952270508,-73.98717498779297,40.692386627197266,1,N,1,5.0,0.5,0.5,0.3,1.0,0.0,7.3 +1,2016-01-11 16:13:21,2016-01-11 16:29:19,1,3.9,,,-74.00276184082031,40.76060485839844,-74.00804901123047,40.709564208984375,1,N,4,15.5,1.0,0.5,0.3,0.0,0.0,17.3 +2,2016-01-21 23:32:45,2016-01-21 23:37:22,1,0.94,,,-73.98417663574219,40.76483917236328,-73.99000549316406,40.75739669799805,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-22 09:26:07,2016-01-22 09:30:14,1,0.8,,,-73.96739959716797,40.793331146240234,-73.95590209960938,40.787906646728516,1,N,1,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-12 14:37:56,2016-01-12 15:00:49,1,2.86,,,-73.96902465820312,40.763084411621094,-73.96778106689453,40.79390335083008,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +1,2016-01-19 15:01:17,2016-01-19 15:59:32,2,19.3,,,-73.7767333984375,40.645225524902344,-73.98847961425781,40.758914947509766,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-08 07:11:15,2016-01-08 07:25:58,1,4.2,,,-74.00289154052734,40.76077651977539,-73.95623779296875,40.78815841674805,1,N,1,16.0,0.0,0.5,0.3,3.35,0.0,20.15 +2,2016-01-01 12:00:44,2016-01-01 12:11:46,1,2.94,,,-73.95575714111328,40.76420974731445,-73.99391174316406,40.75659942626953,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,15.38 +2,2016-01-30 13:41:19,2016-01-30 13:52:16,1,1.26,,,-73.99699401855469,40.7573356628418,-73.9857177734375,40.77294158935547,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-30 09:42:19,2016-01-30 09:50:35,5,1.65,,,-73.96607208251953,40.765140533447266,-73.94844055175781,40.7740592956543,1,N,2,8.0,0.0,0.5,0.3,0.0,0.0,8.8 +2,2016-01-14 02:02:35,2016-01-14 02:29:38,1,9.63,,,-73.98455047607422,40.748348236083984,-73.90586853027344,40.694183349609375,1,N,1,29.5,0.5,0.5,0.3,6.0,5.54,42.34 +1,2016-01-22 23:08:12,2016-01-22 23:12:29,1,0.5,,,-73.99531555175781,40.72073745727539,-73.99150848388672,40.72686767578125,1,N,1,4.5,0.5,0.5,0.3,1.15,0.0,6.95 +2,2016-01-11 19:51:05,2016-01-11 19:57:06,1,1.15,,,-73.97879028320312,40.75102996826172,-73.9671630859375,40.76136016845703,1,N,2,6.0,1.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-20 19:17:32,2016-01-20 19:41:12,1,9.3,,,-73.99415588378906,40.75096130371094,-73.87136840820312,40.774169921875,1,Y,1,29.0,1.0,0.5,0.3,7.25,5.54,43.59 +2,2016-01-22 23:16:06,2016-01-22 23:30:07,1,2.32,,,-73.97950744628906,40.78471374511719,-73.99530029296875,40.75466537475586,1,N,1,11.0,0.5,0.5,0.3,3.08,0.0,15.38 +2,2016-01-20 11:00:21,2016-01-20 11:40:03,6,9.06,,,-73.87069702148438,40.77360153198242,-73.98764038085938,40.75886917114258,1,N,2,35.0,0.0,0.5,0.3,0.0,5.54,41.34 +1,2016-01-03 10:54:16,2016-01-03 11:03:14,2,2.6,,,-73.98389434814453,40.76284408569336,-73.98946380615234,40.732513427734375,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-09 21:52:23,2016-01-09 21:58:01,1,1.7,,,-73.96526336669922,40.75913619995117,-73.9486312866211,40.777732849121094,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +1,2016-01-07 07:58:14,2016-01-07 08:11:44,1,1.7,,,-73.94789123535156,40.778785705566406,-73.96565246582031,40.76881408691406,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-09 19:31:07,2016-01-09 19:36:11,2,0.77,,,-73.97725677490234,40.776790618896484,-73.98439025878906,40.769630432128906,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +1,2016-01-06 20:48:58,2016-01-06 20:52:49,1,0.6,,,-73.99640655517578,40.72384262084961,-74.00303649902344,40.727027893066406,1,N,2,4.5,0.5,0.5,0.3,0.0,0.0,5.8 +2,2016-01-03 20:45:58,2016-01-03 20:48:29,1,0.89,,,-73.97760009765625,40.74627685546875,-73.96944427490234,40.7565803527832,1,N,1,4.5,0.5,0.5,0.3,1.16,0.0,6.96 +2,2016-01-25 06:28:46,2016-01-25 06:35:33,6,0.86,,,-73.94227600097656,40.791175842285156,-73.95258331298828,40.789405822753906,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-09 00:19:10,2016-01-09 00:24:27,1,0.98,,,-73.95623016357422,40.771644592285156,-73.95828247070312,40.76055145263672,1,N,2,6.0,0.5,0.5,0.3,0.0,0.0,7.3 +2,2016-01-26 11:26:59,2016-01-26 11:38:55,1,1.23,,,-73.95419311523438,40.787200927734375,-73.95899963378906,40.775081634521484,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-04 09:23:41,2016-01-04 10:12:40,1,19.5,,,-73.95942687988281,40.769287109375,-74.1778335571289,40.69014358520508,3,N,1,73.0,0.0,0.0,0.3,17.15,12.5,102.95 +2,2016-01-01 05:13:43,2016-01-01 05:26:56,1,3.65,,,-73.95832061767578,40.713348388671875,-73.90404510498047,40.7302360534668,1,N,1,13.5,0.5,0.5,0.3,5.0,0.0,19.8 +1,2016-01-13 06:54:41,2016-01-13 07:09:32,1,3.8,,,-74.00806427001953,40.7075080871582,-73.98421478271484,40.7553596496582,1,N,1,14.0,0.0,0.5,0.3,3.0,0.0,17.8 +2,2016-01-10 11:41:58,2016-01-10 12:09:35,1,9.89,,,-73.97900390625,40.760501861572266,-73.87200164794922,40.77452087402344,1,N,2,31.5,0.0,0.5,0.3,0.0,5.54,37.84 +1,2016-01-07 20:02:31,2016-01-07 20:07:12,1,0.8,,,-73.97417449951172,40.742881774902344,-73.97449493408203,40.75125503540039,1,N,2,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +1,2016-01-25 07:21:13,2016-01-25 07:30:25,1,1.4,,,-73.95882415771484,40.76401901245117,-73.97459411621094,40.75682830810547,1,N,1,8.0,0.0,0.5,0.3,1.4,0.0,10.2 +2,2016-01-01 03:00:43,2016-01-01 03:13:08,1,3.02,,,-73.9536361694336,40.77094268798828,-73.98775482177734,40.748844146728516,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +1,2016-01-21 17:32:21,2016-01-21 17:35:46,1,0.7,,,-73.97693634033203,40.750221252441406,-73.97687530517578,40.743289947509766,1,N,2,4.5,1.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-12 14:22:41,2016-01-12 14:45:10,1,2.65,,,-74.00255584716797,40.73052215576172,-73.98703002929688,40.76112747192383,1,N,2,15.0,0.0,0.5,0.3,0.0,0.0,15.8 +2,2016-01-08 03:52:24,2016-01-08 04:17:05,1,5.55,,,-73.9718017578125,40.76263427734375,-73.91705322265625,40.76484680175781,1,N,1,22.0,0.5,0.5,0.3,3.0,0.0,26.3 +2,2016-01-26 07:00:25,2016-01-26 07:20:56,5,4.42,,,-73.98898315429688,40.73659896850586,-73.97077941894531,40.68775177001953,1,N,1,17.0,0.0,0.5,0.3,2.5,0.0,20.3 +1,2016-01-17 19:56:31,2016-01-17 20:38:53,2,20.9,,,-73.7768783569336,40.64531326293945,-73.99903869628906,40.68696212768555,1,N,1,57.0,1.0,0.5,0.3,5.0,0.0,63.8 +1,2016-01-15 06:58:03,2016-01-15 07:10:03,2,1.7,,,-73.94145202636719,40.79867172241211,-73.95720672607422,40.81593322753906,1,Y,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-11 19:03:44,2016-01-11 19:13:45,2,1.79,,,-73.96923828125,40.769378662109375,-73.98835754394531,40.759090423583984,1,N,2,9.0,1.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-02 14:05:29,2016-01-02 14:17:05,1,2.6,,,-73.9965591430664,40.7254638671875,-74.00495910644531,40.7520751953125,1,N,2,12.0,0.0,0.5,0.3,0.0,0.0,12.8 +2,2016-01-09 17:46:56,2016-01-09 17:55:41,5,1.01,,,-73.9912338256836,40.74980926513672,-73.9774398803711,40.742218017578125,1,N,1,7.0,0.0,0.5,0.3,1.5,0.0,9.3 +2,2016-01-22 12:33:10,2016-01-22 12:41:47,1,0.72,,,-73.97505187988281,40.76513671875,-73.96495056152344,40.76490783691406,1,N,1,7.0,0.0,0.5,0.3,1.29,0.0,9.09 +1,2016-01-08 09:10:13,2016-01-08 09:20:21,1,1.6,,,-73.9796371459961,40.739532470703125,-73.99547576904297,40.72323226928711,1,N,1,8.5,0.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-19 17:53:16,2016-01-19 18:00:28,3,1.03,,,-73.98719024658203,40.75054168701172,-73.9743423461914,40.75154113769531,1,N,1,6.5,1.0,0.5,0.3,2.49,0.0,10.79 +1,2016-01-18 08:11:08,2016-01-18 08:25:35,2,3.4,,,-73.92961883544922,40.762386322021484,-73.9589614868164,40.773128509521484,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +2,2016-01-07 11:25:50,2016-01-07 11:52:38,1,17.87,,,-73.9990234375,40.75886535644531,-74.1817626953125,40.68773651123047,3,N,2,65.5,0.0,0.0,0.3,0.0,12.5,78.3 +1,2016-01-28 19:28:01,2016-01-28 19:40:45,1,1.0,,,-73.9912338256836,40.7503662109375,-73.97882080078125,40.740821838378906,1,N,1,9.0,1.0,0.5,0.3,2.15,0.0,12.95 +1,2016-01-17 09:55:11,2016-01-17 10:06:32,1,2.1,,,-73.97940826416016,40.73951721191406,-74.00019073486328,40.7202033996582,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +2,2016-01-30 20:59:54,2016-01-30 21:04:17,2,1.07,,,-73.98381805419922,40.75440979003906,-73.96965789794922,40.75382995605469,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-18 03:58:03,2016-01-18 04:15:44,2,5.6,,,-73.98701477050781,40.7643928527832,-73.93956756591797,40.82768249511719,1,N,1,18.0,0.5,0.5,0.3,3.85,0.0,23.15 +2,2016-01-13 22:37:39,2016-01-13 22:55:31,1,2.7,,,-73.94407653808594,40.77586364746094,-73.9797134399414,40.781185150146484,1,N,1,13.5,0.5,0.5,0.3,2.96,0.0,17.76 +1,2016-01-15 07:40:07,2016-01-15 07:46:24,1,1.3,,,-73.97816467285156,40.73666763305664,-73.97686004638672,40.75190353393555,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-22 11:29:39,2016-01-22 11:45:49,2,2.6,,,-73.97633361816406,40.775699615478516,-73.96492767333984,40.80638885498047,1,N,2,13.5,0.0,0.5,0.3,0.0,0.0,14.3 +1,2016-01-15 12:53:04,2016-01-15 13:11:19,1,3.0,,,-74.01144409179688,40.70983123779297,-73.99201202392578,40.74918746948242,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +1,2016-01-21 22:26:11,2016-01-21 23:07:27,1,3.8,,,-73.95469665527344,40.769771575927734,-73.97354888916016,40.73656463623047,1,N,1,25.0,0.5,0.5,0.3,4.0,0.0,30.3 +2,2016-01-07 17:58:56,2016-01-07 18:21:28,2,2.39,,,-73.9595718383789,40.780391693115234,-73.9861068725586,40.75674819946289,1,N,2,15.0,1.0,0.5,0.3,0.0,0.0,16.8 +2,2016-01-28 12:52:00,2016-01-28 13:00:03,2,0.87,,,-73.95427703857422,40.76694107055664,-73.95294189453125,40.77582931518555,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-30 23:41:07,2016-01-30 23:49:05,1,1.54,,,-73.94189453125,40.714046478271484,-73.92959594726562,40.69758987426758,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-14 06:46:52,2016-01-14 06:49:21,2,0.48,,,-73.93074035644531,40.74464797973633,-73.93222045898438,40.73811340332031,1,N,1,4.0,0.0,0.5,0.3,3.0,0.0,7.8 +2,2016-01-04 18:40:20,2016-01-04 18:43:01,2,0.46,,,-73.9941177368164,40.75114059448242,-73.98993682861328,40.75664138793945,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-14 16:23:43,2016-01-14 16:30:37,3,1.34,,,-73.96630096435547,40.794471740722656,-73.9582290649414,40.782379150390625,1,N,1,7.0,1.0,0.5,0.3,1.0,0.0,9.8 +2,2016-01-10 10:50:47,2016-01-10 10:54:52,1,1.19,,,-73.99099731445312,40.73406219482422,-74.00174713134766,40.71964645385742,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +2,2016-01-17 19:58:15,2016-01-17 20:33:10,1,18.05,,,-73.78362274169922,40.648658752441406,-73.9842300415039,40.69839096069336,1,N,1,48.5,0.0,0.5,0.3,5.0,0.0,54.3 +2,2016-01-15 21:27:40,2016-01-15 21:33:21,1,1.1,,,-73.98030090332031,40.76588821411133,-73.98977661132812,40.751609802246094,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,8.3 +2,2016-01-18 10:59:18,2016-01-18 11:11:07,1,2.08,,,-73.96131134033203,40.79863357543945,-73.95660400390625,40.78907775878906,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-30 18:43:18,2016-01-30 19:04:58,1,1.71,,,-73.99323272705078,40.73827362060547,-73.9955825805664,40.723331451416016,1,N,2,14.0,0.0,0.5,0.3,0.0,0.0,14.8 +1,2016-01-03 18:39:36,2016-01-03 18:46:35,1,1.2,,,-73.97488403320312,40.75738525390625,-73.98690032958984,40.74941635131836,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-20 13:16:54,2016-01-20 13:23:05,2,0.42,,,-73.97554779052734,40.754859924316406,-73.9714126586914,40.76076889038086,1,N,1,5.5,0.0,0.5,0.3,1.26,0.0,7.56 +1,2016-01-17 22:36:17,2016-01-17 22:48:16,2,2.9,,,-73.99874877929688,40.7231330871582,-73.98176574707031,40.756900787353516,1,N,2,11.5,0.5,0.5,0.3,0.0,0.0,12.8 +2,2016-01-29 17:00:07,2016-01-29 17:13:14,1,1.64,,,-73.98494720458984,40.724212646484375,-73.99940490722656,40.738468170166016,1,N,2,10.0,1.0,0.5,0.3,0.0,0.0,11.8 +2,2016-01-30 04:30:07,2016-01-30 04:37:24,5,1.9,,,-73.97135162353516,40.762481689453125,-73.95054626464844,40.77642822265625,1,N,1,8.0,0.5,0.5,0.3,1.86,0.0,11.16 +1,2016-01-15 07:22:27,2016-01-15 07:37:33,1,3.0,,,-73.99310302734375,40.755279541015625,-74.00823211669922,40.722076416015625,1,N,1,12.5,0.0,0.5,0.3,2.65,0.0,15.95 +2,2016-01-11 10:24:35,2016-01-11 10:39:26,1,3.16,,,-73.96556854248047,40.77172088623047,-73.94088745117188,40.74602127075195,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +2,2016-01-16 21:20:09,2016-01-16 21:35:54,1,2.74,,,-73.99024200439453,40.72906494140625,-73.9654769897461,40.763092041015625,1,N,1,12.5,0.5,0.5,0.3,2.76,0.0,16.56 +2,2016-01-27 06:44:33,2016-01-27 07:40:59,5,13.18,,,-73.79000854492188,40.6468620300293,-73.96053314208984,40.65896987915039,1,N,1,45.0,0.0,0.5,0.3,9.16,0.0,54.96 +1,2016-01-07 06:52:57,2016-01-07 07:09:43,1,3.5,,,-74.00889587402344,40.72235107421875,-73.9773941040039,40.75174331665039,1,N,2,14.5,0.0,0.5,0.3,0.0,0.0,15.3 +1,2016-01-17 17:31:51,2016-01-17 17:41:11,3,1.5,,,-73.958984375,40.765830993652344,-73.97046661376953,40.75502014160156,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-12 13:21:25,2016-01-12 13:28:36,1,1.6,,,0.0,0.0,0.0,0.0,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-19 01:37:38,2016-01-19 01:37:44,1,0.26,,,0.0,0.0,0.0,0.0,5,N,2,119.0,0.0,0.0,0.3,0.0,0.0,119.3 +1,2016-01-16 19:18:31,2016-01-16 19:28:43,1,1.7,,,-73.97527313232422,40.75743103027344,-73.95494079589844,40.769195556640625,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +1,2016-01-27 14:45:16,2016-01-27 14:48:58,2,0.4,,,-74.01579284667969,40.71184158325195,-74.01664733886719,40.70704650878906,1,N,1,4.5,0.0,0.5,0.3,1.0,0.0,6.3 +2,2016-01-29 09:09:05,2016-01-29 09:20:31,6,1.48,,,-73.95878601074219,40.780738830566406,-73.96903228759766,40.763755798339844,1,N,2,9.0,0.0,0.5,0.3,0.0,0.0,9.8 +2,2016-01-17 02:58:05,2016-01-17 03:04:49,1,0.95,,,-73.99276733398438,40.718788146972656,-73.98023986816406,40.72224044799805,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +2,2016-01-27 07:44:29,2016-01-27 07:53:18,2,0.82,,,-73.97206115722656,40.756507873535156,-73.97526550292969,40.75213623046875,1,N,1,7.0,0.0,0.5,0.3,1.95,0.0,9.75 +2,2016-01-09 22:38:54,2016-01-09 22:55:25,1,3.27,,,-73.97596740722656,40.79153823852539,-73.97234344482422,40.75809097290039,1,N,1,14.0,0.5,0.5,0.3,4.59,0.0,19.89 +1,2016-01-11 06:56:05,2016-01-11 07:08:47,1,1.6,,,-73.98674774169922,40.74578094482422,-74.0037841796875,40.75919723510742,1,N,1,10.0,0.0,0.5,0.3,2.15,0.0,12.95 +2,2016-01-25 19:37:55,2016-01-25 19:51:28,5,1.84,,,-73.9881820678711,40.737850189208984,-73.9720230102539,40.76005172729492,1,N,1,10.5,1.0,0.5,0.3,2.46,0.0,14.76 +2,2016-01-29 21:50:24,2016-01-29 21:58:50,1,0.95,,,-73.98853302001953,40.73499298095703,-74.00403594970703,40.74040985107422,1,N,1,7.0,0.5,0.5,0.3,10.0,0.0,18.3 +2,2016-01-28 22:18:15,2016-01-28 22:23:38,1,0.85,,,-73.97383117675781,40.75762176513672,-73.98619842529297,40.76240539550781,1,N,1,5.5,0.5,0.5,0.3,0.0,0.0,6.8 +2,2016-01-19 21:54:36,2016-01-19 22:14:45,1,9.18,,,-73.96009063720703,40.779640197753906,-74.01596069335938,40.71519088745117,1,N,1,27.5,0.5,0.5,0.3,8.64,0.0,37.44 +1,2016-01-16 15:44:06,2016-01-16 15:55:58,2,1.9,,,-73.95645141601562,40.76689910888672,-73.97503662109375,40.75225830078125,1,N,2,10.0,0.0,0.5,0.3,0.0,0.0,10.8 +1,2016-01-20 12:31:10,2016-01-20 12:50:59,1,2.2,,,-73.98222351074219,40.745399475097656,-73.98188781738281,40.768409729003906,1,N,1,13.5,0.0,0.5,0.3,2.85,0.0,17.15 +1,2016-01-07 16:59:06,2016-01-07 17:10:39,2,1.5,,,-74.00862884521484,40.74543762207031,-73.9943618774414,40.732086181640625,1,N,1,9.0,1.0,0.5,0.3,1.0,0.0,11.8 +2,2016-01-12 23:01:06,2016-01-12 23:06:18,1,0.82,,,-73.98615264892578,40.756736755371094,-73.98479461669922,40.74864196777344,1,N,1,5.5,0.5,0.5,0.3,1.0,0.0,7.8 +2,2016-01-29 16:55:56,2016-01-29 17:11:27,1,2.42,,,-73.87313079833984,40.7741584777832,-73.90869140625,40.77507019042969,1,N,1,12.0,1.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-10 20:36:57,2016-01-10 20:48:58,5,3.42,,,-73.95233917236328,40.78388977050781,-73.98246002197266,40.74100112915039,1,N,1,12.5,0.5,0.5,0.3,3.45,0.0,17.25 +2,2016-01-27 17:06:14,2016-01-27 17:16:41,1,1.37,,,-73.98162078857422,40.779945373535156,-73.97039031982422,40.76800537109375,1,N,1,8.0,1.0,0.5,0.3,1.96,0.0,11.76 +1,2016-01-30 08:33:00,2016-01-30 08:36:46,1,0.6,,,-73.97775268554688,40.753116607666016,-73.9811782836914,40.75880432128906,1,N,1,4.5,0.0,0.5,0.3,1.05,0.0,6.35 +1,2016-01-05 18:48:21,2016-01-05 19:01:53,1,3.0,,,-73.98910522460938,40.74220275878906,-73.98462677001953,40.774688720703125,1,N,1,12.0,1.0,0.5,0.3,2.75,0.0,16.55 +2,2016-01-20 15:05:35,2016-01-20 15:20:35,1,1.86,,,-73.95805358886719,40.77626037597656,-73.97541046142578,40.75263977050781,1,N,1,11.0,0.0,0.5,0.3,2.36,0.0,14.16 +2,2016-01-07 08:57:41,2016-01-07 09:15:28,5,2.48,,,-73.98352813720703,40.771148681640625,-73.9840087890625,40.74501037597656,1,N,2,13.0,0.0,0.5,0.3,0.0,0.0,13.8 +2,2016-01-13 08:39:33,2016-01-13 08:51:13,5,1.75,,,-73.97895812988281,40.753440856933594,-73.98209381103516,40.77265167236328,1,N,1,9.5,0.0,0.5,0.3,3.0,0.0,13.3 +2,2016-01-17 18:20:52,2016-01-17 18:26:46,1,0.77,,,-73.98902893066406,40.74898910522461,-73.98490142822266,40.75794982910156,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-09 20:50:28,2016-01-09 21:01:48,1,1.56,,,-73.99079132080078,40.72437286376953,-74.00687408447266,40.7189826965332,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +2,2016-01-09 22:13:25,2016-01-09 22:25:59,1,2.4,,,-73.98711395263672,40.7390251159668,-73.96540832519531,40.768795013427734,1,N,1,11.0,0.5,0.5,0.3,3.08,0.0,15.38 +1,2016-01-09 20:10:58,2016-01-09 20:26:48,1,3.3,,,-73.97731018066406,40.74946975708008,-73.98816680908203,40.72317886352539,1,N,2,13.0,0.5,0.5,0.3,0.0,0.0,14.3 +1,2016-01-21 19:43:54,2016-01-21 19:47:46,1,1.0,,,-73.98825073242188,40.744285583496094,-73.99938201904297,40.73875427246094,1,N,1,5.0,1.0,0.5,0.3,1.0,0.0,7.8 +1,2016-01-10 08:19:09,2016-01-10 08:38:33,1,6.6,,,-73.88461303710938,40.75569152832031,-73.93685150146484,40.70167922973633,1,Y,2,21.5,0.0,0.5,0.3,0.0,0.0,22.3 +2,2016-01-25 20:25:03,2016-01-25 20:33:15,1,0.95,,,-73.97459411621094,40.74216842651367,-73.9771499633789,40.75213623046875,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +2,2016-01-10 14:28:30,2016-01-10 14:56:06,3,10.99,,,-73.98204040527344,40.75529098510742,-73.87268829345703,40.77444839477539,1,N,1,34.5,0.0,0.5,0.3,8.17,5.54,49.01 +1,2016-01-01 03:58:48,2016-01-01 04:08:41,1,1.9,,,-74.00190734863281,40.73252487182617,-73.97506713867188,40.729881286621094,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +1,2016-01-06 17:33:12,2016-01-06 17:45:12,1,1.4,,,-73.96891021728516,40.76121520996094,-73.9857177734375,40.763938903808594,1,N,1,9.0,1.0,0.5,0.3,1.0,0.0,11.8 +2,2016-01-09 20:06:45,2016-01-09 20:15:32,1,0.97,,,-73.99920654296875,40.74031066894531,-74.00736236572266,40.74266052246094,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +2,2016-01-20 22:03:02,2016-01-20 22:42:58,1,13.04,,,-73.98771667480469,40.75653076171875,-73.82080078125,40.76323699951172,1,N,1,43.0,0.5,0.5,0.3,8.86,0.0,53.16 +2,2016-01-22 11:22:01,2016-01-22 11:54:36,1,3.4,,,-73.97601318359375,40.76013946533203,-73.97022247314453,40.79941940307617,1,N,1,21.0,0.0,0.5,0.3,0.0,0.0,21.8 +1,2016-01-27 09:02:21,2016-01-27 09:25:37,1,6.0,,,-73.9624252319336,40.76408767700195,-74.00840759277344,40.707481384277344,1,N,1,23.5,0.0,0.5,0.3,2.0,0.0,26.3 +2,2016-01-02 10:57:10,2016-01-02 10:57:57,1,0.05,,,-73.98473358154297,40.75397872924805,-73.98272705078125,40.756839752197266,1,N,2,2.5,0.0,0.5,0.3,0.0,0.0,3.3 +2,2016-01-04 07:23:24,2016-01-04 07:36:55,1,3.62,,,-74.00873565673828,40.714073181152344,-73.98529815673828,40.75969696044922,1,N,1,13.0,0.0,0.5,0.3,2.76,0.0,16.56 +2,2016-01-14 19:52:37,2016-01-14 20:17:30,1,4.55,,,-74.00276184082031,40.73073196411133,-73.95732116699219,40.76831817626953,1,N,1,19.5,1.0,0.5,0.3,6.39,0.0,27.69 +2,2016-01-29 17:48:01,2016-01-29 17:55:33,2,1.09,,,-74.00531005859375,40.73965072631836,-74.00991821289062,40.725921630859375,1,N,1,6.5,1.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-01 22:22:48,2016-01-01 22:32:04,1,2.47,,,-73.96190643310547,40.770938873291016,-73.98616790771484,40.74494171142578,1,N,1,9.5,0.5,0.5,0.3,2.16,0.0,12.96 +2,2016-01-17 19:26:21,2016-01-17 19:30:00,1,0.65,,,-73.97471618652344,40.75965118408203,-73.9666748046875,40.75421142578125,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-16 19:46:37,2016-01-16 19:54:11,2,1.8,,,-74.00809478759766,40.73883056640625,-74.00938415527344,40.71549987792969,1,N,1,8.0,0.0,0.5,0.3,1.2,0.0,10.0 +1,2016-01-07 17:26:25,2016-01-07 17:36:36,1,2.3,,,-74.00665283203125,40.74564743041992,-73.98365783691406,40.76570510864258,1,N,1,10.0,1.0,0.5,0.3,1.2,0.0,13.0 +2,2016-01-03 16:37:59,2016-01-03 16:42:46,1,0.99,,,-73.96525573730469,40.80631637573242,-73.97250366210938,40.793861389160156,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-12 18:06:14,2016-01-12 18:57:59,1,17.8,,,-73.78187561035156,40.644813537597656,-73.9849853515625,40.7460823059082,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-01 01:25:48,2016-01-01 01:40:17,1,1.8,,,-73.96884155273438,40.761348724365234,-73.99180603027344,40.754737854003906,1,N,1,11.0,0.5,0.5,0.3,2.45,0.0,14.75 +1,2016-01-27 22:39:19,2016-01-27 22:46:36,1,1.0,,,-73.9830093383789,40.73872375488281,-73.98616027832031,40.749820709228516,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 +2,2016-01-22 07:45:48,2016-01-22 07:54:22,1,1.35,,,-73.98333740234375,40.72624206542969,-73.99771118164062,40.713565826416016,1,N,1,8.0,0.0,0.5,0.3,2.2,0.0,11.0 +2,2016-01-20 22:48:46,2016-01-20 22:57:21,1,1.51,,,-73.99483489990234,40.724971771240234,-74.00524139404297,40.737125396728516,1,N,1,8.0,0.5,0.5,0.3,2.32,0.0,11.62 +2,2016-01-08 23:05:56,2016-01-08 23:26:05,1,3.96,,,-73.98667907714844,40.76103973388672,-73.99889373779297,40.71501541137695,1,N,2,16.5,0.5,0.5,0.3,0.0,0.0,17.8 +1,2016-01-19 14:26:31,2016-01-19 14:33:24,1,0.5,,,-73.9865493774414,40.74003982543945,-73.98834991455078,40.74600601196289,1,N,1,6.0,0.0,0.5,0.3,1.0,0.0,7.8 +2,2016-01-11 15:35:04,2016-01-11 15:45:31,6,2.2,,,-74.00480651855469,40.72332000732422,-73.98280334472656,40.739192962646484,1,N,1,10.0,0.0,0.5,0.3,1.2,0.0,12.0 +2,2016-01-05 22:33:20,2016-01-05 22:42:05,1,1.7,,,-73.96549987792969,40.713592529296875,-73.94950866699219,40.726165771484375,1,N,2,8.0,0.5,0.5,0.3,0.0,0.0,9.3 +2,2016-01-13 19:04:29,2016-01-13 19:21:04,2,2.61,,,-73.95442962646484,40.77408981323242,-73.98578643798828,40.75775909423828,1,N,1,12.5,1.0,0.5,0.3,2.86,0.0,17.16 +1,2016-01-19 09:44:02,2016-01-19 09:57:45,1,1.9,,,-73.9838638305664,40.749332427978516,-73.99626922607422,40.725669860839844,1,N,1,11.0,0.0,0.5,0.3,2.35,0.0,14.15 +2,2016-01-19 19:20:33,2016-01-19 20:08:39,1,21.04,,,-73.79041290283203,40.64691162109375,-73.9786605834961,40.77268981933594,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,70.01 +1,2016-01-15 09:39:12,2016-01-15 10:03:10,1,3.2,,,-73.99713134765625,40.72220230102539,-73.97016906738281,40.76271057128906,1,N,2,16.5,0.0,0.5,0.3,0.0,0.0,17.3 +2,2016-01-02 08:20:24,2016-01-02 08:29:04,1,1.77,,,-73.9566421508789,40.77409362792969,-73.98155975341797,40.784088134765625,1,N,1,8.5,0.0,0.5,0.3,1.86,0.0,11.16 +2,2016-01-04 17:00:03,2016-01-04 17:04:43,2,0.95,,,-73.99380493164062,40.734466552734375,-73.99918365478516,40.72911834716797,1,N,2,5.0,1.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-29 08:16:00,2016-01-29 08:21:47,1,0.54,,,-73.97427368164062,40.75661849975586,-73.97917175292969,40.76163864135742,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-02 18:53:21,2016-01-02 19:15:54,4,2.93,,,-73.99036407470703,40.75104522705078,-73.98762512207031,40.71944808959961,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-21 15:33:38,2016-01-21 16:09:41,2,10.0,,,-73.87303924560547,40.7739372253418,-73.97895812988281,40.72334671020508,1,N,1,33.5,0.0,0.5,0.3,7.95,5.54,47.79 +2,2016-01-06 18:10:01,2016-01-06 18:19:41,6,2.02,,,-73.96098327636719,40.76089096069336,-73.97882080078125,40.75257873535156,1,N,1,9.0,1.0,0.5,0.3,2.16,0.0,12.96 +2,2016-01-10 03:01:56,2016-01-10 03:11:07,1,1.74,,,-73.99852752685547,40.7607307434082,-73.9776382446289,40.747100830078125,1,N,1,8.5,0.5,0.5,0.3,1.0,0.0,10.8 +2,2016-01-13 20:26:26,2016-01-13 20:31:53,1,0.82,,,-73.99698638916016,40.73723602294922,-73.98882293701172,40.7452507019043,1,N,1,5.5,0.5,0.5,0.3,1.36,0.0,8.16 +1,2016-01-14 22:34:48,2016-01-14 23:00:34,1,9.5,,,-73.86370849609375,40.7696533203125,-73.97695922851562,40.76414489746094,1,N,1,30.0,0.5,0.5,0.3,6.25,0.0,37.55 +1,2016-01-01 06:31:59,2016-01-01 06:38:12,1,0.8,,,-73.9950942993164,40.749969482421875,-73.99531555175781,40.759307861328125,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-14 03:24:32,2016-01-14 03:34:12,1,1.4,,,-73.97608947753906,40.75390625,-73.99884796142578,40.761226654052734,1,N,1,8.5,0.5,0.5,0.3,2.45,0.0,12.25 +2,2016-01-07 23:02:00,2016-01-07 23:20:52,1,4.0,,,-73.98542785644531,40.752750396728516,-74.01100158691406,40.71337890625,1,N,1,15.5,0.5,0.5,0.3,2.0,0.0,18.8 +1,2016-01-22 21:30:37,2016-01-22 21:41:20,1,1.1,,,-73.98518371582031,40.7276496887207,-74.00291442871094,40.73411178588867,1,N,1,8.0,0.5,0.5,0.3,1.85,0.0,11.15 +2,2016-01-20 20:59:10,2016-01-20 21:12:08,1,3.44,,,-73.95234680175781,40.777069091796875,-73.98079681396484,40.74945068359375,1,N,1,13.5,0.5,0.5,0.3,2.0,0.0,16.8 +1,2016-01-22 23:24:51,2016-01-22 23:53:46,1,5.7,,,-73.99079132080078,40.75132369995117,-73.99748992919922,40.683570861816406,1,N,2,21.5,0.5,0.5,0.3,0.0,0.0,22.8 +2,2016-01-17 16:13:15,2016-01-17 16:26:16,1,1.83,,,-73.99363708496094,40.74578857421875,-73.98258209228516,40.764408111572266,1,N,1,10.0,0.0,0.5,0.3,2.16,0.0,12.96 +1,2016-01-05 09:02:54,2016-01-05 09:06:49,1,0.5,,,-73.89192962646484,40.747047424316406,-73.88758850097656,40.7493782043457,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-29 23:23:23,2016-01-29 23:57:14,1,22.12,,,-73.78189849853516,40.644691467285156,-73.97869873046875,40.77836990356445,2,N,1,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +1,2016-01-14 09:34:09,2016-01-14 10:01:24,1,6.1,,,-73.95693969726562,40.76631546020508,-74.01041412353516,40.701904296875,1,N,1,26.5,0.0,0.5,0.3,5.45,0.0,32.75 +1,2016-01-07 19:06:48,2016-01-07 19:17:36,1,1.8,,,-73.96965789794922,40.760108947753906,-73.94981384277344,40.77363204956055,1,N,1,9.0,1.0,0.5,0.3,2.15,0.0,12.95 +2,2016-01-06 13:55:43,2016-01-06 14:03:12,1,1.08,,,-73.97490692138672,40.790435791015625,-73.98432159423828,40.77962112426758,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +1,2016-01-21 10:38:21,2016-01-21 11:01:54,1,2.3,,,-74.00472259521484,40.74152755737305,-74.00457000732422,40.713287353515625,1,N,1,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +2,2016-01-30 11:15:41,2016-01-30 11:25:16,1,1.46,,,-73.9896011352539,40.776512145996094,-73.97411346435547,40.78908157348633,1,N,2,8.5,0.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-14 12:50:04,2016-01-14 13:04:56,2,1.91,,,-73.94824981689453,40.78268814086914,-73.96843719482422,40.76512145996094,1,N,1,11.0,0.0,0.5,0.3,1.0,0.0,12.8 +2,2016-01-16 02:29:08,2016-01-16 02:43:51,2,3.35,,,-74.00684356689453,40.72576141357422,-73.97411346435547,40.7529182434082,1,N,1,13.0,0.5,0.5,0.3,3.58,0.0,17.88 +1,2016-01-13 13:10:52,2016-01-13 13:19:27,1,1.9,,,-73.9538803100586,40.68315887451172,-73.93831634521484,40.69862365722656,1,N,1,8.5,0.0,0.5,0.3,1.85,0.0,11.15 +1,2016-01-01 12:52:29,2016-01-01 12:57:59,2,1.3,,,-73.98993682861328,40.734867095947266,-73.99101257324219,40.748924255371094,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-26 07:27:53,2016-01-26 07:36:49,1,1.5,,,-73.95733642578125,40.780479431152344,-73.96903991699219,40.76102066040039,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-08 23:17:05,2016-01-08 23:35:05,1,8.3,,,-73.97443389892578,40.74208450317383,-73.98780822753906,40.667266845703125,1,N,1,25.0,0.5,0.5,0.3,5.25,0.0,31.55 +1,2016-01-21 20:16:21,2016-01-21 20:22:42,1,1.1,,,-73.98664855957031,40.76252365112305,-73.9913558959961,40.75004196166992,1,N,1,6.5,0.5,0.5,0.3,1.55,0.0,9.35 +2,2016-01-29 09:04:09,2016-01-29 09:27:07,1,2.55,,,-73.95630645751953,40.775390625,-73.9817123413086,40.759010314941406,1,N,2,15.5,0.0,0.5,0.3,0.0,0.0,16.3 +1,2016-01-05 19:32:06,2016-01-05 20:00:19,2,9.0,,,-74.0157470703125,40.7118034362793,-74.02384948730469,40.62371826171875,1,N,1,29.0,1.0,0.5,0.3,4.0,5.54,40.34 +2,2016-01-02 11:07:59,2016-01-02 11:08:01,4,0.0,,,-73.96660614013672,40.75708770751953,-73.966552734375,40.757015228271484,2,N,2,0.0,0.0,0.5,0.3,0.0,0.0,0.0 +2,2016-01-13 15:30:40,2016-01-13 15:36:35,1,0.8,,,-73.98872375488281,40.7223014831543,-74.0002670288086,40.72658157348633,1,N,1,6.0,0.0,0.5,0.3,1.36,0.0,8.16 +1,2016-01-30 03:05:37,2016-01-30 03:32:20,2,5.9,,,-73.98548126220703,40.748558044433594,-73.95655822753906,40.7476806640625,1,N,1,22.5,0.5,0.5,0.3,3.0,0.0,26.8 +2,2016-01-30 16:45:59,2016-01-30 16:50:32,1,0.72,,,-74.00450134277344,40.741859436035156,-74.00669860839844,40.7359504699707,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +1,2016-01-28 15:48:08,2016-01-28 16:16:49,2,8.3,,,-73.86360168457031,40.76967239379883,-73.95136260986328,40.78425598144531,1,Y,1,27.0,0.0,0.5,0.3,6.65,5.54,39.99 +2,2016-01-28 11:50:31,2016-01-28 12:06:52,1,2.87,,,-73.9764404296875,40.75638961791992,-73.94313049316406,40.746700286865234,1,N,1,13.5,0.0,0.5,0.3,2.86,0.0,17.16 +1,2016-01-08 23:12:50,2016-01-08 23:21:14,2,1.6,,,-73.9669189453125,40.68342971801758,-73.94577026367188,40.67406463623047,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-13 21:38:49,2016-01-13 21:47:06,1,1.5,,,-73.96671295166016,40.70579147338867,-73.9528579711914,40.692169189453125,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-13 08:14:34,2016-01-13 08:29:16,1,4.47,,,-73.9849624633789,40.74100112915039,-73.94548797607422,40.78615951538086,1,N,2,16.0,0.0,0.5,0.3,0.0,0.0,16.8 +2,2016-01-20 09:37:44,2016-01-20 09:50:15,1,1.08,,,-73.9916000366211,40.749961853027344,-73.99285125732422,40.7398796081543,1,N,1,9.0,0.0,0.5,0.3,2.94,0.0,12.74 +2,2016-01-20 11:51:42,2016-01-20 12:03:18,4,1.56,,,-73.98880004882812,40.736572265625,-74.0056381225586,40.7258415222168,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +1,2016-01-13 23:44:31,2016-01-13 23:53:12,1,2.0,,,-73.96684265136719,40.760990142822266,-73.98509979248047,40.778907775878906,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-07 21:17:56,2016-01-07 21:25:41,1,1.61,,,-73.97972869873047,40.749759674072266,-74.00077819824219,40.74747085571289,1,N,2,7.5,0.5,0.5,0.3,0.0,0.0,8.8 +2,2016-01-06 15:55:25,2016-01-06 16:00:42,1,1.21,,,-73.98794555664062,40.77524185180664,-73.9771499633789,40.78749084472656,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +1,2016-01-21 13:32:04,2016-01-21 13:40:29,1,0.8,,,-73.97923278808594,40.75290298461914,-73.97062683105469,40.76195526123047,1,N,1,7.0,0.0,0.5,0.3,2.0,0.0,9.8 +1,2016-01-13 15:00:23,2016-01-13 15:04:59,1,0.7,,,-73.96761322021484,40.76850128173828,-73.98014831542969,40.7730827331543,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-07 17:59:33,2016-01-07 18:14:41,1,3.0,,,-73.97698211669922,40.76423645019531,-73.94544219970703,40.745849609375,1,N,1,13.0,1.0,0.5,0.3,2.96,0.0,17.76 +1,2016-01-04 12:32:50,2016-01-04 12:50:06,1,3.1,,,-73.98170471191406,40.758941650390625,-73.95401000976562,40.790157318115234,1,N,1,14.0,0.0,0.5,0.3,2.96,0.0,17.76 +1,2016-01-28 17:50:31,2016-01-28 18:07:39,2,1.1,,,-74.00408935546875,40.75278854370117,-73.98660278320312,40.747459411621094,1,N,1,11.0,1.0,0.5,0.3,2.55,0.0,15.35 +2,2016-01-07 08:09:30,2016-01-07 08:16:43,1,0.77,,,-73.9771728515625,40.75434112548828,-73.9726333618164,40.762088775634766,1,N,2,6.0,0.0,0.5,0.3,0.0,0.0,6.8 +2,2016-01-28 09:28:51,2016-01-28 09:39:12,1,1.12,,,-74.00101470947266,40.731563568115234,-73.98982238769531,40.7426872253418,1,N,1,8.0,0.0,0.5,0.3,1.76,0.0,10.56 +1,2016-01-09 00:46:21,2016-01-09 00:59:23,1,2.2,,,-73.987060546875,40.75584411621094,-73.98027038574219,40.73219299316406,1,N,1,11.0,0.5,0.5,0.3,1.11,0.0,13.41 +2,2016-01-02 18:31:07,2016-01-02 19:18:06,1,14.52,,,-73.79008483886719,40.646610260009766,-73.95317840576172,40.72959518432617,1,N,1,45.0,0.0,0.5,0.3,11.45,0.0,57.25 +1,2016-01-05 13:50:29,2016-01-05 13:58:18,2,1.2,,,-73.97576141357422,40.74496078491211,-73.9740982055664,40.75702667236328,1,N,1,7.5,0.0,0.5,0.3,0.5,0.0,8.8 +2,2016-01-27 18:23:58,2016-01-27 18:48:06,2,11.68,,,-73.77671813964844,40.645233154296875,-73.78436279296875,40.74120330810547,1,N,2,33.0,1.0,0.5,0.3,0.0,0.0,34.8 +1,2016-01-27 23:12:20,2016-01-27 23:19:25,1,1.4,,,-74.00597381591797,40.74003601074219,-74.01007843017578,40.7235107421875,1,N,1,6.5,0.5,0.5,0.3,2.0,0.0,9.8 +2,2016-01-29 22:01:26,2016-01-29 22:13:12,1,2.72,,,-73.94931030273438,40.78139114379883,-73.97116088867188,40.74822998046875,1,N,1,11.0,0.5,0.5,0.3,2.46,0.0,14.76 +2,2016-01-10 00:22:19,2016-01-10 00:26:24,1,1.06,,,-74.00430297851562,40.72174072265625,-74.0102767944336,40.71377182006836,1,N,1,5.5,0.5,0.5,0.3,1.7,0.0,8.5 +2,2016-01-20 08:41:14,2016-01-20 08:51:08,6,0.84,,,-73.9802017211914,40.78556823730469,-73.98087310791016,40.77457809448242,1,N,1,7.5,0.0,0.5,0.3,1.66,0.0,9.96 +2,2016-01-06 14:14:56,2016-01-06 14:26:12,1,2.04,,,-73.99202728271484,40.73503875732422,-73.97444152832031,40.75600051879883,1,N,2,9.5,0.0,0.5,0.3,0.0,0.0,10.3 +2,2016-01-04 11:56:01,2016-01-04 12:04:01,1,1.04,,,-73.96600341796875,40.765220642089844,-73.97895812988281,40.7641487121582,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +2,2016-01-04 18:03:43,2016-01-04 18:16:39,1,1.62,,,-73.99029541015625,40.74839401245117,-73.97724151611328,40.76414108276367,1,N,1,10.0,1.0,0.5,0.3,2.95,0.0,14.75 +1,2016-01-06 19:22:09,2016-01-06 19:29:19,1,1.2,,,-73.97532653808594,40.75233840942383,-73.96175384521484,40.7568244934082,1,N,1,7.0,0.5,0.5,0.3,2.05,0.0,10.35 +2,2016-01-06 20:37:41,2016-01-06 20:41:44,1,1.28,,,-73.96910858154297,40.754188537597656,-73.98077392578125,40.738155364990234,1,N,1,6.0,0.5,0.5,0.3,1.0,0.0,8.3 +2,2016-01-15 19:01:45,2016-01-15 19:06:29,1,0.93,,,0.0,0.0,0.0,0.0,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-30 08:23:53,2016-01-30 08:38:10,2,1.97,,,-73.95440673828125,40.76409149169922,-73.98204040527344,40.7777099609375,1,N,1,11.5,0.0,0.5,0.3,3.08,0.0,15.38 +2,2016-01-02 18:52:47,2016-01-02 19:01:28,1,0.84,,,-73.98555755615234,40.767948150634766,-73.9914321899414,40.757991790771484,1,N,1,7.0,0.0,0.5,0.3,0.78,0.0,8.58 +2,2016-01-20 17:09:51,2016-01-20 17:36:48,2,7.69,,,-73.96118927001953,40.76055908203125,-74.00850677490234,40.720001220703125,1,N,1,25.5,1.0,0.5,0.3,5.46,0.0,32.76 +2,2016-01-11 08:33:58,2016-01-11 08:41:36,1,0.86,,,-73.97500610351562,40.7528190612793,-73.96808624267578,40.75651550292969,1,N,1,6.5,0.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-22 15:10:45,2016-01-22 16:07:42,1,17.7,,,-73.78117370605469,40.64500045776367,-73.93910217285156,40.80514144897461,2,N,2,52.0,0.0,0.5,0.3,0.0,5.54,58.34 +2,2016-01-10 00:30:16,2016-01-10 00:41:40,1,2.16,,,-73.9859848022461,40.74362564086914,-73.965576171875,40.7636604309082,1,N,1,9.0,0.5,0.5,0.3,2.06,0.0,12.36 +2,2016-01-14 00:27:02,2016-01-14 00:37:49,2,2.13,,,-73.9651870727539,40.75954818725586,-73.99137115478516,40.75033187866211,1,N,2,10.0,0.5,0.5,0.3,0.0,0.0,11.3 +2,2016-01-18 09:57:39,2016-01-18 10:05:30,1,1.42,,,-73.98497772216797,40.758209228515625,-73.97229766845703,40.76308822631836,1,N,2,7.5,0.0,0.5,0.3,0.0,0.0,8.3 +1,2016-01-20 15:58:17,2016-01-20 16:02:20,1,0.6,,,-73.99006652832031,40.75649642944336,-73.9874038696289,40.76366424560547,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +2,2016-01-21 22:10:13,2016-01-21 22:17:17,1,2.2,,,-73.95118713378906,40.78274917602539,-73.97840118408203,40.78300857543945,1,N,2,8.5,0.5,0.5,0.3,0.0,0.0,9.8 +2,2016-01-26 22:17:08,2016-01-26 22:32:02,1,3.06,,,-74.00607299804688,40.72378158569336,-73.99606323242188,40.689178466796875,1,N,1,13.0,0.5,0.5,0.3,3.58,0.0,17.88 +1,2016-01-29 16:47:11,2016-01-29 16:56:51,1,1.0,,,-73.99700164794922,40.73139572143555,-73.99183654785156,40.74165344238281,1,N,1,7.5,1.0,0.5,0.3,1.0,0.0,10.3 +2,2016-01-04 19:04:42,2016-01-04 19:13:22,1,1.15,,,-73.9916000366211,40.7171745300293,-74.00818634033203,40.716609954833984,1,N,2,7.5,1.0,0.5,0.3,0.0,0.0,9.3 +2,2016-01-22 08:14:05,2016-01-22 09:10:08,5,17.05,,,-73.98619079589844,40.75934600830078,-73.7901611328125,40.64387512207031,2,N,1,52.0,0.0,0.5,0.3,11.67,5.54,70.01 +1,2016-01-08 06:03:39,2016-01-08 06:07:05,1,0.5,,,-73.99068450927734,40.75594711303711,-73.98725891113281,40.75249481201172,1,N,2,4.5,0.0,0.5,0.3,0.0,0.0,5.3 +1,2016-01-29 22:20:24,2016-01-29 22:44:27,1,6.2,,,-73.9921646118164,40.74885940551758,-74.01419830322266,40.70903778076172,1,N,2,23.5,0.5,0.5,0.3,0.0,0.0,24.8 +2,2016-01-14 16:20:15,2016-01-14 16:44:17,1,1.99,,,-73.95974731445312,40.77043914794922,-73.97956848144531,40.75394821166992,1,N,2,15.0,1.0,0.5,0.3,0.0,0.0,16.8 +2,2016-01-25 21:36:57,2016-01-25 21:43:25,1,1.01,,,-73.9920425415039,40.755531311035156,-74.00285339355469,40.760650634765625,1,N,1,6.5,0.5,0.5,0.3,1.56,0.0,9.36 +1,2016-01-18 15:21:46,2016-01-18 15:34:12,1,2.0,,,-73.98665618896484,40.75148391723633,-73.99592590332031,40.76933670043945,1,N,2,10.5,0.0,0.5,0.3,0.0,0.0,11.3 +2,2016-01-20 08:27:05,2016-01-20 08:36:03,5,0.71,,,-73.95909881591797,40.77504348754883,-73.95319366455078,40.76760482788086,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-29 21:36:14,2016-01-29 21:49:19,2,5.13,,,-73.9763412475586,40.7520751953125,-73.94055938720703,40.718650817871094,1,N,1,16.0,0.5,0.5,0.3,4.57,5.54,27.41 +1,2016-01-28 16:13:21,2016-01-28 16:28:15,1,1.4,,,-73.97632598876953,40.7857780456543,-73.96122741699219,40.77753448486328,1,N,1,10.0,1.0,0.5,0.3,1.2,0.0,13.0 +2,2016-01-13 16:58:17,2016-01-13 17:01:13,6,0.55,,,-73.97908782958984,40.78728103637695,-73.97572326660156,40.794029235839844,1,N,2,4.0,1.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-18 19:53:41,2016-01-18 19:58:17,1,1.19,,,-74.00505828857422,40.7257080078125,-73.99921417236328,40.739219665527344,1,N,1,6.0,0.5,0.5,0.3,1.46,0.0,8.76 +1,2016-01-13 09:17:35,2016-01-13 09:22:19,1,0.6,,,-73.98221588134766,40.768428802490234,-73.97853088378906,40.77470016479492,1,N,1,5.0,0.0,0.5,0.3,1.15,0.0,6.95 +2,2016-01-15 14:48:30,2016-01-15 14:54:23,1,0.56,,,-73.995849609375,40.75418472290039,-73.99523162841797,40.759796142578125,1,N,2,5.5,0.0,0.5,0.3,0.0,0.0,6.3 +2,2016-01-20 11:50:18,2016-01-20 11:54:38,1,0.7,,,-73.97061157226562,40.76454162597656,-73.966064453125,40.77293014526367,1,N,2,5.0,0.0,0.5,0.3,0.0,0.0,5.8 +2,2016-01-29 21:53:00,2016-01-29 22:03:24,1,1.85,,,-73.97038269042969,40.757911682128906,-73.97911071777344,40.737091064453125,1,N,1,9.0,0.5,0.5,0.3,3.09,0.0,13.39 +1,2016-01-08 21:43:51,2016-01-08 22:13:17,2,5.2,,,-73.98614501953125,40.726539611816406,-73.99134063720703,40.663814544677734,1,N,1,23.0,0.5,0.5,0.3,4.85,0.0,29.15 +2,2016-01-30 02:10:28,2016-01-30 02:17:27,5,1.3,,,-74.00701904296875,40.74407958984375,-73.98602294921875,40.73603820800781,1,N,1,7.0,0.5,0.5,0.3,1.66,0.0,9.96 +2,2016-01-16 14:33:07,2016-01-16 14:34:49,1,0.44,,,-73.94190216064453,40.79818344116211,-73.939208984375,40.794288635253906,1,N,2,3.5,0.0,0.5,0.3,0.0,0.0,4.3 +2,2016-01-13 16:50:53,2016-01-13 16:55:45,1,0.66,,,-73.98027038574219,40.745361328125,-73.9776611328125,40.75135040283203,1,N,1,5.5,1.0,0.5,0.3,1.46,0.0,8.76 +2,2016-01-29 21:10:23,2016-01-29 21:22:01,1,1.39,,,-73.9852523803711,40.75535202026367,-73.9744644165039,40.75757598876953,1,N,2,9.0,0.5,0.5,0.3,0.0,0.0,10.3 +1,2016-01-04 14:32:16,2016-01-04 14:44:38,1,1.7,,,-73.98149871826172,40.75521469116211,-73.98986053466797,40.77050018310547,1,N,1,9.5,0.0,0.5,0.3,2.05,0.0,12.35 +1,2016-01-25 06:06:39,2016-01-25 06:12:10,1,1.4,,,-73.9875717163086,40.72462844848633,-73.98551177978516,40.73983383178711,1,N,2,6.5,0.0,0.5,0.3,0.0,0.0,7.3 +1,2016-01-12 13:42:38,2016-01-12 13:50:54,1,0.9,,,-73.95272827148438,40.76620101928711,-73.96675872802734,40.76967239379883,1,N,2,7.0,0.0,0.5,0.3,0.0,0.0,7.8 +2,2016-01-07 22:27:41,2016-01-07 22:34:39,1,1.32,,,-73.98356628417969,40.766353607177734,-73.9680404663086,40.75569534301758,1,N,2,7.0,0.5,0.5,0.3,0.0,0.0,8.3 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/green_data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/green_data.yml new file mode 100644 index 000000000000..1c3c4242643d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/green_data.yml @@ -0,0 +1,12 @@ +## IMPORTANT: this file and accompanying assets are the source for snippets in https://docs.microsoft.com/azure/machine-learning! +## Please reach out to the Azure ML docs & samples team before editing for the first time. + +# +$schema: https://azuremlsdk2.blob.core.windows.net/latest/asset.schema.json +name: greendata +version: 3 +description: sample green taxi dataset +datastore: azureml:workspaceblobstore +local_path: ./data +path: /sample/data/path +# diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/pipeline.py new file mode 100644 index 000000000000..68ef4537f96e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/pipeline.py @@ -0,0 +1,55 @@ +from azure.ai.ml import dsl, Input, Output +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + prep_func = load_component( + yaml_file=parent_dir + "/prep.yml" + ) + transform_func = load_component( + yaml_file=parent_dir + "/transform.yml" + ) + train_func = load_component( + yaml_file=parent_dir + "/train.yml" + ) + predict_func = load_component( + yaml_file=parent_dir + "/predict.yml" + ) + score_func = load_component( + yaml_file=parent_dir + "/score.yml" + ) + + # 2. Construct pipeline + @dsl.pipeline(compute="cpu-cluster", default_datastore="workspaceblobstore") + def nyc_taxi_data_regression(pipeline_job_input): + prep_job = prep_func(raw_data=pipeline_job_input) + transform_job = transform_func(clean_data=prep_job.outputs.prep_data) + train_job = train_func(training_data=transform_job.outputs.transformed_data) + predict_job = predict_func( + model_input=train_job.outputs.model_output, test_data=train_job.outputs.test_data + ) + score_job = score_func(predictions=predict_job.outputs.predictions, model=train_job.outputs.model_output) + return { + "pipeline_job_prepped_data": prep_job.outputs.prep_data, + "pipeline_job_transformed_data": transform_job.outputs.transformed_data, + "pipeline_job_trained_model": train_job.outputs.model_output, + "pipeline_job_test_data": train_job.outputs.test_data, + "pipeline_job_predictions": predict_job.outputs.predictions, + "pipeline_job_score_report": score_job.outputs.score_report, + } + + pipeline = nyc_taxi_data_regression( + Input(path=parent_dir + "/data/") + ) + pipeline.outputs.pipeline_job_prepped_data = Output(path="/prepped_data", mode="rw_mount") + pipeline.outputs.pipeline_job_transformed_data = Output(path="/transformed_data", mode="rw_mount") + pipeline.outputs.pipeline_job_trained_model = Output(path="/trained-model", mode="rw_mount") + pipeline.outputs.pipeline_job_test_data = Output(path="/test_data", mode="rw_mount") + pipeline.outputs.pipeline_job_predictions = Output(path="/predictions", mode="rw_mount") + pipeline.outputs.pipeline_job_score_report = Output(path="/report", mode="rw_mount") + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/pipeline.yml new file mode 100644 index 000000000000..c91549117ad6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/pipeline.yml @@ -0,0 +1,80 @@ +## IMPORTANT: this file and accompanying assets are the source for snippets in https://docs.microsoft.com/azure/machine-learning! +## Please reach out to the Azure ML docs & samples team before editing for the first time. + +type: pipeline + +# +inputs: + pipeline_job_input: #using dataset, can use datastore + datapath also + path: ./data + +outputs: + pipeline_job_prepped_data: + path: /prepped_data + pipeline_job_transformed_data: + path: /transformed_data + pipeline_job_trained_model: + path: /trained-model + pipeline_job_test_data: + path: /test_data + pipeline_job_predictions: + path: /predictions + pipeline_job_score_report: + path: /report +# + +compute: azureml:cpu-cluster +settings: + default_datastore: azureml:workspaceblobstore + +# +#defaults: +# component_job: +# datastore: azureml:workspaceblobstore +# compute: +# target: azureml:cpu-cluster + +jobs: + prep_job: + type: command + component: file:./prep.yml + inputs: + raw_data: ${{parent.inputs.pipeline_job_input}} + outputs: + prep_data: ${{parent.outputs.pipeline_job_prepped_data}} + + transform_job: + type: command + component: file:./transform.yml + inputs: + clean_data: ${{parent.jobs.prep_job.outputs.prep_data}} + outputs: + transformed_data: ${{parent.outputs.pipeline_job_transformed_data}} + + train_job: + type: command + component: file:./train.yml + inputs: + training_data: ${{parent.jobs.transform_job.outputs.transformed_data}} + outputs: + model_output: ${{parent.outputs.pipeline_job_trained_model}} + test_data: ${{parent.outputs.pipeline_job_test_data}} + + predict_job: + type: command + component: file:./predict.yml + inputs: + model_input: ${{parent.jobs.train_job.outputs.model_output}} + test_data: ${{parent.jobs.train_job.outputs.test_data}} + outputs: + predictions: ${{parent.outputs.pipeline_job_predictions}} + + score_job: + type: command + component: file:./score.yml + inputs: + predictions: ${{parent.jobs.predict_job.outputs.predictions}} + model: ${{parent.jobs.train_job.outputs.model_output}} + outputs: + score_report: ${{parent.outputs.pipeline_job_score_report}} +# diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/predict.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/predict.yml new file mode 100644 index 000000000000..041c0d64d974 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/predict.yml @@ -0,0 +1,24 @@ +## IMPORTANT: this file and accompanying assets are the source for snippets in https://docs.microsoft.com/azure/machine-learning! +## Please reach out to the Azure ML docs & samples team before editing for the first time. + +# +name: predict_taxi_fares +version: 1 +display_name: PredictTaxiFares +type: command +inputs: + model_input: + type: uri_folder + test_data: + type: uri_folder +outputs: + predictions: + type: uri_folder +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3 +code: ./predict_src +command: >- + python predict.py + --model_input ${{inputs.model_input}} + --test_data ${{inputs.test_data}} + --predictions ${{outputs.predictions}} +# diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/predict_src/predict.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/predict_src/predict.py new file mode 100644 index 000000000000..53e95cf6527d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/predict_src/predict.py @@ -0,0 +1,68 @@ +import argparse +import pandas as pd +import os +from pathlib import Path +from sklearn.linear_model import LinearRegression +import pickle + + +parser = argparse.ArgumentParser("predict") +parser.add_argument("--model_input", type=str, help="Path of input model") +parser.add_argument("--test_data", type=str, help="Path to test data") +parser.add_argument("--predictions", type=str, help="Path of predictions") + +args = parser.parse_args() + +print ("hello scoring world...") + +lines = [ + f'Model path: {args.model_input}', + f'Test data path: {args.test_data}', + f'Predictions path: {args.predictions}', +] + +for line in lines: + print(line) + +# Load and split the test data + +print("mounted_path files: ") +arr = os.listdir(args.test_data) + +print(arr) +df_list = [] +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.test_data, filename), 'r') as handle: + # print (handle.read()) + input_df = pd.read_csv((Path(args.test_data) / filename)) + df_list.append(input_df) + +test_data = df_list[0] +testy = test_data['cost'] +#testX = test_data.drop(['cost'], axis=1) +testX = test_data[['distance','dropoff_latitude', 'dropoff_longitude', 'passengers', + 'pickup_latitude', 'pickup_longitude', 'store_forward', 'vendor', + 'pickup_weekday', 'pickup_month', 'pickup_monthday', 'pickup_hour', + 'pickup_minute', 'pickup_second', 'dropoff_weekday', 'dropoff_month', + 'dropoff_monthday', 'dropoff_hour', 'dropoff_minute', 'dropoff_second']] +print(testX.shape) +print(testX.columns) + +# Load the model from input port +model = pickle.load(open((Path(args.model_input) / 'model.sav'), 'rb')) +# model = (Path(args.model_input) / 'model.txt').read_text() +#print('Model: ', model) + +# Make predictions on testX data and record them in a column named predicted_cost +predictions = model.predict(testX) +testX['predicted_cost'] = predictions +print(testX.shape) + +# Compare predictions to actuals (testy) +output_data = pd.DataFrame(testX) +output_data['actual_cost'] = testy + + +# Save the output data with feature columns, predicted cost, and actual cost in csv file +output_data = output_data.to_csv((Path(args.predictions) / 'predictions.csv')) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/prep.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/prep.yml new file mode 100644 index 000000000000..faad799f83e8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/prep.yml @@ -0,0 +1,21 @@ +## IMPORTANT: this file and accompanying assets are the source for snippets in https://docs.microsoft.com/azure/machine-learning! +## Please reach out to the Azure ML docs & samples team before editing for the first time. + +# +name: prep_taxi_data +display_name: PrepTaxiData +version: 1 +type: command +inputs: + raw_data: + type: uri_folder +outputs: + prep_data: + type: uri_folder +code: ./prep_src +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3 +command: >- + python prep.py + --raw_data ${{inputs.raw_data}} + --prep_data ${{outputs.prep_data}} +# diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/prep_src/prep.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/prep_src/prep.py new file mode 100644 index 000000000000..943cd85c9c4e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/prep_src/prep.py @@ -0,0 +1,119 @@ +import argparse +from pathlib import Path +from typing_extensions import Concatenate +from uuid import uuid4 +from datetime import datetime +import os +import pandas as pd +from sklearn.linear_model import LinearRegression +from sklearn.model_selection import train_test_split +import pickle + +parser = argparse.ArgumentParser("prep") +parser.add_argument("--raw_data", type=str, help="Path to raw data") +parser.add_argument("--prep_data", type=str, help="Path of prepped data") + +args = parser.parse_args() + +print ("hello training world...") + +lines = [ + f'Raw data path: {args.raw_data}', + f'Data output path: {args.prep_data}', +] + +for line in lines: + print(line) + +print("mounted_path files: ") +arr = os.listdir(args.raw_data) +print(arr) + +df_list = [] +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.raw_data, filename), 'r') as handle: + # print (handle.read()) + #('input_df_%s' % filename) = pd.read_csv((Path(args.training_data) / filename)) + input_df = pd.read_csv((Path(args.raw_data) / filename)) + df_list.append(input_df) + + +# Prep the green and yellow taxi data +green_data = df_list[0] +yellow_data = df_list[1] + +# Define useful columns needed for the Azure Machine Learning NYC Taxi tutorial + +useful_columns = str(["cost", "distance", "dropoff_datetime", "dropoff_latitude", + "dropoff_longitude", "passengers", "pickup_datetime", + "pickup_latitude", "pickup_longitude", "store_forward", "vendor"]).replace(",", ";") +print(useful_columns) + +# Rename columns as per Azure Machine Learning NYC Taxi tutorial +green_columns = str({ + "vendorID": "vendor", + "lpepPickupDatetime": "pickup_datetime", + "lpepDropoffDatetime": "dropoff_datetime", + "storeAndFwdFlag": "store_forward", + "pickupLongitude": "pickup_longitude", + "pickupLatitude": "pickup_latitude", + "dropoffLongitude": "dropoff_longitude", + "dropoffLatitude": "dropoff_latitude", + "passengerCount": "passengers", + "fareAmount": "cost", + "tripDistance": "distance" +}).replace(",", ";") + +yellow_columns = str({ + "vendorID": "vendor", + "tpepPickupDateTime": "pickup_datetime", + "tpepDropoffDateTime": "dropoff_datetime", + "storeAndFwdFlag": "store_forward", + "startLon": "pickup_longitude", + "startLat": "pickup_latitude", + "endLon": "dropoff_longitude", + "endLat": "dropoff_latitude", + "passengerCount": "passengers", + "fareAmount": "cost", + "tripDistance": "distance" +}).replace(",", ";") + +print("green_columns: " + green_columns) +print("yellow_columns: " + yellow_columns) + +# These functions ensure that null data is removed from the dataset, +# which will help increase machine learning model accuracy. + +def get_dict(dict_str): + pairs = dict_str.strip("{}").split(";") + new_dict = {} + for pair in pairs: + print(pair) + key, value = pair.strip().split(":") + new_dict[key.strip().strip("'")] = value.strip().strip("'") + return new_dict + +def cleanseData(data, columns, useful_columns): + useful_columns = [s.strip().strip("'") for s in useful_columns.strip("[]").split(";")] + new_columns = get_dict(columns) + + new_df = (data.dropna(how='all') + .rename(columns=new_columns))[useful_columns] + + new_df.reset_index(inplace=True, drop=True) + return new_df + +green_data_clean = cleanseData(green_data, green_columns, useful_columns) +yellow_data_clean = cleanseData(yellow_data, yellow_columns, useful_columns) + +# Append yellow data to green data +combined_df = green_data_clean.append(yellow_data_clean, ignore_index=True) +combined_df.reset_index(inplace=True, drop=True) + +output_green = green_data_clean.to_csv((Path(args.prep_data) / 'green_prep_data.csv')) +output_yellow = yellow_data_clean.to_csv((Path(args.prep_data) / 'yellow_prep_data.csv')) +merged_data = combined_df.to_csv((Path(args.prep_data) / 'merged_data.csv')) + + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/score.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/score.yml new file mode 100644 index 000000000000..805f1ba38a78 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/score.yml @@ -0,0 +1,24 @@ +## IMPORTANT: this file and accompanying assets are the source for snippets in https://docs.microsoft.com/azure/machine-learning! +## Please reach out to the Azure ML docs & samples team before editing for the first time. + +# +name: score_model +version: 1 +display_name: ScoreModel +type: command +inputs: + predictions: + type: uri_folder + model: + type: uri_folder +outputs: + score_report: + type: uri_folder +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3 +code: ./score_src +command: >- + python score.py + --predictions ${{inputs.predictions}} + --model ${{inputs.model}} + --score_report ${{outputs.score_report}} +# diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/score_src/score.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/score_src/score.py new file mode 100644 index 000000000000..67ef38348b07 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/score_src/score.py @@ -0,0 +1,67 @@ +import argparse +import pandas as pd +import os +from pathlib import Path +from sklearn.linear_model import LinearRegression +import pickle +from sklearn.metrics import mean_squared_error, r2_score + +parser = argparse.ArgumentParser("score") +parser.add_argument("--predictions", type=str, help="Path of predictions and actual data") +parser.add_argument("--model", type=str, help="Path to model") +parser.add_argument("--score_report", type=str, help="Path to score report") + + +args = parser.parse_args() + +print ("hello scoring world...") + +lines = [ + f'Model path: {args.model}', + f'Predictions path: {args.predictions}', + f'Scoring output path: {args.score_report}', +] + +for line in lines: + print(line) + +# Load the test data with predicted values + +print("mounted_path files: ") +arr = os.listdir(args.predictions) + +print(arr) +df_list = [] +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.predictions, filename), 'r') as handle: + # print (handle.read()) + input_df = pd.read_csv((Path(args.predictions) / filename)) + df_list.append(input_df) + +test_data = df_list[0] + +# Load the model from input port +model = pickle.load(open((Path(args.model) / 'model.sav'), 'rb')) + +# Print the results of scoring the predictions against actual values in the test data +# The coefficients +print('Coefficients: \n', model.coef_) + +actuals = test_data['actual_cost'] +predictions = test_data['predicted_cost'] + +# The mean squared error +print('Mean squared error: %.2f' + % mean_squared_error(actuals, predictions)) +# The coefficient of determination: 1 is perfect prediction +print('Coefficient of determination: %.2f' + % r2_score(actuals, predictions)) +print('Model: ', model) + +# Print score report to a text file +(Path(args.score_report) / 'score.txt').write_text('Scored with the following model:\n{}'.format(model)) +with open((Path(args.score_report) / 'score.txt'),'a') as f: + f.write('\n Coefficients: \n %s \n' % str(model.coef_)) + f.write('Mean squared error: %.2f \n' % mean_squared_error(actuals, predictions)) + f.write('Coefficient of determination: %.2f \n' % r2_score(actuals, predictions)) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/train.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/train.yml new file mode 100644 index 000000000000..83c85d89cb50 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/train.yml @@ -0,0 +1,24 @@ +## IMPORTANT: this file and accompanying assets are the source for snippets in https://docs.microsoft.com/azure/machine-learning! +## Please reach out to the Azure ML docs & samples team before editing for the first time. + +# +name: train_linear_regression_model +display_name: TrainLinearRegressionModel +version: 1 +type: command +inputs: + training_data: + type: uri_folder +outputs: + model_output: + type: uri_folder + test_data: + type: uri_folder +code: ./train_src +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3 +command: >- + python train.py + --training_data ${{inputs.training_data}} + --test_data ${{outputs.test_data}} + --model_output ${{outputs.model_output}} +# diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/train_src/train.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/train_src/train.py new file mode 100644 index 000000000000..cf63bc1c8779 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/train_src/train.py @@ -0,0 +1,69 @@ +import argparse +from pathlib import Path +from uuid import uuid4 +from datetime import datetime +import os +import pandas as pd +from sklearn.linear_model import LinearRegression +from sklearn.model_selection import train_test_split +import pickle + +parser = argparse.ArgumentParser("train") +parser.add_argument("--training_data", type=str, help="Path to training data") +parser.add_argument("--test_data", type=str, help="Path to test data") +parser.add_argument("--model_output", type=str, help="Path of output model") + +args = parser.parse_args() + +print ("hello training world...") + +lines = [ + f'Training data path: {args.training_data}', + f'Test data path: {args.test_data}', + f'Model output path: {args.model_output}', +] + +for line in lines: + print(line) + +print("mounted_path files: ") +arr = os.listdir(args.training_data) +print(arr) + +df_list = [] +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.training_data, filename), 'r') as handle: + # print (handle.read()) + input_df = pd.read_csv((Path(args.training_data) / filename)) + df_list.append(input_df) + +train_data = df_list[0] +print(train_data.columns) + +# Split the data into input(X) and output(y) +y = train_data['cost'] +#X = train_data.drop(['cost'], axis=1) +X = train_data[['distance','dropoff_latitude', 'dropoff_longitude', 'passengers', + 'pickup_latitude', 'pickup_longitude', 'store_forward', 'vendor', + 'pickup_weekday', 'pickup_month', 'pickup_monthday', 'pickup_hour', + 'pickup_minute', 'pickup_second', 'dropoff_weekday', 'dropoff_month', + 'dropoff_monthday', 'dropoff_hour', 'dropoff_minute', 'dropoff_second']] + +# Split the data into train and test sets +trainX, testX, trainy, testy = train_test_split(X, y, test_size=0.3, random_state=42) +print(trainX.shape) +print(trainX.columns) + +# Train a Linear Regression Model with the train set +model = LinearRegression().fit(trainX, trainy) +print(model.score(trainX, trainy)) + + +# Output the model and test data +pickle.dump(model, open((Path(args.model_output) / 'model.sav'), 'wb')) +#test_data = pd.DataFrame(testX, columns = ) +testX['cost'] = testy +print(testX.shape) +test_data = testX.to_csv((Path(args.test_data) / 'test_data.csv')) + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/transform.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/transform.yml new file mode 100644 index 000000000000..8d6ed58593c4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/transform.yml @@ -0,0 +1,21 @@ +## IMPORTANT: this file and accompanying assets are the source for snippets in https://docs.microsoft.com/azure/machine-learning! +## Please reach out to the Azure ML docs & samples team before editing for the first time. + +# +name: taxi_feature_engineering +display_name: TaxiFeatureEngineering +version: 1 +type: command +inputs: + clean_data: + type: uri_folder +outputs: + transformed_data: + type: uri_folder +code: ./transform_src +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3 +command: >- + python transform.py + --clean_data ${{inputs.clean_data}} + --transformed_data ${{outputs.transformed_data}} +# diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/transform_src/transform.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/transform_src/transform.py new file mode 100644 index 000000000000..a1f3376b7a64 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/transform_src/transform.py @@ -0,0 +1,136 @@ +import argparse +from pathlib import Path +from uuid import uuid4 +from datetime import datetime +import os +import pandas as pd +import numpy as np + +parser = argparse.ArgumentParser("transform") +parser.add_argument("--clean_data", type=str, help="Path to prepped data") +parser.add_argument("--transformed_data", type=str, help="Path of output data") + +args = parser.parse_args() + + +lines = [ + f'Clean data path: {args.clean_data}', + f'Transformed data output path: {args.transformed_data}', +] + +for line in lines: + print(line) + +print("mounted_path files: ") +arr = os.listdir(args.clean_data) +print(arr) + +df_list = [] +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.clean_data, filename), 'r') as handle: + # print (handle.read()) + #('input_df_%s' % filename) = pd.read_csv((Path(args.training_data) / filename)) + input_df = pd.read_csv((Path(args.clean_data) / filename)) + df_list.append(input_df) + + +# Transform the data +combined_df = df_list[1] +# These functions filter out coordinates for locations that are outside the city border. + +# Filter out coordinates for locations that are outside the city border. +# Chain the column filter commands within the filter() function +# and define the minimum and maximum bounds for each field + +combined_df = combined_df.astype({"pickup_longitude": 'float64', "pickup_latitude": 'float64', + "dropoff_longitude": 'float64', "dropoff_latitude": 'float64'}) + +latlong_filtered_df = combined_df[(combined_df.pickup_longitude <= -73.72) & + (combined_df.pickup_longitude >= -74.09) & + (combined_df.pickup_latitude <= 40.88) & + (combined_df.pickup_latitude >= 40.53) & + (combined_df.dropoff_longitude <= -73.72) & + (combined_df.dropoff_longitude >= -74.72) & + (combined_df.dropoff_latitude <= 40.88) & + (combined_df.dropoff_latitude >= 40.53)] + +latlong_filtered_df.reset_index(inplace=True, drop=True) + +# These functions replace undefined values and rename to use meaningful names. +replaced_stfor_vals_df = (latlong_filtered_df.replace({"store_forward": "0"}, {"store_forward": "N"}) + .fillna({"store_forward": "N"})) + +replaced_distance_vals_df = (replaced_stfor_vals_df.replace({"distance": ".00"}, {"distance": 0}) + .fillna({"distance": 0})) + +normalized_df = replaced_distance_vals_df.astype({"distance": 'float64'}) + +# These functions transform the renamed data to be used finally for training. + +# Split the pickup and dropoff date further into the day of the week, day of the month, and month values. +# To get the day of the week value, use the derive_column_by_example() function. +# The function takes an array parameter of example objects that define the input data, +# and the preferred output. The function automatically determines your preferred transformation. +# For the pickup and dropoff time columns, split the time into the hour, minute, and second by using +# the split_column_by_example() function with no example parameter. After you generate the new features, +# use the drop_columns() function to delete the original fields as the newly generated features are preferred. +# Rename the rest of the fields to use meaningful descriptions. + +temp = pd.DatetimeIndex(normalized_df["pickup_datetime"], dtype='datetime64[ns]') +normalized_df["pickup_date"] = temp.date +normalized_df["pickup_weekday"] = temp.dayofweek +normalized_df["pickup_month"] = temp.month +normalized_df["pickup_monthday"] = temp.day +normalized_df["pickup_time"] = temp.time +normalized_df["pickup_hour"] = temp.hour +normalized_df["pickup_minute"] = temp.minute +normalized_df["pickup_second"] = temp.second + +temp = pd.DatetimeIndex(normalized_df["dropoff_datetime"], dtype='datetime64[ns]') +normalized_df["dropoff_date"] = temp.date +normalized_df["dropoff_weekday"] = temp.dayofweek +normalized_df["dropoff_month"] = temp.month +normalized_df["dropoff_monthday"] = temp.day +normalized_df["dropoff_time"] = temp.time +normalized_df["dropoff_hour"] = temp.hour +normalized_df["dropoff_minute"] = temp.minute +normalized_df["dropoff_second"] = temp.second + +del normalized_df["pickup_datetime"] +del normalized_df["dropoff_datetime"] + +normalized_df.reset_index(inplace=True, drop=True) + + +print(normalized_df.head) +print(normalized_df.dtypes) + + +# Drop the pickup_date, dropoff_date, pickup_time, dropoff_time columns because they're +# no longer needed (granular time features like hour, +# minute and second are more useful for model training). +del normalized_df["pickup_date"] +del normalized_df["dropoff_date"] +del normalized_df["pickup_time"] +del normalized_df["dropoff_time"] + +# Change the store_forward column to binary values +normalized_df['store_forward'] = np.where((normalized_df.store_forward == 'N'), 0, 1) + +# Before you package the dataset, run two final filters on the dataset. +# To eliminate incorrectly captured data points, +# filter the dataset on records where both the cost and distance variable values are greater than zero. +# This step will significantly improve machine learning model accuracy, +# because data points with a zero cost or distance represent major outliers that throw off prediction accuracy. + +final_df = normalized_df[(normalized_df.distance > 0) & (normalized_df.cost > 0)] +final_df.reset_index(inplace=True, drop=True) +print(final_df.head) + +# Output data +transformed_data = final_df.to_csv((Path(args.transformed_data) / 'transformed_data.csv')) + + + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/yellow_data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/yellow_data.yml new file mode 100644 index 000000000000..d092bc8b6742 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/nyc_taxi_data_regression/yellow_data.yml @@ -0,0 +1,12 @@ +## IMPORTANT: this file and accompanying assets are the source for snippets in https://docs.microsoft.com/azure/machine-learning! +## Please reach out to the Azure ML docs & samples team before editing for the first time. + +# +$schema: https://azuremlsdk2.blob.core.windows.net/latest/asset.schema.json +name: yellowdata +version: 3 +description: sample yellow taxi dataset +datastore: azureml:workspaceblobstore +local_path: ./data +path: /sample/data/path +# diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/convert_data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/convert_data.yml new file mode 100644 index 000000000000..b6524fe63085 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/convert_data.yml @@ -0,0 +1,24 @@ + +type: command + + +name: convert_to_mltable_file_dataset +display_name: Convert_To_Mltable_File_Dataset +version: 1 + +inputs: + input_data: + type: uri_folder + +outputs: + file_output_data: + type: mltable + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python convert_data.py + --input_data ${{inputs.input_data}} + --file_output_data ${{outputs.file_output_data}} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/iris-mltable/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/iris-mltable/MLTable new file mode 100644 index 000000000000..c459d92a28bf --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/iris-mltable/MLTable @@ -0,0 +1,7 @@ +paths: + - file: ./iris.csv +transformations: + - read_delimited: + delimiter: "," + encoding: ascii + header: all_files_same_headers diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/iris-mltable/iris.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/iris-mltable/iris.csv new file mode 100644 index 000000000000..8bd75a708148 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/iris-mltable/iris.csv @@ -0,0 +1,75 @@ +5.099999999999999645e+00,3.500000000000000000e+00,1.399999999999999911e+00,2.000000000000000111e-01,1.764052345967664026e+00,4.001572083672232938e-01,9.787379841057392005e-01,2.240893199201457797e+00,1.867557990149967484e+00,-9.772778798764110153e-01,9.500884175255893682e-01,-1.513572082976978872e-01,-1.032188517935578448e-01,4.105985019383723289e-01,1.440435711608779867e-01,1.454273506962975082e+00,7.610377251469934157e-01,1.216750164928284139e-01,4.438632327454256621e-01,3.336743273742668325e-01,1.494079073157606130e+00,-2.051582637658008745e-01,3.130677016509013644e-01,-8.540957393017247767e-01,-2.552989815834078691e+00,6.536185954403606058e-01,8.644361988595057333e-01,-7.421650204064419443e-01,2.269754623987607633e+00,-1.454365674598764757e+00,4.575851730144606805e-02,-1.871838500258335980e-01,1.532779214358457542e+00,1.469358769900285022e+00,1.549474256969163022e-01,3.781625196021735635e-01,-8.877857476301127537e-01,-1.980796468223926965e+00,-3.479121493261526088e-01,1.563489691039800511e-01,1.230290680727720742e+00,1.202379848784411287e+00,-3.873268174079522730e-01,-3.023027505753355659e-01 +4.900000000000000355e+00,3.000000000000000000e+00,1.399999999999999911e+00,2.000000000000000111e-01,-1.048552965067092613e+00,-1.420017937178975176e+00,-1.706270190625012617e+00,1.950775395231789666e+00,-5.096521817516534991e-01,-4.380743016111863786e-01,-1.252795360049926199e+00,7.774903558319100627e-01,-1.613897847557951515e+00,-2.127402802139687077e-01,-8.954665611936756253e-01,3.869024978592620068e-01,-5.108051375688730245e-01,-1.180632184122412109e+00,-2.818222833865486818e-02,4.283318705304176577e-01,6.651722238316788716e-02,3.024718977397813924e-01,-6.343220936809635946e-01,-3.627411659871381255e-01,-6.724604477759510424e-01,-3.595531615405412884e-01,-8.131462820444540496e-01,-1.726282602331676852e+00,1.774261422537528332e-01,-4.017809362082618851e-01,-1.630198346966044598e+00,4.627822555257741777e-01,-9.072983643832421841e-01,5.194539579613895175e-02,7.290905621775368717e-01,1.289829107574106681e-01,1.139400684543300679e+00,-1.234825820353652626e+00,4.023416411775490031e-01,-6.848100909403131986e-01,-8.707971491818817800e-01,-5.788496647644154613e-01,-3.115525321273726611e-01,5.616534222974543800e-02 +4.700000000000000178e+00,3.200000000000000178e+00,1.300000000000000044e+00,2.000000000000000111e-01,-1.165149840783356483e+00,9.008264869541871001e-01,4.656624397304598428e-01,-1.536243686277223741e+00,1.488252193795599698e+00,1.895889176030583156e+00,1.178779571159650708e+00,-1.799248358123509139e-01,-1.070752621510542513e+00,1.054451726931136646e+00,-4.031769469731796285e-01,1.222445070382427446e+00,2.082749780768602954e-01,9.766390364837127525e-01,3.563663971744018832e-01,7.065731681919481533e-01,1.050002072082047849e-02,1.785870493905835188e+00,1.269120927036199165e-01,4.019893634447016528e-01,1.883150697056254375e+00,-1.347759061142446368e+00,-1.270484998485733596e+00,9.693967081580111556e-01,-1.173123405114159912e+00,1.943621185649292649e+00,-4.136189807597473456e-01,-7.474548114407577604e-01,1.922942026480384703e+00,1.480514791434424327e+00,1.867558960426569881e+00,9.060446582753852729e-01,-8.612256850547025389e-01,1.910064953099033680e+00,-2.680033709513803819e-01,8.024563957963951610e-01,9.472519677737479826e-01,-1.550100930908341890e-01,6.140793703460802888e-01,9.222066715665268033e-01 +4.599999999999999645e+00,3.100000000000000089e+00,1.500000000000000000e+00,2.000000000000000111e-01,3.764255311556294337e-01,-1.099400790584194487e+00,2.982381742060559726e-01,1.326385896687030330e+00,-6.945678597313654778e-01,-1.496345403276707620e-01,-4.351535517216374438e-01,1.849263728479341840e+00,6.722947570124354622e-01,4.074618362411104311e-01,-7.699160744453164007e-01,5.392491912918172536e-01,-6.743326606573760706e-01,3.183055827435118251e-02,-6.358460783788809634e-01,6.764332949464997302e-01,5.765908166149409375e-01,-2.082987555779948763e-01,3.960067126616452771e-01,-1.093061508730505782e+00,-1.491257592705605539e+00,4.393917012645369158e-01,1.666734953725290402e-01,6.350314368921063934e-01,2.383144774863942050e+00,9.444794869904138412e-01,-9.128222254441585859e-01,1.117016288095852961e+00,-1.315907410511521158e+00,-4.615846048147089764e-01,-6.824160532463123541e-02,1.713342721649366629e+00,-7.447548220484399017e-01,-8.264385386590143989e-01,-9.845252442543230009e-02,-6.634782863621073723e-01,1.126635922106506982e+00,-1.079931508363423331e+00,-1.147468652411102408e+00,-4.378200447444340337e-01 +5.000000000000000000e+00,3.600000000000000089e+00,1.399999999999999911e+00,2.000000000000000111e-01,-4.980324506923048955e-01,1.929532053816985782e+00,9.494208069257608074e-01,8.755124138519089494e-02,-1.225435518830167991e+00,8.443629764015471162e-01,-1.000215347389564746e+00,-1.544771096777611596e+00,1.188029792352301772e+00,3.169426119248496265e-01,9.208588237808189580e-01,3.187276529430211891e-01,8.568306119026911638e-01,-6.510255933001468653e-01,-1.034242841784464684e+00,6.815945182816269821e-01,-8.034096641738410760e-01,-6.895497777502005432e-01,-4.555325035173431458e-01,1.747915902505672858e-02,-3.539939112534839505e-01,-1.374951293418018805e+00,-6.436184028328905127e-01,-2.223403152224426638e+00,6.252314510271874681e-01,-1.602057655606747621e+00,-1.104383339428450572e+00,5.216507926097440490e-02,-7.395629963913132876e-01,1.543014595406735801e+00,-1.292856909723448577e+00,2.670508693491829288e-01,-3.928281822749560281e-02,-1.168093497741197417e+00,5.232766605317537012e-01,-1.715463312222481052e-01,7.717905512136673529e-01,8.235041539637314445e-01,2.163235949280689852e+00,1.336527949436391971e+00 +5.400000000000000355e+00,3.899999999999999911e+00,1.699999999999999956e+00,4.000000000000000222e-01,-3.691818379424435803e-01,-2.393791775759263885e-01,1.099659595887113150e+00,6.552637307225978036e-01,6.401315260975920518e-01,-1.616956044310834395e+00,-2.432612439893563558e-02,-7.380309092056887010e-01,2.799245990432382425e-01,-9.815038964295794144e-02,9.101789080925919428e-01,3.172182151913020554e-01,7.863279621089761529e-01,-4.664190967359430617e-01,-9.444462559182503769e-01,-4.100496932025484709e-01,-1.702041386144059407e-02,3.791517355550818036e-01,2.259308950690852136e+00,-4.225715166064269307e-02,-9.559450004927769751e-01,-3.459817756993864291e-01,-4.635959746460941999e-01,4.814814737734621763e-01,-1.540797014444624802e+00,6.326199420033171150e-02,1.565065379653755862e-01,2.321810362002757755e-01,-5.973160689653627120e-01,-2.379217297360070038e-01,-1.424060908982531570e+00,-4.933198833621940671e-01,-5.428614760167177478e-01,4.160500462614254991e-01,-1.156182431821912715e+00,7.811981017099933755e-01,1.494484544491368805e+00,-2.069985025013532542e+00,4.262587307781009471e-01,6.769080350302455473e-01 +4.599999999999999645e+00,3.399999999999999911e+00,1.399999999999999911e+00,2.999999999999999889e-01,-6.374370255522290307e-01,-3.972718143287976567e-01,-1.328805775869556227e-01,-2.977908794017283256e-01,-3.090129690471222212e-01,-1.676003806329976697e+00,1.152331564783120044e+00,1.079618592036821090e+00,-8.133642592042028552e-01,-1.466424327802513972e+00,5.210648764527585630e-01,-5.757879698130661250e-01,1.419531633207796739e-01,-3.193284171450951892e-01,6.915387510701865859e-01,6.947491436560059297e-01,-7.255973784635842971e-01,-1.383363955395055411e+00,-1.582938397335081904e+00,6.103793791072051889e-01,-1.188859257784028900e+00,-5.068163542986875436e-01,-5.963140384505081215e-01,-5.256729626954628753e-02,-1.936279805846506941e+00,1.887785967938285514e-01,5.238910238342056047e-01,8.842208704466140989e-02,-3.108861716984717138e-01,9.740016626878340855e-02,3.990463456401301956e-01,-2.772592756426650151e+00,1.955912308250694176e+00,3.900933226879264581e-01,-6.524085823870200418e-01,-3.909533751876010932e-01,4.937417773491884487e-01,-1.161039390343665267e-01,-2.030684467781494362e+00,2.064492861359319420e+00 +5.000000000000000000e+00,3.399999999999999911e+00,1.500000000000000000e+00,2.000000000000000111e-01,-1.105406572324726111e-01,1.020172711715799707e+00,-6.920498477843911589e-01,1.536377054245797735e+00,2.863436888922795687e-01,6.088438344754507625e-01,-1.045253366146954743e+00,1.211145289682700854e+00,6.898181645347883917e-01,1.301846229564998403e+00,-6.280875596415789186e-01,-4.810271184607877171e-01,2.303916697683941806e+00,-1.060015822721547263e+00,-1.359497006783208228e-01,1.136891362602695299e+00,9.772496771485560119e-02,5.829536797532935966e-01,-3.994490292628751771e-01,3.700558878475187496e-01,-1.306526851735316574e+00,1.658130679618188053e+00,-1.181640451285697613e-01,-6.801782039968503613e-01,6.663830820319143200e-01,-4.607197873885532924e-01,-1.334258471402753443e+00,-1.346717505797555336e+00,6.937731526901325108e-01,-1.595734381462668994e-01,-1.337015596684391627e-01,1.077743805976262736e+00,-1.126825808756743541e+00,-7.306777528648248365e-01,-3.848798091812754563e-01,9.435158931707400554e-02,-4.217145129057893460e-02,-2.868871923899076193e-01,-6.162640209564740346e-02,-1.073052762911746866e-01 +4.400000000000000355e+00,2.899999999999999911e+00,1.399999999999999911e+00,2.000000000000000111e-01,-7.196043885517928729e-01,-8.129929885540773116e-01,2.745163577239395081e-01,-8.909150829955279072e-01,-1.157355259190853580e+00,-3.122922511256933098e-01,-1.576670161638158985e-01,2.256723497298209313e+00,-7.047002758562337377e-01,9.432607249694947571e-01,7.471883342046318210e-01,-1.188944955203736109e+00,7.732529774025996838e-01,-1.183880640193317735e+00,-2.659172237996740851e+00,6.063195243593807460e-01,-1.755890583437719421e+00,4.509344618059148435e-01,-6.840108977372165722e-01,1.659550796189872113e+00,1.068509399316009079e+00,-4.533858038513876587e-01,-6.878376110286823497e-01,-1.214077403094120600e+00,-4.409226322925913766e-01,-2.803554951845090848e-01,-3.646935443916853870e-01,1.567038552723639677e-01,5.785214977288783977e-01,3.496544569931739899e-01,-7.641439239064430344e-01,-1.437791473801578457e+00,1.364531848102471301e+00,-6.894491845499376437e-01,-6.522935999350191194e-01,-5.211893123011108742e-01,-1.843069550156648528e+00,-4.779740040404866774e-01,-4.796558140079476562e-01,6.203582983435125264e-01 +4.900000000000000355e+00,3.100000000000000089e+00,1.500000000000000000e+00,1.000000000000000056e-01,6.984571491073360283e-01,3.770889086269340121e-03,9.318483741143036569e-01,3.399649838012619996e-01,-1.568211160255476855e-02,1.609281682982229844e-01,-1.906534935813993525e-01,-3.948495140334503106e-01,-2.677335368939664506e-01,-1.128011331470006873e+00,2.804417053162959750e-01,-9.931236109295806802e-01,8.416312640736364203e-01,-2.494585801609488507e-01,4.949498165009073858e-02,4.938367762809563466e-01,6.433144650629278871e-01,-1.570623408633452733e+00,-2.069036761639717337e-01,8.801789120807822497e-01,-1.698105819432254471e+00,3.872804753950633838e-01,-2.255564229402189369e+00,-1.022506843635603513e+00,3.863055184018809873e-02,-1.656715102321953736e+00,-9.855107376841506506e-01,-1.471835007463586864e+00,1.648134932207559578e+00,1.642277554873339540e-01,5.672902778526693890e-01,-2.226751005151544893e-01,-3.534317487571990712e-01,-1.616474188651032540e+00,-2.918373627478628163e-01,-7.614922118116232985e-01,8.579239242923363262e-01,1.141101866657573405e+00,1.466578715574177627e+00,8.525519394612319779e-01 +5.400000000000000355e+00,3.700000000000000178e+00,1.500000000000000000e+00,2.000000000000000111e-01,-5.986539369229860741e-01,-1.115896985960394439e+00,7.666631816450860670e-01,3.562928174722889141e-01,-1.768538450677030749e+00,3.554817927437690650e-01,8.145198224878663629e-01,5.892558918162996151e-02,-1.850536710093415305e-01,-8.076484876163556592e-01,-1.446534699563387871e+00,8.002979493400275146e-01,-3.091144447717087962e-01,-2.334666615436927217e-01,1.732721186919133238e+00,6.845011068591904113e-01,3.708250012811020735e-01,1.420618051872356569e-01,1.519994860765772726e+00,1.719589307416194535e+00,9.295051114795280789e-01,5.822245913979242626e-01,-2.094603071206144751e+00,1.237219142335065775e-01,-1.301069541937039942e-01,9.395322938556871506e-02,9.430460873225178231e-01,-2.739677167189556339e+00,-5.693120534701850977e-01,2.699043549407613707e-01,-4.668455460527625167e-01,-1.416906113126259470e+00,8.689634868967953674e-01,2.768719058461280302e-01,-9.711045704444846161e-01,3.148172045158237897e-01,8.215857120497958022e-01,5.292646299360853623e-03,8.005648034309967853e-01,7.826017516166135224e-02 +4.799999999999999822e+00,3.399999999999999911e+00,1.600000000000000089e+00,2.000000000000000111e-01,-3.952289826543543549e-01,-1.159420516399912948e+00,-8.593076697161272648e-02,1.942929380457716626e-01,8.758327615873309213e-01,-1.151074684872267218e-01,4.574156062209908113e-01,-9.646120137337284017e-01,-7.826291558275251248e-01,-1.103892990268877522e-01,-1.054628463985013864e+00,8.202478373246812060e-01,4.631303293186070924e-01,2.790957643924534270e-01,3.389041252159445405e-01,2.021043561484797468e+00,-4.688641879667956314e-01,-2.201441285500557843e+00,1.993001968964651927e-01,-5.060354096166589516e-02,-5.175190425104032599e-01,-9.788298593587698715e-01,-4.391895218021479308e-01,1.813384292178212842e-01,-5.028167006425382501e-01,2.412453679543748564e+00,-9.605043816331479967e-01,-7.931173627076716359e-01,-2.288620040014528456e+00,2.514844150215370111e-01,-2.016406627799760098e+00,-5.394546333745013911e-01,-2.756705345605569568e-01,-7.097279658468882424e-01,1.738872677454510907e+00,9.943943913154988934e-01,1.319136876301575612e+00,-8.824188185499185488e-01,1.128594064514568451e+00,4.960009463439621902e-01 +4.799999999999999822e+00,3.000000000000000000e+00,1.399999999999999911e+00,1.000000000000000056e-01,7.714059486768455320e-01,1.029438828782767157e+00,-9.087632459590531120e-01,-4.243176209779014885e-01,8.625960113284510955e-01,-2.655619092974932816e+00,1.513328082573205169e+00,5.531320642075839844e-01,-4.570396066023485471e-02,2.205076557571732931e-01,-1.029935283308976546e+00,-3.499433645891047440e-01,1.100284338220373748e+00,1.298021972326221185e+00,2.696224052563579665e+00,-7.392466628041513554e-02,-6.585529668050037477e-01,-5.142339659399888241e-01,-1.018041875287364784e+00,-7.785475594085075612e-02,3.827324300122681433e-01,-3.424228053195386978e-02,1.096346845665798542e+00,-2.342158013445365394e-01,-3.474506524985632727e-01,-5.812684768603252339e-01,-1.632634526234495231e+00,-1.567767724308454014e+00,-1.179157930637687812e+00,1.301428071664760822e+00,8.952602728899299311e-01,1.374964066392989848e+00,-1.332211654594501749e+00,-1.968624689786020232e+00,-6.600563201340828856e-01,1.758189532960280077e-01,4.986902749098274801e-01,1.047972155968052821e+00,2.842796708072146128e-01,1.742668780655631133e+00 +4.299999999999999822e+00,3.000000000000000000e+00,1.100000000000000089e+00,1.000000000000000056e-01,-2.226056809483204779e-01,-9.130792180417963699e-01,-1.681218215494433510e+00,-8.889713580954499150e-01,2.421179609851230041e-01,-8.887202573536308048e-01,9.367424635352571416e-01,1.412327706037443065e+00,-2.369586905226602980e+00,8.640523004976479182e-01,-2.239604058661736730e+00,4.014990550902874933e-01,1.224870564193659694e+00,6.485610634357617810e-02,-1.279689173204239472e+00,-5.854312042777726210e-01,-2.616454457109007037e-01,-1.822447837899429379e-01,-2.028968407666670581e-01,-1.098827793093137967e-01,2.134800489101688903e-01,-1.208573653733221231e+00,-2.420198298702194994e-01,1.518261170355705403e+00,-3.846454231425177617e-01,-4.438360931551977862e-01,1.078197303714237831e+00,-2.559184666344096470e+00,1.181378601288285868e+00,-6.319037580051672931e-01,1.639285724525866295e-01,9.632135592119682455e-02,9.424681192203937519e-01,-2.675947462353476802e-01,-6.780257815644503694e-01,1.297845790651098730e+00,-2.364173817141180134e+00,2.033418170524324900e-02,-1.347925422629120407e+00,-7.615733882565589585e-01 +5.799999999999999822e+00,4.000000000000000000e+00,1.199999999999999956e+00,2.000000000000000111e-01,2.011256681463136964e+00,-4.459542645585702625e-02,1.950696971513811717e-01,-1.781562855705591364e+00,-7.290446587946957102e-01,1.965574007287849145e-01,3.547576931132180866e-01,6.168865543932787743e-01,8.627898917576322380e-03,5.270042084546596728e-01,4.537819126356840149e-01,-1.829740411004531442e+00,3.700572191014953050e-02,7.679024077327036846e-01,5.898798207345194999e-01,-3.638588099707898982e-01,-8.056265075393678199e-01,-1.118311924321632178e+00,-1.310540115414123297e-01,1.133079879559721892e+00,-1.951804101481602105e+00,-6.598917297294979445e-01,-1.139802455426774053e+00,7.849575212405001112e-01,-5.543096265713008952e-01,-4.706376581547914162e-01,-2.169495699366489894e-01,4.453932508947973101e-01,-3.923889981496367363e-01,-3.046143054799926642e+00,5.433118913875196743e-01,4.390429576720425442e-01,-2.195410283312132504e-01,-1.084036620671934514e+00,3.517801106813582823e-01,3.792355335355867552e-01,-4.700328827008747878e-01,-2.167314705755386262e-01,-9.301565025243212492e-01,-1.785890920873291488e-01 +5.700000000000000178e+00,4.400000000000000355e+00,1.500000000000000000e+00,4.000000000000000222e-01,-1.550429345083480959e+00,4.173188210318354852e-01,-9.443684908242938603e-01,2.381031478323121231e-01,-1.405962916267899265e+00,-5.900576458695396820e-01,-1.104894050659278315e-01,-1.660699811869263298e+00,1.151478731400921579e-01,-3.791475628799227393e-01,-1.742356197809230567e+00,-1.303242754112315716e+00,6.051200840821666649e-01,8.955559855513239853e-01,-1.319086397799670574e-01,4.047618120404974928e-01,2.238435633129106928e-01,3.296229821277380512e-01,1.285984007080293035e+00,-1.506998398214272061e+00,6.764607323616231849e-01,-3.820089555778202195e-01,-2.242589342516403406e-01,-3.022497304550700314e-01,-3.751471166612838637e-01,-1.226196191783019085e+00,1.833391992576012541e-01,1.670943032788857252e+00,-5.613302044875711355e-02,-1.385042735095726001e-03,-6.872990371566635170e-01,-1.174745464181114751e-01,4.661664260340307453e-01,-3.702424407043429233e-01,-4.538040410520010615e-01,4.032645401632468096e-01,-9.180047698190454408e-01,2.524966270768724264e-01,8.203217972614217368e-01,1.359948541679484313e+00 +5.400000000000000355e+00,3.899999999999999911e+00,1.300000000000000044e+00,4.000000000000000222e-01,-9.038200727694681302e-02,1.367597239806713549e+00,1.034409886481518104e+00,-9.962126403710661604e-01,-1.217938511593150919e+00,-3.049636378544204329e-01,1.028935492594854173e+00,-7.228700756000490391e-02,-6.006575576577884990e-01,1.552243180048560767e+00,2.869044880033463918e-01,-2.320594275790741623e+00,3.171606262926887632e-01,5.200406145708678096e-01,2.256086544711037867e-01,4.497121002319925398e-01,-6.727560892298173334e-02,-1.318395869644734208e+00,-3.707040032204534374e-01,-9.456157955562913831e-01,-9.327409107943778199e-01,-1.263068349102275389e+00,4.524890926396463731e-01,9.789614541262708913e-02,-4.481653626807080570e-01,-6.493379277303881203e-01,-2.342310502145216952e-02,1.079194728112489177e+00,-2.004215715498915085e+00,3.768765208508927378e-01,-5.457119740177823752e-01,-1.884585844979447700e+00,-1.945703083163958791e+00,-9.127834941352918063e-01,2.195095557930452634e-01,3.930629339800916222e-01,-9.389815726777852589e-01,1.017020991413244646e+00,1.422983496516106117e+00,3.960865849565601837e-01 +5.099999999999999645e+00,3.500000000000000000e+00,1.399999999999999911e+00,2.999999999999999889e-01,-5.914026678081107935e-01,1.124419184510368153e+00,7.553956956633383069e-01,8.674074113549179454e-01,-6.564636749715314634e-01,-2.834554505274702318e+00,2.116791021483675372e+00,-1.610878403449933716e+00,-3.576807186022112894e-02,2.380745351219750283e+00,3.305767562743739951e-01,9.492464735582356594e-01,-1.502396569381712732e+00,-1.777666954733706284e+00,-5.327027919795545019e-01,1.090749734434500073e+00,-3.462494476473099714e-01,-7.946363210714987302e-01,1.979672899449674561e-01,1.081935218477265259e+00,-1.444940199073371678e+00,-1.210542994123351646e+00,-7.886692545093662021e-01,1.094638374712091355e+00,2.348215259487319018e-01,2.132153410570443608e+00,9.364457258311158494e-01,-3.509517686967038308e-02,1.265077838088765949e+00,2.114970127318780146e-01,-7.049213525074449205e-01,6.799748442451023500e-01,-6.963266538610828338e-01,-2.903971008038667700e-01,1.327782695957983039e+00,-1.012814862173993524e-01,-8.031413873416283211e-01,-4.643376914354916396e-01,1.021790585588673084e+00,-5.525406734167291889e-01 +5.700000000000000178e+00,3.799999999999999822e+00,1.699999999999999956e+00,2.999999999999999889e-01,-3.868708468506465437e-01,-5.102927396336285337e-01,1.839254943403099418e-01,-3.854897603756082813e-01,-1.601836048972536952e+00,-8.871809418450402607e-01,-9.327890415064382656e-01,1.243319384455154886e+00,8.126740421090423716e-01,5.872593793998259759e-01,-5.053583172644099397e-01,-8.157915419939713031e-01,-5.075176016573570426e-01,-1.051880102551673968e+00,2.497200391587007129e+00,-2.245321648371402024e+00,5.640085350738091030e-01,-1.284552297992527237e+00,-1.043434914946926445e-01,-9.880019424937344086e-01,-1.177628962482630826e+00,-1.140196300934961604e+00,1.754986153742058574e+00,-1.329884223095919860e-01,-7.657021944780862954e-01,5.557869640828729807e-01,1.034931456629935298e-02,7.200337593416528126e-01,-1.824256655937829930e+00,3.036039044620014171e-01,7.726948371023817375e-01,-1.661598291114563697e+00,4.481952844233124678e-01,1.696181572828160622e+00,-1.485770335470271673e-02,8.214059370248112391e-01,6.705704503109098935e-01,-7.075056975105769030e-01,3.976673458649516990e-02,-1.566994710861602469e+00 +5.099999999999999645e+00,3.799999999999999822e+00,1.500000000000000000e+00,2.999999999999999889e-01,-4.513030371025261167e-01,2.656879749662359180e-01,7.231004937377981667e-01,2.461212524791161690e-02,7.199837301431654124e-01,-1.102906212955369725e+00,-1.016972745548715973e-01,1.927938451307721623e-02,1.849591246679636480e+00,-2.141666562000842378e-01,-4.990166379941828878e-01,2.135122384354860847e-02,-9.191134448699437298e-01,1.927538490652161707e-01,-3.650552165462576659e-01,-1.791327548041183659e+00,-5.858655113386084662e-02,-3.175430939301992495e-01,-1.632423302067983251e+00,-6.713415461452176825e-02,1.489355962074480288e+00,5.213037482757136853e-01,6.119271927311578096e-01,-1.341496725583042560e+00,4.768983689222224265e-01,1.484495813800780772e-01,5.290452383344316223e-01,4.226286217088256469e-01,-1.359780725503813681e+00,-4.140081155796743184e-02,-7.578708604251660486e-01,-5.008409428482209214e-02,-8.974009269018304868e-01,1.312470367140996297e+00,-8.589723884443423163e-01,-8.989421564655359909e-01,7.458640654355352950e-02,-1.077099069403994802e+00,-4.246633024328657080e-01,-8.299645975379619234e-01 +5.400000000000000355e+00,3.399999999999999911e+00,1.699999999999999956e+00,2.000000000000000111e-01,1.411172063889611694e+00,7.858038268311725583e-01,-5.746951846539464365e-02,-3.912170521740162554e-01,9.409176145751133591e-01,4.052040803228880717e-01,4.980524046828567197e-01,-2.619223734425048244e-02,-1.688230027771432162e+00,-1.124659825595527157e-01,-5.324899192090677413e-01,6.450552734598768989e-01,1.011842432994189078e+00,-6.579510447611686130e-01,4.683852342770516430e-01,1.735878997685713188e+00,-6.677127205705589708e-01,1.681921740073137661e+00,-8.525858471706470043e-01,2.295975560795144449e-02,-1.114561184184125094e-02,1.149889987006237450e-02,-8.376780419079452589e-01,-5.911831037644297293e-01,-6.677202863593993953e-01,3.269625954044573790e-01,3.300351145103116446e-01,2.225944331738258786e+00,1.370989006291121415e+00,-5.098432421384790914e-01,3.248696157961860620e-01,9.971179807917595062e-01,3.060182433851780723e-02,-6.964157844693558141e-02,5.157494276988904003e-02,8.672766288084278186e-01,-8.483205228052325131e-01,-3.256694688201741683e-01,4.704331448464818544e-01,3.114470715541555190e-01 +5.099999999999999645e+00,3.700000000000000178e+00,1.500000000000000000e+00,4.000000000000000222e-01,2.395827598563913252e-01,-3.698011663038032193e-01,9.725357891425369106e-01,2.133868247204537383e+00,4.064154936762062187e-01,-1.931767015498399021e-01,7.557402888945425889e-01,-5.391326367529899466e-01,-7.496903447028966383e-01,3.280874761371180282e-02,-2.582796632969944550e+00,-1.153950363652009425e+00,-3.479618559208458306e-01,-1.353388858147713369e+00,-1.032643101892129600e+00,-4.367483374580073963e-01,-1.642965293530609161e+00,-4.060717962598319186e-01,-5.352701645328444835e-01,2.540520838501601764e-02,1.154184030494019186e+00,1.725044164928659085e-01,2.106202134206362417e-02,9.945445703071174870e-02,2.273927751211284598e-01,-1.016738648609768925e+00,-1.147753247707981733e-01,3.087512418366131217e-01,-1.370759982543060529e+00,8.656529228158532652e-01,1.081376034458189750e+00,-6.313759884493888030e-01,-2.413377914531045498e-01,-8.781903428100731324e-01,6.993804835878171255e-01,-1.061222287445909185e+00,-2.224770102429202978e-01,-8.589199078076715788e-01,5.095427701128949632e-02,-1.794229271489721000e+00 +4.599999999999999645e+00,3.600000000000000089e+00,1.000000000000000000e+00,2.000000000000000111e-01,1.326461642365693416e+00,-9.646064242062639682e-01,5.989468311627604846e-02,-2.125230447703091996e-01,-7.621145119224981279e-01,-8.877801366359353574e-01,9.363985435524595502e-01,-5.256405931019396682e-01,2.711701846373109070e-01,-8.014968853943748028e-01,-6.471814318477606687e-01,4.722471500878487327e-01,9.304084961111163121e-01,-1.753164023270199490e-01,-1.421919871640436872e+00,1.997956079750004665e+00,-8.565493082342094944e-01,-1.541587399671787484e+00,2.594424587768151991e+00,-4.040322938509371409e-01,-1.461732688261408120e+00,-6.834397667886817906e-01,3.675448960222690298e-01,1.903115575939396953e-01,-8.517291972535899758e-01,1.822723600127959420e+00,-5.215796779933731253e-01,-1.184686590411551999e+00,9.606933984606597088e-01,1.329062846539682319e+00,-8.174930976162264606e-01,-1.401347293039310493e+00,1.030438267415604736e+00,-2.047323613057961733e+00,-1.226621659396615494e+00,9.674461500502350431e-01,-5.535254802238957078e-02,-2.639373485926878593e-01,3.528166064943783486e-01,-1.527744235454086830e-01 +5.099999999999999645e+00,3.299999999999999822e+00,1.699999999999999956e+00,5.000000000000000000e-01,-1.298686722163090224e+00,1.276075346006187550e+00,1.325014052886815286e+00,2.053325637779596924e-01,4.513401543201027433e-02,2.339624806020057957e+00,-2.764328450158372030e-01,-2.595769818340394330e-01,3.644812492405055671e-01,1.471321956142338294e+00,1.592770754417483614e+00,-2.585726316767712474e-01,3.083312459593452459e-01,-1.378083467064077139e+00,-3.119761079162129414e-01,-8.402903954793065067e-01,-1.006831752298983806e+00,1.681576716267327631e+00,-7.922866618061449318e-01,-5.316059080114549085e-01,3.658487879168582091e-01,1.297825266973585467e+00,4.811151263888354124e-01,2.759355114021582178e+00,-7.466797825114956932e-02,2.587164402297460475e-01,2.756006739840563546e-01,1.435049386789154502e+00,5.072389511096152548e-01,-1.162297003871490958e-01,-9.474885949068795332e-01,2.444434559616325831e-01,1.401344831291959636e+00,-4.103817936578705861e-01,5.289436184165822175e-01,2.461477886848441599e-01,8.635196583813146143e-01,-8.047537406378693081e-01,2.346647030526561650e+00,-1.279161107028258249e+00 +4.799999999999999822e+00,3.399999999999999911e+00,1.899999999999999911e+00,2.000000000000000111e-01,-3.655510899860373031e-01,9.380925409056455333e-01,2.967331724941133508e-01,8.299861590811031808e-01,-4.961023339825623713e-01,-7.480498268034106724e-02,1.223198363881738623e-02,1.569259614535904346e+00,6.904290243830489837e-01,7.966721083646713941e-01,-6.579260925367952373e-01,9.688826385630507909e-01,2.255816635688035199e-01,1.389145315677927428e+00,2.014060154918468015e+00,-3.067657760270045553e-01,-4.063031304450625547e-01,-8.640449911023695417e-01,-1.435795117163205514e-01,-3.820254489503835948e-01,3.595043995710101581e-01,-1.445668169337359366e-01,-3.615992807816197918e-01,1.064585136127851772e+00,-9.378802311514516932e-01,4.331079531513436498e-01,-4.059417271884834255e-01,7.243685048699644025e-01,1.385261546722230452e+00,-3.030982534240727055e-01,4.410329072731513644e-01,1.787928657331798454e-01,-7.994223995430965735e-01,2.407875097419384380e-01,2.891205052788121677e-01,4.128708204461746800e-01,-1.983988968200457448e-01,9.419230031014656779e-02,-1.147610944843135306e+00,-3.581140754798567416e-01 +5.000000000000000000e+00,3.000000000000000000e+00,1.600000000000000089e+00,2.000000000000000111e-01,5.559626797097979578e-01,8.924738873315303245e-01,-4.223148241252707158e-01,1.047140294332843252e-01,2.280533251240672021e-01,2.014799467044328662e-01,5.407735853003902138e-01,-1.818077630383569510e+00,-4.932407014757259067e-02,2.390336012467648985e-01,-1.000330348953705428e+00,1.673985707010710033e+00,1.615592672381679640e-01,1.563404745028929455e+00,-7.905230218330772107e-01,-9.073001215253270191e-01,2.242522209656818977e-01,-1.678688362828656633e+00,2.149655906260935223e-01,9.721923200291802958e-02,1.015665281542101228e+00,7.010413411650970872e-01,-4.174773498850339881e-01,-1.097496654770244717e+00,1.712305221343296546e+00,-7.921150205651500409e-01,-1.045524557069465788e+00,-1.084856059461445144e+00,1.117305315536664567e+00,-5.189002044248520740e-01,-7.537044661806008294e-01,1.376898259033473293e-01,-2.069447105572910228e-01,-6.780954607862469397e-01,7.539914669784796297e-01,1.065315492097994809e+00,9.853175089398669151e-01,7.669196696611989550e-01,4.026255311300351858e-01,-1.775887999961828889e+00 +5.000000000000000000e+00,3.399999999999999911e+00,1.600000000000000089e+00,4.000000000000000222e-01,1.669250806376968654e+00,3.019892103575529396e-01,6.081564276006414804e-01,1.114962322947402162e+00,1.433352502881991786e+00,4.183980113091925190e-01,4.355461592956536010e-01,-5.992242774597194011e-01,3.308975113876019836e-02,-8.541612608143545060e-01,-7.199405321418946846e-01,-8.935744023141912740e-01,-1.560238909972873622e-01,1.049093187920010273e+00,3.170974773290179627e+00,1.894996375479134632e-01,-1.348413087756120010e+00,1.264983329856256056e+00,-3.007838764760271122e-01,-6.606085939769920090e-01,2.098494779230553053e-01,-1.240624599556227503e+00,2.224631640086067730e-01,-8.837552319915496779e-02,9.837790681547566030e-02,3.814162542091708574e-01,6.749225724080680500e-02,1.633808411289249321e-02,2.843145189979445209e-01,4.154006261711268300e-01,-1.031482460315257699e+00,-1.429991258685448408e+00,-6.163805217221475508e-02,-1.432735489934108042e+00,8.753147092167086474e-02,9.387468756823100779e-01,6.071116719160458697e-01,-1.048170406825473133e+00,-8.602624519575188256e-01,3.283012950007553887e-01 +5.200000000000000178e+00,3.500000000000000000e+00,1.500000000000000000e+00,2.000000000000000111e-01,-4.012978051335100438e-01,-3.166552950521069332e-01,5.969064812479538684e-01,-9.872866934576524089e-01,-4.012347099111824300e-01,-8.000824760846012573e-01,-1.043129498035355596e+00,-8.570781886711646980e-01,6.774621693464116801e-01,5.182038948242156245e-02,-8.791606288350748422e-01,-2.311016075929965274e-01,-1.638807307122177814e+00,-7.333128075836656823e-01,2.149574534867286779e+00,-9.024384966575059452e-02,7.316589270303924808e-01,-6.548837514448298258e-02,3.481692352418086500e-01,6.632580896791739899e-01,-1.104616597526470789e+00,-3.093625727395893713e-02,1.578865194416488205e+00,-7.955005500532910112e-01,-5.664398537322192784e-01,-3.076912773670017476e-01,2.690240731762466586e-01,5.249178636458826652e-01,1.267411654818656697e+00,4.994982334686594583e-01,-6.205312579833403147e-02,1.259167129610813785e+00,7.041110221415821657e-01,-1.495679516257016228e+00,2.526368240355998385e+00,1.769921388196733725e+00,-1.682142227670740953e-01,3.779101017384750572e-01,1.324358749995839135e+00,-1.722007926968826264e-01 +5.200000000000000178e+00,3.399999999999999911e+00,1.399999999999999911e+00,2.000000000000000111e-01,7.303517903770193609e-01,1.104578473571476538e+00,-1.014825907734441035e+00,-6.023318535828621201e-01,9.214083978105812589e-01,4.608144771488305036e-01,9.237965603139468573e-01,-1.325680146537180359e-01,-2.890052109542329828e-01,-1.998639475583372738e+00,-1.146000426507443271e+00,4.706609465849369289e-02,8.245572195642364433e-01,5.311783665356952788e-01,-1.282419740277020159e-01,-2.717715664906966699e-01,2.171796326382801345e-01,7.821118109215217939e-02,1.404545514939711914e+00,1.464407704782498543e-01,-1.481245962197298427e+00,-1.272558135032316962e+00,1.518759336963580120e+00,-1.171160461450080348e+00,7.644974530335335583e-01,-2.683727352093812080e-01,-1.697582939024854798e-01,-1.341327827684201113e-01,1.221384959459198338e+00,-1.928418285439646718e-01,-3.331928284515295324e-02,-1.530803497399492619e+00,2.066905117080032883e-01,5.310425069780596585e-01,2.391455806537870210e-01,1.397896261086735370e+00,5.517135478023173917e-02,2.989774561190176039e-01,1.648504010268178943e+00,-1.550014189358147831e+00 +4.700000000000000178e+00,3.200000000000000178e+00,1.600000000000000089e+00,2.000000000000000111e-01,-4.558253477993688407e-01,1.426158752019266229e+00,9.361291483110824041e-01,6.783800988404703469e-01,8.326507394644783178e-01,3.270662091210220779e-01,1.631597427532271549e+00,3.777591697307178809e-01,2.398671058952785706e-01,1.589586741256432678e-01,1.928639555503860181e-01,-1.157017280815867855e+00,7.706730544633433322e-01,-1.304397337833273218e-01,1.821915097860405952e+00,-7.565047058842289118e-02,4.209182841756565763e-01,2.466021862613344273e-01,-6.255570351092533121e-01,9.921368285185058200e-01,1.905063640560017646e+00,-1.477721965984477720e-02,-3.004787855854222922e-01,-3.550287310553740805e-01,-1.892361893317341393e+00,-1.778131437030125439e-01,2.509981160083239460e-01,1.054757925180282774e+00,9.600477411499278579e-01,-4.164990824366924804e-01,-2.768229947738883312e-01,1.123905305614439021e+00,-1.734638970728791252e-01,-5.100295397556169341e-01,1.392518449434272387e+00,1.037585667050634042e+00,1.879179177425780237e-02,-5.937774477786674776e-01,-2.011880319244709003e+00,5.897036055747238992e-01 +4.799999999999999822e+00,3.100000000000000089e+00,1.600000000000000089e+00,2.000000000000000111e-01,-8.963697225521801704e-01,-1.962732009140752076e+00,1.584820527349017905e+00,6.479677910098883276e-01,-1.139008193116965328e+00,-1.214401382959259035e+00,8.709617821716195696e-01,-8.779706165358701631e-01,1.296149867527883304e+00,6.164593126261552758e-01,5.365965205668234983e-01,4.046954556143003146e-01,1.914508720239117834e-01,8.805111991771105151e-01,-4.540803625156051293e-01,8.595197343438468196e-02,7.519465876771956880e-01,5.629897185861277853e-01,-1.194986805268660301e+00,-5.004096673042639498e-01,2.528035054191545283e-01,-4.080147090398968945e-01,1.774658560973333188e+00,-3.931531947541128669e-01,-1.622184475766908496e-01,7.694301781773038584e-01,3.305327432349157712e-01,-1.452744572047692251e-01,-7.564935288807482783e-01,3.015140573967661775e-01,1.039096440378392661e+00,4.790952240982285781e-01,-7.781835214561222402e-01,1.736774956976710804e+00,-1.446577890035894320e+00,-1.582685641802789034e+00,9.605572244572283536e-01,2.258404786026901034e-01,-5.494985463040402696e-01,-1.098570727555329585e+00 +5.400000000000000355e+00,3.399999999999999911e+00,1.500000000000000000e+00,4.000000000000000222e-01,2.320799839280298205e+00,1.170908721554419496e-01,5.342011708457714558e-01,3.178850972381815909e-01,4.348079577311579347e-01,5.400944605248059194e-01,7.324240097548762041e-01,-3.752224007606727030e-01,-2.916419863518445732e-01,-1.741022808358901441e+00,-7.803044065015394271e-01,2.711127964467148765e-01,1.045023375502690532e+00,5.990395263761840727e-01,-3.406923438779304592e-01,-1.263172912085154254e+00,-2.777359145427433340e+00,1.151733974780799086e+00,-5.892289865101497659e-01,-4.484650062040592688e-01,1.315739679080687174e-01,-1.405560047391889889e+00,-3.497821801115368889e-01,2.023471949769974021e+00,5.053869385773427370e-01,3.592491565134564024e-01,-1.582494477981758463e+00,2.243601894582640366e+00,-1.422794908626342725e+00,1.922324755444398514e+00,-2.115056015187807503e+00,1.405365438724420324e+00,1.618054269000225531e+00,-8.244091213278346153e-01,4.225803722728827538e-01,5.474805721046650531e-01,-8.137944832313058763e-01,-1.449117610736930351e+00,-1.317717343140765385e+00,5.410082199598076347e-01 +5.200000000000000178e+00,4.099999999999999645e+00,1.500000000000000000e+00,1.000000000000000056e-01,-8.511560251940573918e-02,-5.643010333021604152e-01,9.667680111664601617e-01,5.080679093914777233e-01,-7.554627263656333858e-01,-1.201201519017389252e+00,5.232617386880769050e-01,-5.375833685580618804e-01,9.920486253150243017e-02,1.576298972627717676e+00,5.023282400747796084e-01,-8.622669997532367292e-01,1.606611898197728150e-01,-9.526449528153877466e-01,1.608522155948723720e+00,-5.615787496032208503e-01,2.072707469736186359e-01,3.077325746794319916e-01,1.592504683737024362e-01,-1.958548955136538705e+00,-1.446421063983328592e+00,-4.523502755690916866e-01,3.194318333315306346e-01,-1.377792142857706681e-01,-9.571474731510167810e-01,-1.348424319121700909e+00,-4.015575444993436105e-01,-4.684760446797231470e-01,5.128364575927566449e-01,-3.263184621583181122e-01,6.027076564293295524e-01,-5.946497697204053967e-01,-2.559576692142683241e-01,-3.480463796426194190e-01,-7.823669669020897333e-01,6.251186564337302132e-01,-8.135959970945070285e-01,-5.216415099706189773e-01,-7.311964594819723995e-02,-1.297379655956739875e+00 +5.500000000000000000e+00,4.200000000000000178e+00,1.399999999999999911e+00,2.000000000000000111e-01,-3.249349583204991232e-01,-7.113063597427885520e-01,-3.881541924822495826e-01,-5.992800267109062162e-02,-7.999136231406647202e-01,-2.200757798203555882e-01,1.308668752352179165e+00,-2.579855825448711115e-02,1.145262173019224727e+00,3.464944420067607167e-01,7.741606098188164031e-01,-7.744589687708258730e-01,1.049071650855127186e-01,1.339129226154759100e-01,-6.126257388749356547e-01,-8.228283242942817655e-01,-1.490265387907298233e+00,1.496139636951631990e+00,-9.724028893524976347e-01,1.346221073222300113e+00,-4.674931736578534780e-01,-8.624932997247338751e-01,6.225191403049976646e-01,-6.311919417468571103e-01,5.684589189242769125e-01,-3.328117648522095906e-01,4.804244961177867590e-01,-9.681860639071049324e-01,8.313510579847682713e-01,4.879726826630045866e-01,-9.196506900626617576e-01,2.642935721014741723e+00,5.401230264004940329e-01,2.290467070530538773e+00,1.600267818748759119e+00,-1.888347802177837986e-01,-4.122717546045429060e-01,-4.034591834208012262e-01,-1.830028550427810208e+00,-6.958351193495473375e-01 +4.900000000000000355e+00,3.100000000000000089e+00,1.500000000000000000e+00,1.000000000000000056e-01,2.467660239799705779e-01,1.525957560884808384e+00,-7.727718829782020959e-01,8.820565993630106183e-01,-1.252593341503319024e+00,-5.863200252111323563e-01,-4.576405942895259704e-01,3.718110814974934786e-01,4.573096467208112581e-01,9.623417448143452013e-01,7.708369604049366552e-01,2.431682154024917275e-01,3.903649435086223862e-01,1.588530691097532532e+00,-5.109261812322630769e-01,7.747283190671621078e-01,-1.808143926498251508e+00,4.113342428976086151e-01,-4.832495424791073968e-01,2.571182431510025176e-03,1.040086245053703173e+00,1.646438095263976220e-01,8.851875412089272865e-01,1.473764815138404849e+00,3.890939688657205631e-01,1.171041064620488292e+00,-3.265609776792077201e-01,-8.209882269614044575e-03,-5.226194163984779761e-01,1.042977594646375961e+00,4.140913537935950739e-01,-5.072344618949226058e-01,1.546688336463321878e-01,1.041568388818581825e+00,-3.926799103795318435e-02,-9.489328108497634418e-01,1.319117557874122104e-01,-1.980565591068939701e+00,7.687706443994749561e-01,-4.213275873246805081e-01 +5.000000000000000000e+00,3.200000000000000178e+00,1.199999999999999956e+00,2.000000000000000111e-01,-4.693107362791067438e-01,8.756956787795067143e-01,-1.365162877225168714e+00,1.947098642820357828e+00,-4.802420417382233242e-01,-5.232509433848950842e-01,1.021224743167163052e+00,7.086952731104265713e-01,2.451229719075076030e+00,-2.112059836315199890e-01,-1.204066386644097320e-01,-1.479315979963253591e+00,-3.321022773488251367e-01,-7.214312955717557818e-01,-4.487670131054991574e-01,-1.744187756553955193e+00,1.660607559894514029e+00,-1.416603482425640603e+00,-2.802202798391713046e+00,-1.188424421583019308e+00,-6.038395527961509801e-01,-1.149554063257118175e+00,1.098303540732512351e+00,-1.378391785960938476e-01,2.538560440645898711e-02,6.103917643054127540e-01,2.860125269781179647e-01,9.785672974460429829e-01,-1.109477553636145197e+00,-5.475181006794317407e-01,6.659671460695377743e-01,-2.534554462084229964e+00,-1.375184479317240749e+00,5.009922321799465950e-01,-4.802490349949254389e-01,9.361075501096975948e-01,8.091802968531627283e-01,-1.198092880191038212e+00,4.066570874668811730e-01,1.201697855667506420e+00 +5.500000000000000000e+00,3.500000000000000000e+00,1.300000000000000044e+00,2.000000000000000111e-01,1.474344016509719080e-01,-9.774648772458691681e-01,8.793899419133700546e-01,6.354245265539955057e-01,5.426107834987963230e-01,7.159388934369916857e-01,-2.994612860227618967e+00,8.809375610809715429e-01,1.808131810578975429e+00,4.366384746292930052e-01,1.927289964997268290e-01,6.964386733914392780e-01,3.382254736851152965e-01,6.517812617006160103e-01,1.471000245410806345e-03,-7.667048545369002932e-01,-1.004322712214613444e+00,-9.981917282318640838e-01,-1.373042550950895224e+00,-1.067742011019106485e+00,1.761266127419863103e+00,7.540956636562426985e-01,-6.250273906846712801e-01,-3.903926939855080769e-01,1.125575309064542895e-01,-6.555450294843581105e-01,6.751685717432485967e-02,7.776041379029120515e-01,-3.574273354817348453e-02,3.360157426619921339e-01,8.864915393596158877e-01,-2.721317560182082151e-01,2.847905991343631649e-01,-3.093775928833613631e-01,-2.852886983441639893e-02,-3.247302650829599902e-01,-5.288698535561152658e-01,1.737118529870234351e-01,5.665453158182124360e-01,1.463044460010442527e-01 +4.900000000000000355e+00,3.100000000000000089e+00,1.500000000000000000e+00,1.000000000000000056e-01,4.987269583119319782e-01,-7.379317802412298510e-01,-1.203735192199779425e+00,4.170435029676035632e-01,6.878813911747545529e-01,4.985726659982264719e-02,1.348035780424718721e+00,9.076987979878986534e-01,2.680570840769000540e+00,-2.008085139956655718e-01,-9.988487960953681410e-01,-7.401367907395135504e-01,-5.654978063746562977e-01,4.760313834381145193e-01,-2.158068563961256903e+00,1.318551018090836635e+00,-2.392965911423441394e-01,-2.467935577887517828e-01,-1.079343166024995249e+00,-1.142255514501802072e-01,1.323976766753355225e-02,-1.219449276002772670e-01,3.390592559424304153e-01,-5.896320419510298061e-01,-8.958157604108271110e-01,5.483281304979799042e-01,9.866745381579566931e-02,1.971810551973673942e-01,1.059027254441966326e+00,-1.022564391260685657e+00,-8.552404572508641722e-01,1.257219650828994117e+00,-1.482883357574042549e+00,-1.309412146331014215e+00,8.178618311849957800e-01,2.382001920220386260e-01,1.052321370592758515e-01,-9.165940810038318565e-02,3.126754702756948112e-02,-9.211211469195591806e-02 +4.400000000000000355e+00,3.000000000000000000e+00,1.300000000000000044e+00,2.000000000000000111e-01,1.355442702594418236e+00,-3.981481287500751032e-01,-1.613735362777791726e-01,1.794448805225073551e+00,2.750970202983580096e-02,2.232016389525177669e+00,-1.049797010189535557e-01,1.367414982460158468e+00,-1.655344038309677801e+00,1.536444608156663783e-01,-1.584473563150935460e+00,8.444543066045863133e-01,-1.212867816209024729e+00,2.837695543833455014e-01,-2.821958766904351101e-01,-1.158203185184028872e+00,-1.619359982897542460e+00,-5.110404635801097939e-01,1.740629445895330862e+00,-2.934850548893774835e-01,9.172215421158560478e-01,-5.704286766218814864e-02,8.767267736904523767e-01,-1.826911378304517664e+00,-4.031883068495333289e-01,9.494055237932187419e-01,-1.632549488331787313e-01,-8.645528271104713225e-02,-4.304619118857929694e-01,1.149379383367123975e+00,2.975143539549459093e-01,4.402227617534797133e-02,6.430545453392927380e-01,5.882249291179366679e-01,2.125870464375365920e-01,1.547031496990844524e+00,-6.028753363911903973e-02,2.780810479679439728e-01,-6.429525533528904768e-01,1.501152270061291982e-01 +5.099999999999999645e+00,3.399999999999999911e+00,1.500000000000000000e+00,2.000000000000000111e-01,1.587761523745367498e+00,-6.432576017887388087e-01,-1.133592825638458867e+00,9.967596428198155500e-01,-1.487661522336792552e-01,9.600420496977001006e-02,-4.511330369333481360e-02,7.912172392953507882e-02,8.505306835234381913e-01,-8.391241905992736783e-01,-1.011774084105488525e+00,8.496813703770766946e-02,-1.606439689449832731e+00,-1.373053536041928480e+00,1.866683148331627073e+00,7.574683300614039050e-01,-1.005647186901453827e-02,1.238006935958439803e+00,-1.040599230085144988e+00,-3.156031233858582197e-01,6.234536094243824378e-01,8.906716814313947461e-01,5.129168468277763848e-01,-2.541238807688224632e+00,-9.680821176645779680e-01,4.770680923568652587e-01,-3.559514930468063443e-01,2.540231620759171527e+00,9.265583009670964598e-01,5.580818806186658154e-01,-1.116949553746723556e+00,-3.529673960291555834e-02,2.412039642189525157e-01,1.127783630127802361e+00,8.811310970996323322e-01,1.032989194519945642e+00,-9.239120158100020408e-01,1.412151698298630853e+00,-1.380430752307269193e+00,-5.359145616661618039e-01 +5.000000000000000000e+00,3.500000000000000000e+00,1.300000000000000044e+00,2.999999999999999889e-01,4.307711349456414540e-01,-1.498915917331393177e-01,-1.006036857920391547e+00,-8.215498256031326108e-01,-1.548254322849042408e+00,5.319746390071913300e-01,1.260568845042149277e+00,-1.003935034013660188e-01,-4.003488150134233980e-01,-1.472322928466489600e+00,9.132019242521776103e-01,2.211304333239493047e+00,-1.797455804366897558e+00,-1.063432938154606822e+00,-6.795930425441440992e-01,-5.643179096824889607e-01,2.273459501434809960e-01,1.614249547280227404e+00,1.008597286860103637e+00,5.275973827743158928e-01,-7.239287040586021016e-01,-1.119628233680454388e+00,-7.967753063063008900e-01,1.548066801378738644e+00,-6.174330145790107166e-02,-4.468362536626211967e-01,-1.837557302499922551e-01,8.246182196384677088e-01,-1.312849674549791734e+00,1.414874135922422393e+00,1.564762569462989639e-01,-2.163439782957261026e-01,4.428461137467389896e-01,2.183970731299370305e-01,-3.441964564673812288e-01,-2.527106720416066876e-01,-8.688625468659522122e-01,6.563907508593024298e-01,-5.319938094111618110e-01,-9.562584224322827620e-01 +4.500000000000000000e+00,2.299999999999999822e+00,1.300000000000000044e+00,2.999999999999999889e-01,1.658635226535373208e-01,1.329141282745553321e+00,-4.834462377981961489e-02,-6.081012569516899280e-01,4.038960208359738124e-01,1.936712462402552015e+00,-1.451905529431747333e+00,3.822027877852935962e-01,2.050866252318538085e-01,1.161533803559117173e+00,9.909091736848452125e-01,-1.867091118097792268e-01,-1.684517255424882842e+00,8.065637678962596091e-01,-8.351926901914831225e-01,-9.467404109571895265e-01,1.148350580691126277e+00,-9.108503776386525086e-01,1.402844740100243293e+00,3.358447214053130181e-01,3.191184000862823944e-01,3.072647805055910286e-01,-1.638423625741792122e+00,-1.776388616346575855e+00,2.155530537886848064e-01,5.680073592264200943e-01,8.261103215620101137e-02,-8.215345170195275104e-01,1.892210388219473655e-02,-8.203415314548415105e-02,-9.571580982754103184e-01,1.013972154112161350e+00,-1.730276061550085842e+00,5.887424068075064465e-01,3.843234052112453059e-01,1.009711854811714327e+00,-1.005311872348858770e+00,1.014071466682110040e-01,2.171164949318165949e+00,6.620742889997063285e-01 +4.400000000000000355e+00,3.200000000000000178e+00,1.300000000000000044e+00,2.000000000000000111e-01,1.005812087289631868e-01,5.391612741141965648e-01,8.617684238012002229e-02,2.190898013239840125e+00,9.836361957891794905e-01,-8.561495423049708675e-02,2.523314313845212431e-01,-3.907979960810135656e-01,1.209850126410304982e+00,-1.406104771391010866e+00,-1.604738529860987084e+00,1.458714749675993572e+00,2.153119792570582725e+00,4.683049076895917096e-01,1.127379412357372573e-01,6.572676903047772745e-01,-6.470535263827592587e-01,1.712435451522124896e-01,3.890870585621503119e-02,6.265642507453605958e-01,-1.557998528183396347e+00,-5.070347697653374563e-01,8.449956030008372032e-01,-6.755938276300630374e-01,-9.933613754231354065e-01,2.042072149826954064e+00,3.811800017940036173e-02,-5.789181399432078434e-01,-1.692370437474108424e+00,7.293463462804261610e-01,6.991361537186937536e-01,-2.987596005699359458e-01,-1.102230190907090623e+00,-2.454942364237903615e-02,-8.358560674816213343e-01,-9.420935888731158947e-01,-1.032127514617075803e-01,-1.051390398660064562e+00,2.466489552524461781e-01,6.079925094063972635e-01 +5.000000000000000000e+00,3.500000000000000000e+00,1.600000000000000089e+00,5.999999999999999778e-01,-8.396324471731914096e-01,-1.368245095338390671e+00,1.561279598955807035e+00,-9.402702359572048252e-01,-6.599427051023376567e-01,2.130171674298873552e-01,5.993693725222970503e-01,-2.563168936896427774e-01,4.607943277012555572e-01,-4.009861578964010187e-01,-9.711706648243907392e-01,1.426316860787027352e+00,2.488441614331128093e+00,1.695969533014169306e+00,1.418066391534544557e-01,1.833435361815678455e+00,3.557035157239844536e-01,-4.772862704032293513e-01,4.663795743819788564e-01,-9.439250641118496210e-02,-9.831181837457076966e-01,-8.983219714320159754e-01,8.020517387405159404e-01,-1.846531981664673028e+00,6.041367404426841725e-01,-1.629583602748438276e+00,-2.121176444902435954e+00,-1.838846603758498510e+00,1.966763971934739841e+00,-1.962339649435420053e-01,8.658318016541909079e-02,1.419255045910951196e+00,9.341797484997248491e-01,-1.391505269404219591e+00,8.690063428187611017e-01,1.841812647035462880e-01,-3.416780975958805810e-01,2.429091413778038805e-02,1.279812020628021907e+00,-8.859664820409528518e-01 +5.099999999999999645e+00,3.799999999999999822e+00,1.899999999999999911e+00,4.000000000000000222e-01,4.008856791041211509e-01,-9.657236532908345522e-03,-1.797164615395618448e+00,-8.022531717308107879e-01,1.932135532336964612e-01,1.297342089092890616e+00,1.001331017346729579e+00,5.972125044034249930e-01,-8.152756611364585515e-01,1.801213990808534948e+00,2.152404676396114658e-01,-1.006365521678550312e+00,-1.829049808569510049e-01,8.962484253561593395e-01,7.617498318158106956e-03,8.868646865827609638e-01,1.103693957462150266e+00,4.005306845987061659e-01,-8.577026230468940415e-01,1.354546631899805342e-01,4.516585593883100380e-02,1.859346333851628286e+00,-1.626321937826830100e+00,-1.348224510943540622e-01,-5.840935467949193161e-01,3.351056201959988767e-01,-2.437564359199356101e+00,1.114924559490279909e+00,1.374848733553365662e-02,-1.844701163628046148e+00,-3.611131347398661151e-01,6.089623416545242307e-01,-1.591447875458031458e+00,3.222216443155699172e-03,-1.057473647801530081e+00,-5.559850318789673063e-01,2.673838267463693116e-02,1.834502535815762947e-01,-4.707424981827272314e-01,2.727963895302641384e-01 +4.799999999999999822e+00,3.000000000000000000e+00,1.399999999999999911e+00,2.999999999999999889e-01,8.179776072548057275e-01,-2.789142751032397949e-01,1.431567757449290879e+00,1.462214170780419487e+00,-4.287020655858288509e-01,-6.378405564735842859e-01,-1.664172985166173513e+00,-1.265693316393898538e-01,-3.634377801160513788e-01,7.790512201329915509e-01,-1.509661606068298800e+00,-2.773913917431098386e-01,9.687443931111453521e-01,-7.303570955579599122e-01,-7.623615367276093124e-01,-1.446940334755808522e+00,2.620573846018239283e+00,-7.474731780653793844e-01,-1.300346832218339133e+00,-8.038504040315199717e-01,-7.742950804868045100e-01,-2.693897784512402915e-01,8.253722320875147567e-01,-2.983231689958337207e-01,-9.228233149968279037e-01,-1.451338498191025117e+00,2.185735821987137145e-02,4.253907402979072161e-02,1.530932351028824634e+00,9.244773546980858403e-02,-9.900831128407737436e-02,-1.050653836587489565e+00,-3.059525750983919101e-01,-4.384744580346060516e-01,-3.701641645137025427e-01,-9.592553926405882336e-01,5.383296032761768490e-01,-1.424454175093693709e-01,-2.003534800049873998e-01,-1.714046116048996371e+00 +5.099999999999999645e+00,3.799999999999999822e+00,1.600000000000000089e+00,2.000000000000000111e-01,4.936440875248638838e-01,4.870153259803794432e-01,-8.391294028422137119e-01,9.901213838791936839e-01,-1.364758230082432355e+00,-2.186990878907987476e-02,-2.712073398901638788e-01,-1.317174788805794305e+00,1.897026120799957527e-01,1.702570152241791313e+00,6.763423006691976491e-02,-4.630217541090509425e-01,4.470241568856782588e-01,1.057199954671549369e-01,2.776213162550148633e-02,-4.255422127714480474e-01,1.421975559292464775e+00,4.563633634807853778e-01,-5.286706589354885910e-01,-1.080038367809579292e-01,-7.408667042040726347e-01,-6.082911500814950356e-01,-6.407257241901990197e-01,-1.134311593722227451e+00,7.772769637679554089e-01,-2.910414632730257689e-01,5.541275783267697319e-01,-6.701258977272964712e-01,-6.036249439233865033e-02,-7.110405967911112013e-01,7.196681705373316751e-01,-2.484193067050382286e-01,-7.308735859513858513e-01,-1.641703228809784143e+00,2.756665493407743917e-01,-7.083850523381071129e-01,-1.577921712099517385e-02,-4.917301080135276226e-01,9.541895808987649330e-01,5.441447523580079659e-01 +4.599999999999999645e+00,3.200000000000000178e+00,1.399999999999999911e+00,2.000000000000000111e-01,4.472120874548314862e-01,-6.161211233234792362e-01,4.662900435501894925e-01,1.714831608676042896e+00,-8.321860341500619818e-01,1.723391392291887814e-01,-1.649216974417132109e+00,1.398562092125535505e+00,-3.979120985908414232e-01,7.825788808419774645e-01,-1.723228250716323018e+00,1.797539387125904664e+00,-3.568715280255984612e-01,5.456573234700274888e-01,1.508182063325937960e-01,-2.554707861877694164e-01,1.685792302659303576e+00,-1.648046206366179822e+00,2.987136599920089397e-01,9.106456722299702822e-01,-2.985612163636626459e-02,-1.181707843665917995e-01,-1.426877120734650339e-01,-1.227636420410407991e+00,3.812738409493465069e-02,5.127175234723987396e-01,6.859922748066052400e-02,-2.722761011450806068e-01,-4.897250223730267304e-01,-2.792966692783721561e-01,1.257744217496038264e+00,-2.086634979420542546e+00,4.007145654777545529e-02,-3.277549172964167590e-01,1.455807951836843417e+00,5.549222544380277150e-02,1.484925598699954108e+00,-2.123890018045559103e+00,4.595849048340561738e-01,2.800578600376801286e-01 +5.299999999999999822e+00,3.700000000000000178e+00,1.500000000000000000e+00,2.000000000000000111e-01,1.390533967073938060e+00,-1.641348608823029132e+00,-1.550358081183257908e-01,6.606026178649258840e-02,-4.957954945452093254e-01,1.216577713742940325e+00,-3.386821854453975766e-01,2.034762544021153641e+00,1.054177908938922714e+00,9.508336970037996050e-01,5.592989813908842978e-01,-1.063695591025547893e+00,-4.310963375107570994e-01,5.727513668572158378e-01,6.775570335877171280e-01,1.307183845081257401e+00,-4.674410096259063452e-01,-8.601533849246632002e-01,8.591041927855306293e-01,-8.096265760401126776e-01,8.733118360704121841e-01,1.199736176415037825e+00,4.561530358270553531e-01,-3.575790319685979157e-01,4.108222614387956745e-02,5.934659196032391337e-01,1.018551871207346374e-02,2.198296338670492567e+00,-9.906709306271491711e-01,-1.002668587369790920e+00,-9.768953867353251663e-01,-5.895799225452156289e-01,-2.178931520194909321e+00,-6.296504269401812515e-01,-6.532847019278890111e-01,7.851402517417628568e-02,4.178005832060814329e-01,-1.240216336407770292e+00,9.000542427640723098e-01,1.802242229790547157e+00 +5.000000000000000000e+00,3.299999999999999822e+00,1.399999999999999911e+00,2.000000000000000111e-01,-2.082851030949963433e-01,1.574371237475571617e+00,1.989894944051877335e-01,1.988731918595391113e+00,1.117283465688190258e+00,-1.563904634839766272e+00,1.862737066135545724e-02,1.054324974904077727e+00,3.054658104061688806e-02,-3.688353084506694468e-02,1.269764750314303914e+00,-7.098541821461039625e-01,1.751561327821833658e-02,3.236257646091186824e-01,-3.337909603535641478e-01,-2.012910387753747560e-02,7.750232632241702557e-01,4.328376214999939409e-01,-8.087175319795336659e-01,-1.104123985799261742e+00,-7.891021802566502430e-01,1.248455788486605312e-03,-1.599397877570428173e-01,-8.319574932171247550e-01,-5.981504525164857977e-01,-1.520039285192063661e+00,4.178537032173259558e-01,-4.001872535163292222e-02,-1.259787343405270210e+00,2.862050418778281854e-02,1.342622010510353237e+00,-7.399358529652596550e-01,1.315137665720972349e+00,-3.234574724834238246e-01,1.978281678498678142e-01,9.775080242218528448e-02,1.401523416005245437e+00,1.584338467855317123e-01,-1.141901419203846579e+00,-1.310970370441212340e+00 +7.000000000000000000e+00,3.200000000000000178e+00,4.700000000000000178e+00,1.399999999999999911e+00,-1.532921053430127856e+00,-1.711970164094221314e+00,4.613505895568492665e-02,-9.583744802265614648e-01,-8.081161294374096526e-02,-7.038590359904466354e-01,-7.707843007065652285e-01,-4.808453408727291212e-01,7.035855546433883445e-01,9.291451477686910598e-01,3.711725526490392002e-01,-9.898225495471192348e-01,6.436312754533384251e-01,6.888966666079322509e-01,2.746472036124445459e-01,-6.036204360190906559e-01,7.088595753671402822e-01,4.228185746766614517e-01,-3.116856591599125981e+00,6.444520334110422910e-01,-1.913742670861507067e+00,6.635615765913814856e-01,-1.540723984248353051e-01,1.193611680749198101e+00,-9.816121120593053473e-02,-8.866142600561124354e-01,-1.473536645828436575e-01,1.059806294933774540e+00,2.624661786158738463e-02,-1.143351598723767876e-01,7.435535155083369263e-01,2.103593666298129161e-01,-5.927405833231805775e-03,1.366060068403331496e+00,1.555114032059067730e+00,6.133262263287011518e-01,-2.859591514851729244e-01,1.496910993520827127e+00,1.183119557331707039e+00,7.188971655282916373e-01 +6.400000000000000355e+00,3.200000000000000178e+00,4.500000000000000000e+00,1.500000000000000000e+00,-1.216076580745860891e+00,1.406719033079609216e-01,-7.436721747008731009e-01,-1.590122515543593296e-01,2.400569292967187074e-01,1.001594080906234863e-01,-4.751751058292484897e-01,1.272953748919910755e+00,-1.696131266831543138e+00,7.301835311296144271e-01,-1.857483271594537966e+00,3.825981367234628783e-01,-8.869043262838756103e-01,8.783037577325304435e-01,8.645252400759345646e-02,2.477063784668243063e-01,-1.018279325566851412e+00,-6.545701349975838745e-01,2.072173934109533544e-01,5.835699269093039820e-01,2.929096241763861297e+00,2.228583231034867163e-01,9.760375253689257402e-01,-1.556933932509260599e+00,-1.329891861334062897e+00,-3.554947746084520244e-01,-1.197427695638566325e+00,1.486399253466384573e+00,-4.102186927803287420e-01,1.382181888393138491e+00,1.486782474085630801e+00,4.277971988356689403e-02,5.017997538076389707e-01,-5.609947334090290005e-02,5.384370003545386751e-01,4.833418517805717629e-01,-1.236496258920307123e-01,5.049699814628403338e-01,1.723696275667261801e+00,7.130162297109376990e-01 +6.900000000000000355e+00,3.100000000000000089e+00,4.900000000000000355e+00,1.500000000000000000e+00,3.257996136406255405e-01,1.247695210432124141e-01,-1.012673123768591088e+00,-1.027296877075462467e+00,3.233565314802586133e-01,-1.369391124047157238e+00,-7.663275989635831564e-01,1.281511340364133167e+00,1.914229697062814095e+00,-1.665956076797718399e+00,1.626649562301581975e+00,-2.114382908455566257e-01,-1.500508703136480514e-02,-1.134116306427339627e-01,1.080544127025487189e+00,-1.607676579043177068e+00,4.561636113551333915e-01,-9.448701973880109239e-01,5.707885293815737615e-01,1.542796338293051850e+00,-4.173264126201667486e-04,3.741550859708025478e-01,4.095517782376913440e-01,-7.995934996704900932e-01,1.511639349884318362e+00,1.706468247260988891e+00,7.017833721170290140e-01,7.328543200764546517e-02,-4.618938153542846425e-01,-6.264902231490875328e-01,1.710836582546655604e+00,1.414415042729023630e+00,-6.366148878954942802e-02,-1.579930529671123685e+00,-2.832011869908987123e+00,-1.083426660264279695e+00,-1.306203959951194038e-01,1.400689034443001413e+00,-6.516562090577807664e-01,5.048154563405017337e-01 +5.500000000000000000e+00,2.299999999999999822e+00,4.000000000000000000e+00,1.300000000000000044e+00,1.303180961648432445e+00,1.285363168560481606e-01,-1.424478687888413309e-01,-1.308763514238608039e+00,-1.202475308204432825e+00,4.160996344158233162e-01,-2.009075332009267190e-01,1.225313176533015386e-01,-4.727771569624714121e-02,6.641440493586504568e-01,-7.846874114294452029e-01,-3.355806435831669154e-01,1.896182228633144007e+00,-7.997861383857707285e-01,-2.815754308001021111e-01,-5.893867019785693495e-01,4.447813624072501915e-01,1.022392322442069457e+00,-4.982116185861096280e-01,-4.314143411046852394e-01,-2.789816053030302889e-01,5.298337834749576869e-01,-7.393953025101953624e-01,-3.759599659712591357e-01,-2.372193871513015306e+00,-1.381745009494985243e+00,-1.124437560192882157e-01,8.978641732031213962e-01,2.950757833018624043e-01,-1.098768456667299498e+00,-1.400256208127941937e+00,1.746800928981687429e-01,-1.652803642252843597e+00,1.065926818716888880e+00,6.389619165017826341e-02,-1.607320159234058021e+00,-9.659538588418696836e-01,-7.243113192311227966e-01,-7.731925102234387115e-01,-1.489933008221492328e+00 +6.500000000000000000e+00,2.799999999999999822e+00,4.599999999999999645e+00,1.500000000000000000e+00,-8.746625219888451985e-01,-6.844015561404261927e-01,-7.112857556104382750e-01,1.127956624933380558e+00,1.048278028272145723e-01,-9.932572174375523533e-01,-3.346216059541220478e-01,-8.795570973113842062e-01,-3.000066590117569931e-01,8.755091531413832229e-01,2.522707806121253782e-01,2.285601181528066572e+00,3.759274257674801722e-01,-9.135945099771070055e-01,8.097407308144474181e-01,1.079931217142535704e+00,1.094166991443943804e+00,-1.094240953035091390e+00,-1.476374145148375006e-01,1.131811956828452592e+00,-1.684728958873941140e+00,-4.994167610220383025e-01,-1.426937685426991509e+00,-9.325702298970132142e-01,-1.012457152743806210e+00,1.250569832543434901e+00,-2.345380349087503868e-01,-8.633555813417825853e-01,-1.035605731384494632e+00,1.416671648715303045e-01,-1.113562734066710774e-02,1.344074374673426941e+00,5.000166958573025733e-01,-1.431797778065037496e+00,-6.289807075912683398e-01,1.070072512070977089e+00,-6.210826977013773620e-01,1.734572174923709076e+00,-1.098289431324746657e+00,5.726133530407901961e-01 +5.700000000000000178e+00,2.799999999999999822e+00,4.500000000000000000e+00,1.300000000000000044e+00,-8.612155533986415312e-01,-5.095951329463573876e-01,1.098581648231146568e+00,-1.270671628385169338e-01,8.134522451141070754e-01,4.732905949147994673e-01,7.538656835623007701e-01,-8.881882110855132684e-01,-2.215743982040006832e-01,4.242526181008702268e-01,-8.490728726936603854e-01,1.629500043232328554e+00,-7.772280421551344132e-01,-3.000035769377952244e-01,-1.006559064794237512e+00,-2.143308065238688442e+00,1.796918522574928012e+00,-2.043389369030472469e-01,-4.479148384155402507e-01,-1.987150616707986650e-01,1.419863972196435675e+00,-9.651066080644172818e-01,6.795678657650824350e-01,-4.237882485494763318e-01,-5.966708555383097856e-01,5.670582125201824031e-01,9.882405737426969150e-01,-5.139029502799155047e-01,-7.688491596748099344e-01,-1.169095747322027146e+00,1.103503766728375579e+00,-5.752559948061179984e-01,-1.849130727275451136e+00,1.409952138396146193e+00,-1.369859501952942260e+00,7.794605312590614510e-01,1.834286466675247307e-01,2.879154322152783774e-01,-5.843752753113219400e-01,3.655914602246360667e-01 +6.299999999999999822e+00,3.299999999999999822e+00,4.700000000000000178e+00,1.600000000000000089e+00,-1.667779892884237336e+00,5.880377487398128489e-01,1.557010041532160161e+00,8.840271974263261834e-01,-2.019540085386721362e+00,-9.842090022728482435e-01,-1.877949219748069054e-01,4.869373049399326470e-01,-1.066526736602251002e-01,-4.932143871104978095e-01,5.953003076922928072e-01,1.164151766224966300e+00,-2.322940071865973455e-01,7.289298673852393495e-01,-2.579050745189474636e+00,-9.375093861087292479e-01,-3.212589370580095083e-01,-4.885662207546257463e-01,3.327982174044547548e-01,1.013750547498260657e+00,5.066690260283884806e-01,-6.222254717550558256e-01,-1.522768090504186045e+00,5.569641205788870009e-01,-1.838176739670012161e+00,6.530372834064285259e-01,-1.884490821300682517e-01,-1.175834987938228826e+00,2.872573124667927580e-01,-2.876102659000990668e-03,-3.659729291624690128e-02,-8.422329652739403427e-02,4.195241084261415176e-01,9.244340219585094331e-01,4.966151984838515498e-01,1.012133189822309598e+00,-4.413971884780624327e-02,1.618459324231974472e+00,5.711098221298226418e-01,-5.436940296827768027e-01 +4.900000000000000355e+00,2.399999999999999911e+00,3.299999999999999822e+00,1.000000000000000000e+00,-1.093895056734405014e+00,2.057968037340799639e-01,-1.306521522922600820e+00,-9.733759675567484893e-01,2.390870803735992423e-01,-6.078874462819541247e-01,-9.333162402269222779e-01,-3.447504608839825624e-02,7.267789910378988361e-02,-2.058340252187376151e-01,-3.775469190592885549e-01,8.546427287124486183e-01,3.424273512868276081e-01,-2.234261121946960194e-01,2.464321933515365437e+00,1.938317369284130731e-01,1.132005133677329800e+00,-5.609810031317564727e-01,-1.362940947208009623e+00,-7.917565156434643869e-01,-2.680097833981119337e-01,-4.966082097295170250e-01,1.336386182322793603e+00,-1.200411220961080244e-01,4.614688774411399019e-01,-4.648115603289031811e-02,-4.335543327331675689e-01,3.799601345351499848e-02,1.714051469770731861e+00,-7.679485917368150671e-01,7.669904505595511734e-01,-1.026007251625781880e+00,-4.596264422694389395e-01,3.583205954583646834e-03,3.263750897269906970e-01,1.483128627973814062e+00,-5.008264146453541427e-02,-8.436156065359264877e-01,6.500419730507697169e-01,-3.641698089157559548e-01 +6.599999999999999645e+00,2.899999999999999911e+00,4.599999999999999645e+00,1.300000000000000044e+00,2.386815709318353684e-01,-1.162224395377518538e-01,-1.943456851286822662e+00,5.082991855939731352e-01,5.833680068212987457e-01,9.266047683086053866e-01,1.800462762460227628e+00,-1.195103773463475738e+00,5.165074442817594313e-01,4.092949966409553664e-01,-4.190819928078221013e-01,3.971062364497787711e-01,4.996469551119659958e-01,-1.218683829977196931e+00,2.462227612764321949e-01,-9.179843060046155578e-01,-6.518564999305904717e-01,-1.774744815188650016e+00,-4.733609255024787688e-01,-2.035706714734769607e-01,5.498568672963908277e-01,8.999266711071546602e-04,-1.542288150799678625e+00,8.621480568842673220e-01,-1.185866235500923072e-01,4.883705904296574141e-01,9.659361184597011762e-01,1.422604748969034771e+00,1.961226989365015383e+00,-7.223875867166795750e-02,3.111244460936535283e-01,-1.078361090816779777e+00,1.061600170035261081e+00,-1.184887444571769644e+00,-1.805251688630421070e+00,8.303860053403917529e-01,-5.216965249478153765e-01,7.776072813422404417e-01,4.080746493461687163e-01,-1.630002651023708671e+00 +5.200000000000000178e+00,2.700000000000000178e+00,3.899999999999999911e+00,1.399999999999999911e+00,-2.719679364322614479e+00,-1.096601747092719181e+00,1.649148698086453854e-02,-1.221776334694771871e+00,-6.527614493487129410e-01,-1.458940730597325430e+00,1.698779597969244382e-01,9.082592703632520748e-02,-4.813926240476332774e-01,1.397065301313742625e+00,1.497715027319563408e+00,5.652672025364510189e-01,-1.799771181466744530e+00,-1.104690147205609430e+00,4.071303310832481426e-01,-6.285575802445897420e-01,-4.870914317118235082e-01,8.989673945880599648e-01,5.108748218924175077e-01,1.314154433813948808e+00,-4.292092966464773340e-01,1.375225420446897218e+00,-5.541312470844856897e-01,1.499491490138763039e+00,1.058346436167786758e-01,-8.605097471096080364e-01,-1.631219507653532963e+00,-3.014723148616931803e-01,-2.562326979954389072e-01,8.576619101224520758e-01,-1.105905028082072861e-01,-4.324319785784446757e-01,1.077037472947536489e+00,-2.248265612701514649e-01,-5.762418162269031807e-01,5.746089172925727961e-01,-4.898282188472668497e-01,6.588021416915129658e-01,-5.969171117831943985e-01,-2.229591829703794215e-01 +5.000000000000000000e+00,2.000000000000000000e+00,3.500000000000000000e+00,1.000000000000000000e+00,1.521769755882663444e-01,-3.741263202643058672e-01,-1.345146935738967924e-02,8.154719692400600461e-01,4.106017913200476488e-01,4.809698500346235028e-01,-6.354304386192671794e-01,8.528297682743679609e-01,6.695623405090825875e-01,1.004419192261624794e+00,-7.263658321861021783e-01,-1.724585966814570492e-01,6.335339024604004221e-01,-6.088151174171313462e-01,-2.261224697639562242e-01,1.925805737459526989e+00,1.951761012267813733e+00,1.239940549827360128e+00,9.385851362497682482e-01,-1.019251149505129517e+00,5.125622314261223389e-01,-3.591165950658852246e-01,-1.058571897605367740e+00,-5.090058385913199812e-01,1.156650740463465721e-01,-5.473555742986664363e-01,-5.507994257068401511e-01,7.920414984229742217e-01,1.441064851232318200e-01,2.334580796623180188e-01,1.118723968962983539e-01,-6.757031433716509383e-01,-1.370571917960688335e+00,3.105647104204784514e-01,-5.070366321254438091e-01,-2.010782268585877830e+00,-3.925672579651524607e-01,-1.092217941340623444e+00,6.986502343077553023e-01,5.216252272403399948e-01 +5.900000000000000355e+00,3.000000000000000000e+00,4.200000000000000178e+00,1.500000000000000000e+00,4.968931448384695804e-01,-6.650416181586910058e-01,7.315515818621539657e-01,3.196497831340729956e-01,-4.098545384398195046e-01,-4.533374321385169048e-01,8.927081528737002003e-01,-4.736040569636580932e-01,3.036564735262782810e-01,1.033956986812783585e+00,1.909342625557108653e+00,1.663873124437729611e+00,9.008227642090298470e-01,-1.505911351571387113e+00,-6.890484294179712865e-01,-5.480871874725355974e-01,1.653149832565320887e+00,-6.993179409720908790e-01,3.861663770983691513e-01,1.008670632573117898e-01,-9.351272094375440158e-01,3.818240096193838418e-01,3.982960861974925160e-01,-1.255774881741501536e+00,1.222877447053409838e+00,-2.086510028855187660e+00,-5.907571529099620022e-01,9.719702938655755409e-01,-1.193257833474039131e+00,3.502659195620300148e-01,-1.296360388275429987e+00,-9.302414444422328621e-02,-2.313773113172200357e+00,-8.425717017130081032e-01,-1.542921447154290249e+00,-4.017637421265006226e-01,-4.152313958216570788e-01,-6.736641713091396921e-01,7.979131965667455306e-01,-8.868796038714377161e-01 +6.000000000000000000e+00,2.200000000000000178e+00,4.000000000000000000e+00,1.000000000000000000e+00,6.343866731890511756e-01,1.629275769958861586e+00,1.390641503046825544e-01,-8.576702045753996639e-01,-1.249338514861542349e+00,-7.097851001194992460e-01,7.046427207498909828e-01,1.555907349688974983e-01,9.367952162539888716e-01,7.703308793272120036e-01,1.408106518782359096e-01,4.734882616664621846e-01,1.855246209420479131e+00,1.415656226174680121e+00,-3.027460169042532345e-01,9.896794419358903028e-01,5.858508058179355826e-01,1.136388077539739472e+00,6.716165720359097424e-01,-9.741674350429900819e-01,-1.619684565372700558e+00,5.726270172050856866e-01,1.902618198369831148e+00,-7.756641079399706484e-01,-1.880897380496502069e-01,-1.035747726195212826e+00,1.177829504705659946e+00,-2.305166855043520702e+00,-2.263660301035808509e+00,3.750199198201532580e-01,-8.234364679135211529e-02,-4.796230150738065023e-01,-3.010947865234137044e-01,5.369879144563616258e-01,-4.138039890496650886e-01,-1.096924971733113541e+00,-9.273629280729662749e-01,8.883388619968426436e-01,-5.247419549622203139e-01,-1.385277583767198228e+00 +6.099999999999999645e+00,2.899999999999999911e+00,4.700000000000000178e+00,1.399999999999999911e+00,1.021783269439707348e-01,5.049947217800111465e-01,1.328960747553223465e+00,2.179033871216689844e-01,-6.597112472096701152e-01,4.740078672770297041e-01,7.271748700204364591e-01,-3.890530666380676017e-02,-4.459939272557342932e-02,2.601329049387676728e-01,-6.985649825618424347e-02,2.501139068831255696e-01,-1.021913324426928282e+00,-1.150437769818509537e+00,-8.361113795007689697e-01,6.422109433294258540e-01,2.587975673406087140e-01,1.040238964249558640e+00,-1.866909221146099418e-01,-1.143641395841849651e+00,1.144553535284557944e+00,-1.876705553989292327e-02,1.283455036266525351e+00,5.979464913921805902e-01,2.188618678822837005e+00,-2.197729857133623455e-01,9.007239050891806542e-01,8.913641063529440522e-01,-5.551263454944499465e-01,-1.724823171069609085e-01,-1.461738342216722941e+00,-1.548796137002665718e+00,1.265688015307749603e-01,7.930070706974273742e-01,6.380240334954548898e-01,3.400245982596526440e-01,8.630171531510913985e-01,-5.896977956993247894e-01,-2.725327484877594908e-01,7.375215134138817241e-01 +5.599999999999999645e+00,2.899999999999999911e+00,3.600000000000000089e+00,1.300000000000000044e+00,4.331187294489333151e-01,-2.101888137967623249e-01,1.320794386127914555e+00,-1.292001251047127486e+00,-5.186786872885924549e-01,-2.833977744562524159e-01,8.165348797737703723e-01,2.385197915235162322e-03,-1.261491746790615043e+00,5.140041798160635000e-01,1.087546315466894509e+00,7.393045331330262426e-01,6.191549216054889060e-01,-1.874313496741068175e+00,-8.998864767434843204e-01,4.820806086722010941e-01,-5.488818475438848876e-02,5.225576019988119603e-01,-1.266342676962954217e+00,-6.149476428488614282e-02,-1.389781018896206755e+00,-1.953678562619406422e+00,2.957790885068872222e-01,8.425887964569803712e-01,2.456164279017757912e-01,-3.299648026466609624e-02,-1.562014341829266240e+00,1.006107067097547159e+00,-4.404489737594127069e-02,1.959562005205767843e+00,9.423143082769667167e-01,-2.005125426652148324e+00,7.550496802558879228e-01,-1.396535237573157229e+00,-7.594954904290640574e-01,-2.507566767601495106e-01,-9.406245036260366121e-02,3.975652156174661611e-01,-1.022855040804214077e+00,-1.150692004256646861e+00 +6.700000000000000178e+00,3.100000000000000089e+00,4.400000000000000355e+00,1.399999999999999911e+00,6.006052017330760773e-01,-1.325026793402665944e-02,1.743730487015256181e-01,-2.193683351694660111e+00,-1.771373833153235544e-01,-8.907291830614958439e-01,-9.206263730168693371e-01,9.219348042245775199e-01,-1.095671228972512345e+00,-1.092896606326030140e+00,-3.310106034017458732e-01,4.502888306473442070e-01,-8.840147297480861477e-01,1.234144035780061488e+00,1.449847525361218858e+00,-8.814470664684638246e-01,-2.450817555768555756e-01,-7.786754726576129437e-01,-1.685382104871227193e+00,3.030110504561573936e-01,7.335948682293695899e-01,2.011864263126561525e+00,-8.974095036313369800e-01,1.336235090812621040e+00,1.342353691257953230e+00,1.978533095671530795e-01,6.021634895760638040e-01,8.732730483007036248e-01,1.974099948241899494e+00,4.778085626164694233e-01,-6.013788550368521363e-02,-8.661687990074722343e-01,3.053207550124980574e-01,1.024164932773069969e+00,2.446103613294719481e-01,-7.799232489250029765e-01,8.907620249656333922e-02,-1.291534824601138776e-01,2.647387577557072658e-01,-1.661848367218250022e+00 +5.599999999999999645e+00,3.000000000000000000e+00,4.500000000000000000e+00,1.500000000000000000e+00,5.507886141027313887e-01,5.954231567637230382e-01,4.448534381865085763e-01,-3.762817145024025239e-03,-1.805936262603421660e+00,-1.932279197126340886e-02,1.060714999342169618e+00,-8.601288762924613751e-01,-1.989269466161283750e+00,-1.540557971870693654e+00,3.140256918206031367e-01,3.728760088524375460e-01,8.862931946214680501e-01,-5.525899572965248252e-02,-1.500328375978570605e+00,-8.185041405936757108e-01,8.188393725993478034e-01,1.404959074394759033e-01,6.498296346799786738e-01,4.347888054610397068e-01,-2.049605517302959257e-01,-1.740068375080336960e-01,1.857102269755859680e+00,4.146742666092209095e-01,-1.285875503163605993e-01,4.554199909368095156e-01,2.229058196242733325e-01,-2.157356373494461188e+00,6.500845143723144037e-01,1.820939274089675486e+00,-7.802798683900640242e-01,1.454035748839167086e+00,-2.568696973319169463e-01,2.934713976498222743e-01,1.070360016973173956e+00,-7.200014312908091796e-01,1.242493912818471324e+00,-1.214217281359339262e+00,-8.751547489139164249e-01,-5.935203173475258609e-01 +5.799999999999999822e+00,2.700000000000000178e+00,4.099999999999999645e+00,1.000000000000000000e+00,6.620053664519022218e-01,-3.408744105694707649e-01,-1.519974459585867965e+00,-2.165328718498284177e-01,-7.842213825343838929e-01,7.312936208403685301e-01,-3.432350544551032723e-01,7.077407590065136478e-02,-4.054724571406713163e-01,4.339389682302889351e-01,-1.835907634705541969e-01,3.251987146870652934e-01,-2.593388564741710312e+00,9.725087697778614371e-02,4.139136701102331117e-01,-1.992800549145920253e-01,6.693924713925414327e-01,7.386070289928207133e-01,1.304213891849502982e+00,1.048116080722816534e-01,-1.913800704669981201e+00,-2.285499448789645172e+00,-1.601840952074517599e+00,-3.790706118413619818e-02,-1.573052882805656694e-01,2.762398520199737528e-01,-6.252459225571738166e-01,-7.364911715057482766e-01,5.550479424104340920e-01,6.559244113725019032e-01,-2.566501354804808233e-01,-3.847665823895329851e-02,4.043143433289911326e-01,5.043435751629945507e-01,-1.143980699598740269e+00,-7.195738559179507554e-01,-1.230546045645386721e+00,-5.069066148368306379e-01,8.123335893418310860e-01,5.462718669437655050e-01 +6.200000000000000178e+00,2.200000000000000178e+00,4.500000000000000000e+00,1.500000000000000000e+00,-1.098097960362558689e+00,5.122667268259818441e-01,8.584310534245198632e-02,-4.939267070859206799e-01,-1.406459655103631246e+00,-1.748233716177669539e-01,6.799440061159555126e-01,-2.163097648396125727e+00,-3.961231977514494962e-01,2.254283698804962377e+00,6.726367185680938166e-01,2.598324950034759939e-01,-7.371851695709140673e-01,-6.783298378739697210e-01,-8.328839569996336623e-02,1.602863629377135890e+00,4.655891908949305047e-01,-8.721583977708226021e-01,1.176786962383863822e+00,-2.925942071580907022e-01,1.697346481013949138e+00,-5.666030246377040669e-01,-1.003265756903888972e+00,1.746295778135699972e-01,9.823269838002980370e-01,1.037444796730910168e+00,1.591917666688115185e-01,-9.880966879686111648e-01,-5.053407218978849258e-01,-2.018281868354216524e+00,-9.131215375688201963e-01,-1.784568148972631163e-01,3.890021406534791559e-01,-3.394543214647791074e-01,-5.697905497773966821e-02,-3.961854447498169285e-01,7.510253041897702042e-01,-8.991129384265388325e-01,8.375479141463264554e-01,1.960880812513910554e+00 +5.599999999999999645e+00,2.500000000000000000e+00,3.899999999999999911e+00,1.100000000000000089e+00,4.727896560219311262e-01,-5.270916102240418288e-01,-5.362701440867850833e-01,1.209837222184097616e+00,-1.126589425871997507e+00,-9.538044202725639575e-01,-1.164448453870464473e+00,-1.278513840520686173e+00,-1.044816319379856973e+00,7.899049417854930866e-01,1.102282564588024316e+00,-6.970730723601831214e-01,2.073340460456898626e-01,7.591566751082341469e-01,1.005642030971629630e-01,-9.549427576172389021e-01,-1.470401735138081367e+00,1.010427553125508693e+00,4.961794122883804725e-01,5.769558933986538296e-01,-1.107646900901030129e+00,2.349771928890519168e-01,6.289995874568216072e-01,3.140338436471455386e-01,-7.450232168076890149e-01,1.012260510065335684e+00,-1.527631948178773902e+00,9.287419248069415101e-01,1.081055944087073284e+00,1.572330317535224786e+00,-3.424921902504429183e-01,-9.994300165615205289e-01,7.938803623083801053e-01,-6.992152790869743395e-01,4.399551144398878427e-02,-3.174622171600719467e-01,-9.020719714130848166e-01,3.209994661848916131e-01,-1.392015916558035693e+00,5.922056816440394167e-01 +5.900000000000000355e+00,3.200000000000000178e+00,4.799999999999999822e+00,1.800000000000000044e+00,-9.669310884567345887e-01,-1.731731346467926258e+00,-5.010745879029283867e-02,4.316338528112232398e-01,5.769345970532243628e-01,8.183537308271613409e-01,-2.353640399690413609e+00,-1.005144430956671497e+00,1.066522945030321246e-01,1.519003279936145479e+00,7.837444936747277602e-01,1.901340051848112500e+00,-5.249394229139989765e-01,2.744169952820086356e-01,-1.099970807569307096e+00,-4.043522196239997535e-01,-7.352957182829735761e-01,-6.339886593167213258e-01,-3.934491211856632753e-01,2.717539890680890739e-03,2.221266451648408816e-02,5.434534395827254061e-01,1.399884673868593554e-01,-3.440456288496253623e-01,-5.225785415319466054e-01,-3.071317201586840628e-01,-4.490371414469655487e-01,4.909710551819796431e-01,8.655251906712624343e-01,1.274044537947084610e+00,-7.977027599404172831e-01,4.693722253387500598e-01,-1.394679641592675656e+00,3.731747182525781414e-01,1.082672282091064586e+00,-1.495895016669949729e-01,1.072636047258873182e+00,-1.138567870315476682e+00,-8.886452830916367063e-01,-1.358098426436865347e-01 +6.099999999999999645e+00,2.799999999999999822e+00,4.000000000000000000e+00,1.300000000000000044e+00,1.022210354585824321e+00,-4.174294563419881920e-01,-4.535531009087745979e-01,-9.916283583780206579e-01,2.028810444426215887e-01,1.246695140894435561e+00,7.006801090936923826e-01,6.966506543362647186e-01,-2.069744749236640258e-01,-5.633093592639144553e-01,6.772459164163702194e-01,-3.191107563414086884e-02,-1.736082357193817483e-01,8.982406224036155740e-01,-1.977874516727299026e-01,-8.377762593852057238e-01,9.091884953309661288e-01,8.071989043386668117e-02,-1.037029343848691942e+00,-1.112905894871616175e+00,9.541187582686681823e-02,2.337409661478275780e+00,-3.928206035462084578e-01,-3.362738590855784970e-01,1.523771197617053375e+00,-5.728119979051538718e-02,-1.448466863247988234e+00,-1.572796452548173241e+00,1.226663973787480266e+00,6.663545422501888638e-01,8.261257084311929288e-01,-5.775655837871274817e-02,-7.267120259827976048e-01,-2.171631157241669663e-01,1.360312173743767616e-01,-8.383111556987010715e-01,5.614499095511267246e-01,-1.259596168799721472e+00,-3.327587645752237422e-01,-2.040078724765028995e-01 +6.299999999999999822e+00,2.500000000000000000e+00,4.900000000000000355e+00,1.500000000000000000e+00,-6.910198131753685358e-01,-2.205505355019822034e+00,4.478696641112525634e-01,-7.557507604402671220e-01,1.325707959324371465e+00,-3.419822776840522605e-01,-5.413595884312205619e-01,9.152194677887708074e-02,1.053439748630448092e+00,-5.634076631181696992e-01,1.014737694829776826e+00,1.440303641017622649e+00,9.903228106559455179e-01,1.626431490992257256e+00,1.292646021012468838e+00,1.514882293893005771e+00,1.604326319415641189e+00,2.080695296299638064e-01,-4.292238995721983086e-01,-2.262243635243805784e+00,-1.322733119521795730e+00,-4.482827991587955974e-01,-3.817350872405659845e-01,-1.527944634020866055e-01,-1.000760490248750134e+00,-1.595777611441314026e+00,-1.302231664667262145e-01,-1.894179288117905924e-01,-8.075540415498659863e-01,-7.421521616503845564e-01,-9.401565918724067439e-01,-3.965237390163177666e-01,-8.563028269952512872e-01,1.259875331517015473e+00,2.409967320451210648e-01,-9.723179180265172361e-01,-2.804477814674541380e-01,-1.180285606351190619e+00,1.012168295174787902e+00,1.384186724580820149e+00 +6.099999999999999645e+00,2.799999999999999822e+00,4.700000000000000178e+00,1.199999999999999956e+00,1.252001982753031317e+00,-1.144692631242597569e+00,-9.126701972617591585e-02,-4.015706755129159200e-01,5.620131059141816321e-01,-1.007909803283898009e+00,-6.758916940010165630e-01,-4.132170283518080689e-01,1.532884691324238879e-01,6.941287081378864077e-01,-3.287276927366077905e-01,6.639650755262218595e-01,8.220763567971377528e-01,-2.132152368718210345e-01,-1.245658132865596901e+00,-1.171190335434140417e+00,5.917269751515682463e-01,-4.762244363146694304e-01,-1.712629322682455157e+00,6.129523681830005843e-01,1.295545205462189653e-01,-1.405967081142628361e+00,1.179419981202645795e+00,8.366359871577494500e-01,1.387452512901793111e-01,-1.274319367734416897e+00,-1.402330532885283088e+00,-3.070684868414365054e-01,-1.713915389550289436e+00,4.050802731844854176e-01,-1.410823313380336508e+00,1.649127292546986034e-01,-2.881314527267264114e-01,7.117852680970441215e-01,-9.379475952614881873e-01,2.737294495247240000e-01,-1.394840192834643444e+00,7.955495517694070040e-01,-1.149617662774946869e-01,4.958506689654303967e-01 +6.400000000000000355e+00,2.899999999999999911e+00,4.299999999999999822e+00,1.300000000000000044e+00,-1.320525346828032243e+00,4.990842756717665529e-01,3.062033963037085194e-01,3.636978927133631134e-01,3.126339630139859938e-01,-1.934638827903477354e-01,1.241299220315990937e+00,-1.558979857657035728e-01,-7.391692003908286734e-01,-5.872619336893859093e-02,-9.505179454445302767e-01,-4.639964233308440100e-01,-1.772466161893988812e-01,-3.795541206458599159e-01,1.993970728054857422e-01,1.945761391306326749e+00,5.709498398461204660e-01,1.072300647288091380e+00,-5.037094373682365900e-01,-5.870162885051485313e-01,-3.781780468929897276e-01,8.528890972688772942e-01,-2.148118478230897743e+00,-1.033164775291367299e+00,1.023358468342198818e-01,-2.240923670629287046e-01,1.967729682143045888e+00,4.476832157426563485e-01,-6.621914435304807611e-01,-1.577607068539347290e+00,-3.405600349378622993e-01,-1.303220082678414604e+00,4.667506504184351646e-01,1.611063222416784513e-01,3.200319320927312861e-01,2.079176664795037155e+00,-9.074659814202976627e-01,-1.924042077959067509e-01,-1.212515744488908975e+00,-8.059851615012544879e-02 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/0.png b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b5011542e977ac84582d50854d5c9be73c42d0 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^G9b(WBpAZe8a#m1GEW!Bkcv6U2@-huDQ|9?xw znj-E0O$T)?Ws1UooBjD4-Kv@X>GgY6Rynq9#r4$&s@2g(E^T!qp{Yx$kVVncS{IJYiq-n>Vcz zob>vi(t-2u?}tyD7Ns;ZIxIGp_mau(T~WfzpEC0>nD-TIt`ALo0rHurtDnm{r-UW| DHA!#$ literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/2.png b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/2.png new file mode 100644 index 0000000000000000000000000000000000000000..765d4e29a93b46962ca0c986a3a67d58c573e7fd GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^G9b(WBpAZe8a#khji-xaNX4Aw1PK<0xAA&;CqLLb z?ohpL|7hCfzec>9G5qob}(k zaQ3cW@d|#Ho#NLEv)BAEm*4*6OMUGQ)%kyl4{4_VmhMk^zklBTL1t6 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/3.png b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dd21aaa838f9f70d06ccd6e16a8675bd8406ef89 GIT binary patch literal 266 zcmV+l0rmcgP)K>55 zkh8xF(mC1JuHpCZOf)%#=RgzhbaF8;$Upo2xsVmZ7kfm&%v_){Wpv4tauBBc2@FYu zGZaq!|GNZ5vgh}27!%Xjn=naHd!W;v$zhkA0QAsZTL!F>+wKA-x1jm+*5ALLo=^V% z1qTzF977>ESRuq@bV*>iKqQ~-RpvsMWU%XlNaBc3k9EJ-x_iiBm!um20C0eimm22` Q-v9sr07*qoM6N<$g3CX7umAu6 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/MLTable new file mode 100644 index 000000000000..469f0c4c1413 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/dataset/mnist-data/MLTable @@ -0,0 +1,5 @@ +paths: + - file: ./0.png + - file: ./1.png + - file: ./2.png + - file: ./3.png diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/environment_parallel.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/environment_parallel.yml new file mode 100644 index 000000000000..242438eb2d1f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/environment_parallel.yml @@ -0,0 +1,16 @@ +name: prs-env +channels: + - conda-forge +dependencies: + - python=3.6.1 + - pip + - pip: + - mlflow + - azureml-dataset-runtime[pandas,fuse] + - azureml-telemetry + - pandas + - pillow + - azureml-core + - scikit-learn~=0.20.0 + - cloudpickle==1.1.1 + - tensorflow==1.15.2 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/file_batch_inference.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/file_batch_inference.yml new file mode 100644 index 000000000000..edc4e23deae1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/file_batch_inference.yml @@ -0,0 +1,34 @@ +#source ../configs/parallel-job/batch-score-ParallelComponent.yaml +$schema: http://azureml/sdk-2-0/ParallelComponent.json +name: file_batch_score +type: parallel +version: 1.0.0 +display_name: BatchScore +description: parallel component for batch score + +inputs: + job_data_path: + type: mltable + description: The data to be split and scored in parallel. + optional: false + +outputs: + job_output_path: + type: uri_folder + +resources: + instance_count: 2 + +mini_batch_size: "1" +input_data: ${{inputs.job_data_path}} +mini_batch_error_threshold: 1 +max_concurrency_per_instance: 1 + + +task: + type: function + code: ./src + entry_script: file_batch_inference.py + args: >- + --job_output_path ${{outputs.job_output_path}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/get_data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/get_data.yml new file mode 100644 index 000000000000..01cd719ed6ed --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/get_data.yml @@ -0,0 +1,27 @@ + +type: command + + +name: get_file_tabular_dataset +display_name: Get_File_Tabular_Dataset +version: 1 + +inputs: + input_data: + type: uri_folder + +outputs: + file_output_data: + type: mltable + tabular_output_data: + type: mltable + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python get_data.py + --input_data ${{inputs.input_data}} + --file_output_data ${{outputs.file_output_data}} + --tabular_output_data ${{outputs.tabular_output_data}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/model/iris_model/MLmodel b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/model/iris_model/MLmodel new file mode 100644 index 000000000000..47ad54161be7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/model/iris_model/MLmodel @@ -0,0 +1,11 @@ +flavors: + python_function: + env: conda.yaml + loader_module: mlflow.sklearn + model_path: model.pkl + python_version: 3.6.8 + sklearn: + pickled_model: model.pkl + serialization_format: cloudpickle + sklearn_version: 0.20.3 +utc_time_created: '2021-02-05 10:59:19.184646' diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/model/iris_model/model.pkl b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/model/iris_model/model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..fd86fb998e18fb4159abffcf7fc037fa07bc1d05 GIT binary patch literal 1929 zcmZWqZB!Fi8cqx!8j%l!1{5?{ML-AwmD=)gM^RguZiJL#l%p{T0}KrrZe~E^;z~JH z0zId=wJug!i!5MW5Y{M`D)o-V2K=Ccihv&=Rti*Ysi49Fy2F6ovuE#*JMTRAz0ZB# zd+vGOY>|%sNKa^t2DzRza9?#Al}PC2dMcTu8B!;He=1NC$wq>vNy;FG0^g6Ja2K5B zqp}wW1nGo9qi0M|q?*S4>4Tw-%7zOPGct;B>Rfg#-Tp)U-~+2~37FaG}b9ThZw?G_BrFkjW_w z6f1bls4*l`X=<9$Fa(^bP}y;LG^NiZjL?DCw4JLH&QeY1@HEX1HOZX@9q~lf%n2Yv z&yZ@K7CNQO;!ERpYAKq4&bUA&=5o0GJiU>DE_pn?L7hrzX*gTKlk&R>S`8&SLq=M< zNv@-egq&yA7>yc}SZyS9l!0c989GJ`T_>}|hQ!HLI0qN(fpepTS}4thZc6Cxg9~xd z9yo6*F_AH)6Jj`@zv&Gtp$9I&g}KmE2^aX_BK}^p;6jB$5&eoA{DcDr%Cvb~pqCF{ z=6WMZ2hapV(Hgi&<-`@mBV464siX9i5x${v`~xM8$)thQY2adlflIV1TW&>15lL$3 zo#L9p%UznnY4uS;UtTNjzZd$YObSd|371U@^jE@w*8;<#{C@=s7#OHEuaD5lG z)A8d49=5Zvw;ii$4lH)Zh^m%#i`3)jReosLlaJilw(Ye!Uhxv_nDnplPijt~%Yv>F zTWcT6RadzMU+x5^GU?VGo!BxF!|IMwTsUHl)7M;FY(GD*5k9d4QwxEQb zeT&B~|AfNI@L!m<{oqi*>S(4(!hY%(dDpR`50uQX!u8G#;FG|YU6!~PAUCPn+gi<{ zApKAAj}M&$$)O1m;RQ3-F)psiBgYBn*Ur#RD>~$aPHAj2eMce=y=6RJa z|2C-cT~>B-^8gw?Sa7lZ>KN$Q7M+uj(FT_07k=?gngCPUbUCHZXhrRXUu<@)X+{-| zk3y-#3$UMqpKSbWa2RDfeixp9tP&OVS~rTm5@F_k_8;VpXGp)csMbwZiCFg&_^`he zi?AG7v~b=ia!Y6$yqA#&eC-bV84uk;m3Y<2UCkA6G`(T8WB+w9{`h9LU-B7bl9fEq zl63>S!XE#@OAkKXy?-raMjv) z&lqz9#V#33kNIAL<%l~SiYtcEXJ39Ow0YWsip}p7Rpv{uQh(5=yhOd+(sO;*L4im^!4!V@tap+OoY{ z!|B(@#!p?;#?c}{^ zH?lqTm#hvDS)6(?qHsPdSolhl6+Q&Y%Fb{2ck6XDw^8?C?EE~ed-Q`lO_|f!0|hGv zwg$4u;UM~C@XsRbt$ii~+J{^d6 zVI8tMmcLA@MykMH+y8l~3WWqOYi-&;jQV@Ol+K750x{O34d0ZpNd5bQ-mjbM!Fz2_ z_rA(}fIN!!O90je?A@gb*K@O3QDcDzUi%E(yWQ(c9%}}hlKY>O8bnyR)N%wA+yqX; zd5vl7egrSARGk7FLS8vbO>;jT1p|Mo+<9SFEg;Qt<>3lfHfm^S4IVfQ{5`F6P7a*| zEd$;;sfqWwchG$g#nuCKw!T&(J^~DPm4`Y{`~X&c9k#5rqYuF43=GopR{Y=20E1s! zQOJZ9y{UvNrff4bB_J=#&C;@fT&SLE ZvTELEDFa-?caP=r;N|iVxHdy8{|_-NIZFTl literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/pipeline.py new file mode 100644 index 000000000000..df6d70951621 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/pipeline.py @@ -0,0 +1,66 @@ +from azure.ai.ml import dsl, Input +from azure.ai.ml.constants import AssetTypes, InputOutputModes +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import load_component +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + get_data = load_component( + yaml_file=parent_dir + "/get_data.yml" + ) + + file_batch_inference = load_component( + yaml_file=parent_dir + "/file_batch_inference.yml" + ) + file_batch_inference_duplicate = load_component( + yaml_file=parent_dir + "/file_batch_inference.yml" + ) + tabular_batch_inference = load_component( + yaml_file=parent_dir + "/tabular_batch_inference.yml" + ) + convert_data = load_component(yaml_file=parent_dir + "/convert_data.yml") + + # Construct pipeline + @dsl.pipeline(default_compute="cpu-cluster") + def parallel_in_pipeline(pipeline_job_data_path, pipeline_score_model): + get_data_node = get_data(input_data=pipeline_job_data_path) + get_data_node.outputs.file_output_data.type = AssetTypes.MLTABLE + get_data_node.outputs.tabular_output_data.type = AssetTypes.MLTABLE + + file_batch_inference_node = file_batch_inference(job_data_path=get_data_node.outputs.file_output_data) + file_batch_inference_node.inputs.job_data_path.mode = InputOutputModes.EVAL_MOUNT + + convert_data_node = convert_data(input_data=file_batch_inference_node.outputs.job_output_path) + convert_data_node.outputs.file_output_data.type = AssetTypes.MLTABLE + + file_batch_inference_duplicate_node = file_batch_inference_duplicate( + job_data_path=convert_data_node.outputs.file_output_data) + file_batch_inference_duplicate_node.inputs.job_data_path.mode = InputOutputModes.EVAL_MOUNT + + tabular_batch_inference_node = tabular_batch_inference( + job_data_path=get_data_node.outputs.tabular_output_data, + score_model=pipeline_score_model + ) + tabular_batch_inference_node.inputs.job_data_path.mode = InputOutputModes.DIRECT + + return { + "pipeline_job_out_file": file_batch_inference_duplicate_node.outputs.job_output_path, + "pipeline_job_out_tabular": tabular_batch_inference_node.outputs.job_out_path, + } + + pipeline = parallel_in_pipeline( + pipeline_job_data_path=Input( + type=AssetTypes.MLTABLE, path=parent_dir+"/dataset/", mode=InputOutputModes.RO_MOUNT + ), + pipeline_score_model=Input( + path=parent_dir+"/model/", type=AssetTypes.URI_FOLDER, mode=InputOutputModes.DOWNLOAD + ), + ) + pipeline.outputs.pipeline_job_out_file.mode = "upload" + pipeline.outputs.pipeline_job_out_tabular.type = "uri_file" + + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/pipeline.yml new file mode 100644 index 000000000000..796f29f62aae --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/pipeline.yml @@ -0,0 +1,89 @@ +type: pipeline + +compute: azureml:cpu-cluster + +inputs: + pipeline_job_data_path: + type: mltable + path: ./dataset/ + mode: ro_mount + pipeline_score_model: + type: uri_folder + path: ./model + mode: download + +outputs: + pipeline_job_out_file: + type: uri_folder + mode: upload + + pipeline_job_out_tabular: + type: uri_file + + +jobs: + get_data_node: + type: command + component: file:./get_data.yml + inputs: + input_data: ${{parent.inputs.pipeline_job_data_path}} + outputs: + file_output_data: + type: mltable + tabular_output_data: + type: mltable + + file_batch_inference_node: + type: parallel + component: file:./file_batch_inference.yml + inputs: + job_data_path: + path: ${{parent.jobs.get_data_node.outputs.file_output_data}} + mode: eval_mount + outputs: + job_output_path: +# type: uri_folder + + mini_batch_size: "1" + mini_batch_error_threshold: 1 + max_concurrency_per_instance: 1 + + convert_data_node: + type: command + component: file:./convert_data.yml + inputs: + input_data: ${{parent.jobs.file_batch_inference_node.outputs.job_output_path}} + outputs: + file_output_data: + type: mltable + + file_batch_inference_duplicate_node: + type: parallel + component: file:./file_batch_inference.yml + inputs: + job_data_path: + path: ${{parent.jobs.convert_data_node.outputs.file_output_data}} + mode: eval_mount + outputs: + job_output_path: ${{parent.outputs.pipeline_job_out_file}} + + mini_batch_size: "1" + mini_batch_error_threshold: 1 + max_concurrency_per_instance: 1 + + tabular_batch_inference_node: + type: parallel + component: file:./tabular_batch_inference.yml + inputs: + job_data_path: + path: ${{parent.jobs.get_data_node.outputs.tabular_output_data}} + mode: direct + score_model: ${{parent.inputs.pipeline_score_model}} + outputs: + job_out_path: ${{parent.outputs.pipeline_job_out_tabular}} + + mini_batch_size: "100" + mini_batch_error_threshold: 5 + logging_level: "DEBUG" + input_data: ${{inputs.job_data_path}} + max_concurrency_per_instance: 2 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/convert_data.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/convert_data.py new file mode 100644 index 000000000000..32b1101887cf --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/convert_data.py @@ -0,0 +1,35 @@ + +import argparse +import os +from pathlib import Path +import shutil + +parser = argparse.ArgumentParser() +parser.add_argument("--input_data", type=str) +parser.add_argument("--file_output_data", type=str) + +args = parser.parse_args() + +print("input_data path: %s" % args.input_data) + +print("files in input_data path: ") +arr = os.listdir(args.input_data) +print(arr) + +output_dir = Path(args.file_output_data) +print("file_output_dir", output_dir) +print("file_output_dir exits", Path(output_dir).exists()) + +MLTable = output_dir / "MLTable" +MLTable.write_text("paths:") + +for file_name in arr: + data_path = Path(args.input_data + "/" + file_name) + print("Processing {}".format(data_path)) + (output_dir / data_path.name).write_text(file_name) + with MLTable.open(mode='a') as f: + f.write(f"\n - file: ./{data_path.name}") + # shutil.move(data_path, Path(output_dir / data_path.name)) + # MLTable.write_text(f"\t\t-\tfile:\t./{data_path.name}") + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/file_batch_inference.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/file_batch_inference.py new file mode 100644 index 000000000000..c3c4bd6f6a02 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/file_batch_inference.py @@ -0,0 +1,38 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- +"""This module simulate run() which can specify succeed every n items from argument.""" +import argparse + +from pathlib import Path + + +def init(): + """Init.""" + global OUTPUT_PATH + + parser = argparse.ArgumentParser(allow_abbrev=False, description="ParallelRunStep Agent") + parser.add_argument("--job_output_path", type=str, default=0) + args, _ = parser.parse_known_args() + OUTPUT_PATH = args.job_output_path + print("Pass through init done") + + +def run(mini_batch): + """Run.""" + + for file_path in mini_batch: + file = Path(file_path) + print("Processing {}".format(file)) + assert file.exists() + + # Two customers reported transient error when using OutputFileDatasetConfig. + # It hits "FileNotFoundError" when writing to a file in the output_dir folder, + # even the folder did exist per logs. + # This is to simulate such case and hope we can repro in our gated build. + output_dir = Path(OUTPUT_PATH) + print("output_dir", output_dir) + print("output_dir exits", Path(output_dir).exists()) + (Path(output_dir) / file.name).write_text(file_path) + + return mini_batch diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/get_data.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/get_data.py new file mode 100644 index 000000000000..240fa3581d89 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/get_data.py @@ -0,0 +1,56 @@ + +import argparse +import os +from pathlib import Path +import shutil + +print ("Get file and tabular data") + +parser = argparse.ArgumentParser() +parser.add_argument("--input_data", type=str) +parser.add_argument("--file_output_data", type=str) +parser.add_argument("--tabular_output_data", type=str) + +args = parser.parse_args() + +print("sample_input_data path: %s" % args.input_data) +print("sample_file_output_data path: %s" % args.file_output_data) +print("sample_tabular_output_data path: %s" % args.tabular_output_data) + +print("files in input_data path: ") +arr = os.listdir(args.input_data) +print(arr) + +for folder_name in arr: + data_path = args.input_data + "/" + folder_name + files = os.listdir(data_path) + print(files) + if folder_name == "mnist-data": + output_dir = Path(args.file_output_data) + print("file_output_dir", output_dir) + print("file_output_dir exits", Path(output_dir).exists()) + + for file_path in files: + file_source = Path(data_path + "/" + file_path) + print("Processing {}".format(file_source)) + assert file_source.exists() + file_destination = Path(output_dir) / file_source.name + print("file_destination:", file_destination) + shutil.move(file_source, file_destination) + + elif folder_name == "iris-mltable": + output_dir = Path(args.tabular_output_data) + print("tabular_output_dir", output_dir) + print("tabular_output_dir exits", Path(output_dir).exists()) + + for file_path in files: + file_source = Path(data_path + "/" + file_path) + print("Processing {}".format(file_source)) + assert file_source.exists() + file_destination = Path(output_dir) / file_source.name + print("file_destination:", file_destination) + shutil.move(file_source, file_destination) + else: + pass + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/tabular_batch_inference.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/tabular_batch_inference.py new file mode 100644 index 000000000000..19a1ec7ff8fd --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/src/tabular_batch_inference.py @@ -0,0 +1,39 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- +"""This module will load mlflow model and do prediction.""" + +import argparse +import os +import pickle +from pathlib import Path + +from mlflow.sklearn import load_model + +MODEL_NAME = "iris_model" + +def init(): + print("Environment variables start ****") + for key, val in os.environ.items(): + print(key, val) + print("Environment variables end ****") + + parser = argparse.ArgumentParser(allow_abbrev=False, description="ParallelRunStep Agent") + parser.add_argument("--model", type=str, default=0) + args, _ = parser.parse_known_args() + + model_path = args.model + "/" + MODEL_NAME + global iris_model + + iris_model = load_model(model_path) + + +def run(input_data): + num_rows, num_cols = input_data.shape + pred = iris_model.predict(input_data).reshape((num_rows, 1)) + + # cleanup output + result = input_data.drop(input_data.columns[4:], axis=1) + result['variety'] = pred + + return result diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/tabular_batch_inference.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/tabular_batch_inference.yml new file mode 100644 index 000000000000..6435421eb6b6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component/tabular_batch_inference.yml @@ -0,0 +1,43 @@ +$schema: http://azureml/sdk-2-0/ParallelComponent.json +name: batch_score_with_tabular_input +type: parallel +version: 1.0.0 +display_name: BatchScore +description: parallel component for batch score + +inputs: + job_data_path: + type: mltable + description: The data to be split and scored in parallel. + optional: false + score_model: + type: uri_folder + description: The model for batch score. + optional: false + +outputs: + job_out_path: + type: uri_file + +max_concurrency_per_instance: 2 +mini_batch_size: "100" +mini_batch_error_threshold: 5 +logging_level: "DEBUG" +retry_settings: + max_retries: 2 + timeout: 60 + +input_data: ${{inputs.job_data_path}} + +task: + type: function + code: ./src + entry_script: tabular_batch_inference.py + environment: + name: "prs-env" + version: 1 + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 + conda_file: ./environment_parallel.yml + args: >- + --model ${{inputs.score_model}} + append_row_to: ${{outputs.job_out_path}} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/convert_data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/convert_data.yml new file mode 100644 index 000000000000..b6524fe63085 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/convert_data.yml @@ -0,0 +1,24 @@ + +type: command + + +name: convert_to_mltable_file_dataset +display_name: Convert_To_Mltable_File_Dataset +version: 1 + +inputs: + input_data: + type: uri_folder + +outputs: + file_output_data: + type: mltable + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python convert_data.py + --input_data ${{inputs.input_data}} + --file_output_data ${{outputs.file_output_data}} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/0.png b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b5011542e977ac84582d50854d5c9be73c42d0 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^G9b(WBpAZe8a#m1GEW!Bkcv6U2@-huDQ|9?xw znj-E0O$T)?Ws1UooBjD4-Kv@X>GgY6Rynq9#r4$&s@2g(E^T!qp{Yx$kVVncS{IJYiq-n>Vcz zob>vi(t-2u?}tyD7Ns;ZIxIGp_mau(T~WfzpEC0>nD-TIt`ALo0rHurtDnm{r-UW| DHA!#$ literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/2.png b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/2.png new file mode 100644 index 0000000000000000000000000000000000000000..765d4e29a93b46962ca0c986a3a67d58c573e7fd GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^G9b(WBpAZe8a#khji-xaNX4Aw1PK<0xAA&;CqLLb z?ohpL|7hCfzec>9G5qob}(k zaQ3cW@d|#Ho#NLEv)BAEm*4*6OMUGQ)%kyl4{4_VmhMk^zklBTL1t6 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/3.png b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dd21aaa838f9f70d06ccd6e16a8675bd8406ef89 GIT binary patch literal 266 zcmV+l0rmcgP)K>55 zkh8xF(mC1JuHpCZOf)%#=RgzhbaF8;$Upo2xsVmZ7kfm&%v_){Wpv4tauBBc2@FYu zGZaq!|GNZ5vgh}27!%Xjn=naHd!W;v$zhkA0QAsZTL!F>+wKA-x1jm+*5ALLo=^V% z1qTzF977>ESRuq@bV*>iKqQ~-RpvsMWU%XlNaBc3k9EJ-x_iiBm!um20C0eimm22` Q-v9sr07*qoM6N<$g3CX7umAu6 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/MLTable new file mode 100644 index 000000000000..469f0c4c1413 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/dataset/mnist-data/MLTable @@ -0,0 +1,5 @@ +paths: + - file: ./0.png + - file: ./1.png + - file: ./2.png + - file: ./3.png diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/pipeline.py new file mode 100644 index 000000000000..c73e59ce4075 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/pipeline.py @@ -0,0 +1,47 @@ +from azure.ai.ml import dsl, Input +from azure.ai.ml.constants import AssetTypes, InputOutputModes +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import load_component +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + file_batch_inference = load_component( + yaml_file=parent_dir + "/score.yml" + ) + file_batch_inference_duplicate = load_component( + yaml_file=parent_dir + "/score.yml" + ) + convert_data = load_component(yaml_file=parent_dir + "/convert_data.yml") + + # Construct pipeline + @dsl.pipeline(compute="cpu-cluster") + def parallel_in_pipeline(pipeline_job_data_path): + file_batch_inference_node = file_batch_inference(job_data_path=pipeline_job_data_path) + file_batch_inference_node.compute = "cpu-cluster" + + convert_data_node = convert_data(input_data=file_batch_inference_node.outputs.job_output_path) + convert_data_node.outputs.file_output_data.type = AssetTypes.MLTABLE + + file_batch_inference_duplicate_node = file_batch_inference_duplicate(job_data_path=convert_data_node.outputs.file_output_data) + file_batch_inference_duplicate_node.inputs.job_data_path.mode = InputOutputModes.EVAL_MOUNT + + file_batch_inference_duplicate_node.compute = "cpu-cluster" + + return { + "pipeline_job_out_path": file_batch_inference_duplicate_node.outputs.job_output_path, + } + + pipeline = parallel_in_pipeline( + pipeline_job_data_path=Input( + type=AssetTypes.MLTABLE, + path=parent_dir + "/dataset/mnist-data/", + mode=InputOutputModes.EVAL_MOUNT, + ), + ) + + pipeline.outputs.pipeline_job_out_path.mode = "upload" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/pipeline.yml new file mode 100644 index 000000000000..594124f31718 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/pipeline.yml @@ -0,0 +1,52 @@ +type: pipeline + +compute: azureml:cpu-cluster + +inputs: + pipeline_job_data_path: + type: mltable + path: ./dataset/mnist-data/ + mode: eval_mount + +outputs: + pipeline_job_out_path: + type: uri_folder + mode: upload + +jobs: + file_batch_inference_node: + type: parallel + compute: azureml:cpu-cluster + component: file:./score.yml + inputs: + job_data_path: ${{parent.inputs.pipeline_job_data_path}} + outputs: + job_output_path: + + mini_batch_size: "1" + mini_batch_error_threshold: 1 + max_concurrency_per_instance: 1 + + convert_data_node: + type: command + component: file:./convert_data.yml + inputs: + input_data: ${{parent.jobs.file_batch_inference_node.outputs.job_output_path}} + outputs: + file_output_data: + type: mltable + + file_batch_inference_duplicate_node: + type: parallel + compute: azureml:cpu-cluster + component: file:./score.yml + inputs: + job_data_path: + path: ${{parent.jobs.convert_data_node.outputs.file_output_data}} + mode: eval_mount + outputs: + job_output_path: ${{parent.outputs.pipeline_job_out_path}} + + mini_batch_size: "1" + mini_batch_error_threshold: 1 + max_concurrency_per_instance: 1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/score.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/score.yml new file mode 100644 index 000000000000..72cead71a003 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/score.yml @@ -0,0 +1,34 @@ +#source ../configs/parallel-job/batch-score-ParallelComponent.yaml +$schema: http://azureml/sdk-2-0/ParallelComponent.json +name: file_batch_score +type: parallel +version: 1.0.0 +display_name: BatchScore +description: parallel component for batch score + +inputs: + job_data_path: + type: mltable + description: The data to be split and scored in parallel. + optional: false + +outputs: + job_output_path: + type: uri_folder + +resources: + instance_count: 2 + +mini_batch_size: "1" +input_data: ${{inputs.job_data_path}} +mini_batch_error_threshold: 1 +max_concurrency_per_instance: 1 + + +task: + type: function + code: ./src + entry_script: score.py + args: >- + --job_output_path ${{outputs.job_output_path}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/src/convert_data.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/src/convert_data.py new file mode 100644 index 000000000000..32b1101887cf --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/src/convert_data.py @@ -0,0 +1,35 @@ + +import argparse +import os +from pathlib import Path +import shutil + +parser = argparse.ArgumentParser() +parser.add_argument("--input_data", type=str) +parser.add_argument("--file_output_data", type=str) + +args = parser.parse_args() + +print("input_data path: %s" % args.input_data) + +print("files in input_data path: ") +arr = os.listdir(args.input_data) +print(arr) + +output_dir = Path(args.file_output_data) +print("file_output_dir", output_dir) +print("file_output_dir exits", Path(output_dir).exists()) + +MLTable = output_dir / "MLTable" +MLTable.write_text("paths:") + +for file_name in arr: + data_path = Path(args.input_data + "/" + file_name) + print("Processing {}".format(data_path)) + (output_dir / data_path.name).write_text(file_name) + with MLTable.open(mode='a') as f: + f.write(f"\n - file: ./{data_path.name}") + # shutil.move(data_path, Path(output_dir / data_path.name)) + # MLTable.write_text(f"\t\t-\tfile:\t./{data_path.name}") + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/src/score.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/src/score.py new file mode 100644 index 000000000000..c3c4bd6f6a02 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_file_input/src/score.py @@ -0,0 +1,38 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- +"""This module simulate run() which can specify succeed every n items from argument.""" +import argparse + +from pathlib import Path + + +def init(): + """Init.""" + global OUTPUT_PATH + + parser = argparse.ArgumentParser(allow_abbrev=False, description="ParallelRunStep Agent") + parser.add_argument("--job_output_path", type=str, default=0) + args, _ = parser.parse_known_args() + OUTPUT_PATH = args.job_output_path + print("Pass through init done") + + +def run(mini_batch): + """Run.""" + + for file_path in mini_batch: + file = Path(file_path) + print("Processing {}".format(file)) + assert file.exists() + + # Two customers reported transient error when using OutputFileDatasetConfig. + # It hits "FileNotFoundError" when writing to a file in the output_dir folder, + # even the folder did exist per logs. + # This is to simulate such case and hope we can repro in our gated build. + output_dir = Path(OUTPUT_PATH) + print("output_dir", output_dir) + print("output_dir exits", Path(output_dir).exists()) + (Path(output_dir) / file.name).write_text(file_path) + + return mini_batch diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/dataset/iris-mltable/MLTable b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/dataset/iris-mltable/MLTable new file mode 100644 index 000000000000..c459d92a28bf --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/dataset/iris-mltable/MLTable @@ -0,0 +1,7 @@ +paths: + - file: ./iris.csv +transformations: + - read_delimited: + delimiter: "," + encoding: ascii + header: all_files_same_headers diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/dataset/iris-mltable/iris.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/dataset/iris-mltable/iris.csv new file mode 100644 index 000000000000..8bd75a708148 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/dataset/iris-mltable/iris.csv @@ -0,0 +1,75 @@ +5.099999999999999645e+00,3.500000000000000000e+00,1.399999999999999911e+00,2.000000000000000111e-01,1.764052345967664026e+00,4.001572083672232938e-01,9.787379841057392005e-01,2.240893199201457797e+00,1.867557990149967484e+00,-9.772778798764110153e-01,9.500884175255893682e-01,-1.513572082976978872e-01,-1.032188517935578448e-01,4.105985019383723289e-01,1.440435711608779867e-01,1.454273506962975082e+00,7.610377251469934157e-01,1.216750164928284139e-01,4.438632327454256621e-01,3.336743273742668325e-01,1.494079073157606130e+00,-2.051582637658008745e-01,3.130677016509013644e-01,-8.540957393017247767e-01,-2.552989815834078691e+00,6.536185954403606058e-01,8.644361988595057333e-01,-7.421650204064419443e-01,2.269754623987607633e+00,-1.454365674598764757e+00,4.575851730144606805e-02,-1.871838500258335980e-01,1.532779214358457542e+00,1.469358769900285022e+00,1.549474256969163022e-01,3.781625196021735635e-01,-8.877857476301127537e-01,-1.980796468223926965e+00,-3.479121493261526088e-01,1.563489691039800511e-01,1.230290680727720742e+00,1.202379848784411287e+00,-3.873268174079522730e-01,-3.023027505753355659e-01 +4.900000000000000355e+00,3.000000000000000000e+00,1.399999999999999911e+00,2.000000000000000111e-01,-1.048552965067092613e+00,-1.420017937178975176e+00,-1.706270190625012617e+00,1.950775395231789666e+00,-5.096521817516534991e-01,-4.380743016111863786e-01,-1.252795360049926199e+00,7.774903558319100627e-01,-1.613897847557951515e+00,-2.127402802139687077e-01,-8.954665611936756253e-01,3.869024978592620068e-01,-5.108051375688730245e-01,-1.180632184122412109e+00,-2.818222833865486818e-02,4.283318705304176577e-01,6.651722238316788716e-02,3.024718977397813924e-01,-6.343220936809635946e-01,-3.627411659871381255e-01,-6.724604477759510424e-01,-3.595531615405412884e-01,-8.131462820444540496e-01,-1.726282602331676852e+00,1.774261422537528332e-01,-4.017809362082618851e-01,-1.630198346966044598e+00,4.627822555257741777e-01,-9.072983643832421841e-01,5.194539579613895175e-02,7.290905621775368717e-01,1.289829107574106681e-01,1.139400684543300679e+00,-1.234825820353652626e+00,4.023416411775490031e-01,-6.848100909403131986e-01,-8.707971491818817800e-01,-5.788496647644154613e-01,-3.115525321273726611e-01,5.616534222974543800e-02 +4.700000000000000178e+00,3.200000000000000178e+00,1.300000000000000044e+00,2.000000000000000111e-01,-1.165149840783356483e+00,9.008264869541871001e-01,4.656624397304598428e-01,-1.536243686277223741e+00,1.488252193795599698e+00,1.895889176030583156e+00,1.178779571159650708e+00,-1.799248358123509139e-01,-1.070752621510542513e+00,1.054451726931136646e+00,-4.031769469731796285e-01,1.222445070382427446e+00,2.082749780768602954e-01,9.766390364837127525e-01,3.563663971744018832e-01,7.065731681919481533e-01,1.050002072082047849e-02,1.785870493905835188e+00,1.269120927036199165e-01,4.019893634447016528e-01,1.883150697056254375e+00,-1.347759061142446368e+00,-1.270484998485733596e+00,9.693967081580111556e-01,-1.173123405114159912e+00,1.943621185649292649e+00,-4.136189807597473456e-01,-7.474548114407577604e-01,1.922942026480384703e+00,1.480514791434424327e+00,1.867558960426569881e+00,9.060446582753852729e-01,-8.612256850547025389e-01,1.910064953099033680e+00,-2.680033709513803819e-01,8.024563957963951610e-01,9.472519677737479826e-01,-1.550100930908341890e-01,6.140793703460802888e-01,9.222066715665268033e-01 +4.599999999999999645e+00,3.100000000000000089e+00,1.500000000000000000e+00,2.000000000000000111e-01,3.764255311556294337e-01,-1.099400790584194487e+00,2.982381742060559726e-01,1.326385896687030330e+00,-6.945678597313654778e-01,-1.496345403276707620e-01,-4.351535517216374438e-01,1.849263728479341840e+00,6.722947570124354622e-01,4.074618362411104311e-01,-7.699160744453164007e-01,5.392491912918172536e-01,-6.743326606573760706e-01,3.183055827435118251e-02,-6.358460783788809634e-01,6.764332949464997302e-01,5.765908166149409375e-01,-2.082987555779948763e-01,3.960067126616452771e-01,-1.093061508730505782e+00,-1.491257592705605539e+00,4.393917012645369158e-01,1.666734953725290402e-01,6.350314368921063934e-01,2.383144774863942050e+00,9.444794869904138412e-01,-9.128222254441585859e-01,1.117016288095852961e+00,-1.315907410511521158e+00,-4.615846048147089764e-01,-6.824160532463123541e-02,1.713342721649366629e+00,-7.447548220484399017e-01,-8.264385386590143989e-01,-9.845252442543230009e-02,-6.634782863621073723e-01,1.126635922106506982e+00,-1.079931508363423331e+00,-1.147468652411102408e+00,-4.378200447444340337e-01 +5.000000000000000000e+00,3.600000000000000089e+00,1.399999999999999911e+00,2.000000000000000111e-01,-4.980324506923048955e-01,1.929532053816985782e+00,9.494208069257608074e-01,8.755124138519089494e-02,-1.225435518830167991e+00,8.443629764015471162e-01,-1.000215347389564746e+00,-1.544771096777611596e+00,1.188029792352301772e+00,3.169426119248496265e-01,9.208588237808189580e-01,3.187276529430211891e-01,8.568306119026911638e-01,-6.510255933001468653e-01,-1.034242841784464684e+00,6.815945182816269821e-01,-8.034096641738410760e-01,-6.895497777502005432e-01,-4.555325035173431458e-01,1.747915902505672858e-02,-3.539939112534839505e-01,-1.374951293418018805e+00,-6.436184028328905127e-01,-2.223403152224426638e+00,6.252314510271874681e-01,-1.602057655606747621e+00,-1.104383339428450572e+00,5.216507926097440490e-02,-7.395629963913132876e-01,1.543014595406735801e+00,-1.292856909723448577e+00,2.670508693491829288e-01,-3.928281822749560281e-02,-1.168093497741197417e+00,5.232766605317537012e-01,-1.715463312222481052e-01,7.717905512136673529e-01,8.235041539637314445e-01,2.163235949280689852e+00,1.336527949436391971e+00 +5.400000000000000355e+00,3.899999999999999911e+00,1.699999999999999956e+00,4.000000000000000222e-01,-3.691818379424435803e-01,-2.393791775759263885e-01,1.099659595887113150e+00,6.552637307225978036e-01,6.401315260975920518e-01,-1.616956044310834395e+00,-2.432612439893563558e-02,-7.380309092056887010e-01,2.799245990432382425e-01,-9.815038964295794144e-02,9.101789080925919428e-01,3.172182151913020554e-01,7.863279621089761529e-01,-4.664190967359430617e-01,-9.444462559182503769e-01,-4.100496932025484709e-01,-1.702041386144059407e-02,3.791517355550818036e-01,2.259308950690852136e+00,-4.225715166064269307e-02,-9.559450004927769751e-01,-3.459817756993864291e-01,-4.635959746460941999e-01,4.814814737734621763e-01,-1.540797014444624802e+00,6.326199420033171150e-02,1.565065379653755862e-01,2.321810362002757755e-01,-5.973160689653627120e-01,-2.379217297360070038e-01,-1.424060908982531570e+00,-4.933198833621940671e-01,-5.428614760167177478e-01,4.160500462614254991e-01,-1.156182431821912715e+00,7.811981017099933755e-01,1.494484544491368805e+00,-2.069985025013532542e+00,4.262587307781009471e-01,6.769080350302455473e-01 +4.599999999999999645e+00,3.399999999999999911e+00,1.399999999999999911e+00,2.999999999999999889e-01,-6.374370255522290307e-01,-3.972718143287976567e-01,-1.328805775869556227e-01,-2.977908794017283256e-01,-3.090129690471222212e-01,-1.676003806329976697e+00,1.152331564783120044e+00,1.079618592036821090e+00,-8.133642592042028552e-01,-1.466424327802513972e+00,5.210648764527585630e-01,-5.757879698130661250e-01,1.419531633207796739e-01,-3.193284171450951892e-01,6.915387510701865859e-01,6.947491436560059297e-01,-7.255973784635842971e-01,-1.383363955395055411e+00,-1.582938397335081904e+00,6.103793791072051889e-01,-1.188859257784028900e+00,-5.068163542986875436e-01,-5.963140384505081215e-01,-5.256729626954628753e-02,-1.936279805846506941e+00,1.887785967938285514e-01,5.238910238342056047e-01,8.842208704466140989e-02,-3.108861716984717138e-01,9.740016626878340855e-02,3.990463456401301956e-01,-2.772592756426650151e+00,1.955912308250694176e+00,3.900933226879264581e-01,-6.524085823870200418e-01,-3.909533751876010932e-01,4.937417773491884487e-01,-1.161039390343665267e-01,-2.030684467781494362e+00,2.064492861359319420e+00 +5.000000000000000000e+00,3.399999999999999911e+00,1.500000000000000000e+00,2.000000000000000111e-01,-1.105406572324726111e-01,1.020172711715799707e+00,-6.920498477843911589e-01,1.536377054245797735e+00,2.863436888922795687e-01,6.088438344754507625e-01,-1.045253366146954743e+00,1.211145289682700854e+00,6.898181645347883917e-01,1.301846229564998403e+00,-6.280875596415789186e-01,-4.810271184607877171e-01,2.303916697683941806e+00,-1.060015822721547263e+00,-1.359497006783208228e-01,1.136891362602695299e+00,9.772496771485560119e-02,5.829536797532935966e-01,-3.994490292628751771e-01,3.700558878475187496e-01,-1.306526851735316574e+00,1.658130679618188053e+00,-1.181640451285697613e-01,-6.801782039968503613e-01,6.663830820319143200e-01,-4.607197873885532924e-01,-1.334258471402753443e+00,-1.346717505797555336e+00,6.937731526901325108e-01,-1.595734381462668994e-01,-1.337015596684391627e-01,1.077743805976262736e+00,-1.126825808756743541e+00,-7.306777528648248365e-01,-3.848798091812754563e-01,9.435158931707400554e-02,-4.217145129057893460e-02,-2.868871923899076193e-01,-6.162640209564740346e-02,-1.073052762911746866e-01 +4.400000000000000355e+00,2.899999999999999911e+00,1.399999999999999911e+00,2.000000000000000111e-01,-7.196043885517928729e-01,-8.129929885540773116e-01,2.745163577239395081e-01,-8.909150829955279072e-01,-1.157355259190853580e+00,-3.122922511256933098e-01,-1.576670161638158985e-01,2.256723497298209313e+00,-7.047002758562337377e-01,9.432607249694947571e-01,7.471883342046318210e-01,-1.188944955203736109e+00,7.732529774025996838e-01,-1.183880640193317735e+00,-2.659172237996740851e+00,6.063195243593807460e-01,-1.755890583437719421e+00,4.509344618059148435e-01,-6.840108977372165722e-01,1.659550796189872113e+00,1.068509399316009079e+00,-4.533858038513876587e-01,-6.878376110286823497e-01,-1.214077403094120600e+00,-4.409226322925913766e-01,-2.803554951845090848e-01,-3.646935443916853870e-01,1.567038552723639677e-01,5.785214977288783977e-01,3.496544569931739899e-01,-7.641439239064430344e-01,-1.437791473801578457e+00,1.364531848102471301e+00,-6.894491845499376437e-01,-6.522935999350191194e-01,-5.211893123011108742e-01,-1.843069550156648528e+00,-4.779740040404866774e-01,-4.796558140079476562e-01,6.203582983435125264e-01 +4.900000000000000355e+00,3.100000000000000089e+00,1.500000000000000000e+00,1.000000000000000056e-01,6.984571491073360283e-01,3.770889086269340121e-03,9.318483741143036569e-01,3.399649838012619996e-01,-1.568211160255476855e-02,1.609281682982229844e-01,-1.906534935813993525e-01,-3.948495140334503106e-01,-2.677335368939664506e-01,-1.128011331470006873e+00,2.804417053162959750e-01,-9.931236109295806802e-01,8.416312640736364203e-01,-2.494585801609488507e-01,4.949498165009073858e-02,4.938367762809563466e-01,6.433144650629278871e-01,-1.570623408633452733e+00,-2.069036761639717337e-01,8.801789120807822497e-01,-1.698105819432254471e+00,3.872804753950633838e-01,-2.255564229402189369e+00,-1.022506843635603513e+00,3.863055184018809873e-02,-1.656715102321953736e+00,-9.855107376841506506e-01,-1.471835007463586864e+00,1.648134932207559578e+00,1.642277554873339540e-01,5.672902778526693890e-01,-2.226751005151544893e-01,-3.534317487571990712e-01,-1.616474188651032540e+00,-2.918373627478628163e-01,-7.614922118116232985e-01,8.579239242923363262e-01,1.141101866657573405e+00,1.466578715574177627e+00,8.525519394612319779e-01 +5.400000000000000355e+00,3.700000000000000178e+00,1.500000000000000000e+00,2.000000000000000111e-01,-5.986539369229860741e-01,-1.115896985960394439e+00,7.666631816450860670e-01,3.562928174722889141e-01,-1.768538450677030749e+00,3.554817927437690650e-01,8.145198224878663629e-01,5.892558918162996151e-02,-1.850536710093415305e-01,-8.076484876163556592e-01,-1.446534699563387871e+00,8.002979493400275146e-01,-3.091144447717087962e-01,-2.334666615436927217e-01,1.732721186919133238e+00,6.845011068591904113e-01,3.708250012811020735e-01,1.420618051872356569e-01,1.519994860765772726e+00,1.719589307416194535e+00,9.295051114795280789e-01,5.822245913979242626e-01,-2.094603071206144751e+00,1.237219142335065775e-01,-1.301069541937039942e-01,9.395322938556871506e-02,9.430460873225178231e-01,-2.739677167189556339e+00,-5.693120534701850977e-01,2.699043549407613707e-01,-4.668455460527625167e-01,-1.416906113126259470e+00,8.689634868967953674e-01,2.768719058461280302e-01,-9.711045704444846161e-01,3.148172045158237897e-01,8.215857120497958022e-01,5.292646299360853623e-03,8.005648034309967853e-01,7.826017516166135224e-02 +4.799999999999999822e+00,3.399999999999999911e+00,1.600000000000000089e+00,2.000000000000000111e-01,-3.952289826543543549e-01,-1.159420516399912948e+00,-8.593076697161272648e-02,1.942929380457716626e-01,8.758327615873309213e-01,-1.151074684872267218e-01,4.574156062209908113e-01,-9.646120137337284017e-01,-7.826291558275251248e-01,-1.103892990268877522e-01,-1.054628463985013864e+00,8.202478373246812060e-01,4.631303293186070924e-01,2.790957643924534270e-01,3.389041252159445405e-01,2.021043561484797468e+00,-4.688641879667956314e-01,-2.201441285500557843e+00,1.993001968964651927e-01,-5.060354096166589516e-02,-5.175190425104032599e-01,-9.788298593587698715e-01,-4.391895218021479308e-01,1.813384292178212842e-01,-5.028167006425382501e-01,2.412453679543748564e+00,-9.605043816331479967e-01,-7.931173627076716359e-01,-2.288620040014528456e+00,2.514844150215370111e-01,-2.016406627799760098e+00,-5.394546333745013911e-01,-2.756705345605569568e-01,-7.097279658468882424e-01,1.738872677454510907e+00,9.943943913154988934e-01,1.319136876301575612e+00,-8.824188185499185488e-01,1.128594064514568451e+00,4.960009463439621902e-01 +4.799999999999999822e+00,3.000000000000000000e+00,1.399999999999999911e+00,1.000000000000000056e-01,7.714059486768455320e-01,1.029438828782767157e+00,-9.087632459590531120e-01,-4.243176209779014885e-01,8.625960113284510955e-01,-2.655619092974932816e+00,1.513328082573205169e+00,5.531320642075839844e-01,-4.570396066023485471e-02,2.205076557571732931e-01,-1.029935283308976546e+00,-3.499433645891047440e-01,1.100284338220373748e+00,1.298021972326221185e+00,2.696224052563579665e+00,-7.392466628041513554e-02,-6.585529668050037477e-01,-5.142339659399888241e-01,-1.018041875287364784e+00,-7.785475594085075612e-02,3.827324300122681433e-01,-3.424228053195386978e-02,1.096346845665798542e+00,-2.342158013445365394e-01,-3.474506524985632727e-01,-5.812684768603252339e-01,-1.632634526234495231e+00,-1.567767724308454014e+00,-1.179157930637687812e+00,1.301428071664760822e+00,8.952602728899299311e-01,1.374964066392989848e+00,-1.332211654594501749e+00,-1.968624689786020232e+00,-6.600563201340828856e-01,1.758189532960280077e-01,4.986902749098274801e-01,1.047972155968052821e+00,2.842796708072146128e-01,1.742668780655631133e+00 +4.299999999999999822e+00,3.000000000000000000e+00,1.100000000000000089e+00,1.000000000000000056e-01,-2.226056809483204779e-01,-9.130792180417963699e-01,-1.681218215494433510e+00,-8.889713580954499150e-01,2.421179609851230041e-01,-8.887202573536308048e-01,9.367424635352571416e-01,1.412327706037443065e+00,-2.369586905226602980e+00,8.640523004976479182e-01,-2.239604058661736730e+00,4.014990550902874933e-01,1.224870564193659694e+00,6.485610634357617810e-02,-1.279689173204239472e+00,-5.854312042777726210e-01,-2.616454457109007037e-01,-1.822447837899429379e-01,-2.028968407666670581e-01,-1.098827793093137967e-01,2.134800489101688903e-01,-1.208573653733221231e+00,-2.420198298702194994e-01,1.518261170355705403e+00,-3.846454231425177617e-01,-4.438360931551977862e-01,1.078197303714237831e+00,-2.559184666344096470e+00,1.181378601288285868e+00,-6.319037580051672931e-01,1.639285724525866295e-01,9.632135592119682455e-02,9.424681192203937519e-01,-2.675947462353476802e-01,-6.780257815644503694e-01,1.297845790651098730e+00,-2.364173817141180134e+00,2.033418170524324900e-02,-1.347925422629120407e+00,-7.615733882565589585e-01 +5.799999999999999822e+00,4.000000000000000000e+00,1.199999999999999956e+00,2.000000000000000111e-01,2.011256681463136964e+00,-4.459542645585702625e-02,1.950696971513811717e-01,-1.781562855705591364e+00,-7.290446587946957102e-01,1.965574007287849145e-01,3.547576931132180866e-01,6.168865543932787743e-01,8.627898917576322380e-03,5.270042084546596728e-01,4.537819126356840149e-01,-1.829740411004531442e+00,3.700572191014953050e-02,7.679024077327036846e-01,5.898798207345194999e-01,-3.638588099707898982e-01,-8.056265075393678199e-01,-1.118311924321632178e+00,-1.310540115414123297e-01,1.133079879559721892e+00,-1.951804101481602105e+00,-6.598917297294979445e-01,-1.139802455426774053e+00,7.849575212405001112e-01,-5.543096265713008952e-01,-4.706376581547914162e-01,-2.169495699366489894e-01,4.453932508947973101e-01,-3.923889981496367363e-01,-3.046143054799926642e+00,5.433118913875196743e-01,4.390429576720425442e-01,-2.195410283312132504e-01,-1.084036620671934514e+00,3.517801106813582823e-01,3.792355335355867552e-01,-4.700328827008747878e-01,-2.167314705755386262e-01,-9.301565025243212492e-01,-1.785890920873291488e-01 +5.700000000000000178e+00,4.400000000000000355e+00,1.500000000000000000e+00,4.000000000000000222e-01,-1.550429345083480959e+00,4.173188210318354852e-01,-9.443684908242938603e-01,2.381031478323121231e-01,-1.405962916267899265e+00,-5.900576458695396820e-01,-1.104894050659278315e-01,-1.660699811869263298e+00,1.151478731400921579e-01,-3.791475628799227393e-01,-1.742356197809230567e+00,-1.303242754112315716e+00,6.051200840821666649e-01,8.955559855513239853e-01,-1.319086397799670574e-01,4.047618120404974928e-01,2.238435633129106928e-01,3.296229821277380512e-01,1.285984007080293035e+00,-1.506998398214272061e+00,6.764607323616231849e-01,-3.820089555778202195e-01,-2.242589342516403406e-01,-3.022497304550700314e-01,-3.751471166612838637e-01,-1.226196191783019085e+00,1.833391992576012541e-01,1.670943032788857252e+00,-5.613302044875711355e-02,-1.385042735095726001e-03,-6.872990371566635170e-01,-1.174745464181114751e-01,4.661664260340307453e-01,-3.702424407043429233e-01,-4.538040410520010615e-01,4.032645401632468096e-01,-9.180047698190454408e-01,2.524966270768724264e-01,8.203217972614217368e-01,1.359948541679484313e+00 +5.400000000000000355e+00,3.899999999999999911e+00,1.300000000000000044e+00,4.000000000000000222e-01,-9.038200727694681302e-02,1.367597239806713549e+00,1.034409886481518104e+00,-9.962126403710661604e-01,-1.217938511593150919e+00,-3.049636378544204329e-01,1.028935492594854173e+00,-7.228700756000490391e-02,-6.006575576577884990e-01,1.552243180048560767e+00,2.869044880033463918e-01,-2.320594275790741623e+00,3.171606262926887632e-01,5.200406145708678096e-01,2.256086544711037867e-01,4.497121002319925398e-01,-6.727560892298173334e-02,-1.318395869644734208e+00,-3.707040032204534374e-01,-9.456157955562913831e-01,-9.327409107943778199e-01,-1.263068349102275389e+00,4.524890926396463731e-01,9.789614541262708913e-02,-4.481653626807080570e-01,-6.493379277303881203e-01,-2.342310502145216952e-02,1.079194728112489177e+00,-2.004215715498915085e+00,3.768765208508927378e-01,-5.457119740177823752e-01,-1.884585844979447700e+00,-1.945703083163958791e+00,-9.127834941352918063e-01,2.195095557930452634e-01,3.930629339800916222e-01,-9.389815726777852589e-01,1.017020991413244646e+00,1.422983496516106117e+00,3.960865849565601837e-01 +5.099999999999999645e+00,3.500000000000000000e+00,1.399999999999999911e+00,2.999999999999999889e-01,-5.914026678081107935e-01,1.124419184510368153e+00,7.553956956633383069e-01,8.674074113549179454e-01,-6.564636749715314634e-01,-2.834554505274702318e+00,2.116791021483675372e+00,-1.610878403449933716e+00,-3.576807186022112894e-02,2.380745351219750283e+00,3.305767562743739951e-01,9.492464735582356594e-01,-1.502396569381712732e+00,-1.777666954733706284e+00,-5.327027919795545019e-01,1.090749734434500073e+00,-3.462494476473099714e-01,-7.946363210714987302e-01,1.979672899449674561e-01,1.081935218477265259e+00,-1.444940199073371678e+00,-1.210542994123351646e+00,-7.886692545093662021e-01,1.094638374712091355e+00,2.348215259487319018e-01,2.132153410570443608e+00,9.364457258311158494e-01,-3.509517686967038308e-02,1.265077838088765949e+00,2.114970127318780146e-01,-7.049213525074449205e-01,6.799748442451023500e-01,-6.963266538610828338e-01,-2.903971008038667700e-01,1.327782695957983039e+00,-1.012814862173993524e-01,-8.031413873416283211e-01,-4.643376914354916396e-01,1.021790585588673084e+00,-5.525406734167291889e-01 +5.700000000000000178e+00,3.799999999999999822e+00,1.699999999999999956e+00,2.999999999999999889e-01,-3.868708468506465437e-01,-5.102927396336285337e-01,1.839254943403099418e-01,-3.854897603756082813e-01,-1.601836048972536952e+00,-8.871809418450402607e-01,-9.327890415064382656e-01,1.243319384455154886e+00,8.126740421090423716e-01,5.872593793998259759e-01,-5.053583172644099397e-01,-8.157915419939713031e-01,-5.075176016573570426e-01,-1.051880102551673968e+00,2.497200391587007129e+00,-2.245321648371402024e+00,5.640085350738091030e-01,-1.284552297992527237e+00,-1.043434914946926445e-01,-9.880019424937344086e-01,-1.177628962482630826e+00,-1.140196300934961604e+00,1.754986153742058574e+00,-1.329884223095919860e-01,-7.657021944780862954e-01,5.557869640828729807e-01,1.034931456629935298e-02,7.200337593416528126e-01,-1.824256655937829930e+00,3.036039044620014171e-01,7.726948371023817375e-01,-1.661598291114563697e+00,4.481952844233124678e-01,1.696181572828160622e+00,-1.485770335470271673e-02,8.214059370248112391e-01,6.705704503109098935e-01,-7.075056975105769030e-01,3.976673458649516990e-02,-1.566994710861602469e+00 +5.099999999999999645e+00,3.799999999999999822e+00,1.500000000000000000e+00,2.999999999999999889e-01,-4.513030371025261167e-01,2.656879749662359180e-01,7.231004937377981667e-01,2.461212524791161690e-02,7.199837301431654124e-01,-1.102906212955369725e+00,-1.016972745548715973e-01,1.927938451307721623e-02,1.849591246679636480e+00,-2.141666562000842378e-01,-4.990166379941828878e-01,2.135122384354860847e-02,-9.191134448699437298e-01,1.927538490652161707e-01,-3.650552165462576659e-01,-1.791327548041183659e+00,-5.858655113386084662e-02,-3.175430939301992495e-01,-1.632423302067983251e+00,-6.713415461452176825e-02,1.489355962074480288e+00,5.213037482757136853e-01,6.119271927311578096e-01,-1.341496725583042560e+00,4.768983689222224265e-01,1.484495813800780772e-01,5.290452383344316223e-01,4.226286217088256469e-01,-1.359780725503813681e+00,-4.140081155796743184e-02,-7.578708604251660486e-01,-5.008409428482209214e-02,-8.974009269018304868e-01,1.312470367140996297e+00,-8.589723884443423163e-01,-8.989421564655359909e-01,7.458640654355352950e-02,-1.077099069403994802e+00,-4.246633024328657080e-01,-8.299645975379619234e-01 +5.400000000000000355e+00,3.399999999999999911e+00,1.699999999999999956e+00,2.000000000000000111e-01,1.411172063889611694e+00,7.858038268311725583e-01,-5.746951846539464365e-02,-3.912170521740162554e-01,9.409176145751133591e-01,4.052040803228880717e-01,4.980524046828567197e-01,-2.619223734425048244e-02,-1.688230027771432162e+00,-1.124659825595527157e-01,-5.324899192090677413e-01,6.450552734598768989e-01,1.011842432994189078e+00,-6.579510447611686130e-01,4.683852342770516430e-01,1.735878997685713188e+00,-6.677127205705589708e-01,1.681921740073137661e+00,-8.525858471706470043e-01,2.295975560795144449e-02,-1.114561184184125094e-02,1.149889987006237450e-02,-8.376780419079452589e-01,-5.911831037644297293e-01,-6.677202863593993953e-01,3.269625954044573790e-01,3.300351145103116446e-01,2.225944331738258786e+00,1.370989006291121415e+00,-5.098432421384790914e-01,3.248696157961860620e-01,9.971179807917595062e-01,3.060182433851780723e-02,-6.964157844693558141e-02,5.157494276988904003e-02,8.672766288084278186e-01,-8.483205228052325131e-01,-3.256694688201741683e-01,4.704331448464818544e-01,3.114470715541555190e-01 +5.099999999999999645e+00,3.700000000000000178e+00,1.500000000000000000e+00,4.000000000000000222e-01,2.395827598563913252e-01,-3.698011663038032193e-01,9.725357891425369106e-01,2.133868247204537383e+00,4.064154936762062187e-01,-1.931767015498399021e-01,7.557402888945425889e-01,-5.391326367529899466e-01,-7.496903447028966383e-01,3.280874761371180282e-02,-2.582796632969944550e+00,-1.153950363652009425e+00,-3.479618559208458306e-01,-1.353388858147713369e+00,-1.032643101892129600e+00,-4.367483374580073963e-01,-1.642965293530609161e+00,-4.060717962598319186e-01,-5.352701645328444835e-01,2.540520838501601764e-02,1.154184030494019186e+00,1.725044164928659085e-01,2.106202134206362417e-02,9.945445703071174870e-02,2.273927751211284598e-01,-1.016738648609768925e+00,-1.147753247707981733e-01,3.087512418366131217e-01,-1.370759982543060529e+00,8.656529228158532652e-01,1.081376034458189750e+00,-6.313759884493888030e-01,-2.413377914531045498e-01,-8.781903428100731324e-01,6.993804835878171255e-01,-1.061222287445909185e+00,-2.224770102429202978e-01,-8.589199078076715788e-01,5.095427701128949632e-02,-1.794229271489721000e+00 +4.599999999999999645e+00,3.600000000000000089e+00,1.000000000000000000e+00,2.000000000000000111e-01,1.326461642365693416e+00,-9.646064242062639682e-01,5.989468311627604846e-02,-2.125230447703091996e-01,-7.621145119224981279e-01,-8.877801366359353574e-01,9.363985435524595502e-01,-5.256405931019396682e-01,2.711701846373109070e-01,-8.014968853943748028e-01,-6.471814318477606687e-01,4.722471500878487327e-01,9.304084961111163121e-01,-1.753164023270199490e-01,-1.421919871640436872e+00,1.997956079750004665e+00,-8.565493082342094944e-01,-1.541587399671787484e+00,2.594424587768151991e+00,-4.040322938509371409e-01,-1.461732688261408120e+00,-6.834397667886817906e-01,3.675448960222690298e-01,1.903115575939396953e-01,-8.517291972535899758e-01,1.822723600127959420e+00,-5.215796779933731253e-01,-1.184686590411551999e+00,9.606933984606597088e-01,1.329062846539682319e+00,-8.174930976162264606e-01,-1.401347293039310493e+00,1.030438267415604736e+00,-2.047323613057961733e+00,-1.226621659396615494e+00,9.674461500502350431e-01,-5.535254802238957078e-02,-2.639373485926878593e-01,3.528166064943783486e-01,-1.527744235454086830e-01 +5.099999999999999645e+00,3.299999999999999822e+00,1.699999999999999956e+00,5.000000000000000000e-01,-1.298686722163090224e+00,1.276075346006187550e+00,1.325014052886815286e+00,2.053325637779596924e-01,4.513401543201027433e-02,2.339624806020057957e+00,-2.764328450158372030e-01,-2.595769818340394330e-01,3.644812492405055671e-01,1.471321956142338294e+00,1.592770754417483614e+00,-2.585726316767712474e-01,3.083312459593452459e-01,-1.378083467064077139e+00,-3.119761079162129414e-01,-8.402903954793065067e-01,-1.006831752298983806e+00,1.681576716267327631e+00,-7.922866618061449318e-01,-5.316059080114549085e-01,3.658487879168582091e-01,1.297825266973585467e+00,4.811151263888354124e-01,2.759355114021582178e+00,-7.466797825114956932e-02,2.587164402297460475e-01,2.756006739840563546e-01,1.435049386789154502e+00,5.072389511096152548e-01,-1.162297003871490958e-01,-9.474885949068795332e-01,2.444434559616325831e-01,1.401344831291959636e+00,-4.103817936578705861e-01,5.289436184165822175e-01,2.461477886848441599e-01,8.635196583813146143e-01,-8.047537406378693081e-01,2.346647030526561650e+00,-1.279161107028258249e+00 +4.799999999999999822e+00,3.399999999999999911e+00,1.899999999999999911e+00,2.000000000000000111e-01,-3.655510899860373031e-01,9.380925409056455333e-01,2.967331724941133508e-01,8.299861590811031808e-01,-4.961023339825623713e-01,-7.480498268034106724e-02,1.223198363881738623e-02,1.569259614535904346e+00,6.904290243830489837e-01,7.966721083646713941e-01,-6.579260925367952373e-01,9.688826385630507909e-01,2.255816635688035199e-01,1.389145315677927428e+00,2.014060154918468015e+00,-3.067657760270045553e-01,-4.063031304450625547e-01,-8.640449911023695417e-01,-1.435795117163205514e-01,-3.820254489503835948e-01,3.595043995710101581e-01,-1.445668169337359366e-01,-3.615992807816197918e-01,1.064585136127851772e+00,-9.378802311514516932e-01,4.331079531513436498e-01,-4.059417271884834255e-01,7.243685048699644025e-01,1.385261546722230452e+00,-3.030982534240727055e-01,4.410329072731513644e-01,1.787928657331798454e-01,-7.994223995430965735e-01,2.407875097419384380e-01,2.891205052788121677e-01,4.128708204461746800e-01,-1.983988968200457448e-01,9.419230031014656779e-02,-1.147610944843135306e+00,-3.581140754798567416e-01 +5.000000000000000000e+00,3.000000000000000000e+00,1.600000000000000089e+00,2.000000000000000111e-01,5.559626797097979578e-01,8.924738873315303245e-01,-4.223148241252707158e-01,1.047140294332843252e-01,2.280533251240672021e-01,2.014799467044328662e-01,5.407735853003902138e-01,-1.818077630383569510e+00,-4.932407014757259067e-02,2.390336012467648985e-01,-1.000330348953705428e+00,1.673985707010710033e+00,1.615592672381679640e-01,1.563404745028929455e+00,-7.905230218330772107e-01,-9.073001215253270191e-01,2.242522209656818977e-01,-1.678688362828656633e+00,2.149655906260935223e-01,9.721923200291802958e-02,1.015665281542101228e+00,7.010413411650970872e-01,-4.174773498850339881e-01,-1.097496654770244717e+00,1.712305221343296546e+00,-7.921150205651500409e-01,-1.045524557069465788e+00,-1.084856059461445144e+00,1.117305315536664567e+00,-5.189002044248520740e-01,-7.537044661806008294e-01,1.376898259033473293e-01,-2.069447105572910228e-01,-6.780954607862469397e-01,7.539914669784796297e-01,1.065315492097994809e+00,9.853175089398669151e-01,7.669196696611989550e-01,4.026255311300351858e-01,-1.775887999961828889e+00 +5.000000000000000000e+00,3.399999999999999911e+00,1.600000000000000089e+00,4.000000000000000222e-01,1.669250806376968654e+00,3.019892103575529396e-01,6.081564276006414804e-01,1.114962322947402162e+00,1.433352502881991786e+00,4.183980113091925190e-01,4.355461592956536010e-01,-5.992242774597194011e-01,3.308975113876019836e-02,-8.541612608143545060e-01,-7.199405321418946846e-01,-8.935744023141912740e-01,-1.560238909972873622e-01,1.049093187920010273e+00,3.170974773290179627e+00,1.894996375479134632e-01,-1.348413087756120010e+00,1.264983329856256056e+00,-3.007838764760271122e-01,-6.606085939769920090e-01,2.098494779230553053e-01,-1.240624599556227503e+00,2.224631640086067730e-01,-8.837552319915496779e-02,9.837790681547566030e-02,3.814162542091708574e-01,6.749225724080680500e-02,1.633808411289249321e-02,2.843145189979445209e-01,4.154006261711268300e-01,-1.031482460315257699e+00,-1.429991258685448408e+00,-6.163805217221475508e-02,-1.432735489934108042e+00,8.753147092167086474e-02,9.387468756823100779e-01,6.071116719160458697e-01,-1.048170406825473133e+00,-8.602624519575188256e-01,3.283012950007553887e-01 +5.200000000000000178e+00,3.500000000000000000e+00,1.500000000000000000e+00,2.000000000000000111e-01,-4.012978051335100438e-01,-3.166552950521069332e-01,5.969064812479538684e-01,-9.872866934576524089e-01,-4.012347099111824300e-01,-8.000824760846012573e-01,-1.043129498035355596e+00,-8.570781886711646980e-01,6.774621693464116801e-01,5.182038948242156245e-02,-8.791606288350748422e-01,-2.311016075929965274e-01,-1.638807307122177814e+00,-7.333128075836656823e-01,2.149574534867286779e+00,-9.024384966575059452e-02,7.316589270303924808e-01,-6.548837514448298258e-02,3.481692352418086500e-01,6.632580896791739899e-01,-1.104616597526470789e+00,-3.093625727395893713e-02,1.578865194416488205e+00,-7.955005500532910112e-01,-5.664398537322192784e-01,-3.076912773670017476e-01,2.690240731762466586e-01,5.249178636458826652e-01,1.267411654818656697e+00,4.994982334686594583e-01,-6.205312579833403147e-02,1.259167129610813785e+00,7.041110221415821657e-01,-1.495679516257016228e+00,2.526368240355998385e+00,1.769921388196733725e+00,-1.682142227670740953e-01,3.779101017384750572e-01,1.324358749995839135e+00,-1.722007926968826264e-01 +5.200000000000000178e+00,3.399999999999999911e+00,1.399999999999999911e+00,2.000000000000000111e-01,7.303517903770193609e-01,1.104578473571476538e+00,-1.014825907734441035e+00,-6.023318535828621201e-01,9.214083978105812589e-01,4.608144771488305036e-01,9.237965603139468573e-01,-1.325680146537180359e-01,-2.890052109542329828e-01,-1.998639475583372738e+00,-1.146000426507443271e+00,4.706609465849369289e-02,8.245572195642364433e-01,5.311783665356952788e-01,-1.282419740277020159e-01,-2.717715664906966699e-01,2.171796326382801345e-01,7.821118109215217939e-02,1.404545514939711914e+00,1.464407704782498543e-01,-1.481245962197298427e+00,-1.272558135032316962e+00,1.518759336963580120e+00,-1.171160461450080348e+00,7.644974530335335583e-01,-2.683727352093812080e-01,-1.697582939024854798e-01,-1.341327827684201113e-01,1.221384959459198338e+00,-1.928418285439646718e-01,-3.331928284515295324e-02,-1.530803497399492619e+00,2.066905117080032883e-01,5.310425069780596585e-01,2.391455806537870210e-01,1.397896261086735370e+00,5.517135478023173917e-02,2.989774561190176039e-01,1.648504010268178943e+00,-1.550014189358147831e+00 +4.700000000000000178e+00,3.200000000000000178e+00,1.600000000000000089e+00,2.000000000000000111e-01,-4.558253477993688407e-01,1.426158752019266229e+00,9.361291483110824041e-01,6.783800988404703469e-01,8.326507394644783178e-01,3.270662091210220779e-01,1.631597427532271549e+00,3.777591697307178809e-01,2.398671058952785706e-01,1.589586741256432678e-01,1.928639555503860181e-01,-1.157017280815867855e+00,7.706730544633433322e-01,-1.304397337833273218e-01,1.821915097860405952e+00,-7.565047058842289118e-02,4.209182841756565763e-01,2.466021862613344273e-01,-6.255570351092533121e-01,9.921368285185058200e-01,1.905063640560017646e+00,-1.477721965984477720e-02,-3.004787855854222922e-01,-3.550287310553740805e-01,-1.892361893317341393e+00,-1.778131437030125439e-01,2.509981160083239460e-01,1.054757925180282774e+00,9.600477411499278579e-01,-4.164990824366924804e-01,-2.768229947738883312e-01,1.123905305614439021e+00,-1.734638970728791252e-01,-5.100295397556169341e-01,1.392518449434272387e+00,1.037585667050634042e+00,1.879179177425780237e-02,-5.937774477786674776e-01,-2.011880319244709003e+00,5.897036055747238992e-01 +4.799999999999999822e+00,3.100000000000000089e+00,1.600000000000000089e+00,2.000000000000000111e-01,-8.963697225521801704e-01,-1.962732009140752076e+00,1.584820527349017905e+00,6.479677910098883276e-01,-1.139008193116965328e+00,-1.214401382959259035e+00,8.709617821716195696e-01,-8.779706165358701631e-01,1.296149867527883304e+00,6.164593126261552758e-01,5.365965205668234983e-01,4.046954556143003146e-01,1.914508720239117834e-01,8.805111991771105151e-01,-4.540803625156051293e-01,8.595197343438468196e-02,7.519465876771956880e-01,5.629897185861277853e-01,-1.194986805268660301e+00,-5.004096673042639498e-01,2.528035054191545283e-01,-4.080147090398968945e-01,1.774658560973333188e+00,-3.931531947541128669e-01,-1.622184475766908496e-01,7.694301781773038584e-01,3.305327432349157712e-01,-1.452744572047692251e-01,-7.564935288807482783e-01,3.015140573967661775e-01,1.039096440378392661e+00,4.790952240982285781e-01,-7.781835214561222402e-01,1.736774956976710804e+00,-1.446577890035894320e+00,-1.582685641802789034e+00,9.605572244572283536e-01,2.258404786026901034e-01,-5.494985463040402696e-01,-1.098570727555329585e+00 +5.400000000000000355e+00,3.399999999999999911e+00,1.500000000000000000e+00,4.000000000000000222e-01,2.320799839280298205e+00,1.170908721554419496e-01,5.342011708457714558e-01,3.178850972381815909e-01,4.348079577311579347e-01,5.400944605248059194e-01,7.324240097548762041e-01,-3.752224007606727030e-01,-2.916419863518445732e-01,-1.741022808358901441e+00,-7.803044065015394271e-01,2.711127964467148765e-01,1.045023375502690532e+00,5.990395263761840727e-01,-3.406923438779304592e-01,-1.263172912085154254e+00,-2.777359145427433340e+00,1.151733974780799086e+00,-5.892289865101497659e-01,-4.484650062040592688e-01,1.315739679080687174e-01,-1.405560047391889889e+00,-3.497821801115368889e-01,2.023471949769974021e+00,5.053869385773427370e-01,3.592491565134564024e-01,-1.582494477981758463e+00,2.243601894582640366e+00,-1.422794908626342725e+00,1.922324755444398514e+00,-2.115056015187807503e+00,1.405365438724420324e+00,1.618054269000225531e+00,-8.244091213278346153e-01,4.225803722728827538e-01,5.474805721046650531e-01,-8.137944832313058763e-01,-1.449117610736930351e+00,-1.317717343140765385e+00,5.410082199598076347e-01 +5.200000000000000178e+00,4.099999999999999645e+00,1.500000000000000000e+00,1.000000000000000056e-01,-8.511560251940573918e-02,-5.643010333021604152e-01,9.667680111664601617e-01,5.080679093914777233e-01,-7.554627263656333858e-01,-1.201201519017389252e+00,5.232617386880769050e-01,-5.375833685580618804e-01,9.920486253150243017e-02,1.576298972627717676e+00,5.023282400747796084e-01,-8.622669997532367292e-01,1.606611898197728150e-01,-9.526449528153877466e-01,1.608522155948723720e+00,-5.615787496032208503e-01,2.072707469736186359e-01,3.077325746794319916e-01,1.592504683737024362e-01,-1.958548955136538705e+00,-1.446421063983328592e+00,-4.523502755690916866e-01,3.194318333315306346e-01,-1.377792142857706681e-01,-9.571474731510167810e-01,-1.348424319121700909e+00,-4.015575444993436105e-01,-4.684760446797231470e-01,5.128364575927566449e-01,-3.263184621583181122e-01,6.027076564293295524e-01,-5.946497697204053967e-01,-2.559576692142683241e-01,-3.480463796426194190e-01,-7.823669669020897333e-01,6.251186564337302132e-01,-8.135959970945070285e-01,-5.216415099706189773e-01,-7.311964594819723995e-02,-1.297379655956739875e+00 +5.500000000000000000e+00,4.200000000000000178e+00,1.399999999999999911e+00,2.000000000000000111e-01,-3.249349583204991232e-01,-7.113063597427885520e-01,-3.881541924822495826e-01,-5.992800267109062162e-02,-7.999136231406647202e-01,-2.200757798203555882e-01,1.308668752352179165e+00,-2.579855825448711115e-02,1.145262173019224727e+00,3.464944420067607167e-01,7.741606098188164031e-01,-7.744589687708258730e-01,1.049071650855127186e-01,1.339129226154759100e-01,-6.126257388749356547e-01,-8.228283242942817655e-01,-1.490265387907298233e+00,1.496139636951631990e+00,-9.724028893524976347e-01,1.346221073222300113e+00,-4.674931736578534780e-01,-8.624932997247338751e-01,6.225191403049976646e-01,-6.311919417468571103e-01,5.684589189242769125e-01,-3.328117648522095906e-01,4.804244961177867590e-01,-9.681860639071049324e-01,8.313510579847682713e-01,4.879726826630045866e-01,-9.196506900626617576e-01,2.642935721014741723e+00,5.401230264004940329e-01,2.290467070530538773e+00,1.600267818748759119e+00,-1.888347802177837986e-01,-4.122717546045429060e-01,-4.034591834208012262e-01,-1.830028550427810208e+00,-6.958351193495473375e-01 +4.900000000000000355e+00,3.100000000000000089e+00,1.500000000000000000e+00,1.000000000000000056e-01,2.467660239799705779e-01,1.525957560884808384e+00,-7.727718829782020959e-01,8.820565993630106183e-01,-1.252593341503319024e+00,-5.863200252111323563e-01,-4.576405942895259704e-01,3.718110814974934786e-01,4.573096467208112581e-01,9.623417448143452013e-01,7.708369604049366552e-01,2.431682154024917275e-01,3.903649435086223862e-01,1.588530691097532532e+00,-5.109261812322630769e-01,7.747283190671621078e-01,-1.808143926498251508e+00,4.113342428976086151e-01,-4.832495424791073968e-01,2.571182431510025176e-03,1.040086245053703173e+00,1.646438095263976220e-01,8.851875412089272865e-01,1.473764815138404849e+00,3.890939688657205631e-01,1.171041064620488292e+00,-3.265609776792077201e-01,-8.209882269614044575e-03,-5.226194163984779761e-01,1.042977594646375961e+00,4.140913537935950739e-01,-5.072344618949226058e-01,1.546688336463321878e-01,1.041568388818581825e+00,-3.926799103795318435e-02,-9.489328108497634418e-01,1.319117557874122104e-01,-1.980565591068939701e+00,7.687706443994749561e-01,-4.213275873246805081e-01 +5.000000000000000000e+00,3.200000000000000178e+00,1.199999999999999956e+00,2.000000000000000111e-01,-4.693107362791067438e-01,8.756956787795067143e-01,-1.365162877225168714e+00,1.947098642820357828e+00,-4.802420417382233242e-01,-5.232509433848950842e-01,1.021224743167163052e+00,7.086952731104265713e-01,2.451229719075076030e+00,-2.112059836315199890e-01,-1.204066386644097320e-01,-1.479315979963253591e+00,-3.321022773488251367e-01,-7.214312955717557818e-01,-4.487670131054991574e-01,-1.744187756553955193e+00,1.660607559894514029e+00,-1.416603482425640603e+00,-2.802202798391713046e+00,-1.188424421583019308e+00,-6.038395527961509801e-01,-1.149554063257118175e+00,1.098303540732512351e+00,-1.378391785960938476e-01,2.538560440645898711e-02,6.103917643054127540e-01,2.860125269781179647e-01,9.785672974460429829e-01,-1.109477553636145197e+00,-5.475181006794317407e-01,6.659671460695377743e-01,-2.534554462084229964e+00,-1.375184479317240749e+00,5.009922321799465950e-01,-4.802490349949254389e-01,9.361075501096975948e-01,8.091802968531627283e-01,-1.198092880191038212e+00,4.066570874668811730e-01,1.201697855667506420e+00 +5.500000000000000000e+00,3.500000000000000000e+00,1.300000000000000044e+00,2.000000000000000111e-01,1.474344016509719080e-01,-9.774648772458691681e-01,8.793899419133700546e-01,6.354245265539955057e-01,5.426107834987963230e-01,7.159388934369916857e-01,-2.994612860227618967e+00,8.809375610809715429e-01,1.808131810578975429e+00,4.366384746292930052e-01,1.927289964997268290e-01,6.964386733914392780e-01,3.382254736851152965e-01,6.517812617006160103e-01,1.471000245410806345e-03,-7.667048545369002932e-01,-1.004322712214613444e+00,-9.981917282318640838e-01,-1.373042550950895224e+00,-1.067742011019106485e+00,1.761266127419863103e+00,7.540956636562426985e-01,-6.250273906846712801e-01,-3.903926939855080769e-01,1.125575309064542895e-01,-6.555450294843581105e-01,6.751685717432485967e-02,7.776041379029120515e-01,-3.574273354817348453e-02,3.360157426619921339e-01,8.864915393596158877e-01,-2.721317560182082151e-01,2.847905991343631649e-01,-3.093775928833613631e-01,-2.852886983441639893e-02,-3.247302650829599902e-01,-5.288698535561152658e-01,1.737118529870234351e-01,5.665453158182124360e-01,1.463044460010442527e-01 +4.900000000000000355e+00,3.100000000000000089e+00,1.500000000000000000e+00,1.000000000000000056e-01,4.987269583119319782e-01,-7.379317802412298510e-01,-1.203735192199779425e+00,4.170435029676035632e-01,6.878813911747545529e-01,4.985726659982264719e-02,1.348035780424718721e+00,9.076987979878986534e-01,2.680570840769000540e+00,-2.008085139956655718e-01,-9.988487960953681410e-01,-7.401367907395135504e-01,-5.654978063746562977e-01,4.760313834381145193e-01,-2.158068563961256903e+00,1.318551018090836635e+00,-2.392965911423441394e-01,-2.467935577887517828e-01,-1.079343166024995249e+00,-1.142255514501802072e-01,1.323976766753355225e-02,-1.219449276002772670e-01,3.390592559424304153e-01,-5.896320419510298061e-01,-8.958157604108271110e-01,5.483281304979799042e-01,9.866745381579566931e-02,1.971810551973673942e-01,1.059027254441966326e+00,-1.022564391260685657e+00,-8.552404572508641722e-01,1.257219650828994117e+00,-1.482883357574042549e+00,-1.309412146331014215e+00,8.178618311849957800e-01,2.382001920220386260e-01,1.052321370592758515e-01,-9.165940810038318565e-02,3.126754702756948112e-02,-9.211211469195591806e-02 +4.400000000000000355e+00,3.000000000000000000e+00,1.300000000000000044e+00,2.000000000000000111e-01,1.355442702594418236e+00,-3.981481287500751032e-01,-1.613735362777791726e-01,1.794448805225073551e+00,2.750970202983580096e-02,2.232016389525177669e+00,-1.049797010189535557e-01,1.367414982460158468e+00,-1.655344038309677801e+00,1.536444608156663783e-01,-1.584473563150935460e+00,8.444543066045863133e-01,-1.212867816209024729e+00,2.837695543833455014e-01,-2.821958766904351101e-01,-1.158203185184028872e+00,-1.619359982897542460e+00,-5.110404635801097939e-01,1.740629445895330862e+00,-2.934850548893774835e-01,9.172215421158560478e-01,-5.704286766218814864e-02,8.767267736904523767e-01,-1.826911378304517664e+00,-4.031883068495333289e-01,9.494055237932187419e-01,-1.632549488331787313e-01,-8.645528271104713225e-02,-4.304619118857929694e-01,1.149379383367123975e+00,2.975143539549459093e-01,4.402227617534797133e-02,6.430545453392927380e-01,5.882249291179366679e-01,2.125870464375365920e-01,1.547031496990844524e+00,-6.028753363911903973e-02,2.780810479679439728e-01,-6.429525533528904768e-01,1.501152270061291982e-01 +5.099999999999999645e+00,3.399999999999999911e+00,1.500000000000000000e+00,2.000000000000000111e-01,1.587761523745367498e+00,-6.432576017887388087e-01,-1.133592825638458867e+00,9.967596428198155500e-01,-1.487661522336792552e-01,9.600420496977001006e-02,-4.511330369333481360e-02,7.912172392953507882e-02,8.505306835234381913e-01,-8.391241905992736783e-01,-1.011774084105488525e+00,8.496813703770766946e-02,-1.606439689449832731e+00,-1.373053536041928480e+00,1.866683148331627073e+00,7.574683300614039050e-01,-1.005647186901453827e-02,1.238006935958439803e+00,-1.040599230085144988e+00,-3.156031233858582197e-01,6.234536094243824378e-01,8.906716814313947461e-01,5.129168468277763848e-01,-2.541238807688224632e+00,-9.680821176645779680e-01,4.770680923568652587e-01,-3.559514930468063443e-01,2.540231620759171527e+00,9.265583009670964598e-01,5.580818806186658154e-01,-1.116949553746723556e+00,-3.529673960291555834e-02,2.412039642189525157e-01,1.127783630127802361e+00,8.811310970996323322e-01,1.032989194519945642e+00,-9.239120158100020408e-01,1.412151698298630853e+00,-1.380430752307269193e+00,-5.359145616661618039e-01 +5.000000000000000000e+00,3.500000000000000000e+00,1.300000000000000044e+00,2.999999999999999889e-01,4.307711349456414540e-01,-1.498915917331393177e-01,-1.006036857920391547e+00,-8.215498256031326108e-01,-1.548254322849042408e+00,5.319746390071913300e-01,1.260568845042149277e+00,-1.003935034013660188e-01,-4.003488150134233980e-01,-1.472322928466489600e+00,9.132019242521776103e-01,2.211304333239493047e+00,-1.797455804366897558e+00,-1.063432938154606822e+00,-6.795930425441440992e-01,-5.643179096824889607e-01,2.273459501434809960e-01,1.614249547280227404e+00,1.008597286860103637e+00,5.275973827743158928e-01,-7.239287040586021016e-01,-1.119628233680454388e+00,-7.967753063063008900e-01,1.548066801378738644e+00,-6.174330145790107166e-02,-4.468362536626211967e-01,-1.837557302499922551e-01,8.246182196384677088e-01,-1.312849674549791734e+00,1.414874135922422393e+00,1.564762569462989639e-01,-2.163439782957261026e-01,4.428461137467389896e-01,2.183970731299370305e-01,-3.441964564673812288e-01,-2.527106720416066876e-01,-8.688625468659522122e-01,6.563907508593024298e-01,-5.319938094111618110e-01,-9.562584224322827620e-01 +4.500000000000000000e+00,2.299999999999999822e+00,1.300000000000000044e+00,2.999999999999999889e-01,1.658635226535373208e-01,1.329141282745553321e+00,-4.834462377981961489e-02,-6.081012569516899280e-01,4.038960208359738124e-01,1.936712462402552015e+00,-1.451905529431747333e+00,3.822027877852935962e-01,2.050866252318538085e-01,1.161533803559117173e+00,9.909091736848452125e-01,-1.867091118097792268e-01,-1.684517255424882842e+00,8.065637678962596091e-01,-8.351926901914831225e-01,-9.467404109571895265e-01,1.148350580691126277e+00,-9.108503776386525086e-01,1.402844740100243293e+00,3.358447214053130181e-01,3.191184000862823944e-01,3.072647805055910286e-01,-1.638423625741792122e+00,-1.776388616346575855e+00,2.155530537886848064e-01,5.680073592264200943e-01,8.261103215620101137e-02,-8.215345170195275104e-01,1.892210388219473655e-02,-8.203415314548415105e-02,-9.571580982754103184e-01,1.013972154112161350e+00,-1.730276061550085842e+00,5.887424068075064465e-01,3.843234052112453059e-01,1.009711854811714327e+00,-1.005311872348858770e+00,1.014071466682110040e-01,2.171164949318165949e+00,6.620742889997063285e-01 +4.400000000000000355e+00,3.200000000000000178e+00,1.300000000000000044e+00,2.000000000000000111e-01,1.005812087289631868e-01,5.391612741141965648e-01,8.617684238012002229e-02,2.190898013239840125e+00,9.836361957891794905e-01,-8.561495423049708675e-02,2.523314313845212431e-01,-3.907979960810135656e-01,1.209850126410304982e+00,-1.406104771391010866e+00,-1.604738529860987084e+00,1.458714749675993572e+00,2.153119792570582725e+00,4.683049076895917096e-01,1.127379412357372573e-01,6.572676903047772745e-01,-6.470535263827592587e-01,1.712435451522124896e-01,3.890870585621503119e-02,6.265642507453605958e-01,-1.557998528183396347e+00,-5.070347697653374563e-01,8.449956030008372032e-01,-6.755938276300630374e-01,-9.933613754231354065e-01,2.042072149826954064e+00,3.811800017940036173e-02,-5.789181399432078434e-01,-1.692370437474108424e+00,7.293463462804261610e-01,6.991361537186937536e-01,-2.987596005699359458e-01,-1.102230190907090623e+00,-2.454942364237903615e-02,-8.358560674816213343e-01,-9.420935888731158947e-01,-1.032127514617075803e-01,-1.051390398660064562e+00,2.466489552524461781e-01,6.079925094063972635e-01 +5.000000000000000000e+00,3.500000000000000000e+00,1.600000000000000089e+00,5.999999999999999778e-01,-8.396324471731914096e-01,-1.368245095338390671e+00,1.561279598955807035e+00,-9.402702359572048252e-01,-6.599427051023376567e-01,2.130171674298873552e-01,5.993693725222970503e-01,-2.563168936896427774e-01,4.607943277012555572e-01,-4.009861578964010187e-01,-9.711706648243907392e-01,1.426316860787027352e+00,2.488441614331128093e+00,1.695969533014169306e+00,1.418066391534544557e-01,1.833435361815678455e+00,3.557035157239844536e-01,-4.772862704032293513e-01,4.663795743819788564e-01,-9.439250641118496210e-02,-9.831181837457076966e-01,-8.983219714320159754e-01,8.020517387405159404e-01,-1.846531981664673028e+00,6.041367404426841725e-01,-1.629583602748438276e+00,-2.121176444902435954e+00,-1.838846603758498510e+00,1.966763971934739841e+00,-1.962339649435420053e-01,8.658318016541909079e-02,1.419255045910951196e+00,9.341797484997248491e-01,-1.391505269404219591e+00,8.690063428187611017e-01,1.841812647035462880e-01,-3.416780975958805810e-01,2.429091413778038805e-02,1.279812020628021907e+00,-8.859664820409528518e-01 +5.099999999999999645e+00,3.799999999999999822e+00,1.899999999999999911e+00,4.000000000000000222e-01,4.008856791041211509e-01,-9.657236532908345522e-03,-1.797164615395618448e+00,-8.022531717308107879e-01,1.932135532336964612e-01,1.297342089092890616e+00,1.001331017346729579e+00,5.972125044034249930e-01,-8.152756611364585515e-01,1.801213990808534948e+00,2.152404676396114658e-01,-1.006365521678550312e+00,-1.829049808569510049e-01,8.962484253561593395e-01,7.617498318158106956e-03,8.868646865827609638e-01,1.103693957462150266e+00,4.005306845987061659e-01,-8.577026230468940415e-01,1.354546631899805342e-01,4.516585593883100380e-02,1.859346333851628286e+00,-1.626321937826830100e+00,-1.348224510943540622e-01,-5.840935467949193161e-01,3.351056201959988767e-01,-2.437564359199356101e+00,1.114924559490279909e+00,1.374848733553365662e-02,-1.844701163628046148e+00,-3.611131347398661151e-01,6.089623416545242307e-01,-1.591447875458031458e+00,3.222216443155699172e-03,-1.057473647801530081e+00,-5.559850318789673063e-01,2.673838267463693116e-02,1.834502535815762947e-01,-4.707424981827272314e-01,2.727963895302641384e-01 +4.799999999999999822e+00,3.000000000000000000e+00,1.399999999999999911e+00,2.999999999999999889e-01,8.179776072548057275e-01,-2.789142751032397949e-01,1.431567757449290879e+00,1.462214170780419487e+00,-4.287020655858288509e-01,-6.378405564735842859e-01,-1.664172985166173513e+00,-1.265693316393898538e-01,-3.634377801160513788e-01,7.790512201329915509e-01,-1.509661606068298800e+00,-2.773913917431098386e-01,9.687443931111453521e-01,-7.303570955579599122e-01,-7.623615367276093124e-01,-1.446940334755808522e+00,2.620573846018239283e+00,-7.474731780653793844e-01,-1.300346832218339133e+00,-8.038504040315199717e-01,-7.742950804868045100e-01,-2.693897784512402915e-01,8.253722320875147567e-01,-2.983231689958337207e-01,-9.228233149968279037e-01,-1.451338498191025117e+00,2.185735821987137145e-02,4.253907402979072161e-02,1.530932351028824634e+00,9.244773546980858403e-02,-9.900831128407737436e-02,-1.050653836587489565e+00,-3.059525750983919101e-01,-4.384744580346060516e-01,-3.701641645137025427e-01,-9.592553926405882336e-01,5.383296032761768490e-01,-1.424454175093693709e-01,-2.003534800049873998e-01,-1.714046116048996371e+00 +5.099999999999999645e+00,3.799999999999999822e+00,1.600000000000000089e+00,2.000000000000000111e-01,4.936440875248638838e-01,4.870153259803794432e-01,-8.391294028422137119e-01,9.901213838791936839e-01,-1.364758230082432355e+00,-2.186990878907987476e-02,-2.712073398901638788e-01,-1.317174788805794305e+00,1.897026120799957527e-01,1.702570152241791313e+00,6.763423006691976491e-02,-4.630217541090509425e-01,4.470241568856782588e-01,1.057199954671549369e-01,2.776213162550148633e-02,-4.255422127714480474e-01,1.421975559292464775e+00,4.563633634807853778e-01,-5.286706589354885910e-01,-1.080038367809579292e-01,-7.408667042040726347e-01,-6.082911500814950356e-01,-6.407257241901990197e-01,-1.134311593722227451e+00,7.772769637679554089e-01,-2.910414632730257689e-01,5.541275783267697319e-01,-6.701258977272964712e-01,-6.036249439233865033e-02,-7.110405967911112013e-01,7.196681705373316751e-01,-2.484193067050382286e-01,-7.308735859513858513e-01,-1.641703228809784143e+00,2.756665493407743917e-01,-7.083850523381071129e-01,-1.577921712099517385e-02,-4.917301080135276226e-01,9.541895808987649330e-01,5.441447523580079659e-01 +4.599999999999999645e+00,3.200000000000000178e+00,1.399999999999999911e+00,2.000000000000000111e-01,4.472120874548314862e-01,-6.161211233234792362e-01,4.662900435501894925e-01,1.714831608676042896e+00,-8.321860341500619818e-01,1.723391392291887814e-01,-1.649216974417132109e+00,1.398562092125535505e+00,-3.979120985908414232e-01,7.825788808419774645e-01,-1.723228250716323018e+00,1.797539387125904664e+00,-3.568715280255984612e-01,5.456573234700274888e-01,1.508182063325937960e-01,-2.554707861877694164e-01,1.685792302659303576e+00,-1.648046206366179822e+00,2.987136599920089397e-01,9.106456722299702822e-01,-2.985612163636626459e-02,-1.181707843665917995e-01,-1.426877120734650339e-01,-1.227636420410407991e+00,3.812738409493465069e-02,5.127175234723987396e-01,6.859922748066052400e-02,-2.722761011450806068e-01,-4.897250223730267304e-01,-2.792966692783721561e-01,1.257744217496038264e+00,-2.086634979420542546e+00,4.007145654777545529e-02,-3.277549172964167590e-01,1.455807951836843417e+00,5.549222544380277150e-02,1.484925598699954108e+00,-2.123890018045559103e+00,4.595849048340561738e-01,2.800578600376801286e-01 +5.299999999999999822e+00,3.700000000000000178e+00,1.500000000000000000e+00,2.000000000000000111e-01,1.390533967073938060e+00,-1.641348608823029132e+00,-1.550358081183257908e-01,6.606026178649258840e-02,-4.957954945452093254e-01,1.216577713742940325e+00,-3.386821854453975766e-01,2.034762544021153641e+00,1.054177908938922714e+00,9.508336970037996050e-01,5.592989813908842978e-01,-1.063695591025547893e+00,-4.310963375107570994e-01,5.727513668572158378e-01,6.775570335877171280e-01,1.307183845081257401e+00,-4.674410096259063452e-01,-8.601533849246632002e-01,8.591041927855306293e-01,-8.096265760401126776e-01,8.733118360704121841e-01,1.199736176415037825e+00,4.561530358270553531e-01,-3.575790319685979157e-01,4.108222614387956745e-02,5.934659196032391337e-01,1.018551871207346374e-02,2.198296338670492567e+00,-9.906709306271491711e-01,-1.002668587369790920e+00,-9.768953867353251663e-01,-5.895799225452156289e-01,-2.178931520194909321e+00,-6.296504269401812515e-01,-6.532847019278890111e-01,7.851402517417628568e-02,4.178005832060814329e-01,-1.240216336407770292e+00,9.000542427640723098e-01,1.802242229790547157e+00 +5.000000000000000000e+00,3.299999999999999822e+00,1.399999999999999911e+00,2.000000000000000111e-01,-2.082851030949963433e-01,1.574371237475571617e+00,1.989894944051877335e-01,1.988731918595391113e+00,1.117283465688190258e+00,-1.563904634839766272e+00,1.862737066135545724e-02,1.054324974904077727e+00,3.054658104061688806e-02,-3.688353084506694468e-02,1.269764750314303914e+00,-7.098541821461039625e-01,1.751561327821833658e-02,3.236257646091186824e-01,-3.337909603535641478e-01,-2.012910387753747560e-02,7.750232632241702557e-01,4.328376214999939409e-01,-8.087175319795336659e-01,-1.104123985799261742e+00,-7.891021802566502430e-01,1.248455788486605312e-03,-1.599397877570428173e-01,-8.319574932171247550e-01,-5.981504525164857977e-01,-1.520039285192063661e+00,4.178537032173259558e-01,-4.001872535163292222e-02,-1.259787343405270210e+00,2.862050418778281854e-02,1.342622010510353237e+00,-7.399358529652596550e-01,1.315137665720972349e+00,-3.234574724834238246e-01,1.978281678498678142e-01,9.775080242218528448e-02,1.401523416005245437e+00,1.584338467855317123e-01,-1.141901419203846579e+00,-1.310970370441212340e+00 +7.000000000000000000e+00,3.200000000000000178e+00,4.700000000000000178e+00,1.399999999999999911e+00,-1.532921053430127856e+00,-1.711970164094221314e+00,4.613505895568492665e-02,-9.583744802265614648e-01,-8.081161294374096526e-02,-7.038590359904466354e-01,-7.707843007065652285e-01,-4.808453408727291212e-01,7.035855546433883445e-01,9.291451477686910598e-01,3.711725526490392002e-01,-9.898225495471192348e-01,6.436312754533384251e-01,6.888966666079322509e-01,2.746472036124445459e-01,-6.036204360190906559e-01,7.088595753671402822e-01,4.228185746766614517e-01,-3.116856591599125981e+00,6.444520334110422910e-01,-1.913742670861507067e+00,6.635615765913814856e-01,-1.540723984248353051e-01,1.193611680749198101e+00,-9.816121120593053473e-02,-8.866142600561124354e-01,-1.473536645828436575e-01,1.059806294933774540e+00,2.624661786158738463e-02,-1.143351598723767876e-01,7.435535155083369263e-01,2.103593666298129161e-01,-5.927405833231805775e-03,1.366060068403331496e+00,1.555114032059067730e+00,6.133262263287011518e-01,-2.859591514851729244e-01,1.496910993520827127e+00,1.183119557331707039e+00,7.188971655282916373e-01 +6.400000000000000355e+00,3.200000000000000178e+00,4.500000000000000000e+00,1.500000000000000000e+00,-1.216076580745860891e+00,1.406719033079609216e-01,-7.436721747008731009e-01,-1.590122515543593296e-01,2.400569292967187074e-01,1.001594080906234863e-01,-4.751751058292484897e-01,1.272953748919910755e+00,-1.696131266831543138e+00,7.301835311296144271e-01,-1.857483271594537966e+00,3.825981367234628783e-01,-8.869043262838756103e-01,8.783037577325304435e-01,8.645252400759345646e-02,2.477063784668243063e-01,-1.018279325566851412e+00,-6.545701349975838745e-01,2.072173934109533544e-01,5.835699269093039820e-01,2.929096241763861297e+00,2.228583231034867163e-01,9.760375253689257402e-01,-1.556933932509260599e+00,-1.329891861334062897e+00,-3.554947746084520244e-01,-1.197427695638566325e+00,1.486399253466384573e+00,-4.102186927803287420e-01,1.382181888393138491e+00,1.486782474085630801e+00,4.277971988356689403e-02,5.017997538076389707e-01,-5.609947334090290005e-02,5.384370003545386751e-01,4.833418517805717629e-01,-1.236496258920307123e-01,5.049699814628403338e-01,1.723696275667261801e+00,7.130162297109376990e-01 +6.900000000000000355e+00,3.100000000000000089e+00,4.900000000000000355e+00,1.500000000000000000e+00,3.257996136406255405e-01,1.247695210432124141e-01,-1.012673123768591088e+00,-1.027296877075462467e+00,3.233565314802586133e-01,-1.369391124047157238e+00,-7.663275989635831564e-01,1.281511340364133167e+00,1.914229697062814095e+00,-1.665956076797718399e+00,1.626649562301581975e+00,-2.114382908455566257e-01,-1.500508703136480514e-02,-1.134116306427339627e-01,1.080544127025487189e+00,-1.607676579043177068e+00,4.561636113551333915e-01,-9.448701973880109239e-01,5.707885293815737615e-01,1.542796338293051850e+00,-4.173264126201667486e-04,3.741550859708025478e-01,4.095517782376913440e-01,-7.995934996704900932e-01,1.511639349884318362e+00,1.706468247260988891e+00,7.017833721170290140e-01,7.328543200764546517e-02,-4.618938153542846425e-01,-6.264902231490875328e-01,1.710836582546655604e+00,1.414415042729023630e+00,-6.366148878954942802e-02,-1.579930529671123685e+00,-2.832011869908987123e+00,-1.083426660264279695e+00,-1.306203959951194038e-01,1.400689034443001413e+00,-6.516562090577807664e-01,5.048154563405017337e-01 +5.500000000000000000e+00,2.299999999999999822e+00,4.000000000000000000e+00,1.300000000000000044e+00,1.303180961648432445e+00,1.285363168560481606e-01,-1.424478687888413309e-01,-1.308763514238608039e+00,-1.202475308204432825e+00,4.160996344158233162e-01,-2.009075332009267190e-01,1.225313176533015386e-01,-4.727771569624714121e-02,6.641440493586504568e-01,-7.846874114294452029e-01,-3.355806435831669154e-01,1.896182228633144007e+00,-7.997861383857707285e-01,-2.815754308001021111e-01,-5.893867019785693495e-01,4.447813624072501915e-01,1.022392322442069457e+00,-4.982116185861096280e-01,-4.314143411046852394e-01,-2.789816053030302889e-01,5.298337834749576869e-01,-7.393953025101953624e-01,-3.759599659712591357e-01,-2.372193871513015306e+00,-1.381745009494985243e+00,-1.124437560192882157e-01,8.978641732031213962e-01,2.950757833018624043e-01,-1.098768456667299498e+00,-1.400256208127941937e+00,1.746800928981687429e-01,-1.652803642252843597e+00,1.065926818716888880e+00,6.389619165017826341e-02,-1.607320159234058021e+00,-9.659538588418696836e-01,-7.243113192311227966e-01,-7.731925102234387115e-01,-1.489933008221492328e+00 +6.500000000000000000e+00,2.799999999999999822e+00,4.599999999999999645e+00,1.500000000000000000e+00,-8.746625219888451985e-01,-6.844015561404261927e-01,-7.112857556104382750e-01,1.127956624933380558e+00,1.048278028272145723e-01,-9.932572174375523533e-01,-3.346216059541220478e-01,-8.795570973113842062e-01,-3.000066590117569931e-01,8.755091531413832229e-01,2.522707806121253782e-01,2.285601181528066572e+00,3.759274257674801722e-01,-9.135945099771070055e-01,8.097407308144474181e-01,1.079931217142535704e+00,1.094166991443943804e+00,-1.094240953035091390e+00,-1.476374145148375006e-01,1.131811956828452592e+00,-1.684728958873941140e+00,-4.994167610220383025e-01,-1.426937685426991509e+00,-9.325702298970132142e-01,-1.012457152743806210e+00,1.250569832543434901e+00,-2.345380349087503868e-01,-8.633555813417825853e-01,-1.035605731384494632e+00,1.416671648715303045e-01,-1.113562734066710774e-02,1.344074374673426941e+00,5.000166958573025733e-01,-1.431797778065037496e+00,-6.289807075912683398e-01,1.070072512070977089e+00,-6.210826977013773620e-01,1.734572174923709076e+00,-1.098289431324746657e+00,5.726133530407901961e-01 +5.700000000000000178e+00,2.799999999999999822e+00,4.500000000000000000e+00,1.300000000000000044e+00,-8.612155533986415312e-01,-5.095951329463573876e-01,1.098581648231146568e+00,-1.270671628385169338e-01,8.134522451141070754e-01,4.732905949147994673e-01,7.538656835623007701e-01,-8.881882110855132684e-01,-2.215743982040006832e-01,4.242526181008702268e-01,-8.490728726936603854e-01,1.629500043232328554e+00,-7.772280421551344132e-01,-3.000035769377952244e-01,-1.006559064794237512e+00,-2.143308065238688442e+00,1.796918522574928012e+00,-2.043389369030472469e-01,-4.479148384155402507e-01,-1.987150616707986650e-01,1.419863972196435675e+00,-9.651066080644172818e-01,6.795678657650824350e-01,-4.237882485494763318e-01,-5.966708555383097856e-01,5.670582125201824031e-01,9.882405737426969150e-01,-5.139029502799155047e-01,-7.688491596748099344e-01,-1.169095747322027146e+00,1.103503766728375579e+00,-5.752559948061179984e-01,-1.849130727275451136e+00,1.409952138396146193e+00,-1.369859501952942260e+00,7.794605312590614510e-01,1.834286466675247307e-01,2.879154322152783774e-01,-5.843752753113219400e-01,3.655914602246360667e-01 +6.299999999999999822e+00,3.299999999999999822e+00,4.700000000000000178e+00,1.600000000000000089e+00,-1.667779892884237336e+00,5.880377487398128489e-01,1.557010041532160161e+00,8.840271974263261834e-01,-2.019540085386721362e+00,-9.842090022728482435e-01,-1.877949219748069054e-01,4.869373049399326470e-01,-1.066526736602251002e-01,-4.932143871104978095e-01,5.953003076922928072e-01,1.164151766224966300e+00,-2.322940071865973455e-01,7.289298673852393495e-01,-2.579050745189474636e+00,-9.375093861087292479e-01,-3.212589370580095083e-01,-4.885662207546257463e-01,3.327982174044547548e-01,1.013750547498260657e+00,5.066690260283884806e-01,-6.222254717550558256e-01,-1.522768090504186045e+00,5.569641205788870009e-01,-1.838176739670012161e+00,6.530372834064285259e-01,-1.884490821300682517e-01,-1.175834987938228826e+00,2.872573124667927580e-01,-2.876102659000990668e-03,-3.659729291624690128e-02,-8.422329652739403427e-02,4.195241084261415176e-01,9.244340219585094331e-01,4.966151984838515498e-01,1.012133189822309598e+00,-4.413971884780624327e-02,1.618459324231974472e+00,5.711098221298226418e-01,-5.436940296827768027e-01 +4.900000000000000355e+00,2.399999999999999911e+00,3.299999999999999822e+00,1.000000000000000000e+00,-1.093895056734405014e+00,2.057968037340799639e-01,-1.306521522922600820e+00,-9.733759675567484893e-01,2.390870803735992423e-01,-6.078874462819541247e-01,-9.333162402269222779e-01,-3.447504608839825624e-02,7.267789910378988361e-02,-2.058340252187376151e-01,-3.775469190592885549e-01,8.546427287124486183e-01,3.424273512868276081e-01,-2.234261121946960194e-01,2.464321933515365437e+00,1.938317369284130731e-01,1.132005133677329800e+00,-5.609810031317564727e-01,-1.362940947208009623e+00,-7.917565156434643869e-01,-2.680097833981119337e-01,-4.966082097295170250e-01,1.336386182322793603e+00,-1.200411220961080244e-01,4.614688774411399019e-01,-4.648115603289031811e-02,-4.335543327331675689e-01,3.799601345351499848e-02,1.714051469770731861e+00,-7.679485917368150671e-01,7.669904505595511734e-01,-1.026007251625781880e+00,-4.596264422694389395e-01,3.583205954583646834e-03,3.263750897269906970e-01,1.483128627973814062e+00,-5.008264146453541427e-02,-8.436156065359264877e-01,6.500419730507697169e-01,-3.641698089157559548e-01 +6.599999999999999645e+00,2.899999999999999911e+00,4.599999999999999645e+00,1.300000000000000044e+00,2.386815709318353684e-01,-1.162224395377518538e-01,-1.943456851286822662e+00,5.082991855939731352e-01,5.833680068212987457e-01,9.266047683086053866e-01,1.800462762460227628e+00,-1.195103773463475738e+00,5.165074442817594313e-01,4.092949966409553664e-01,-4.190819928078221013e-01,3.971062364497787711e-01,4.996469551119659958e-01,-1.218683829977196931e+00,2.462227612764321949e-01,-9.179843060046155578e-01,-6.518564999305904717e-01,-1.774744815188650016e+00,-4.733609255024787688e-01,-2.035706714734769607e-01,5.498568672963908277e-01,8.999266711071546602e-04,-1.542288150799678625e+00,8.621480568842673220e-01,-1.185866235500923072e-01,4.883705904296574141e-01,9.659361184597011762e-01,1.422604748969034771e+00,1.961226989365015383e+00,-7.223875867166795750e-02,3.111244460936535283e-01,-1.078361090816779777e+00,1.061600170035261081e+00,-1.184887444571769644e+00,-1.805251688630421070e+00,8.303860053403917529e-01,-5.216965249478153765e-01,7.776072813422404417e-01,4.080746493461687163e-01,-1.630002651023708671e+00 +5.200000000000000178e+00,2.700000000000000178e+00,3.899999999999999911e+00,1.399999999999999911e+00,-2.719679364322614479e+00,-1.096601747092719181e+00,1.649148698086453854e-02,-1.221776334694771871e+00,-6.527614493487129410e-01,-1.458940730597325430e+00,1.698779597969244382e-01,9.082592703632520748e-02,-4.813926240476332774e-01,1.397065301313742625e+00,1.497715027319563408e+00,5.652672025364510189e-01,-1.799771181466744530e+00,-1.104690147205609430e+00,4.071303310832481426e-01,-6.285575802445897420e-01,-4.870914317118235082e-01,8.989673945880599648e-01,5.108748218924175077e-01,1.314154433813948808e+00,-4.292092966464773340e-01,1.375225420446897218e+00,-5.541312470844856897e-01,1.499491490138763039e+00,1.058346436167786758e-01,-8.605097471096080364e-01,-1.631219507653532963e+00,-3.014723148616931803e-01,-2.562326979954389072e-01,8.576619101224520758e-01,-1.105905028082072861e-01,-4.324319785784446757e-01,1.077037472947536489e+00,-2.248265612701514649e-01,-5.762418162269031807e-01,5.746089172925727961e-01,-4.898282188472668497e-01,6.588021416915129658e-01,-5.969171117831943985e-01,-2.229591829703794215e-01 +5.000000000000000000e+00,2.000000000000000000e+00,3.500000000000000000e+00,1.000000000000000000e+00,1.521769755882663444e-01,-3.741263202643058672e-01,-1.345146935738967924e-02,8.154719692400600461e-01,4.106017913200476488e-01,4.809698500346235028e-01,-6.354304386192671794e-01,8.528297682743679609e-01,6.695623405090825875e-01,1.004419192261624794e+00,-7.263658321861021783e-01,-1.724585966814570492e-01,6.335339024604004221e-01,-6.088151174171313462e-01,-2.261224697639562242e-01,1.925805737459526989e+00,1.951761012267813733e+00,1.239940549827360128e+00,9.385851362497682482e-01,-1.019251149505129517e+00,5.125622314261223389e-01,-3.591165950658852246e-01,-1.058571897605367740e+00,-5.090058385913199812e-01,1.156650740463465721e-01,-5.473555742986664363e-01,-5.507994257068401511e-01,7.920414984229742217e-01,1.441064851232318200e-01,2.334580796623180188e-01,1.118723968962983539e-01,-6.757031433716509383e-01,-1.370571917960688335e+00,3.105647104204784514e-01,-5.070366321254438091e-01,-2.010782268585877830e+00,-3.925672579651524607e-01,-1.092217941340623444e+00,6.986502343077553023e-01,5.216252272403399948e-01 +5.900000000000000355e+00,3.000000000000000000e+00,4.200000000000000178e+00,1.500000000000000000e+00,4.968931448384695804e-01,-6.650416181586910058e-01,7.315515818621539657e-01,3.196497831340729956e-01,-4.098545384398195046e-01,-4.533374321385169048e-01,8.927081528737002003e-01,-4.736040569636580932e-01,3.036564735262782810e-01,1.033956986812783585e+00,1.909342625557108653e+00,1.663873124437729611e+00,9.008227642090298470e-01,-1.505911351571387113e+00,-6.890484294179712865e-01,-5.480871874725355974e-01,1.653149832565320887e+00,-6.993179409720908790e-01,3.861663770983691513e-01,1.008670632573117898e-01,-9.351272094375440158e-01,3.818240096193838418e-01,3.982960861974925160e-01,-1.255774881741501536e+00,1.222877447053409838e+00,-2.086510028855187660e+00,-5.907571529099620022e-01,9.719702938655755409e-01,-1.193257833474039131e+00,3.502659195620300148e-01,-1.296360388275429987e+00,-9.302414444422328621e-02,-2.313773113172200357e+00,-8.425717017130081032e-01,-1.542921447154290249e+00,-4.017637421265006226e-01,-4.152313958216570788e-01,-6.736641713091396921e-01,7.979131965667455306e-01,-8.868796038714377161e-01 +6.000000000000000000e+00,2.200000000000000178e+00,4.000000000000000000e+00,1.000000000000000000e+00,6.343866731890511756e-01,1.629275769958861586e+00,1.390641503046825544e-01,-8.576702045753996639e-01,-1.249338514861542349e+00,-7.097851001194992460e-01,7.046427207498909828e-01,1.555907349688974983e-01,9.367952162539888716e-01,7.703308793272120036e-01,1.408106518782359096e-01,4.734882616664621846e-01,1.855246209420479131e+00,1.415656226174680121e+00,-3.027460169042532345e-01,9.896794419358903028e-01,5.858508058179355826e-01,1.136388077539739472e+00,6.716165720359097424e-01,-9.741674350429900819e-01,-1.619684565372700558e+00,5.726270172050856866e-01,1.902618198369831148e+00,-7.756641079399706484e-01,-1.880897380496502069e-01,-1.035747726195212826e+00,1.177829504705659946e+00,-2.305166855043520702e+00,-2.263660301035808509e+00,3.750199198201532580e-01,-8.234364679135211529e-02,-4.796230150738065023e-01,-3.010947865234137044e-01,5.369879144563616258e-01,-4.138039890496650886e-01,-1.096924971733113541e+00,-9.273629280729662749e-01,8.883388619968426436e-01,-5.247419549622203139e-01,-1.385277583767198228e+00 +6.099999999999999645e+00,2.899999999999999911e+00,4.700000000000000178e+00,1.399999999999999911e+00,1.021783269439707348e-01,5.049947217800111465e-01,1.328960747553223465e+00,2.179033871216689844e-01,-6.597112472096701152e-01,4.740078672770297041e-01,7.271748700204364591e-01,-3.890530666380676017e-02,-4.459939272557342932e-02,2.601329049387676728e-01,-6.985649825618424347e-02,2.501139068831255696e-01,-1.021913324426928282e+00,-1.150437769818509537e+00,-8.361113795007689697e-01,6.422109433294258540e-01,2.587975673406087140e-01,1.040238964249558640e+00,-1.866909221146099418e-01,-1.143641395841849651e+00,1.144553535284557944e+00,-1.876705553989292327e-02,1.283455036266525351e+00,5.979464913921805902e-01,2.188618678822837005e+00,-2.197729857133623455e-01,9.007239050891806542e-01,8.913641063529440522e-01,-5.551263454944499465e-01,-1.724823171069609085e-01,-1.461738342216722941e+00,-1.548796137002665718e+00,1.265688015307749603e-01,7.930070706974273742e-01,6.380240334954548898e-01,3.400245982596526440e-01,8.630171531510913985e-01,-5.896977956993247894e-01,-2.725327484877594908e-01,7.375215134138817241e-01 +5.599999999999999645e+00,2.899999999999999911e+00,3.600000000000000089e+00,1.300000000000000044e+00,4.331187294489333151e-01,-2.101888137967623249e-01,1.320794386127914555e+00,-1.292001251047127486e+00,-5.186786872885924549e-01,-2.833977744562524159e-01,8.165348797737703723e-01,2.385197915235162322e-03,-1.261491746790615043e+00,5.140041798160635000e-01,1.087546315466894509e+00,7.393045331330262426e-01,6.191549216054889060e-01,-1.874313496741068175e+00,-8.998864767434843204e-01,4.820806086722010941e-01,-5.488818475438848876e-02,5.225576019988119603e-01,-1.266342676962954217e+00,-6.149476428488614282e-02,-1.389781018896206755e+00,-1.953678562619406422e+00,2.957790885068872222e-01,8.425887964569803712e-01,2.456164279017757912e-01,-3.299648026466609624e-02,-1.562014341829266240e+00,1.006107067097547159e+00,-4.404489737594127069e-02,1.959562005205767843e+00,9.423143082769667167e-01,-2.005125426652148324e+00,7.550496802558879228e-01,-1.396535237573157229e+00,-7.594954904290640574e-01,-2.507566767601495106e-01,-9.406245036260366121e-02,3.975652156174661611e-01,-1.022855040804214077e+00,-1.150692004256646861e+00 +6.700000000000000178e+00,3.100000000000000089e+00,4.400000000000000355e+00,1.399999999999999911e+00,6.006052017330760773e-01,-1.325026793402665944e-02,1.743730487015256181e-01,-2.193683351694660111e+00,-1.771373833153235544e-01,-8.907291830614958439e-01,-9.206263730168693371e-01,9.219348042245775199e-01,-1.095671228972512345e+00,-1.092896606326030140e+00,-3.310106034017458732e-01,4.502888306473442070e-01,-8.840147297480861477e-01,1.234144035780061488e+00,1.449847525361218858e+00,-8.814470664684638246e-01,-2.450817555768555756e-01,-7.786754726576129437e-01,-1.685382104871227193e+00,3.030110504561573936e-01,7.335948682293695899e-01,2.011864263126561525e+00,-8.974095036313369800e-01,1.336235090812621040e+00,1.342353691257953230e+00,1.978533095671530795e-01,6.021634895760638040e-01,8.732730483007036248e-01,1.974099948241899494e+00,4.778085626164694233e-01,-6.013788550368521363e-02,-8.661687990074722343e-01,3.053207550124980574e-01,1.024164932773069969e+00,2.446103613294719481e-01,-7.799232489250029765e-01,8.907620249656333922e-02,-1.291534824601138776e-01,2.647387577557072658e-01,-1.661848367218250022e+00 +5.599999999999999645e+00,3.000000000000000000e+00,4.500000000000000000e+00,1.500000000000000000e+00,5.507886141027313887e-01,5.954231567637230382e-01,4.448534381865085763e-01,-3.762817145024025239e-03,-1.805936262603421660e+00,-1.932279197126340886e-02,1.060714999342169618e+00,-8.601288762924613751e-01,-1.989269466161283750e+00,-1.540557971870693654e+00,3.140256918206031367e-01,3.728760088524375460e-01,8.862931946214680501e-01,-5.525899572965248252e-02,-1.500328375978570605e+00,-8.185041405936757108e-01,8.188393725993478034e-01,1.404959074394759033e-01,6.498296346799786738e-01,4.347888054610397068e-01,-2.049605517302959257e-01,-1.740068375080336960e-01,1.857102269755859680e+00,4.146742666092209095e-01,-1.285875503163605993e-01,4.554199909368095156e-01,2.229058196242733325e-01,-2.157356373494461188e+00,6.500845143723144037e-01,1.820939274089675486e+00,-7.802798683900640242e-01,1.454035748839167086e+00,-2.568696973319169463e-01,2.934713976498222743e-01,1.070360016973173956e+00,-7.200014312908091796e-01,1.242493912818471324e+00,-1.214217281359339262e+00,-8.751547489139164249e-01,-5.935203173475258609e-01 +5.799999999999999822e+00,2.700000000000000178e+00,4.099999999999999645e+00,1.000000000000000000e+00,6.620053664519022218e-01,-3.408744105694707649e-01,-1.519974459585867965e+00,-2.165328718498284177e-01,-7.842213825343838929e-01,7.312936208403685301e-01,-3.432350544551032723e-01,7.077407590065136478e-02,-4.054724571406713163e-01,4.339389682302889351e-01,-1.835907634705541969e-01,3.251987146870652934e-01,-2.593388564741710312e+00,9.725087697778614371e-02,4.139136701102331117e-01,-1.992800549145920253e-01,6.693924713925414327e-01,7.386070289928207133e-01,1.304213891849502982e+00,1.048116080722816534e-01,-1.913800704669981201e+00,-2.285499448789645172e+00,-1.601840952074517599e+00,-3.790706118413619818e-02,-1.573052882805656694e-01,2.762398520199737528e-01,-6.252459225571738166e-01,-7.364911715057482766e-01,5.550479424104340920e-01,6.559244113725019032e-01,-2.566501354804808233e-01,-3.847665823895329851e-02,4.043143433289911326e-01,5.043435751629945507e-01,-1.143980699598740269e+00,-7.195738559179507554e-01,-1.230546045645386721e+00,-5.069066148368306379e-01,8.123335893418310860e-01,5.462718669437655050e-01 +6.200000000000000178e+00,2.200000000000000178e+00,4.500000000000000000e+00,1.500000000000000000e+00,-1.098097960362558689e+00,5.122667268259818441e-01,8.584310534245198632e-02,-4.939267070859206799e-01,-1.406459655103631246e+00,-1.748233716177669539e-01,6.799440061159555126e-01,-2.163097648396125727e+00,-3.961231977514494962e-01,2.254283698804962377e+00,6.726367185680938166e-01,2.598324950034759939e-01,-7.371851695709140673e-01,-6.783298378739697210e-01,-8.328839569996336623e-02,1.602863629377135890e+00,4.655891908949305047e-01,-8.721583977708226021e-01,1.176786962383863822e+00,-2.925942071580907022e-01,1.697346481013949138e+00,-5.666030246377040669e-01,-1.003265756903888972e+00,1.746295778135699972e-01,9.823269838002980370e-01,1.037444796730910168e+00,1.591917666688115185e-01,-9.880966879686111648e-01,-5.053407218978849258e-01,-2.018281868354216524e+00,-9.131215375688201963e-01,-1.784568148972631163e-01,3.890021406534791559e-01,-3.394543214647791074e-01,-5.697905497773966821e-02,-3.961854447498169285e-01,7.510253041897702042e-01,-8.991129384265388325e-01,8.375479141463264554e-01,1.960880812513910554e+00 +5.599999999999999645e+00,2.500000000000000000e+00,3.899999999999999911e+00,1.100000000000000089e+00,4.727896560219311262e-01,-5.270916102240418288e-01,-5.362701440867850833e-01,1.209837222184097616e+00,-1.126589425871997507e+00,-9.538044202725639575e-01,-1.164448453870464473e+00,-1.278513840520686173e+00,-1.044816319379856973e+00,7.899049417854930866e-01,1.102282564588024316e+00,-6.970730723601831214e-01,2.073340460456898626e-01,7.591566751082341469e-01,1.005642030971629630e-01,-9.549427576172389021e-01,-1.470401735138081367e+00,1.010427553125508693e+00,4.961794122883804725e-01,5.769558933986538296e-01,-1.107646900901030129e+00,2.349771928890519168e-01,6.289995874568216072e-01,3.140338436471455386e-01,-7.450232168076890149e-01,1.012260510065335684e+00,-1.527631948178773902e+00,9.287419248069415101e-01,1.081055944087073284e+00,1.572330317535224786e+00,-3.424921902504429183e-01,-9.994300165615205289e-01,7.938803623083801053e-01,-6.992152790869743395e-01,4.399551144398878427e-02,-3.174622171600719467e-01,-9.020719714130848166e-01,3.209994661848916131e-01,-1.392015916558035693e+00,5.922056816440394167e-01 +5.900000000000000355e+00,3.200000000000000178e+00,4.799999999999999822e+00,1.800000000000000044e+00,-9.669310884567345887e-01,-1.731731346467926258e+00,-5.010745879029283867e-02,4.316338528112232398e-01,5.769345970532243628e-01,8.183537308271613409e-01,-2.353640399690413609e+00,-1.005144430956671497e+00,1.066522945030321246e-01,1.519003279936145479e+00,7.837444936747277602e-01,1.901340051848112500e+00,-5.249394229139989765e-01,2.744169952820086356e-01,-1.099970807569307096e+00,-4.043522196239997535e-01,-7.352957182829735761e-01,-6.339886593167213258e-01,-3.934491211856632753e-01,2.717539890680890739e-03,2.221266451648408816e-02,5.434534395827254061e-01,1.399884673868593554e-01,-3.440456288496253623e-01,-5.225785415319466054e-01,-3.071317201586840628e-01,-4.490371414469655487e-01,4.909710551819796431e-01,8.655251906712624343e-01,1.274044537947084610e+00,-7.977027599404172831e-01,4.693722253387500598e-01,-1.394679641592675656e+00,3.731747182525781414e-01,1.082672282091064586e+00,-1.495895016669949729e-01,1.072636047258873182e+00,-1.138567870315476682e+00,-8.886452830916367063e-01,-1.358098426436865347e-01 +6.099999999999999645e+00,2.799999999999999822e+00,4.000000000000000000e+00,1.300000000000000044e+00,1.022210354585824321e+00,-4.174294563419881920e-01,-4.535531009087745979e-01,-9.916283583780206579e-01,2.028810444426215887e-01,1.246695140894435561e+00,7.006801090936923826e-01,6.966506543362647186e-01,-2.069744749236640258e-01,-5.633093592639144553e-01,6.772459164163702194e-01,-3.191107563414086884e-02,-1.736082357193817483e-01,8.982406224036155740e-01,-1.977874516727299026e-01,-8.377762593852057238e-01,9.091884953309661288e-01,8.071989043386668117e-02,-1.037029343848691942e+00,-1.112905894871616175e+00,9.541187582686681823e-02,2.337409661478275780e+00,-3.928206035462084578e-01,-3.362738590855784970e-01,1.523771197617053375e+00,-5.728119979051538718e-02,-1.448466863247988234e+00,-1.572796452548173241e+00,1.226663973787480266e+00,6.663545422501888638e-01,8.261257084311929288e-01,-5.775655837871274817e-02,-7.267120259827976048e-01,-2.171631157241669663e-01,1.360312173743767616e-01,-8.383111556987010715e-01,5.614499095511267246e-01,-1.259596168799721472e+00,-3.327587645752237422e-01,-2.040078724765028995e-01 +6.299999999999999822e+00,2.500000000000000000e+00,4.900000000000000355e+00,1.500000000000000000e+00,-6.910198131753685358e-01,-2.205505355019822034e+00,4.478696641112525634e-01,-7.557507604402671220e-01,1.325707959324371465e+00,-3.419822776840522605e-01,-5.413595884312205619e-01,9.152194677887708074e-02,1.053439748630448092e+00,-5.634076631181696992e-01,1.014737694829776826e+00,1.440303641017622649e+00,9.903228106559455179e-01,1.626431490992257256e+00,1.292646021012468838e+00,1.514882293893005771e+00,1.604326319415641189e+00,2.080695296299638064e-01,-4.292238995721983086e-01,-2.262243635243805784e+00,-1.322733119521795730e+00,-4.482827991587955974e-01,-3.817350872405659845e-01,-1.527944634020866055e-01,-1.000760490248750134e+00,-1.595777611441314026e+00,-1.302231664667262145e-01,-1.894179288117905924e-01,-8.075540415498659863e-01,-7.421521616503845564e-01,-9.401565918724067439e-01,-3.965237390163177666e-01,-8.563028269952512872e-01,1.259875331517015473e+00,2.409967320451210648e-01,-9.723179180265172361e-01,-2.804477814674541380e-01,-1.180285606351190619e+00,1.012168295174787902e+00,1.384186724580820149e+00 +6.099999999999999645e+00,2.799999999999999822e+00,4.700000000000000178e+00,1.199999999999999956e+00,1.252001982753031317e+00,-1.144692631242597569e+00,-9.126701972617591585e-02,-4.015706755129159200e-01,5.620131059141816321e-01,-1.007909803283898009e+00,-6.758916940010165630e-01,-4.132170283518080689e-01,1.532884691324238879e-01,6.941287081378864077e-01,-3.287276927366077905e-01,6.639650755262218595e-01,8.220763567971377528e-01,-2.132152368718210345e-01,-1.245658132865596901e+00,-1.171190335434140417e+00,5.917269751515682463e-01,-4.762244363146694304e-01,-1.712629322682455157e+00,6.129523681830005843e-01,1.295545205462189653e-01,-1.405967081142628361e+00,1.179419981202645795e+00,8.366359871577494500e-01,1.387452512901793111e-01,-1.274319367734416897e+00,-1.402330532885283088e+00,-3.070684868414365054e-01,-1.713915389550289436e+00,4.050802731844854176e-01,-1.410823313380336508e+00,1.649127292546986034e-01,-2.881314527267264114e-01,7.117852680970441215e-01,-9.379475952614881873e-01,2.737294495247240000e-01,-1.394840192834643444e+00,7.955495517694070040e-01,-1.149617662774946869e-01,4.958506689654303967e-01 +6.400000000000000355e+00,2.899999999999999911e+00,4.299999999999999822e+00,1.300000000000000044e+00,-1.320525346828032243e+00,4.990842756717665529e-01,3.062033963037085194e-01,3.636978927133631134e-01,3.126339630139859938e-01,-1.934638827903477354e-01,1.241299220315990937e+00,-1.558979857657035728e-01,-7.391692003908286734e-01,-5.872619336893859093e-02,-9.505179454445302767e-01,-4.639964233308440100e-01,-1.772466161893988812e-01,-3.795541206458599159e-01,1.993970728054857422e-01,1.945761391306326749e+00,5.709498398461204660e-01,1.072300647288091380e+00,-5.037094373682365900e-01,-5.870162885051485313e-01,-3.781780468929897276e-01,8.528890972688772942e-01,-2.148118478230897743e+00,-1.033164775291367299e+00,1.023358468342198818e-01,-2.240923670629287046e-01,1.967729682143045888e+00,4.476832157426563485e-01,-6.621914435304807611e-01,-1.577607068539347290e+00,-3.405600349378622993e-01,-1.303220082678414604e+00,4.667506504184351646e-01,1.611063222416784513e-01,3.200319320927312861e-01,2.079176664795037155e+00,-9.074659814202976627e-01,-1.924042077959067509e-01,-1.212515744488908975e+00,-8.059851615012544879e-02 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/environment_parallel.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/environment_parallel.yml new file mode 100644 index 000000000000..242438eb2d1f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/environment_parallel.yml @@ -0,0 +1,16 @@ +name: prs-env +channels: + - conda-forge +dependencies: + - python=3.6.1 + - pip + - pip: + - mlflow + - azureml-dataset-runtime[pandas,fuse] + - azureml-telemetry + - pandas + - pillow + - azureml-core + - scikit-learn~=0.20.0 + - cloudpickle==1.1.1 + - tensorflow==1.15.2 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/model/iris_model/MLmodel b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/model/iris_model/MLmodel new file mode 100644 index 000000000000..47ad54161be7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/model/iris_model/MLmodel @@ -0,0 +1,11 @@ +flavors: + python_function: + env: conda.yaml + loader_module: mlflow.sklearn + model_path: model.pkl + python_version: 3.6.8 + sklearn: + pickled_model: model.pkl + serialization_format: cloudpickle + sklearn_version: 0.20.3 +utc_time_created: '2021-02-05 10:59:19.184646' diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/model/iris_model/model.pkl b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/model/iris_model/model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..fd86fb998e18fb4159abffcf7fc037fa07bc1d05 GIT binary patch literal 1929 zcmZWqZB!Fi8cqx!8j%l!1{5?{ML-AwmD=)gM^RguZiJL#l%p{T0}KrrZe~E^;z~JH z0zId=wJug!i!5MW5Y{M`D)o-V2K=Ccihv&=Rti*Ysi49Fy2F6ovuE#*JMTRAz0ZB# zd+vGOY>|%sNKa^t2DzRza9?#Al}PC2dMcTu8B!;He=1NC$wq>vNy;FG0^g6Ja2K5B zqp}wW1nGo9qi0M|q?*S4>4Tw-%7zOPGct;B>Rfg#-Tp)U-~+2~37FaG}b9ThZw?G_BrFkjW_w z6f1bls4*l`X=<9$Fa(^bP}y;LG^NiZjL?DCw4JLH&QeY1@HEX1HOZX@9q~lf%n2Yv z&yZ@K7CNQO;!ERpYAKq4&bUA&=5o0GJiU>DE_pn?L7hrzX*gTKlk&R>S`8&SLq=M< zNv@-egq&yA7>yc}SZyS9l!0c989GJ`T_>}|hQ!HLI0qN(fpepTS}4thZc6Cxg9~xd z9yo6*F_AH)6Jj`@zv&Gtp$9I&g}KmE2^aX_BK}^p;6jB$5&eoA{DcDr%Cvb~pqCF{ z=6WMZ2hapV(Hgi&<-`@mBV464siX9i5x${v`~xM8$)thQY2adlflIV1TW&>15lL$3 zo#L9p%UznnY4uS;UtTNjzZd$YObSd|371U@^jE@w*8;<#{C@=s7#OHEuaD5lG z)A8d49=5Zvw;ii$4lH)Zh^m%#i`3)jReosLlaJilw(Ye!Uhxv_nDnplPijt~%Yv>F zTWcT6RadzMU+x5^GU?VGo!BxF!|IMwTsUHl)7M;FY(GD*5k9d4QwxEQb zeT&B~|AfNI@L!m<{oqi*>S(4(!hY%(dDpR`50uQX!u8G#;FG|YU6!~PAUCPn+gi<{ zApKAAj}M&$$)O1m;RQ3-F)psiBgYBn*Ur#RD>~$aPHAj2eMce=y=6RJa z|2C-cT~>B-^8gw?Sa7lZ>KN$Q7M+uj(FT_07k=?gngCPUbUCHZXhrRXUu<@)X+{-| zk3y-#3$UMqpKSbWa2RDfeixp9tP&OVS~rTm5@F_k_8;VpXGp)csMbwZiCFg&_^`he zi?AG7v~b=ia!Y6$yqA#&eC-bV84uk;m3Y<2UCkA6G`(T8WB+w9{`h9LU-B7bl9fEq zl63>S!XE#@OAkKXy?-raMjv) z&lqz9#V#33kNIAL<%l~SiYtcEXJ39Ow0YWsip}p7Rpv{uQh(5=yhOd+(sO;*L4im^!4!V@tap+OoY{ z!|B(@#!p?;#?c}{^ zH?lqTm#hvDS)6(?qHsPdSolhl6+Q&Y%Fb{2ck6XDw^8?C?EE~ed-Q`lO_|f!0|hGv zwg$4u;UM~C@XsRbt$ii~+J{^d6 zVI8tMmcLA@MykMH+y8l~3WWqOYi-&;jQV@Ol+K750x{O34d0ZpNd5bQ-mjbM!Fz2_ z_rA(}fIN!!O90je?A@gb*K@O3QDcDzUi%E(yWQ(c9%}}hlKY>O8bnyR)N%wA+yqX; zd5vl7egrSARGk7FLS8vbO>;jT1p|Mo+<9SFEg;Qt<>3lfHfm^S4IVfQ{5`F6P7a*| zEd$;;sfqWwchG$g#nuCKw!T&(J^~DPm4`Y{`~X&c9k#5rqYuF43=GopR{Y=20E1s! zQOJZ9y{UvNrff4bB_J=#&C;@fT&SLE ZvTELEDFa-?caP=r;N|iVxHdy8{|_-NIZFTl literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/pipeline.py new file mode 100644 index 000000000000..6aed613286b5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/pipeline.py @@ -0,0 +1,36 @@ +from azure.ai.ml import dsl, Input +from azure.ai.ml.constants import AssetTypes, InputOutputModes +from azure.ai.ml.entities import PipelineJob +from azure.ai.ml.entities import Component as ComponentEntity +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + batch_inference1 = ComponentEntity.load( + path=parent_dir + "/tabular_input_e2e.yml" + ) + + # Construct pipeline + @dsl.pipeline(default_compute="cpu-cluster") + def parallel_in_pipeline(pipeline_job_data_path, pipeline_score_model): + batch_inference_node1 = batch_inference1(job_data_path=pipeline_job_data_path, score_model=pipeline_score_model) + batch_inference_node1.compute = "cpu-cluster" + + return { + "pipeline_job_out_path": batch_inference_node1.outputs.job_out_path, + } + + pipeline = parallel_in_pipeline( + pipeline_job_data_path=Input( + type=AssetTypes.MLTABLE, path=parent_dir+"/dataset/iris-mltable/", mode=InputOutputModes.DIRECT + ), + pipeline_score_model=Input( + path=parent_dir+"/model/", type=AssetTypes.URI_FOLDER, mode=InputOutputModes.DOWNLOAD + ), + ) + + pipeline.outputs.pipeline_job_out_path.type = "uri_file" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/pipeline.yml new file mode 100644 index 000000000000..d10ba7667046 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/pipeline.yml @@ -0,0 +1,35 @@ +type: pipeline + +compute: azureml:cpu-cluster + +inputs: + pipeline_job_data_path: + type: mltable + path: ./dataset/iris-mltable/ + mode: direct + pipeline_score_model: + type: uri_folder + path: ./model + mode: download + +outputs: + pipeline_job_out_path: + type: uri_file + mode: rw_mount + +jobs: + batch_inference_node1: + type: parallel + compute: azureml:cpu-cluster + component: file:./tabular_input_e2e.yml + inputs: + job_data_path: ${{parent.inputs.pipeline_job_data_path}} + score_model: ${{parent.inputs.pipeline_score_model}} + outputs: + job_out_path: ${{parent.outputs.pipeline_job_out_path}} + + mini_batch_size: "100" + mini_batch_error_threshold: 5 + logging_level: "DEBUG" + input_data: ${{inputs.job_data_path}} + max_concurrency_per_instance: 2 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/src/tabular_run_with_model.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/src/tabular_run_with_model.py new file mode 100644 index 000000000000..19a1ec7ff8fd --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/src/tabular_run_with_model.py @@ -0,0 +1,39 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- +"""This module will load mlflow model and do prediction.""" + +import argparse +import os +import pickle +from pathlib import Path + +from mlflow.sklearn import load_model + +MODEL_NAME = "iris_model" + +def init(): + print("Environment variables start ****") + for key, val in os.environ.items(): + print(key, val) + print("Environment variables end ****") + + parser = argparse.ArgumentParser(allow_abbrev=False, description="ParallelRunStep Agent") + parser.add_argument("--model", type=str, default=0) + args, _ = parser.parse_known_args() + + model_path = args.model + "/" + MODEL_NAME + global iris_model + + iris_model = load_model(model_path) + + +def run(input_data): + num_rows, num_cols = input_data.shape + pred = iris_model.predict(input_data).reshape((num_rows, 1)) + + # cleanup output + result = input_data.drop(input_data.columns[4:], axis=1) + result['variety'] = pred + + return result diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/tabular_input_e2e.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/tabular_input_e2e.yml new file mode 100644 index 000000000000..94e131429fa3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/parallel_component_with_tabular_input/tabular_input_e2e.yml @@ -0,0 +1,45 @@ +$schema: http://azureml/sdk-2-0/ParallelComponent.json +name: batch_score_with_tabular_input +type: parallel +version: 1.0.0 +display_name: BatchScore +description: parallel component for batch score + +inputs: + job_data_path: + type: mltable + description: The data to be split and scored in parallel. + optional: false + score_model: + type: uri_folder + description: The model for batch score. + optional: false + +outputs: + job_out_path: + type: uri_file + +max_concurrency_per_instance: 2 +mini_batch_size: "100" +mini_batch_error_threshold: 5 +logging_level: "DEBUG" +retry_settings: + max_retries: 2 + timeout: 60 + +input_data: ${{inputs.job_data_path}} + +task: + type: function + code: ./src + entry_script: tabular_run_with_model.py + environment: + name: "prs-env" + version: 1 + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 + conda_file: ./environment_parallel.yml + args: >- + --model ${{inputs.score_model}} + append_row_to: ${{outputs.job_out_path}} + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/conda.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/conda.yaml new file mode 100644 index 000000000000..681606d14011 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/conda.yaml @@ -0,0 +1,16 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +name: project_environment +channels: + - defaults +dependencies: + - python=3.6.8 + - pip=20.0 + - pip: + # change this when stable version release + - --extra-index-url=https://azuremlsdktestpypi.azureedge.net/test-sdk-cli-v2 + - azure-ml==0.0.59355733 + - numpy==1.18.1 + - tensorflow==2.2.0 + - azureml-core==1.39 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/dsl_component.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/dsl_component.py new file mode 100644 index 000000000000..c7b148424034 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/dsl_component.py @@ -0,0 +1,123 @@ +from pathlib import Path +from uuid import uuid4 +from random import random + +from mldesigner import command_component +from azure.ai.ml import Input, Output +from azure.ai.ml.entities import Environment +from mldesigner import command_component + + +# init customer environment with conda YAML +# the YAML file shall be put under your code folder. +conda_env = Environment( + conda_file=Path(__file__).parent / "conda.yaml", + image="mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04" +) + + +@command_component( + name="dsl_train_component", + display_name="Train", + description="A dummy train component defined by dsl component.", + version="0.0.2", + environment=conda_env, +) +def train_component_func( + training_data: Input, + model_output: Output, + batch_size: int = 32, + first_layer_neurons: int = 40, + second_layer_neurons: int = 20, + third_layer_neurons: int = 5, + epochs: int = 3, + momentum: float = 10, + weight_decay: float = 0.5, + learning_rate: float = 0.02, + f1: float = 0.5, + f2: float = 0.5, + random_seed: int = 0, +): + accuracy = random() + for param_name, param_value in [ + ("training_data", training_data), + ("batch_size", batch_size), + ("first_layer_neurons", first_layer_neurons), + ("second_layer_neurons", second_layer_neurons), + ("third_layer_neurons", third_layer_neurons), + ("epochs", epochs), + ("momentum", momentum), + ("weight_decay", weight_decay), + ("learning_rate", learning_rate), + ("f1", f1), + ("f2", f2), + ("model_output", model_output), + ("random_seed", random_seed), + ("accuracy", accuracy), + ]: + print(f"{param_name}: {param_value}") + + from azureml.core import Run + run = Run.get_context() + run.log("accuracy", accuracy) + + # Do the train and save the trained model as a file into the output folder. + # Here only output a dummy data for demo. + model = str(uuid4()) + (Path(model_output) / "model").write_text(model) + + +@command_component( + name="dsl_score_component", + display_name="Score", + description="A dummy score component defined by dsl component.", + environment=conda_env, + version="0.0.1", +) +def score_component_func( + model_input: Input, + test_data: Input, + score_output: Output, +): + + lines = [ + f"Model path: {model_input}", + f"Test data path: {test_data}", + f"Scoring output path: {score_output}", + ] + + for line in lines: + print(line) + + # Load the model from input port + # Here only print the model as text since it is a dummy one + model = (Path(model_input) / "model").read_text() + print("Model:", model) + + # Do scoring with the input model + # Here only print text to output file as demo + (Path(score_output) / "score").write_text("scored with {}".format(model)) + + +@command_component( + name="dsl_eval_component", + display_name="Evaluate", + description="A dummy evaluate component defined by dsl component.", + environment=conda_env, + version="0.0.1", +) +def eval_component_func( + scoring_result: Input, + eval_output: Output, +): + lines = [ + f"Scoring result path: {scoring_result}", + f"Evaluation output path: {eval_output}", + ] + + for line in lines: + print(line) + + # Evaluate the incoming scoring result and output evaluation result. + # Here only output a dummy file for demo. + (Path(eval_output) / "eval_result").write_text("eval_result") diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/pipeline.py new file mode 100644 index 000000000000..410188018a1e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_hyperparameter_sweep/pipeline.py @@ -0,0 +1,52 @@ +from azure.ai.ml import dsl, Input +from .dsl_component import train_component_func, eval_component_func, score_component_func +from azure.ai.ml.sweep import BanditPolicy, Choice, Randint, QUniform, QLogNormal, QLogUniform, QNormal, LogNormal, \ + LogUniform, Normal, Uniform + + +def generate_dsl_pipeline_with_sweep_node(): + # define a pipeline with dsl component + @dsl.pipeline( + description="Tune hyperparameters using sample components", + default_compute="cpu-cluster", + experiment_name="pipeline_samples" + ) + def pipeline_with_hyperparameter_sweep(input_data, test_data): + train_model = train_component_func( + training_data=input_data, + random_seed=1, + batch_size=Choice([25, 35]), + first_layer_neurons=Randint(upper=50), + second_layer_neurons=QUniform(min_value=10, max_value=50, q=5), + third_layer_neurons=QLogNormal(mu=5, sigma=1, q=5), + epochs=QLogUniform(min_value=1, max_value=5, q=5), + momentum=QNormal(mu=10, sigma=5, q=2), + weight_decay=LogNormal(mu=0, sigma=1), + learning_rate=LogUniform(min_value=-6, max_value=-1), + f1=Normal(mu=0, sigma=1), + f2=Uniform(min_value=10, max_value=20), + ) + sweep_for_train = train_model.sweep( + primary_metric="accuracy", + goal="maximize", + sampling_algorithm="random", + ) + sweep_for_train.set_limits(max_total_trials=4, max_concurrent_trials=2, timeout=600) + sweep_for_train.early_termination = BanditPolicy(evaluation_interval=2, slack_factor=0.1, delay_evaluation=1) + + score_data = score_component_func( + model_input=sweep_for_train.outputs.model_output, test_data=test_data + ) + + eval_model = eval_component_func(scoring_result=score_data.outputs.score_output) + return { + 'best_model_eval_output': eval_model.outputs.eval_output, + 'best_model_output': sweep_for_train.outputs.model_output, + } + + dsl_pipeline = pipeline_with_hyperparameter_sweep( + input_data=Input(path="https://dprepdata.blob.core.windows.net/demo/Titanic.csv"), + test_data=Input(path="https://dprepdata.blob.core.windows.net/demo/Titanic.csv"), + ) + return dsl_pipeline + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentA.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentA.yml new file mode 100644 index 000000000000..9b36e8d9d0bf --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentA.yml @@ -0,0 +1,20 @@ +type: command + +name: component_a +display_name: componentA +version: 1 + +inputs: + componentA_input: + type: uri_folder + +outputs: + componentA_output: + type: uri_folder + +code: ./componentA_src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py --componentA_input ${{inputs.componentA_input}} --componentA_output ${{outputs.componentA_output}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentA_src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentA_src/hello.py new file mode 100644 index 000000000000..504c89f4787a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentA_src/hello.py @@ -0,0 +1,30 @@ +import argparse +import os +from datetime import datetime + +parser = argparse.ArgumentParser() +parser.add_argument("--componentA_input", type=str) +parser.add_argument("--componentA_output", type=str) + +print ("Hello Python World...\nI'm componentA :-)") + +args = parser.parse_args() + +print("componentA_input path: %s" % args.componentA_input) +print("componentA_output path: %s" % args.componentA_output) + +print("files in input path: ") +arr = os.listdir(args.componentA_input) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.componentA_input, filename), 'r') as handle: + print (handle.read()) + +cur_time_str = datetime.now().strftime("%b-%d-%Y-%H-%M-%S") + +print("Writing file: %s" % os.path.join(args.componentA_output,"file-" + cur_time_str + ".txt")) +with open(os.path.join(args.componentA_output,"file-" + cur_time_str + ".txt"), "wt") as text_file: + print(f"Logging date time: {cur_time_str}", file=text_file) + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentB.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentB.yml new file mode 100644 index 000000000000..e033da4cfd10 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentB.yml @@ -0,0 +1,20 @@ +type: command + +name: component_b +display_name: componentB +version: 1 + +inputs: + componentB_input: + type: uri_folder + +outputs: + componentB_output: + type: uri_folder + +code: ./componentB_src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py --componentB_input ${{inputs.componentB_input}} --componentB_output ${{outputs.componentB_output}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentB_src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentB_src/hello.py new file mode 100644 index 000000000000..e3356a1fa26c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentB_src/hello.py @@ -0,0 +1,30 @@ +import argparse +import os +from datetime import datetime + +parser = argparse.ArgumentParser() +parser.add_argument("--componentB_input", type=str) +parser.add_argument("--componentB_output", type=str) + +print ("Hello Python World...\nI'm componentB :-)") + +args = parser.parse_args() + +print("componentB_input path: %s" % args.componentB_input) +print("componentB_output path: %s" % args.componentB_output) + +print("files in input path: ") +arr = os.listdir(args.componentB_input) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.componentB_input, filename), 'r') as handle: + print (handle.read()) + +cur_time_str = datetime.now().strftime("%b-%d-%Y-%H-%M-%S") + +print("Writing file: %s" % os.path.join(args.componentB_output,"file-" + cur_time_str + ".txt")) +with open(os.path.join(args.componentB_output,"file-" + cur_time_str + ".txt"), "wt") as text_file: + print(f"Logging date time: {cur_time_str}", file=text_file) + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentC.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentC.yml new file mode 100644 index 000000000000..9154ba74a43b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentC.yml @@ -0,0 +1,20 @@ +type: command + +name: component_c +display_name: componentC +version: 1 + +inputs: + componentC_input: + type: uri_folder + +outputs: + componentC_output: + type: uri_folder + +code: ./componentC_src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py --componentC_input ${{inputs.componentC_input}} --componentC_output ${{outputs.componentC_output}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentC_src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentC_src/hello.py new file mode 100644 index 000000000000..1057b1b42ce9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/componentC_src/hello.py @@ -0,0 +1,30 @@ +import argparse +import os +from datetime import datetime + +parser = argparse.ArgumentParser() +parser.add_argument("--componentC_input", type=str) +parser.add_argument("--componentC_output", type=str) + +print ("Hello Python World...\nI'm componentC :-)") + +args = parser.parse_args() + +print("componentC_input path: %s" % args.componentC_input) +print("componentC_output path: %s" % args.componentC_output) + +print("files in input path: ") +arr = os.listdir(args.componentC_input) +print(arr) + +for filename in arr: + print ("reading file: %s ..." % filename) + with open(os.path.join(args.componentC_input, filename), 'r') as handle: + print (handle.read()) + +cur_time_str = datetime.now().strftime("%b-%d-%Y-%H-%M-%S") + +print("Writing file: %s" % os.path.join(args.componentC_output,"file-" + cur_time_str + ".txt")) +with open(os.path.join(args.componentC_output,"file-" + cur_time_str + ".txt"), "wt") as text_file: + print(f"Logging date time: {cur_time_str}", file=text_file) + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/data/sample.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/data/sample.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/data/sample.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/pipeline.py new file mode 100644 index 000000000000..902d0ebe3c0e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/pipeline.py @@ -0,0 +1,32 @@ +from azure.ai.ml import dsl, Input +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + a_func = load_component(yaml_file=parent_dir + "/componentA.yml") + b_func = load_component(yaml_file=parent_dir + "/componentB.yml") + c_func = load_component(yaml_file=parent_dir + "/componentC.yml") + + # 2. Construct pipeline + @dsl.pipeline(compute="cpu-cluster") + def pipeline_with_data(pipeline_sample_input_data): + component_a_job = a_func(componentA_input=pipeline_sample_input_data) + component_b_job = b_func(componentB_input=component_a_job.outputs.componentA_output) + component_c_job = c_func(componentC_input=component_b_job.outputs.componentB_output) + return { + "pipeline_sample_output_data_A": component_a_job.outputs.componentA_output, + "pipeline_sample_output_data_B": component_b_job.outputs.componentB_output, + "pipeline_sample_output_data_C": component_c_job.outputs.componentC_output, + } + + pipeline = pipeline_with_data( + Input(type='uri_file', path="https://dprepdata.blob.core.windows.net/demo/Titanic.csv")) + pipeline.outputs.pipeline_sample_output_data_A.mode = "upload" + pipeline.outputs.pipeline_sample_output_data_B.mode = "rw_mount" + pipeline.outputs.pipeline_sample_output_data_C.mode = "upload" + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/pipeline.yml new file mode 100644 index 000000000000..e92a7ea73691 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipline_with_data/pipeline.yml @@ -0,0 +1,40 @@ +type: pipeline + +compute: azureml:cpu-cluster + +inputs: + pipeline_sample_input_data: + path: https://dprepdata.blob.core.windows.net/demo/Titanic.csv + type: uri_file + +outputs: + pipeline_sample_output_data_A: + mode: upload + pipeline_sample_output_data_B: + mode: rw_mount + pipeline_sample_output_data_C: + mode: upload + +jobs: + component_a_job: + type: command + component: file:./componentA.yml + inputs: + componentA_input: ${{parent.inputs.pipeline_sample_input_data}} + outputs: + componentA_output: ${{parent.outputs.pipeline_sample_output_data_A}} + component_b_job: + type: command + component: file:./componentB.yml + inputs: + componentB_input: ${{parent.jobs.component_a_job.outputs.componentA_output}} + outputs: + componentB_output: ${{parent.outputs.pipeline_sample_output_data_B}} + component_c_job: + type: command + component: file:./componentC.yml + inputs: + componentC_input: ${{parent.jobs.component_b_job.outputs.componentB_output}} + outputs: + componentC_output: ${{parent.outputs.pipeline_sample_output_data_C}} + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/component.yml new file mode 100644 index 000000000000..1f3d643de8e8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/component.yml @@ -0,0 +1,22 @@ +type: command + +description: Prints the environment variables useful for scripts running in a PyTorch training environment. + +name: py_torch_hello_world +display_name: PyTorch-hello-world +version: 1 +compute: azureml:gpu-cluster +environment: azureml:AzureML-pytorch-1.9-ubuntu18.04-py37-cuda11-gpu:7 +command: >- + echo " + RANK: $RANK \n + LOCAL_RANK: $LOCAL_RANK \n + NODE_RANK: $NODE_RANK \n + MASTER_ADDR: $MASTER_ADDR \n + MASTER_PORT: $MASTER_PORT \n" + +resources: + instance_count: 2 +distribution: + type: pytorch + process_count_per_instance: 2 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/pipeline.py new file mode 100644 index 000000000000..5262e99a709a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/pipeline.py @@ -0,0 +1,32 @@ +from azure.ai.ml import dsl +from azure.ai.ml.entities import load_component +from azure.ai.ml import PyTorchDistribution +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +from azure.ai.ml.entities import ResourceConfiguration + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + pytorch_func = load_component( + yaml_file=parent_dir + "/component.yml" + ) + + # 2. Construct pipeline + @dsl.pipeline( + description="Prints the environment variables useful for scripts " + "running in a PyTorch training environment", + ) + def pytorch_hello_world(): + pytorch_job = pytorch_func() + pytorch_job.compute = "cpu-cluster" + pytorch_job.distribution = PyTorchDistribution() + pytorch_job.distribution.process_count_per_instance = 1 + pytorch_job.resources = ResourceConfiguration() + pytorch_job.resources.instance_count = 2 + + pipeline = pytorch_hello_world() + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/pipeline.yml new file mode 100644 index 000000000000..d65381ea2499 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pytorch_hello_world/pipeline.yml @@ -0,0 +1,15 @@ +type: pipeline +description: "Prints the environment variables useful for scripts running in a PyTorch training environment" + +jobs: + pytorch_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + resources: + instance_count: 2 + distribution: + type: pytorch + process_count_per_instance: 1 + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/component.yml new file mode 100644 index 000000000000..171fe0c19b31 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/component.yml @@ -0,0 +1,19 @@ +type: command + +description: "TensorFlow hello-world showing training environment with $TF_CONFIG" + +name: tf_hello_world +display_name: TF-hello-world +version: 1 +compute: azureml:gpu-cluster +environment: azureml:AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu:15 +command: echo $TF_CONFIG +resources: + instance_count: 2 +distribution: + type: tensorflow + worker_count: 2 + +## TODO: remove +# environment_variables: +# AZUREML_COMPUTE_USE_COMMON_RUNTIME: "true" \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/pipeline.py new file mode 100644 index 000000000000..31274e510f4d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/pipeline.py @@ -0,0 +1,30 @@ +from azure.ai.ml import dsl, TensorFlowDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +from azure.ai.ml.entities import ResourceConfiguration + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + tensorflow_func = load_component( + yaml_file=parent_dir + "/component.yml" + ) + + # 2. Construct pipeline + @dsl.pipeline( + description="TensorFlow hello-world showing training environment with $TF_CONFIG", + ) + def tf_hello_world(): + tf_job = tensorflow_func() + tf_job.compute = "cpu-cluster" + tf_job.distribution = TensorFlowDistribution() + tf_job.distribution.worker_count = 1 + tf_job.resources = ResourceConfiguration() + tf_job.resources.instance_count = 2 + + pipeline = tf_hello_world() + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/pipeline.yml new file mode 100644 index 000000000000..9197876396d7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_hello_world/pipeline.yml @@ -0,0 +1,15 @@ +type: pipeline +description: "TensorFlow hello-world showing training environment with $TF_CONFIG" + +jobs: + tf_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + resources: + instance_count: 2 + distribution: + type: tensorflow + worker_count: 1 + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/component.yml new file mode 100644 index 000000000000..f4b3c42dcfdc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/component.yml @@ -0,0 +1,38 @@ +type: command + +description: Train a basic neural network with TensorFlow on the MNIST dataset, distributed via TensorFlow. + +name: tf_mnist +display_name: TF_mnist +version: 1 + +inputs: + epochs: + type: number + default: 1 + +outputs: + trained_model_output: + type: uri_folder + +compute: azureml:gpu-cluster + +code: ./src + +environment: azureml:AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu:15 + +command: >- + python train.py + --epochs ${{inputs.epochs}} + --model-dir ${{outputs.trained_model_output}} + +resources: + instance_count: 2 + +distribution: + type: tensorflow + worker_count: 2 + +## TODO: remove +environment_variables: + AZUREML_COMPUTE_USE_COMMON_RUNTIME: "true" \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/pipeline.py new file mode 100644 index 000000000000..7b822ec42b8c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/pipeline.py @@ -0,0 +1,29 @@ +from azure.ai.ml import dsl, TensorFlowDistribution +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +from azure.ai.ml.entities import ResourceConfiguration + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + tf_func = load_component(yaml_file=parent_dir + "/component.yml") + + # 2. Construct pipeline + @dsl.pipeline( + description="Train using TF component", + ) + def tf_mnist(): + tf_job = tf_func(epochs=1) + tf_job.compute = "cpu-cluster" + tf_job.outputs.trained_model_output.mode = "upload" + tf_job.distribution = TensorFlowDistribution() + tf_job.distribution.worker_count = 1 + tf_job.resources = ResourceConfiguration() + tf_job.resources.instance_count = 2 + + pipeline = tf_mnist() + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/pipeline.yml new file mode 100644 index 000000000000..2b50d6fa6a32 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/pipeline.yml @@ -0,0 +1,20 @@ +type: pipeline +description: "Train using TF component" + +jobs: + tf_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + inputs: + epochs: 1 + outputs: + trained_model_output: + mode: upload + resources: + instance_count: 2 + distribution: + type: tensorflow + worker_count: 1 + + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/src/train.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/src/train.py new file mode 100644 index 000000000000..82e1441bafcc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/tf_mnist/src/train.py @@ -0,0 +1,124 @@ +# @title Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Script adapted from: https://github.com/tensorflow/docs/blob/master/site/en/tutorials/distribute/multi_worker_with_keras.ipynb +# ========================================================================= + +import tensorflow as tf +import numpy as np + +import argparse +import os, json + + +def mnist_dataset(batch_size): + (x_train, y_train), _ = tf.keras.datasets.mnist.load_data() + # The `x` arrays are in uint8 and have values in the range [0, 255]. + # We need to convert them to float32 with values in the range [0, 1] + x_train = x_train / np.float32(255) + y_train = y_train.astype(np.int64) + train_dataset = ( + tf.data.Dataset.from_tensor_slices((x_train, y_train)) + .shuffle(60000) + .repeat() + .batch(batch_size) + ) + return train_dataset + + +def build_and_compile_cnn_model(): + model = tf.keras.Sequential( + [ + tf.keras.Input(shape=(28, 28)), + tf.keras.layers.Reshape(target_shape=(28, 28, 1)), + tf.keras.layers.Conv2D(32, 3, activation="relu"), + tf.keras.layers.Flatten(), + tf.keras.layers.Dense(128, activation="relu"), + tf.keras.layers.Dense(10), + ] + ) + model.compile( + loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), + optimizer=tf.keras.optimizers.SGD(learning_rate=0.001), + metrics=["accuracy"], + ) + return model + + +def _is_chief(task_type, task_id): + # If `task_type` is None, this may be operating as single worker, which works + # effectively as chief. + return ( + task_type is None + or task_type == "chief" + or (task_type == "worker" and task_id == 0) + ) + + +def _get_temp_dir(dirpath, task_id): + base_dirpath = "workertemp_" + str(task_id) + temp_dir = os.path.join(dirpath, base_dirpath) + tf.io.gfile.makedirs(temp_dir) + return temp_dir + + +def write_filepath(filepath, task_type, task_id): + dirpath = os.path.dirname(filepath) + base = os.path.basename(filepath) + if not _is_chief(task_type, task_id): + dirpath = _get_temp_dir(dirpath, task_id) + return os.path.join(dirpath, base) + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--epochs", type=int, default=3) + parser.add_argument("--steps-per-epoch", type=int, default=70) + parser.add_argument("--per-worker-batch-size", type=int, default=64) + parser.add_argument( + "--model-dir", + type=str, + default="outputs", + help="directory to save the model to", + ) + + args = parser.parse_args() + + tf_config = json.loads(os.environ["TF_CONFIG"]) + num_workers = len(tf_config["cluster"]["worker"]) + + strategy = tf.distribute.experimental.MultiWorkerMirroredStrategy() + + # Here the batch size scales up by number of workers since + # `tf.data.Dataset.batch` expects the global batch size. + global_batch_size = args.per_worker_batch_size * num_workers + multi_worker_dataset = mnist_dataset(global_batch_size) + + with strategy.scope(): + # Model building/compiling need to be within `strategy.scope()`. + multi_worker_model = build_and_compile_cnn_model() + + # Keras' `model.fit()` trains the model with specified number of epochs and + # number of steps per epoch. + multi_worker_model.fit( + multi_worker_dataset, epochs=args.epochs, steps_per_epoch=args.steps_per_epoch + ) + + # Save the model + task_type, task_id = (tf_config["task"]["type"], tf_config["task"]["index"]) + write_model_path = write_filepath(args.model_dir, task_type, task_id) + + multi_worker_model.save(write_model_path) + + +if __name__ == "__main__": + main() diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/component.yml new file mode 100644 index 000000000000..12256e36bf75 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/component.yml @@ -0,0 +1,25 @@ +type: command + +name: hello__python__world +display_name: Hello_Python_World +version: 1 + +inputs: + sample_input_data: + type: uri_folder + sample_input_string: + type: string + default: "hello_python_world" +outputs: + sample_output_data: + type: uri_folder + +code: ./src + +environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 + +command: >- + python hello.py + --input_data ${{inputs.sample_input_data}} + --input_string ${{inputs.sample_input_string}} + --output_data ${{outputs.sample_output_data}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/data/sample.csv b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/data/sample.csv new file mode 100644 index 000000000000..be8d4e71bc21 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/data/sample.csv @@ -0,0 +1,10 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/pipeline.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/pipeline.py new file mode 100644 index 000000000000..24362f3e2743 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/pipeline.py @@ -0,0 +1,34 @@ +from azure.ai.ml import dsl, Input +from azure.ai.ml.entities import load_component +from azure.ai.ml.entities import PipelineJob +from pathlib import Path + +parent_dir = str(Path(__file__).parent) + + +def generate_dsl_pipeline() -> PipelineJob: + # 1. Load component funcs + basic_func = load_component(yaml_file=parent_dir + "/component.yml") + + # 2. Construct pipeline + @dsl.pipeline( + description="Example of using a file hosted at a web URL as pipeline input", + ) + def web_url_input( + pipeline_sample_input_data, + pipeline_sample_input_string, + ): + hello_python_world_job = basic_func( + sample_input_data=pipeline_sample_input_data, + sample_input_string=pipeline_sample_input_string, + ) + hello_python_world_job.compute = "cpu-cluster" + return { + "pipeline_sample_output_data": hello_python_world_job.outputs.sample_output_data, + } + + pipeline = web_url_input( + Input(path="https://dprepdata.blob.core.windows.net/demo/Titanic.csv", type="uri_file"), + "Hello_Pipeline_World", + ) + return pipeline diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/pipeline.yml new file mode 100644 index 000000000000..798a0faebba0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/pipeline.yml @@ -0,0 +1,28 @@ +type: pipeline +description: "Example of using a file hosted at a web URL as pipeline input" +inputs: + pipeline_sample_input_data: + type: uri_file + path: https://dprepdata.blob.core.windows.net/demo/Titanic.csv +# or +# pipeline_sample_input_data: +# dataset: +# paths: +# - file: https://dprepdata.blob.core.windows.net/demo/Titanic.csv + + pipeline_sample_input_string: 'Hello_Pipeline_World' + +outputs: + pipeline_sample_output_data: + +jobs: + hello_python_world_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + inputs: + sample_input_data: ${{parent.inputs.pipeline_sample_input_data}} + sample_input_string: ${{parent.inputs.pipeline_sample_input_string}} + outputs: + sample_output_data: ${{parent.outputs.pipeline_sample_output_data}} + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/src/hello.py new file mode 100644 index 000000000000..f1ebbd14d687 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/web_url_input/src/hello.py @@ -0,0 +1,39 @@ + +import argparse +import os +from datetime import datetime + +print ("Hello Python World") + +parser = argparse.ArgumentParser() +parser.add_argument("--input_data", type=str) +parser.add_argument("--input_string", type=str) +parser.add_argument("--output_data", type=str) + +args = parser.parse_args() + +print("sample_input_string: %s" % args.input_string) +print("sample_input_data path: %s" % args.input_data) +print("sample_output_data path: %s" % args.output_data) + +if (os.path.isdir(args.input_data) == True): + print("files in input_data path: ") + arr = os.listdir(args.input_data) + print(arr) + + for filename in arr: + print("reading file: %s ..." % filename) + with open(os.path.join(args.input_data, filename), 'r') as handle: + print (handle.read()) +elif (os.path.isfile(args.input_data) == True): + with open(args.input_data, 'r') as handle: + print(handle.read()) +else: + print ("input_data is neither directory nor a file: " + args.input_data) + +cur_time_str = datetime.now().strftime("%b-%d-%Y-%H-%M-%S") + +print("Writing file: %s" % os.path.join(args.output_data,"file-" + cur_time_str + ".txt")) +with open(os.path.join(args.output_data,"file-" + cur_time_str + ".txt"), "wt") as text_file: + print(f"Logging date time: {cur_time_str}", file=text_file) + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint.yaml new file mode 100644 index 000000000000..64e035c59956 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint.yaml @@ -0,0 +1,8 @@ +name: test-batch-endpt # required +description: funny +properties: + p1: v1 + p2: v2 +auth_mode: aad_token # required +tags: + t1: v1 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow.yaml new file mode 100644 index 000000000000..ecae42856f88 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow.yaml @@ -0,0 +1,3 @@ +name: myBatchEndpoint2 # required +description: my sample batch endpoint +auth_mode: aad_token # required diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow_new.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow_new.yaml new file mode 100644 index 000000000000..ecae42856f88 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow_new.yaml @@ -0,0 +1,3 @@ +name: myBatchEndpoint2 # required +description: my sample batch endpoint +auth_mode: aad_token # required diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow_remote.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow_remote.yaml new file mode 100644 index 000000000000..26e3a92ac864 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/batch_endpoint_mlflow_remote.yaml @@ -0,0 +1,6 @@ +name: myBatchEndpoint2 # required +description: my sample batch endpoint +type: batch # required for batch, the default is online +auth_mode: aad_token # required +traffic: + blue: 100 # at least one deployment will be 100, others need to 0 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/simple_batch_endpoint.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/simple_batch_endpoint.yaml new file mode 100644 index 000000000000..6539720162b5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/batch/simple_batch_endpoint.yaml @@ -0,0 +1,7 @@ +name: myBatchEndpoint +description: my sample batch endpoint +properties: + p1: v1 + p2: v2 +auth_mode: aad_token # required + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/data.json b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/data.json new file mode 100644 index 000000000000..9e32362ad3c7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/data.json @@ -0,0 +1,6 @@ +{ + "data": [ + [1,2,3,4,5,6,7,8,9,10], + [10,9,8,7,6,5,4,3,2,1] + ] +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online-endpoint-with-blue.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online-endpoint-with-blue.yaml new file mode 100644 index 000000000000..9e32b3f6ec7e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online-endpoint-with-blue.yaml @@ -0,0 +1,5 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/onlineEndpoint.schema.json +name: deon30 +auth_mode: aml_token +traffic: + blue: 100 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_aks_bad.yml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_aks_bad.yml new file mode 100644 index 000000000000..abed449f117a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_aks_bad.yml @@ -0,0 +1,6 @@ +name: akse2etest +type: online +target: azureml:sdkv2endpointaks +auth_mode: Key +traffic: + etred: 100 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_k8s.yml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_k8s.yml new file mode 100644 index 000000000000..90bb6b67a728 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_k8s.yml @@ -0,0 +1,3 @@ +name: k8se2etest +compute: azureml:inferencecompute +auth_mode: Key diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_mir.yml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_mir.yml new file mode 100644 index 000000000000..0deb0e571ea9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_mir.yml @@ -0,0 +1,9 @@ +name: mire2etest +auth_mode: aml_token +description: some description +identity: + type: system_assigned +traffic: {} +tags: + endpointkey1: newval1 + dummy: dummy \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_mir_private.yml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_mir_private.yml new file mode 100644 index 000000000000..5b9755fb4fe7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_create_mir_private.yml @@ -0,0 +1,10 @@ +name: mire2etest +auth_mode: aml_token +description: some description +identity: + type: system_assigned +traffic: {} +tags: + endpointkey1: newval1 + dummy: dummy +public_network_access: disabled \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_minimal.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_minimal.yaml new file mode 100644 index 000000000000..f58047bd980f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_minimal.yaml @@ -0,0 +1,3 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/onlineEndpoint.schema.json +name: my-new-endpoint +auth_mode: aml_token diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_incomplete.yml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_incomplete.yml new file mode 100644 index 000000000000..2be5bd7b1451 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_incomplete.yml @@ -0,0 +1 @@ +name: march-1 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_k8s.yml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_k8s.yml new file mode 100644 index 000000000000..abf18af1f376 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_k8s.yml @@ -0,0 +1,7 @@ +name: k8se2etest +type: online +target: azureml:sdkv2endpointk8s +auth_mode: Key +traffic: + etblue: 80 + etgreen: 20 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_mir.yml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_mir.yml new file mode 100644 index 000000000000..81adb62a0df0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_mir.yml @@ -0,0 +1,9 @@ +name: march-1 +auth_mode: Key +identity: + type: system_assigned +traffic: + green: 50 + not-green: 50 +tags: + endpointkey1: value1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_tags.yml b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_tags.yml new file mode 100644 index 000000000000..3eaa0d9a85bd --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/online_endpoint_update_tags.yml @@ -0,0 +1,6 @@ +name: march-1 +auth_mode: Key +identity: + type: system_assigned +tags: + endpointkey1: value1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/sklearn_regression_model.pkl b/sdk/ml/azure-ai-ml/tests/test_configs/endpoints/online/sklearn_regression_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..d10309b6cf4c8e87846850edfe8b8d54a1aa64f2 GIT binary patch literal 658 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%0ANGBn0o}6M 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 g0Np{d5iWz8E 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

;6Fo;&lD7+0&~f>#*6Nr9 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 #A?Go<8?&;8WNdmi0 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�B0T*n3$Y7z`YyF1<$F9sB=vKMkQVnr%DB=IJp@W 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

crko- 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 t3a=k&kbhXnwgx>GQ7-ZOsXZ1#nZ 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�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

1X^*R4^2K#?4X(s@n? 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

XjfsV-g59*eVl!EBI1-+y{iG{uHo~X2 zZt}b^8`iB}40~7Ufy~1qQhELuz5Swxd%rmc=f`b>3GNTtSNK-aPdWXZ=&ILb)~=8A zOr9Rekd3B&EGqbN+eJF?r;gnHs6`AHN5iraN!WJH8+O0>N*;$tkhY;5de^I#2!C~i zIm`nRb1n#H)G6Sn;Ajl^ewHw66(D=(d0pQRO3UY@nc zg)n4<9YmL47u1@%7A?}NNcTKBkhqaW9@rIZbKaMZt{NmY3lGzf2f@I*S%J0r zJ5uAV=eWTY-hfk%G`kY8Sou!UT!&kxk&_>jpRYYZ%6~Nl^R5YA&qodgP zH`g;-9Z#`LgMv+AhnkK&tm>JG&qIWu_VY&Kox%Q}wk3k3oH;(*n}n}5%SqO>W%$|T z7+-HL2Ui-@aA%hq91YTj_?}zz@5v-I?Wy3BBfY6{=SsZaWr}eDJ{VXejduSS&-kn( zTsf3MSL$A*8=9nGG26eMEQuoH&gG!i((BaBZXJBNV$Hfrl!X{m@R9jE?5;dO>?ZRx z)Ak(yXjL6?3))3y`X{0GatZ88S&DPQH9&71o8e_g;4;AsQGe4T57FIaZj-tJGbitER5U{WkkBCT{`Gjn#v&m)A(_TKfo$V=Lzgd&SESe8aeHIqh*-K&h_4(l7?}fEe zx$vB3;H)1r@R9dyD&0^H&zvS>(V|EiD_cwquWIAkiQ2Hxv6B1hvWZ-(HG`F%H)$Ya zi0)d=p`>sz2J!w}7rUEm2-(L)bjE`4*$KF3b2|=a8skXU0G;MHNaMDSfhouR&^|{9 ze`MOwCmV8MH0#Mtlw64aZVZsgn}Tp-;7Q&@Yb%$wC=sr#Rf8eCz7K$%zr%afz$o40K^8jVqo_S?5%2`&OPxE zUiF$>=`Mr0!=pjpXf@o@D8vhqwxBh88h#3x&lnO3C}s%wI&?1j*^khw2`c2_86W&) zHVHF)lu)i(8RylryY2xcJZ6@LJ%QKhri4tosjCvkS2mEAsj;|WUTgab9md>ke?^uR zOn}?zZ^$XNL^zXTgL~)KqlL{>vYH@u%I;$8g5HqooFiST`*^3;foGEsqtL;iDEo)#E9`N;>qnx%uPB9 zN&MdAdrxfI8goh35Yc2ixuxllH>hjTWS zfo|to9LlI*GX)L4j?>0p&gHN+B8uGgPh-xRcMx;=B-ys)7T0MlDVXp`k~;0q$E{Vf z$&cZOMCq*>6*u>Qy`wi^PlPB2t&L)is~XNJ@0p;y`8nOCuL5W5|Ilc*d#LX`L4S%n z&>*u6P;=9QuX}V+;@B=)!)ExG+wF01dpp(AO+jOg6XborC_S*&9m~HfQxOMYIMTM4 z-hEud8%C#K%HzebW!_3uDSk=CwCBJA?*?*NySk0r?F9K3?r@%H)A1x=Cn>rzn)2`8 z3Bu1!K=obfc$@XvE$l9lPg6pnaK}_I&uRqQuq<5n$^n!c7eIw6^Hs9u+*%$%)Kk=Je*waz8s!OK^uY~e#HUM`>? zeRa^_?J%2hpP*Ys95Ke?2D!N42MJ!ndRSjN(CXSxJ~zM}|IR#yQ%cUFj+_{ZjV*w~ zD$`-PiXv87T4P&LDt&gSgPcEx{5iLy#4Au9L^n)?3F3p~4EK#cr>PDnCdk8yC+k3M zU>?j@(!!pD?A;+-*D>ovEEgR-8IO$)gS-TDEPcxE$-#Rujqy!JhYLXUjTU~rDUV0a zE1-ya0=B6vz{AJ3!Q+6hr0{qXoure6?Ni5rd2s{y87=Mbj-7}uvv!laW5W5c2xB~O z)Q;|%bb)F6j{0LU&I~Va|$V{Aip4Z@s2~q9uEW7stY!)y8<~{U54S z!g}Qy52-?;Fpjra4_|jA;kVYMWYgC$@|RCTGZ|G3dO-d0&}6hGjT~!FcYaqu-(*F2_P&a*4pySg%@Ooj zP8q1)-VDutjI({v054>xLf1v+M`m+cuRvw^QMeY1J6|)l^;(#<>J-&_76%OytwdB( zk30yR4LO?YDW;`iN^2p$zac~OKv_21xhZAhc+B#4S9P0Y(e6s7})dDx}ax z{Z?y&qJ=J=JJ?It{Z~Vd+KfZJ*##YwUop=`QnVFz^eo>emJ7e(6SwQj2Z51Q6~7^~my`cggwbmianGMpwC_vi=+*?%GdG&- z>spSp-Ro%X`gt9VqF2bZtUTP&yN1rOn@(cpSm3DsOkB9Xl0R_G5H3uUffrAsFf_0d zzkVh3$r}-v_TvG+z1Nz#r;Tym%M5t_kud_N#nIKQn;i2e4gI8_lTensUvc*eohkQ( z+%?yr>jRT$+~Z?hZch&Uty@U0>!{&{pE_tWRe=;-F^AGir)kvw#aJF>&b8(36I>LI z!_L*RI3r*Zv{?x7d5v$!6?ew}UL=J*q3x9OpGp^-eIb9>usd1XA(~NUNISEY(O%aY z-1}d%yQL|9*p*4stNVyUoDp1`w+8h8s$;j+E~3yA2hlFIG+U$$vlF*=h^y$JK1>3& zE1J-FzLLhv#LzY2+Tg04%*Az=(|6koskd7?W(MEpr?~)}@({(Nk;~9zWC!{wZ$?`o zPvn0);Gy>{&ynj&jY{jOh7n^o2rB4scLBI`Wq@r=D%SYw!Nt3kWT{6bxf=C~UO&=8 z@>pi7Zmke0jSQkQVsaokxRC#4c>+Jz#nHp}YDicjJEvtK`E=;JX|5c+nheuizERierWcflidE7NX{}=&pm_hM1ibiuI)?YfT11j3(7&&Xl2Y| zY_s3v7UCf5GU?x4#wW17q=0drt_^sB`>QURbXS(N{XI&GR)~S_pbCb43I;c~I%1); z0!}?iC9@yskZVKCgEs#Foy7LcM|78?lk;K_yb|X@c_#Cv2GZ(F6*R8S7Aj?g;fkaO zw!J7J7RZ=NyF*Z(Wd@&*dQ8cR-E`5*eqQR6G9+5(2tFUYPghMj#;>lrMns=kf!CsJ zf!(}(P_JZ;!5=Hrl;EU3Ozg08VzcwZ?R{L>rx7KG}lYEWLFbJb5TJ~(WZUak9&kzFGQ4TYqjPgV#-Av2_+?n^hB$``Ms1`3Uh=DJC1IWT9t&A?ej9AW|Wb z+>&*3P{QmPZFw?69{sw=8UD-0)z4G#>wlgw=kya|-7J6yTSjR37YTUSBuTxTY~lTc6e@F432q1% z;{Jpt=;Rkb@9jhg*_()?ij0xf4M6JZFkk;qS2&mVtU4leYSWU zvNXl|lZxcQbt9O=dC({9ynnjr4wYGSm(FjPLoE|RVY|~xtoKd@*+d7-^jJ*|*sMmT zLklLAdw}#y#?DS3kLsC6X)a^eYABzgiL;;6kk^b^$G$&1@v07|4FWWnmQIiC_(GO< zCgCwfnL3B33zi(>U?5x) zV;>0w+k^^Pf4P(Q8=Q)zKF7#?_uItbVJemjPXLjDa%?D9go>+*u&#Lx=NGjdvzLz} z?kbruvpofq`dwgHi}@_ei-VwOzFa`O;F9n#$gxt##aY z!(wuB+cA0!e$nv_M))~4ABv7LMuAy3+4QuG{(R^S0n_a90`tGWQDy80g*tqHvKEc6 zZp4F!y#=3Etpnk7H+n;NIVZ7ZFa2C3pjrce>BVd8-d1&&a;xT}XZ=_>)G|ybYNz7% z-ck7R*+rU}a+3}Pq|t-QdGLz`x8%!LprL&}7Pzm0Ut5#$d+8EzNutD2FAoA)=KS!V zZP1E6WKqLOdVLM^i{&NpNq(nE_4}XvDH}PwpX`KY|7Jpj>mod}(-=OFvBgHU>9|87 znJzBsBWFZrV&{4(z;Xq=H+>OgyKbUwp#{)qpu#Pd(uFEt=9NE}NYQaV-8Eel9vHgw z3+m64(5Jttccc(^b&NXh^f^Jr9@+yhQUvk2nW$YA0v0ojpkvf#JbC3d|H}Ov+5RUE zWwWY@(V7WhAKb^cjw)yS^bB6__kOyuTn|eJ^kB@XMX1zjij_<3@J`1w;_2{bnly|JcKc5j&zjeH(LM=23Z?MfFNn6{en!Dd6P z2(b|D2?G0P`Lxipg>(scJLx~EYGzZvPl+)Z8N)_iMtt#g9PNEhON_<)Rm>yBeo zHo@PY(?C|?5OH`Bj#Uv4Nin&@osUf-e^}@6gL@R;dSo|t)h z4*G3g4jk6{j|(dLK#ZBYrfK$~jy=;8Xn4Fa=;`^R&1H2=H5^ZylTxT{d^#_+cLEK1 zx`XI3*FyV^iMZ@pEZv)C33vY$z^t^}#P-u%LDP{*=u>x}j2~5mkJg0ZUX_Kw$vfkp znn*gFy#ep_zo*J`M&ZHDUx`~{54RF2WwfU+t1Bc&EFY(i{X*t`O^4O?()8mJO(>Dk#*Lmj zm=S%AZfN!4Oq0g*b<_1Q@Lv)A^pSPn1r8|QlSV{`MS#uz@MO;=PGas>^4|O()%zvR zCs>@IAEvK>UAKz)8&~t;YtCjYj0vLt!c*{*z!9!RYT7@6a7fn}U*@W@?>HP&(^p?hN?s(mJVzOI<9$Q!j zHL@8Xs4>B?dTC5p_L{zYUx^$SPY27B% z2Nyy9@Kh?X%#3uObb_~T6&Q222&?MNuqoSw^ws}tmkLcs@yi#u5>s`!_979TnSOhe@M-7U)ZHChtpjQU~Kwq+>`#4gy~=5jD8g0tU<<4*!G0VnrwqOg(G}h zi#%N+x&$;$jqonsBJ1T^`B}a>u%*R{is-h}zX8WB1T2T(pqc<3^a4NhTZ7*|z7%F1 zI7ZY%62UPk3!|obU|+=;sCHY#oqPF&q`yQO{o4TMNRN=U72zmdu$TDvWP#k-MOa~> zguAD2#UExXFma2HV24II+3uvl&L7P6du|p#wYirb2^mc*e^x+pwjbxN`HChKl|o!^ zK7HW9oRXI}qFDJKy6smLI^ZVY>x5D5WGdCn3c)AaOHq6NCX|w0h4bdbV$-K#DmBWR zRws?n%ah6>v#%5;$d%B>y;5vOB~0SGSpQ!Hd53Q%=(IbXJXlo@)v=Fh?&COO)Z|Vg zbjFMwYr&P% z*`&971Nanh)MaJ|J@2y#hhN)b``df;!whS3Z=NZ0>5fqSlNDI+SwmLI=ix+?P&UI9 z#n-b|!WE@l;&{vjC$(=N@ncuwih4C@jU$BS=7FNWHat}V)Qwz$1#um8g+&UPG+`bD zIagp!Pai$`Ntc^h`<#2^Q%)`2%b90075#)ffO~(C)U*9vb6puJO#N2u#dBluj>NoEKuqsYBd{Jtw3XRmc5E2^fVyLSc-=H!sLLudHy#~3Fud>W`5 z%mJlI>M)dfm)qPdjyvgA__(#7mM+T2g{_l7euo-vx!J%!(()xbJI15^g$(l6pbXbp z7vsEs4d`hT;t!}5kVP0oj?PGe`!cI&?K4k$?2Qw|l&k^=4UmZu=+ux)^=mdMBP8NV~PbMBZA4g=^Y(i5u8k+xO z*&+WtFfV_|H%X4r)JO7gR^|r{J|Kni>nG!zUgk$$BTJH7R^r;We^m9%bz&r?2$Ic0 zF!qcUCv1GUU9tEb9T9D$Z^LrH+I1=x&Ip4YZzo~?fqC%qjSO_1d`>+>HbcnzW$XlxH!s2+`aKf-dMkfVFR_DVXS99`gRS_)Y(_r222#CB>4oxSvfYY^w9b;B{ z;Eh4XcTajjJ*Jk!sISiS?US=)T5TBr&nN-w_Si$XP(Bq+Y~V*q8`*pG91+;&EvDih>)8V>+hBF)%$etsT<{5or-Yu5o1tu9uJ}Uy;Q#UJ#CY8qS+pi zkhebwMP@Ig-dmLUr*GGArMuF>ZBq-~l@U!wKI_rx%YMjd?+fUDz3}zlQeabd!kdi$J}`8JE|$ zkcET$_yf^vh@9*USd;4nk98^a`?^O^9QB+ZxEhV8t#)x!ooA9_jYL{pKHJ!#|+Z{cO_oYu7qF(JCtL4r+fJ~Y3lR!Q0OmC^rpze zjD2I-{&W*KFO`MlJ>$sty{>2wmjopb8tDBb5s1Au9pmaHKsH*71kBt_dYYHO{N@yL zn7!AF{k%w|ayGAEU4Z`OB@j0MCapJYBrD|$mu2fo z#u54=R0%4D3qUAmE1XXkrE_BE!S?w{IPYj5EtgG)1Ga|r!#!ot(=Q|G$A5P`c9Vnj zw=!V$%M)^*{37No7kE{2E}Xw+hrb8eoz`PLuF-SHZO`Yxf2#M%8qFm*;lecJOOm1D ziXDVq8q04x>_iv)^pnI2VXAd8f?Q~`0=-)k@U37Gw`0o`?%>xqH2S|a+}C3Z@Y|GO zvNEa^h2G`ByQeNF&}4Ve0UJCdNl7p3;SBh`Bt4UTNP6i;{$fZD?p~e@Bhk_je@Y)8 zvgiEtUSXU$qzHdq1<Ybn=rdlB1-IE0i6;ev&AzH(rh(#%ZI(L=TYaI6+I^Hgad*THv^U zNI#~eLS)@ID4Hk=Rx{2NO|8axA=B?nanhg5~i|7;GAAH{EdF=O69*ku5 zs3mg*y`6N7T)3pdh1Zl|@0VKoqWCf$VRtocJ#F}By%kT0ZNvTJE$EIQOIWASN%YNZ zVU*QsoVs%}q%)4>{#D7?nre-?qqf21DP?5Q@_F3X%XM_Hy^tL3JU~JXr&67HQXuA` zjyGzP@wWpzyFfWaTqgCw^pO}BR0RXXvsMr!S^3p65W=#~vtHb) zJ^6?%7%qVcN2lO1-kWt?ts$)~8KM_9lkJ-lQMYsfec3OB%7@J{pUpqo|5L&g2|qzl zj~Kn`Xoi=HU5ZNh*+LcyWrd+BvIx%}dqUL`rr?dA zaY%>CNrmtdoc?JR-Fzw(B=${()P;-*X}wb*d~G5GsdW%v$J1mS+tD9&V4agQS===< z9f3{rJSyU41wJ1ESIf*spAVH}^yyu6+6RvB@s7r2@01|+MIPJ{<+&^G9&wviIb(mr zdAdAXgt%5Gfrd^2*?u$tyhi0wwobyAV7$=%#m zOsh1eL-u`98g<B37^?RRXH%ym)Ad_d#!TE1xQ1VMN`C3Kk*m+X8J7+d7&s>IW<37;1 z>SU}_(FV`CMVK)`4a&ZVp=MJ&2CuTiHBFje9ieRAro8@T#Wy71c$bTpzhS)y#411+>9rW=~l1% zT)N_h<0r*{e&Bx68Or!bNroV&${4=P^ZPwv0a}HRrsdmb5p@v)(YL%fZ`b+Yt~-fN z9ah7GgKD%>^A;J=n~bs9=jo3l#WXcHfV$qPz`@TF@W~{Ho~kXyN36dvxj&t%{+kZ{ zW#b@zOD}!5Q~PpaXQ#H%^@~?yPF)HveCml; zcYme_rKh1)d-C$7W6 zJyKA^dO{ZSlpy`eDijW`z^`#C_$_dNj`$DrTUTVkRk=;DR^J`cb4S7KoB%kgSAto; zZDG%g4WN=$N%Ew!QS7w`&OhjY)mjUo|5YQI;T;6Nx2};0{aid{JON97si65P6S~^h zom7oxKD{fZ=&(*73ddfjcQoc=B^ORI45xrhQK(>WY%fhNA+$yH`Lbkxg7cS@$G8-nb{!1f!7M~e17UJSU7%iWLDNYCI9G21k z5Sxxghx>_mrXikWEIFl#hsf330(v|+9Ve_ygMA^MWb?XFfb?w&2gCb?%`+71q zjm^g!Uo$Xmln1HkpTI4$DPdWUDmvv<4A$D`k@+WF@a4ZO;3wz9$>qu1fTlH6)MQeN zboTsb#6j4vOfc{(!^4l9K|#lZU+g~xUmYk!>UWG-{9Y)?T7HYBzqf+rne03>MT^>0 z$Agz%A}+q21ubH&wDhGBiiu^>&-X^?B`hH=iVMlwJN^(NI|&MNEYUGs75wz{@zJ+L zP&E#Kc)ua~!aNODFLT3FGe6THv1i2Xa0V>!v4_Be)99L7R|s>?;(p4jgPKD>9qpD* zQ*YUD$K)08yZHrDrLRR5e|f-4{U++=Py(I*g~N;A^I-VqMEWaa2URnbf@5mO=zk9s z!Axc&Z3$$4sl045!PAx8AGU-e4&9`1gDUyiT>+nmX5r82d62U^9*pJg3FOCmWAxQD zNIZu`X5=A}o;C?0S9wE=V?ULC)<>S0$1;BSdOV}GfYh~42hZe1v_h(d==-pDd!iCd zsQE)iElGt#`?4T>Xe;c9OT?U~zTkaMftsI5gJqc;h>`1VzVoLx+%A|;-#nU(R$FG0 zGtDJfCqESiH)a#1upu@#$b(n@h0xL+16ng|K+bF@Rr2WM+!Zx=*Cir=29<~(gULM7$d_hmR|Ht=-$w0<~Y4moBEGlmdq>Yu)E3FTBBzZ)sZv^^(!D+ z3z)a>RT1dO-sSX0ITOF7`$@sjG?+U^8=h^FAvc~)KwYUUkaQkL;<~J8$F~UVv>S~p zq@&R@R}OC_Y`{OSS3?1tox7cNf{3!UcYR~*GJzXN%$TM4-K_)%7MS20Hd}og z`GZ70>9in6xe` zB*|b+O!@n~U5+gJ+mG#l8G6_za+w5t%_gYyJ#^qi7DmjvLWk4k$%}+In7yDB^NptPk7pHvW!w~;_N7oVXm1o z&eZfL20vFrxpy?Nm=z3dY(KYli9P-jxkGPmw})ShqtrUz876OD58n1UWGJ|qWOcCa zb4w_-a53N)sYT$$G%a}IRtgEiTkzQ!L(GXP!7uymF+71Wh8>k@Ursh261zjCc5lKC zmC1PVV>CQSRp3^y7wNv-;N`hunA69YDk^eNc|QZcN)}?S`)RuP=sJ9(SA^eY z`>>ttl@9y;qVyjq;GEw-xc73axh)Ria9pR}qT0m^{=OUGGy94$aMC6;x&N7{G)sca zf5mt}O#>|o_Aw_;4!qL(#;tIRfZ*X-5VLg;XQB6-R?pFoKbM&QWU+B?Anae;e#SL%OY{Gx42S~fb zSWMQ*!y7_7F!JR%n7c(>V8kEfE#`U38lpt7}hQ+-ib=HWNHmt%n=F)w7<% zDe4wu%6Or6c$VEOzU?_kjw%{rr9v@T>RLeq&I+N|%ubT0=SiZj-lYDwS8_e<9Wzh$ z71dtG`g%Fle4DyGh>gm`Ia>vckDHE)Cmb+g_b1{$Gl*MKQb6sLzEXb^fAn{#hP@vb z!|2`Wh~`t#<%KBh%}9pSGE>N?oP$5!BxAZH{XZij=>D@u}^|*vDb8Y zbu-z@&N>y(Hh@OTnU1ITdAdF_i8L(QOHb5j(Vy#>KS{wEE#5hyXuTYGnv8>zyQz51 zs}Q2xo>FOTZ^*bHgZpw0q4)Kb(EYj%rB4gti@+m%d1)kg+HJ$R|D}bhjKqd$XS;WTqiDqdc_iJx!N* zPG!$uJuUdY4P*A}VvUjyJU`?Hn?v`Jm-n*hrPIsEri@j9PgDT+u)K5FEZp2$2|qjK zne%5p4vmPmj}3gxKk0iw^xp=7vuhi9U0Fdcl&gcw!ew|>g7O6l2kE=fX)yJwD*kP< z!0x}IY>#39eFw&(k01LyN+Etj!A;5l4*xE}&$$Eqy6^f_-=_?sQdHq=+ZfOalR=XeYY|1OxN0pg z_@3pC$)C$;R;(>Vw%9>Qkt|ipy+tl+He!D50XnTE8C_nbgLsPxY*=Rvx@nB*`9_0! z7&@SL2)i34DAH?_7vhD}kwmip1F3$RNY98w;3F5-U-{^S?;~YF_Tg?AN~{3iRUe4Y zgt>UXVn2{q2GIO^CuWUxMCtJzG{vlmj>{Lup|f*Ayy_5DesYtRnU+$2^=QlvaOE$> zZvf3()4sV@3N(!sMg07#lEJubwiPQWTLuG5S|lboCKQ) z*gE$ujh<^k)>I^-boO+-9v05u-`PxMJ4(Q`wg}cIdg1RDiH@;Q0mA$Syx-Z$eHt9( z4Iel{|GND|@x@%&@mP;!_2%=(Cyj7xmU*M^0d3M>JRQ!eeWMr0)Nw(@)mZjIf{xOA z*scY)$!jvq-`@9^xUAbsAG~!13wu5Iye|`O`c8uCLyOT$C%vOAwUNH*+yqVv@zAP$ zg{%y9?--G;1f_sRjUU@vO^psdBEWtqLfSIp&oYS0cP8Yq; zgz54ENWD7`u6BAtzDg!;ytSMTZ&`rV?}Oo%Yy(xYHRL0Gi@-lC10Al?Yrp-EhX*9b{$x5fZiUJNM7G z1|%KVV)tVq3|2`Jyz9*dub~^vXm zR8XItzo^LG3m`P&3qK5U@N45LI%9nTv~;b3)ydaMywg7FqJFI-O)~-#8Ovw>s8M)E zjqOn{Q}YFP#zL^60Z7>`f@l9+;r)4AxGo|LDH2Oyn(r2fw4EzB#26g?bMuHkTd)z- zM0fpSBCW?fOT}~WfrJ*dNdCuf9-Yr}V=Cy85=w`9*zCYuhzyQxr8A#*ktfC(FmaL# z=}N34f|WT~yW%^|8l?eFaf&$Cd=BCkOPpSGfPa@CgE!5B;AUYaabX;Wn_EgyO`(^5 zXq$}U3Jaj=l>!zK5P3H^^{+IF`T;)}nR_)oX@GcN9T8ajRjIxMf{e#|If z-_L$J_heGL(EVhXFgX;H_PfHD{z7^*A&HAC+eJKo_~2|6ce;hmO6&g*Vp6tiao?*zX@zv@U&x+m=|PDT#CDs=Ro?rW3+KFf{*^3 zKs<)mz|5OXV>7(=c+DGzFW5NEkl#wb?TEy=PT|zg%e@=foI^zoU2u%6yPenE4AmegS z$F)z>(fp4I^zL7Y5hrd7&fiIc+y+O?&(uJZ{ZsIfava!Xn?mehvA}A96-0J!#<6`F z@NGrpr?=2?lXue~wi|t2sRZ>#EH{@g!cX~`28Z3VKVDqSlC&MN1dF}*}D+ig?9-gs1x;5FTvCU&d{1wgFmG!`A&*t?`uo28f(s9 zwAoJooxetf_F3Zfiz|rlKSM|`Ce%{3n*>_iCX)xv8SDBP_un2HJehBWzn3Y1uMg|c z&Ca5$3>-i&REn;+(n*i>Ccz4+FjzEk7q_p+6!xtTU~~S9w5!5})Xm+&_CI1+^k)wJ zCpZBa$Lz7`_ypF?F~A8ia?ok1gKupEF=>7xnK|PVnR(S8q@^v1-@`m85I2W-$vXVI zA&$hej+f)I~i@2<~8sjY`NgU<!yXk1LsQw<-Zkx_s!9!OP4MvaO)=+<7G3`ISi~Jca#JF0mbN~Y3 z%PA9R4qAqn-(2M7yU%dV6VD3HIO>r9gbeW4oO$s0L?L~-o%O^DgGi=dKUsO(hlooG z6Csuxxn&cL6D-GKaIF$XKNg1E8TFW<>K<_V`gL9TSynsd~{DL8L_@@tbhA z!|t0j)!3W}2RkdNIy(;)tYtI1Y!iB_wUZ{)nP6aiHrhxkV!L$-l^eAlyUuM9oK!f1 zrQZ9=%--er%(xPh?|I|)ZNF)&>N;FCO_6Ig-_2Dni6QOfXZW*00vO0({vxeC&}3c! z_iW1WX`2}FHZkILez;>v{C@)Nfcx~(v3)dm-4il?(^PDb9R6MLvvl|0^5TniyT+~HC~9&CCTi_0%9goU&Ja$mVd z_z_@-n=3?V=4wMQ{g}hIe9<6VkDek+%dgUu3MIIta+a8@hC|_s(GWdg1iy>I`S|~) zV7H|vl)3Jr@o_S6?g0m`{k~A^uYkYUZ-fWqxfONp!k+^UaMjG2c1O63JkQCVS#QuHA-f4kh@X%Ah#9=7?)+coB^H}j{+aDF?ikl25Ht!1IclA@GQ#~ znrJMxyF2i%mvXScLJ##N=Fs+uN8tFo6^vzQ4k9OKpj?I;yjy1p{id_vpt>fW`6&cl zn`+>|p-kBNUKel0OrlxI=BOm1MMC$pj#kqG^pKcJuMddR-pA?S%=$_uVMF|T1D3Iy zuYyWs zpqDY-y9q7U1X{9Qf5nVV#x zZ}|YPG4Ck(&n*?xe$T)M9kX%#!CLIwxP|^4XacJkS^U;@h6HCE2Q|-LYE@H)a#6=| z56k1kOxerL*VhD%MYY_4wlf%+YywTHWwh}=bFD602Fg0s*eB$HHEpjtsyEc3Tjfe> zKk$I;tFb0=^gDUA)*52I`s1o6dti4-6WVOKLM#=ni2s`>L^kw38FoHL{BFl^KYj<` zp2I6}l&cJuh!>M$i$YL(Edw0ec}CMVy7}yS=-s#-bN9cdM%6Z?`DQ;^v@IJJtQn2U zQQmx>XetJ-&IaKx+la+$T{3~?#O~Qw!@cE;(M&-cLNjKSa(&WEH7vZ4KvBY7Oap=qu))GC~$61CgtnbJyJeK!SWOFHX$NqI%QC1i zP=dvivN3+u8*)ZC4SFudz*OtoL_c6Qn^{y)9KQ@W-#_&0NGF+Rw-v6G<>JOqk@%p> z4Q@DivDZiq-1yPpmP-lDhMKM<2gd%0ylEWt;>81FR~ z(0MP`Kw0=g?ryg>UhQ0t$}1i4bcsD@cg6;8|C@|PF->MeR>Jh?lT@s1Hm9R!qlpsV z0(6=PcCf78P%+yDhV)T~rK{<)KYL+L$3|2=5`lWFLh)X}f3#$%5H?J2B5`b9q;Y*J zaG~E?Mdl8`)@%)^_Pk8a-t{3`39WQz_&Fl<$OCRmixTPkC79ZIhZY$44HXTHB<6RxjO%WaKAew)G}m3!W&}G09BwR~LV5 z)qKu<+q%|mqU@e$oR5{OtGMKA>EQgd9CSpckmc4UkUF>@=52UI{m&%8>_c&Aa^e9w zHq8Vl?geTe{gPyx2g91vW8u+)3<&Kirq>3V376YXV=kINb^8gjLi-b~oXDKZKjz}2 zpV^Sl7JPB3h} zrFNe`&b&w3*A4MN+70Mju@p}avio<2DbZE9KwqOY3WOG6i@^@;o4*|ogmF;d-wB5u zWk{y(D2dhRAUB;WNb|;cIM!u?<Zdvw9lit;=9{@@#6KRD_QgpM|VFZuHko55lXA zhbu8<)D4};WU1v?J0b(L&7tL!W+lE8ayPHGcVf9}0hqM?G`ilDg%feC)BRisPj}U! zr8wg`ey*o-*-q%)Q;r&Nlvrr#!8IpB4&U8{^>xDJ)HO%AblV9OZogsti|I=h)ubu1`VEW(Jnj4f|p z07qy)aam}_@+2*^a*qItMt72!=1A<2yhh$gJ*IWKzU(#L&2p3933sFz7Bvb(?Z*-< zoTd#+exHTC3u+!60x?|$fvDoo57)`Dv;=|3yu-B%Cn2R~mMZLeMZqRC?>nUk2 zW6(m*9kayho>Ag5ZI}<+l!#$;FL54~!;FaC{M6acxK_o+mfd=~q~2=}7Di;@+>2vq z&(Gi7Nr9uJ`B@OEc?Cgs%sw#wD2VqLn8GBq!cQA*xkRyf{GmH}(6aG4x8y}UmO1~W zs}qltFD+}xiN@>Xo1Y#GPSu6A*R!d_S}!Qw7mml3t?3x&7A}3uOfVwbQP5QYA6;4k zq8I+~*Edh+YAnxDxpNJ8@O28F+wg-57gzAf-*c$VxosdDkpW9Jev>69(}?oHC^*#d zk6P~nl*mdYQ;vNjPlfC0(VA`KWZ!riSi0cxc|sWO_l6f3&4YPT9+=Z`lx**x5BaxdfWClPtF_J{ zYIpWL-{^kSTzqOZ-R`>{cV;-#d;CmtF~=4QwrbN|vze36cM)_r8MCe(bC4!wL*FGs z)cVGHG%d-fXjp++Z9Knv^>d;mbD%XOCKzo}QfY=*5&Zdk8b1Dah0I)8PGfI*!NTja zxYsu_P_tVOXP!#H>>>rc6R?YV30mUyvLq-j1XNzvMMh=Ez=oPsKB#sl`7c}^0`=|S zsA9G`AC!p&mqK9JFBil+7SDUrD}ZFE6IO)C^C#VpG5&T5wtO=od7ph?bm|cZpDcv6 z89Jye$5>uhmQ5BQp~TOD~!%3=b-bh<#_th zLo%RUgBu%}H(vG~4e&}K;>%J{U|xi2&-CfwcjN%h4^V@g1v23FF$C?hR^e29!cW`D zcyWQ}T0cxlB_(ec;^6Y7xKrpYowa0$x?NY{>LC%bY;~t`hE2yQx9u?1zXb<6($RiR1=R@`KyI=d=>9Z8ldWmsW7Le* zY@TN@=HdsYU+=Yn8nK__- zZ53V&b)}h$tElA8{q)jsS4;5SQV_an3I*CSaM`pQN*C$?`TVK%+oX*+e0`WMUP`gD zUKDP9k_503#yQ^?UNCCX{T z0V#C(cY!EthQS?7!>4DQ__W39crE=F95^Qj&Yuh5^S(%ou1Lox&PS=o`yL{eIt?HG zS4%eT$Oiju?0KB1Pu(tF@?C5D$LV6o3t{@3LU@Ofy9R^9$|LS`U#{hbB-B%kh2V|cVToLt;sKqvRyB@36hL8LinGuA=~=rPCK=iD5|BRfSkS51OD(JSGz-U1xfm*kq#avvnFe)7fF5F zPnwXP3uA+Jw@xYYf=xPVBv&Al_nq>MoMrr3(Wi6xfu+|NFW-=kjN8WRMit@5=zx|- zwH?G}l@Qv0{g38RQ?P0C$BbxOIKM3vPF5VEQ)Mpm+V0PwpfU_D)=ohGYx9BqE%EZC zKqyox0SKRf{9H5SGzaO(g{3%rHwzcf+{c}KFhYw}T1lXB5_Me{fW4}W<=P+%zn>om zmu34%-cv^S;d-acSxGaWDFKj)mKlj+w#LAdn7PM$tuPJ-R*G1NTK z{D^cS5j^yc-Z8&T+ec059if>hptTQT^?r~Cn-{{|-}6B@|2ljh(@mPS_d~a4AKnm3 zpbn-k5T{WGdZXc>xtuYGA12d`agWKG!94067C^h2%z-wXBd)%U3kwjqd@F zobHWBrz(Qs)M}zA?ZWOV$EhcNrT5x*h z?<~1^{sKuxb5yxMjY>E+lVLY4%=#q>6}|e*t8fJtuye`%jP2}BeWoinDpL-cdpc?1nZxE8_T8{JWe-_DbBJhH9;Yq- zsif%59J=ArF?h0i561B4_~YYk;Y3UpS^FpePHr}U7e#91BKLvcOI%QRfj7QOaUs*b zEQ3v|#$fh97XJM;hf8zs5$V>qWO?@iay0cS_buC=4BmZ8+*Sf9@cvC|qjaD?Kp0wW z!eK1mM0=fd;C^8;)R`+oSyV85dNq!5wg2!P6+^_}lP;ckqXr(~+A!Oq6w(i-qC|EE zx~2}(BVA$8#&r_`_4UwRm%}+J8IY%nuc+pjVA%Oe56H94RPT{I27D+YpKl6q7aYoo zKQ0EzcT>^y-30oFF^X0DwLr3G0?cwWf~6k@$k0_o(w4?!WOe}xEi<6e7t=vpc_j&K zo{Xgx3%R_gLVC7S4+12n(Ip~1SYDI|D@K;$#r@VabeBJjgxsZ8%~$!0jP-O%aUotB z6N6t@F2HBfl9;it+Dxl$6B2hn4D&HZD=T@tAz{e(S}en-P8;#wXU4h~rToh)hr#0b zKKw*q(g!LD5U<|HH_IF#*LPKs=j*4^PoW3RlT7l7wdPzr;AFthut~)swG23}p9~!1 zNhy-(?4!nq&p1R)#4+0Wh`4&PlWfZab_)Day^{usP^1)lq&z%x$N`sA>Yf zZVD$!?-#bLpGC;*`2-%G{l~4CDNf&~tAXi^2JD}siZ@Ln!EEyyDpGF*21>_im|z;t zcMyalE9)^kb}WWjNTF{ZbB+4=Bd;%uO`omc{hiH_)V7D}G!$X;kFVsy!(Uuo`!GEv zq>8PZcpUGuil{Qy>6(5gOe&m;8b`hP$0PUXQ44vTF5W~I>M2<2XZK zCs@AJkDi-U0&jK&W5(X!bnNX*7<4QVw6%3vrb3Y>4b_p*u2Qmku$S}tZzEnDWqTZh zX;d{|4}{+3qWNk=7`J8`E~^y7*z71y?UE7}&P^vZtG_xY8}PV2h-3^dq3)ocwvs@AO7>}h48&A3tk(qK&xif z5w)$RBZmyYOaCLkf2I`pndYL@3}aM{oKLlHx?@Oh4O!tb46An6(-z6^bj`6Y{_y90 zWDsgFP}2shO^)l0aI;jV5Crm&Y9`POHPS|4|EFKXQa?Ad;reKk${ix6X9*w z6Vkin2k{Kr2|FImgW7U^vQMiR9;L_9J&cdFOlJdDua!GIQJo&OW3#Y&90>j7G=!M(y^x=^)=2B-S;zC1DG!i!e%imvF|7(pht7a1MMfaE0M<`yp9J8f>%I z@fM5=?|$AN#ySb(4#gVt3n}rm(yX7ZYyC_N#}tBVb0a^cARG5RwjwihFY)78cdZd- zqQc){a3dT|&et>vlp^0Cy?&JJ!*ZX$Z+g78jQ63zT~fcUPL z^qKW9dfAS7PsC1}AN`RDlcqOQnS>*7%lHBQx+a1*-BfVNhGqD6>2B2XP)DJ~3+a(v z{^)LB18pbl!O|)Pz67dbWqLeknX?mWSr4K2dnW1KD30ce^J#j!D0;k?8}@MZl~ zB0cFh%hRWD18Z*)D@|4WtE)|n8)Io{+H+95af)OfyG_%Q>_O`5U0ydyo?bK?%bh-$ zjg_AnSL7~Z&m5M3g~QM2g8{~se4|0_Ri$Y6OE=U{nncc)c9SnXyTL<85lcR#(6wUe zAec~1rJJLmX1p0yUiX^VEt!Fw(SP*VUvnJStb@mQ8sqiJlVQatXIwsk?QySPXSpT| zd{mM`7f-YW>9o@@w_Xb$P0fHcEbA9$9ShzDVyLI~kSKcsmgH8_An}Ey_~$rWrQ`{h zhA&WO#`IF$ridp-5=o3e85G@Afi+9Zsa}jAb?q}}zlSHa%(sKQj~aO8l>_zKB8#h3 zD=~kI7&0&;?O7X0D}J0&p^Y1w)}N zxR&KfHK%04Dlrp0Ay^OpOkUH*(qM?D%|yW?7%& zANJT_^jAx+Ta{yubXojblMDX7&xuBhJ)Em(;ex_HQ|CGCK5ZI~y_P8`9wr1z(W|-7 z+s4q~4^PSFkfZd7e*l);Uy3sKOTfvoh`{PF_AJ~)JwK(;MxD7VhiplG!Ub`CLp#m< zybLZrIY~DBYli$;KX{A4Es&u7ii*8U!Y($KluoIm0$UQn`!Mqpw%NeYc>-1ivT#51 z8~46^7IrzvV$8M+Ae>^>$~DcwKBojYdMy;K-1l%Idh$d>B^_i=I^nC;k|3`Xgfgsa zH^ng;9PN}K*Qk?^+o4KT%?7xOAFe=rcQ1;mIEI-cJ@Nt+P)fE{b~W8p5Zp98RH4oqdv~g;uRa0!(4Kk4#?W#QT6-g6+>gp z7BD{U*U;(YnQjEM787)tTuKGbSfRLp7b%b5gO7i0!^vZ7$o;|jpVW^i2!BbGU{)GC#m6hkH^zmrZo(+8f^|Y8$?Oh* ze?#_Y#ZwXgHaUtW!b1tESQE_ir)3UnC@Lb|NcSjxFxFFmzijggM+NSeqmUpCsRs-MR-zVAhzn z@j>?Bk#B&e^)63}TAkC)e9#+S8-UPX?AT4UL?~`z2lOou>4=gl z8TYH4s~njH{9rq6zmg9xFO9?fKTmP~BIKkczFg5f*A zY00u(j5p>*b6kz+)(QReZ1n^@HFpUo6H||Ui~Vup{vX7vB^sx6J#U$7sfscw&uCJ{ zD?+5D(X>Mv_u6W4wNu8Ldw8Yb#HbWdR7!`<6z2` zG;UA8493P@OB}ZeVBfW4#3`f>UXVPr5*<6=-})NGIpZL|`2NteZ&yVW}qVHrXn%zZ#RVwy=^ngg+ySH#3%TtXaA3<@)BC{aRw^+?LZ5)Uh-l=5Vv zzz}`0WJD_vpf^4UMo{Y1i|nQ0oM#Cp{eK=+`xMAtGoQ+O=AXgW$(u{|An}G zem?Mqb{JJV5q*R5iI{W}_&lj)47sbE_Wb2!wL?CUYdJ?u?`2cj=;NSz-yJgkDdU~G zbJTQ?C4#RN?3JAWt4J7RTumXHw`QU4&E-&;)_`tZ0EeVY%zGbuf#Je6pj2x_&&C0a z8DN}T5F`zKkLah<)|hcW0hf1nLY{yXskC&#w2wZ_lOqLxuf>Bc+gD_3+@*szC*!{p zvGnY?0(f<@kxVd5rM~}=q#GS1rg;=P11DpIz%RPMMhA4nHsP}?5>WLgggSl6=k_Zu z0`*rGsC+aRChnH!TFY|bO=>SBnX-;hrxu-HnM_~a4uXW@Xpkta;&?wd$oRYyy-(ev zo;?LHPkuTS+uDF{voO|)IiXSY0CVcip{hr|a8y|n4J7L6FQxmS`=2M2RwTnF3t>_u zcZB#@uf&nvQ)zd12(CSJ0;XSGg{}L`=-84Cc+*7?U4yHksrfi&tc!unAJ1s@Cp%bB zvJzvaoQ46_NL-?L3GRgVz^#nQ^y8a>R?n<9Fk9b%qXnyo-SQmn+PyT`wE7{eHS~s~ zs_SCzG&Aw}}`Rl)$?RMHr2!0pBAV&6Y;}CBrC$ zE7?p_)X0_GI=7ZFj?>|X$4BM{T#N1=x^!QK3(jw{GJi3)A2z+Mp{fhofp@6lgeE$| zb+@rZ@kJcBZ{|&USH_`9=t?ju+s|A{{-8YNJH7Z}2b`@m$LX)GneUVRkFFLU<#ybX;znX}z)hoz z?g;RN!9iQlAM$_>drypA>&JxzF2VTTJ)Dz&6RmzALJxgMvPeQ56st1uOwV`fv?-BV z*}lNTy^Pbjc|OW8mRY-pH5HI^hmRN4AYiT_RZMc{e?0h2ru@*y*t28ElWjNPGMf_$ z*rb9SPQcZ!WpH%oR2ui#2Ex3b^OA?Fuq)ydcYm6p`GN10pLXaQ_fNSLYUJxkxlI+C zJZJ9b)i+6h@Dcdw9R-MJ@CLwi{VW7r$7evv1OA4bB{y%YIEjH!JqY8J+2dy|1| zVdz(LZ^N+IDuXyi#P7Xu&XLKa(6R4cy*lqdaw_(LzrJLzZxde8npB`r_%2fVPq5AEsb>1 zuYNjs-|{}0{7MbJ4Hi=W-<4Rcu^mNxOksVb4XDK@!+MG5xbP_@feOYj$yFUcdTpl; z!Jd?lwFJ{lEzo_`L0)81KD=-zH|yy0R_(R_cpKYClqJ2v{ZJI+H~=1UFvFeq8=&%a zIZ77f@^NohgJ#SsP_qj)_cFLk;~Nw~cgcDpIkOZxzQ%*&)*SqytO7RA*mJH<3^F97 zsI8s@?G@^$#&XR6H}MM@!3tcpae)5%?=$J^cYz}j(kSHokk^<}!@YF*NGvRi;l{jv z+TDZjbN51eOKJ(0D=3lHGj$N3bCt|k*h{{*vGYX0L>ON(9$z2c$IpG33;nDMLGOxD znO*%{+op9`v`7l`+7#&J%SGlPY=5j8@Q728EyO)%GU2g*J&MX;%S-bY)S0 zDnDn=q+RgfjwO89W(PMcXj^?2lN`z7YTGwMmwztS3VK5Q zxBc{5buQ*TaU!ODp?E;^1#hL6OUo7HLH~;w=$q@~ongi`k+KE66wh{C`S7hx3r_?F zfr(E#=E~*3dG!a!9Z zR8>yHIyZHUs*-}-z0x@PJQEyJ=0dra81DIYiTo7ZPjV9CFj@WwKf2W&hWp~-bweRM zldK^J=5B;(2ZS-j*dH5MW_?_eCoVU<1J7)Bf-H=~dAm>2ljUbxuDVPj?wj+;{qd=! zbX*eTt|;R&-j)MNPQok2<<#+!ELcnC(d=XawyovJy4OyvCDDrJAH)UOJ?bEoOMN7( zX58aS9K@-*r6^np(}QW(*MNUf5Des|lic@OkaT)7=0z9c+GAyqAbp3tDyx7?P)tuw zF-2E@H8R`(YRkygDe#L1a(5?(fI_MQPI+<^f9Z%I(jruk@1}m97wIAWY_`{$fpvLN zsA{T!1A9)vnJ>9`?nfT>ObmpsC~v}DttY-q9B{a)lrx7Ca2GX(-N#GGHs&rd+?omA zkzKIo-6ANSV2JyJ_F&RF=D0i2KpVYvCn64dWHj1Efje2<$m1n&sJ^K}~V)yf1Ty9B6UN)jH_4Wvo|ez@V!cI
gT&e+l(8fDN#gjq7yCm>T0`8m_i-+&$ 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Ν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

^XNhHDcs8r#Mtjmw}v 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�f=6Zh5(Mmw)C~Gc7FO4_*EW`|I%JjfsJ|)b@M6c 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 O1fwjRai_mdhW`W7rYPY6 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/mnist_models/mnist-tf.model.index b/sdk/ml/azure-ai-ml/tests/test_configs/mnist_models/mnist-tf.model.index new file mode 100644 index 0000000000000000000000000000000000000000..5d7349858dac4833536ea34da7279935f2a2395c GIT binary patch literal 295 zcmZQzVB=tvV&Y(AU>D3V)KAJxEaqSoVijWMSi_{Tfzy<$+4BN3n^bmcQC?~eP=*UA zGl2~(t+0VpqhXt+=|PtFHyGJOj9{8sgqS!|6gKR))R@3*+S(pnj;x;(tQD-{z#&VG z11s50^*^T_Vc-_dFD)r3EkQPfOQGS7gNBCbq{maN*x4lDZr}iE2VyRT6+rm~@}@3j z=?@ryfDuH5vR-h4a}Io3xPgI@xq#s!SPo32J$rxj8Y9PJMt+bo{2=^yL$^w)`)vTi CsX@X3 literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/mnist_models/mnist-tf.model.meta b/sdk/ml/azure-ai-ml/tests/test_configs/mnist_models/mnist-tf.model.meta new file mode 100644 index 0000000000000000000000000000000000000000..79d058f6c0c811e8cd9d45141eb0b4ac99f3622a GIT binary patch literal 30157 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 ZvTELEDFa-?caP=r;N|iVxHdy8{|_-NIZFTl literal 0 HcmV?d00001 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/MLmodel b/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/MLmodel new file mode 100644 index 000000000000..8d49d714b79f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/MLmodel @@ -0,0 +1,31 @@ +artifact_path: lightgbm_artifact +flavors: + lightgbm: + data: model.lgb + lgb_version: 3.3.2 + model_class: lightgbm.basic.Booster + python_function: + data: model.lgb + env: conda.yaml + loader_module: mlflow.lightgbm + python_version: 3.6.2 +model_uuid: 8ee6617efea94d9ea288a55d248c9357 +run_id: light_gbm_job_c5847d643deb458081dad89401499ee4 +saved_input_example_info: + artifact_path: input_example.json + pandas_orient: split + type: dataframe +signature: + inputs: '[{"name": 1, "type": "double"}, {"name": 2, "type": "double"}, {"name": + 3, "type": "double"}, {"name": 4, "type": "double"}, {"name": 5, "type": "double"}, + {"name": 6, "type": "double"}, {"name": 7, "type": "double"}, {"name": 8, "type": + "double"}, {"name": 9, "type": "double"}, {"name": 10, "type": "double"}, {"name": + 11, "type": "double"}, {"name": 12, "type": "double"}, {"name": 13, "type": "double"}, + {"name": 14, "type": "double"}, {"name": 15, "type": "double"}, {"name": 16, "type": + "double"}, {"name": 17, "type": "double"}, {"name": 18, "type": "double"}, {"name": + 19, "type": "double"}, {"name": 20, "type": "double"}, {"name": 21, "type": "double"}, + {"name": 22, "type": "double"}, {"name": 23, "type": "double"}, {"name": 24, "type": + "double"}, {"name": 25, "type": "double"}, {"name": 26, "type": "double"}, {"name": + 27, "type": "double"}, {"name": 28, "type": "double"}]' + outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1]}}]' +utc_time_created: '2022-02-07 00:28:18.888542' diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/conda.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/conda.yaml new file mode 100644 index 000000000000..6f4e7707b791 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/conda.yaml @@ -0,0 +1,12 @@ +channels: +- conda-forge +dependencies: +- python=3.6.2 +- pip +- pip: + - mlflow + - lightgbm==3.3.2 + - matplotlib==3.3.4 + - pandas==1.1.5 + - typing-extensions==4.0.1 +name: mlflow-env diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/input_example.json b/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/input_example.json new file mode 100644 index 000000000000..76b08746e73a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/input_example.json @@ -0,0 +1 @@ +{"columns": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "data": [[0.8690000000000001, -0.635, 0.226, 0.327, -0.69, 0.754, -0.249, -1.092, 0.0, 1.375, -0.654, 0.93, 1.107, 1.139, -1.578, -1.047, 0.0, 0.6579999999999999, -0.01, -0.046, 3.102, 1.354, 0.98, 0.978, 0.92, 0.722, 0.9890000000000001, 0.877]]} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/model.lgb b/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/model.lgb new file mode 100644 index 000000000000..8b4d7c942a3f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/model.lgb @@ -0,0 +1,1113 @@ +tree +version=v3 +num_class=1 +num_tree_per_iteration=1 +label_index=0 +max_feature_idx=27 +feature_names=feature_0 feature_1 feature_2 feature_3 feature_4 feature_5 feature_6 feature_7 feature_8 feature_9 feature_10 feature_11 feature_12 feature_13 feature_14 feature_15 feature_16 feature_17 feature_18 feature_19 feature_20 feature_21 feature_22 feature_23 feature_24 feature_25 feature_26 feature_27 +feature_infos=[0.27500000000000002:6.6950000000000003] [-2.4169999999999998:2.4300000000000002] [-1.7430000000000001:1.7430000000000001] [0.019:5.7000000000000002] [-1.7430000000000001:1.7430000000000001] [0.159:4.1900000000000004] [-2.9410000000000003:2.9700000000000002] [-1.7409999999999999:1.7409999999999999] [0:2.173] [0.19:5.1929999999999996] [-2.9039999999999999:2.9089999999999998] [-1.742:1.7430000000000001] [0:2.2149999999999999] [0.26400000000000001:6.5229999999999997] [-2.7280000000000002:2.7269999999999999] [-1.742:1.742] [0:2.548] [0.36499999999999999:6.0679999999999996] [-2.4950000000000001:2.496] [-1.74:1.7430000000000001] [0:3.1019999999999999] -1:0:1:2:3:4:5:6:7 [0.41899999999999998:7.3920000000000003] [0.46100000000000002:3.6819999999999999] [0.38400000000000001:6.5829999999999993] [0.093000000000000013:7.8600000000000003] [0.38900000000000001:4.5430000000000001] [0.48899999999999999:4.3159999999999998] +tree_sizes=3314 3389 3375 3407 3397 3409 3385 3395 3381 3385 3388 3380 3396 3417 3401 3393 3385 3398 3406 3385 3392 3410 3397 3416 3401 3416 3428 3406 3410 3420 3375 3410 3413 3396 3388 3410 3391 3385 3393 3412 3416 3415 3417 3409 3423 3428 3426 3426 3428 3397 + +Tree=0 +num_leaves=31 +num_cat=0 +split_feature=25 26 25 25 26 5 5 26 24 22 3 3 25 17 25 22 18 10 3 26 24 25 25 22 3 5 23 17 26 9 +split_gain=266.972 161.884 88.7119 110.138 39.8945 34.5306 26.5703 26.2445 29.573 25.3185 23.7246 21.831 16.509 16.6855 16.2179 13.6181 13.7716 13.6165 13.4516 12.4386 17.3063 17.0968 13.3356 11.196 11.0778 13.3216 10.9691 10.9207 10.7372 10.1359 +threshold=1.2815000000000001 0.81150000000000011 0.63950000000000007 0.98450000000000015 1.0535000000000003 0.82050000000000012 0.89050000000000007 1.0095000000000003 1.2565000000000002 1.0355000000000001 1.3845000000000003 2.1315000000000004 1.5165000000000002 1.4605000000000001 0.58150000000000013 0.81650000000000011 -1.6684999999999999 0.57750000000000012 1.2635000000000003 0.76750000000000018 0.71850000000000014 0.96550000000000014 0.59250000000000014 0.99250000000000005 1.7525000000000002 1.5755000000000001 1.0045000000000002 1.3585000000000003 0.89450000000000018 0.74550000000000016 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 5 24 4 6 19 10 17 -9 15 -4 -6 -10 -14 27 -5 -17 23 -15 20 -1 22 -21 -2 25 -3 -26 -7 -12 -30 +right_child=7 2 3 9 11 14 -8 8 12 -11 28 -13 13 18 -16 16 -18 -19 -20 21 -22 -23 -24 -25 26 -27 -28 -29 29 -31 +leaf_value=0.10473213379579942 0.10390202173551703 0.11093071191763353 0.17038776104503722 0.1348990146779033 0.14999688899058278 0.097151697008377502 0.19051850705810588 0.055942313780633995 0.13028209560556006 0.1476523111906593 0.084006327802895242 0.076401568758401373 0.060415161615947344 0.17100477127190511 0.14539987821079181 0.17960901293367529 0.096190474358964759 0.067275857905008729 0.074446059289817235 0.085344765394726158 0.071241936600148048 0.058150147051616086 0.14740600320541253 0.15762039535359587 0.051699213517321305 0.17004874442059731 0.12337213932733408 0.17222153271902413 0.10775280120634706 0.19015827474120964 +leaf_weight=66.744487166404724 27.644171923398972 107.09003537893295 147.48539292812347 41.590781182050705 125.27043673396111 41.8398277759552 164.6447032392025 131.24755498766899 23.410379827022552 71.227325856685638 11.954236507415773 10.958050131797789 34.617476552724838 7.4713978171348554 57.280716598033905 5.2299784719943991 91.649146556854248 14.942795634269713 6.9733046293258667 12.45232969522476 91.400099962949753 10.958050131797789 28.391311705112457 14.942795634269713 14.444702446460726 10.459956943988798 8.4675841927528364 5.4790250658988944 7.7204444110393506 7.2223512232303619 +leaf_count=268 111 430 592 167 503 168 661 527 94 286 48 44 139 30 230 21 368 60 28 50 367 44 114 60 58 42 34 22 31 29 +internal_value=0.123666 0.134558 0.146189 0.153612 0.16693 0.104035 0.176113 0.0785199 0.0700984 0.123428 0.162512 0.144077 0.0957349 0.0792505 0.127506 0.110968 0.100694 0.108342 0.12439 0.0923418 0.0853764 0.113606 0.128485 0.122751 0.109992 0.116191 0.078187 0.105844 0.119326 0.147582 +internal_weight=0 1139.96 825.415 684.953 475.256 314.546 339.027 261.25 203.72 209.697 174.382 136.228 72.4726 49.0622 104.6 138.47 96.8791 57.5298 14.4447 209.946 158.145 51.8017 40.8436 42.587 140.462 117.55 22.9123 47.3189 26.897 14.9428 +internal_count=5626 4577 3314 2750 1908 1263 1361 1049 818 842 700 547 291 197 420 556 389 231 58 843 635 208 164 171 564 472 92 190 108 60 +is_linear=0 +shrinkage=1 + + +Tree=1 +num_leaves=31 +num_cat=0 +split_feature=27 26 24 22 5 5 3 22 27 26 27 26 5 22 24 22 3 26 24 22 22 24 24 18 0 3 23 10 23 9 +split_gain=175.45 200.718 85.8323 96.2613 42.5115 37.4717 27.1072 21.0724 16.5785 15.6373 15.142 22.6934 14.7163 14.5367 15.2598 14.196 14.0142 13.9612 13.0211 12.7925 15.3846 12.9139 12.4526 12.4088 11.9853 11.0827 11.8947 10.6482 10.6446 10.0452 +threshold=0.90250000000000019 0.81150000000000011 1.0265000000000002 1.0485000000000004 0.82050000000000012 0.89350000000000007 2.0310000000000001 1.0605000000000002 1.0175000000000003 1.3665 0.84050000000000014 0.90150000000000008 1.3665 0.78450000000000009 0.73950000000000016 1.5530000000000002 0.77350000000000019 0.77250000000000008 0.82250000000000012 1.0465000000000002 0.76250000000000007 1.2285000000000001 0.71850000000000014 -0.78599999999999992 0.78550000000000009 0.60050000000000014 0.99650000000000005 0.027500000000000004 0.98250000000000004 0.70250000000000012 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 4 3 13 17 7 19 10 -8 18 24 -12 16 -2 -15 -11 -6 22 -5 20 -4 -22 -1 -18 28 26 -7 -25 -3 -19 +right_child=2 5 6 9 12 25 8 -9 -10 15 11 -13 -14 14 -16 -17 23 29 -20 -21 21 -23 -24 27 -26 -27 -28 -29 -30 -31 +leaf_value=-0.019910159239266027 -0.023697882507051383 0.06525977613058391 0.02723217014249233 0.033730365009801026 0.023125210085003109 0.042324471150136586 0.033413816430218464 0.053600842889173578 -0.059252509902990927 -0.074277188806634545 -0.055443120582032483 0.01426839500869443 0.054233424004807032 -0.036753296581159271 -0.08147321979159737 -0.0088158679561044836 0.04556103850849369 0.022986258239309464 -0.0095649217649724921 0.012673940116687116 -0.034769167637352036 -0.0039935837881302999 -0.048358550117740734 -0.060280751439139406 0.035984843865143661 0.057552053172735887 -0.014489579037012099 -0.0031444752668367509 0.00093193859846015198 -0.02512969923573662 +leaf_weight=66.565743073821068 16.443395003676414 7.2069850116968146 27.114527136087418 28.357299566268921 39.574592471122742 66.847064524888992 5.7279071658849707 44.481815651059151 30.673014372587204 13.220036730170248 16.68519452214241 38.872636377811432 16.425128370523453 23.170625582337379 107.94758550822735 22.172678172588348 6.2213206589221945 18.92492139339447 44.805572256445885 133.61778709292412 49.330528363585472 110.30743342638016 91.1268270611763 16.184862494468689 87.266212463378906 158.9695125669241 10.68516646325588 16.434708327054977 59.719476118683815 25.413844645023346 +leaf_count=267 66 29 109 114 159 269 23 179 123 53 67 156 66 93 433 89 25 76 180 537 198 443 365 65 351 640 43 66 240 102 +internal_value=0 0.0160358 -0.0196373 -0.0417215 -0.0164166 0.0356681 -0.0037837 0.0223421 -0.0446709 -0.00598291 0.015713 -0.00666745 0.0111988 -0.068013 -0.0735705 -0.0332673 0.0021846 -0.0293802 0.00721596 0.000861965 -0.00758927 -0.0135037 -0.0363498 -0.0191516 0.023777 0.0499931 0.0344946 -0.0314938 0.00785909 -0.00459258 +internal_weight=0 787.606 612.888 256.117 296.872 490.734 356.771 254.232 36.4009 108.556 209.751 55.5578 94.8406 147.562 131.118 35.3927 78.4155 202.031 73.1629 320.37 186.752 159.638 157.693 38.8409 154.193 236.502 77.5322 32.6196 66.9265 44.3388 +internal_count=5626 3165 2461 1028 1191 1974 1433 1022 146 436 843 223 381 592 526 142 315 810 294 1287 750 641 632 156 620 952 312 131 269 178 +is_linear=0 +shrinkage=0.05 + + +Tree=2 +num_leaves=31 +num_cat=0 +split_feature=25 26 27 22 24 5 25 25 5 27 24 27 25 25 25 25 10 9 4 26 27 25 26 25 3 3 17 22 5 6 +split_gain=234.089 135.839 155.553 46.9592 78.7452 40.8003 30.9772 31.2337 27.8617 25.8349 31.1945 24.7571 20.1577 17.4254 20.9395 17.2198 16.5535 16.2833 18.2107 15.8009 22.4983 14.3493 13.9226 13.6289 14.0721 13.4962 18.0757 13.0927 13.0694 12.9436 +threshold=1.2815000000000001 0.81150000000000011 0.90450000000000019 1.0485000000000004 1.0515000000000001 0.88150000000000006 1.0975000000000001 0.66550000000000009 0.82050000000000012 0.89550000000000007 1.2485000000000002 0.9195000000000001 0.69450000000000012 0.6905 1.0455000000000003 1.4755000000000003 1.1075000000000002 1.2815000000000001 1.5885000000000002 0.86950000000000016 0.79950000000000021 0.62350000000000005 0.9295000000000001 0.99250000000000005 1.6895000000000002 1.8975000000000002 1.4605000000000001 0.96950000000000014 1.3665 -1.6799999999999999 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 8 5 4 -4 6 7 -3 -1 16 -11 28 -5 -7 -15 -12 27 18 29 20 -9 -6 -8 24 -23 26 -17 -2 -10 -14 +right_child=9 2 3 12 21 13 22 19 11 10 15 -13 17 14 -16 25 -18 -19 -20 -21 -22 23 -24 -25 -26 -27 -28 -29 -30 -31 +leaf_value=-0.028190108867329911 -0.026950695497657259 -0.0043241769052423428 -0.056276947962248892 -0.013314521779282475 -0.028449749384381818 0.027085509316415179 -0.058064903426012199 0.041040290849798579 0.002716097983878011 -0.066851573306516629 0.012155542345431375 -0.07252758103047828 -0.049432273066169062 0.072814083478818042 0.025106680933843335 -0.049977192408206847 -0.096494213622447964 0.053138887030797527 -0.063895177302219094 0.054668231149969583 -0.034108976592563782 0.038317995563491053 0.02607387878435424 -0.0086218081597936088 -0.014945966618889812 -0.1008899071784401 0.02221799903261918 0.020283718860067294 0.051854056424342515 0.026906047589601103 +leaf_weight=210.44404472410679 35.860316902399063 43.292517423629761 80.620285928249359 40.059910580515862 25.427538216114044 37.169033393263817 14.436601489782335 36.665720671415329 78.377416357398033 122.19474814832211 21.406584590673447 9.7362321615219098 5.9643064290285102 139.36965009570122 27.546443819999695 31.709014192223549 5.7353495061397544 41.494111105799675 6.7055688798427573 105.60388328135014 13.673754647374151 55.905886828899384 7.4558279216289511 44.859951883554459 15.934719130396841 7.997947469353675 11.932625591754912 24.828264117240906 16.355878353118896 80.476938396692276 +leaf_count=843 144 174 323 161 102 150 58 148 315 489 86 39 24 565 111 127 23 167 27 426 55 225 30 180 64 32 48 100 66 324 +internal_value=0 0.0102145 0.0209044 -0.00158409 -0.0168046 0.0419246 0.0270453 0.0332488 -0.0177115 -0.0422353 -0.0513992 0.00339672 0.0178225 0.0580464 0.0649409 -0.0255498 -0.0152999 0.0270867 0.0154813 0.0436797 0.0206274 0.00558553 -0.0294101 0.0130014 0.0265037 -0.04118 -0.0302374 -0.00762666 0.0111999 0.0216388 +internal_weight=0 1137.58 822.663 397.449 222.748 425.213 221.128 199.236 314.914 261.665 195.241 104.47 174.701 204.085 166.916 73.0462 66.4239 134.641 93.1468 155.943 50.3395 142.128 21.8924 116.701 71.8406 51.6396 43.6416 60.6886 94.7333 86.4412 +internal_count=5626 4577 3314 1597 894 1717 891 803 1263 1049 782 420 703 826 676 293 267 542 375 629 203 571 88 469 289 207 175 244 381 348 +is_linear=0 +shrinkage=0.05 + + +Tree=3 +num_leaves=31 +num_cat=0 +split_feature=25 26 27 26 22 24 25 25 25 25 5 27 27 24 27 25 9 26 25 10 9 4 25 3 24 22 25 3 17 3 +split_gain=211.433 123.725 127.444 49.9035 45.5395 72.6145 42.806 30.3149 27.6332 34.8072 26.0272 24.7136 23.3592 28.1915 19.9131 18.3205 18.3134 17.7827 15.5367 14.8918 14.8241 16.4092 14.3532 13.154 13.0145 12.7857 12.5385 12.2268 16.2899 11.9061 +threshold=1.2815000000000001 0.77650000000000008 0.90450000000000019 0.87350000000000017 1.0485000000000004 1.0435000000000001 0.94550000000000012 0.62350000000000005 0.6785000000000001 0.98450000000000015 0.85250000000000015 0.79950000000000021 0.89550000000000007 1.2485000000000002 0.9195000000000001 0.69450000000000012 0.68950000000000011 0.95850000000000013 1.4755000000000003 1.1075000000000002 1.2815000000000001 1.5885000000000002 0.62350000000000005 0.62350000000000005 0.71850000000000014 1.0865000000000002 0.99250000000000005 1.8975000000000002 1.4605000000000001 0.77350000000000019 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 10 3 6 5 -4 7 23 16 -10 24 -9 19 -14 29 -6 -5 -11 -15 -2 21 -17 -7 -3 25 -1 -24 28 -20 -12 +right_child=12 2 4 8 15 22 -8 11 9 17 14 -13 13 18 -16 20 -18 -19 27 -21 -22 -23 26 -25 -26 -27 -28 -29 -30 -31 +leaf_value=-0.022978969083944738 -0.0072432333313133526 0.035261710709361613 -0.053980515808016688 -0.034677335958015094 -0.012532325623158626 -0.028606170105150455 -0.027679728139194445 0.055770119217742053 0.06719356539795604 -0.0024112876661181557 0.035680200024414709 0.0012876873788086832 -0.063547691673025375 0.011557564865189865 -0.077579473954648329 0.020597972070754797 0.035659029913811049 0.050268006367344659 -0.047424360336478719 -0.091437836301262593 0.050729477136987881 -0.060448549887634609 0.024847428759146618 -0.023355716470829624 -0.043439496534882452 0.044855218834379249 -0.0087078390294386774 -0.096007867055522556 0.021143767960760628 -0.0075107959061050311 +leaf_weight=67.925871402025223 60.69820947945118 13.680421739816664 83.953020080924034 14.147823691368101 40.591542139649391 26.706863701343536 42.70827428996563 85.817271396517754 177.2236180305481 31.718081951141357 30.025202438235283 27.479281172156334 122.12108045816422 21.38888992369175 6.7470125108957282 86.275848627090454 26.756416887044907 32.367866933345795 31.744007185101509 5.7493929564952841 41.296565666794777 6.7327313423156729 72.666586309671402 31.859358593821526 101.47815050184727 7.7378442436456671 45.129340752959251 7.9845870137214652 11.912449091672896 34.051478445529938 +leaf_count=272 244 55 336 57 163 107 172 348 723 128 121 111 489 86 27 348 108 131 127 23 167 27 293 128 406 31 181 32 48 137 +internal_value=0 0.00972911 0.0184567 0.0357615 -0.00229784 -0.0169976 0.0167584 0.028707 0.0493327 0.0557743 -0.0214942 0.0425558 -0.0401333 -0.0488517 0.00412463 0.0169035 0.0113313 0.0241954 -0.024277 -0.0145282 0.0258 0.0147312 0.00448862 -0.00574669 -0.031737 -0.0160418 0.0119919 -0.039119 -0.0287143 0.0127277 +internal_weight=0 1135.08 887.111 483.758 403.352 228.456 201.545 158.836 282.214 241.31 247.966 113.297 261.599 195.151 70.8237 174.897 40.9042 64.0859 73.0299 66.4476 134.305 93.0086 144.503 45.5398 177.142 75.6637 117.796 51.641 43.6565 64.0767 +internal_count=5626 4577 3583 1961 1622 917 814 642 1147 982 994 459 1049 782 285 705 165 259 293 267 542 375 581 183 709 303 474 207 175 258 +is_linear=0 +shrinkage=0.05 + + +Tree=4 +num_leaves=31 +num_cat=0 +split_feature=25 25 25 26 3 5 5 9 0 13 25 26 13 22 0 1 6 5 22 10 13 9 15 5 5 12 3 8 19 14 +split_gain=191.214 112.561 77.5755 88.2247 30.0694 26.2358 25.3096 21.0522 21.0403 19.9485 19.2707 17.1885 16.7213 16.1362 14.7504 13.7311 13.103 12.8096 14.056 12.6587 12.211 12.1902 11.7911 11.6076 11.3152 11.0137 10.8095 10.7725 10.6727 10.6384 +threshold=1.2815000000000001 0.62350000000000005 0.98450000000000015 0.77650000000000008 1.5465000000000002 1.1815000000000002 0.82050000000000012 0.90750000000000008 1.3285000000000002 0.93650000000000011 1.8760000000000003 1.1705000000000003 0.73250000000000004 1.0265000000000002 1.0575000000000003 0.68150000000000011 1.0625000000000002 0.7945000000000001 1.6755000000000002 0.68250000000000011 1.0675000000000001 1.0415000000000003 0.45350000000000001 0.63450000000000017 0.82550000000000001 1.6610000000000003 1.8795000000000002 1.6300000000000001 0.96950000000000014 0.79900000000000004 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 9 3 6 8 7 29 20 17 21 14 27 -6 -13 19 -10 -17 -5 -19 26 -4 25 -8 -22 -14 -1 -2 -7 -23 -3 +right_child=10 2 5 4 12 11 22 -9 15 -11 -12 13 24 -15 -16 16 -18 18 -20 -21 23 28 -24 -25 -26 -27 -28 -29 -30 -31 +leaf_value=-0.023561722280396949 -0.0072376902964948892 -0.043881200972509631 -0.043025894249657269 0.034618103557024764 0.04043733115235254 0.022680405216823948 0.047500306410840513 0.0043438416713098742 0.031676951376856631 0.00059051987428686628 -0.05964658099483329 -0.05265314598075449 -0.040594483436299622 0.027422922485433543 -0.05084732957422964 -0.031084820943574822 0.050504046732961452 0.057547480882572499 -0.0050566892624578788 -0.049295756990860168 -0.061918341166512229 0.018907046463991713 -0.018767012241604101 0.0082364341622938927 0.0084849709472033692 -0.051493567739211855 -0.069771498549200825 0.080488662350046758 -0.043667192197179003 0.0039318240466380185 +leaf_weight=100.51251326501369 93.101828694343567 51.967129811644554 66.382849350571632 128.47966983914375 24.40949672460556 19.299394488334656 18.0850123167038 76.399753049015999 80.729715198278427 95.123431876301765 74.697952061891556 11.222612723708155 18.871736317873001 14.317258775234221 56.774984419345856 19.22501923143864 6.6138954013586035 197.9069072753191 9.3913969993591291 29.159302741289139 7.4816591143608084 22.884819969534874 10.674900740385054 27.821869552135468 31.091552272439003 54.388510063290596 7.4646407216787329 13.836714580655096 9.7037457227706891 14.98956425487995 +leaf_count=403 374 208 267 522 99 78 73 308 329 382 300 45 76 58 228 78 27 810 38 117 30 92 43 112 126 218 30 56 39 60 +internal_value=0 0.00927359 0.01837 0.0277662 0.0359339 -0.00593541 -0.0163267 -0.0154892 0.0408796 -0.0180593 -0.0381871 0.0230611 0.00651821 -0.00776373 -0.0295921 0.0215232 -0.0102008 0.047023 0.0547113 -0.0202897 -0.0303903 -0.0275213 0.0229037 -0.00663103 -0.0100529 -0.0333691 -0.0118793 0.0468195 0.000274606 -0.0331773 +internal_weight=0 1131.81 849.198 612.436 516.719 236.762 95.7166 178.086 442.347 282.613 261.199 58.676 74.3728 25.5399 186.501 106.569 25.8389 335.778 207.298 129.726 101.686 187.49 28.7599 35.3035 49.9633 154.901 100.566 33.1361 32.5886 66.9567 +internal_count=5626 4577 3443 2489 2105 954 384 717 1804 1134 1049 237 301 103 749 434 105 1370 848 521 409 752 116 142 202 621 404 134 131 268 +is_linear=0 +shrinkage=0.05 + + +Tree=5 +num_leaves=31 +num_cat=0 +split_feature=27 26 24 22 5 5 22 27 24 24 22 22 24 26 9 26 27 24 27 24 13 22 23 0 27 22 22 22 0 24 +split_gain=112.485 137.579 66.5839 52.8847 29.2957 28.1918 17.7309 17.8056 16.2783 16.2201 15.5517 16.6477 14.2658 14.1314 12.8217 11.6348 11.283 13.7076 11.2631 11.2279 12.499 11.0915 12.9762 10.3068 10.2683 10.379 9.79611 12.3166 9.50698 9.28433 +threshold=0.90450000000000019 0.81150000000000011 0.99350000000000016 1.0215000000000003 0.89350000000000007 0.94650000000000012 1.0575000000000003 0.82250000000000012 0.79950000000000021 1.0405000000000002 1.0285000000000004 0.76250000000000007 1.6850000000000003 0.72850000000000015 1.1665000000000003 0.83850000000000013 1.1775000000000002 1.2895000000000003 1.0885000000000002 0.73550000000000015 0.78850000000000009 0.73150000000000015 1.2665000000000004 1.6205000000000003 0.72450000000000014 0.83150000000000013 0.71350000000000013 0.94750000000000012 1.2835000000000003 1.2685000000000002 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 5 3 18 6 13 7 15 23 -9 11 -4 -12 14 21 -3 -13 -18 19 20 -2 -1 -23 -5 -15 -26 -6 29 -19 -28 +right_child=2 4 10 8 26 -7 -8 9 -10 -11 12 16 -14 24 -16 -17 17 28 -20 -21 -22 22 -24 -25 25 -27 27 -29 -30 -31 +leaf_value=0.0018557580425779905 -0.067986522113801864 -0.0055734275924186408 0.023291562518740951 0.022400831765324487 0.071311921895011163 0.016834558406398872 0.04491701594191596 -0.029625469453630617 -0.026897564153626846 0.018836155013908451 0.015773436528683394 -0.0091391405863746021 -0.021673895799074493 0.0099703497655182546 0.046728998795147546 0.029952093721778091 -0.071754545772116055 -0.0058311805214278194 -0.079924500719498873 -0.056926644137126614 0.032882938099840629 -0.044314269477846044 0.03623008643435021 -0.052793214987311612 0.02260533002802087 -0.032055748690162145 0.022081983829822047 0.05117690659541213 -0.065986886739909753 0.07467153942352929 +leaf_weight=17.72561302781105 4.9906729757785779 29.847242787480354 28.468253001570702 35.888407945632935 25.568432718515396 59.874139875173569 47.406211718916893 41.073965817689896 68.962712779641151 29.788325309753418 132.16418805718422 117.71126833558083 31.493206337094307 46.287696450948715 4.9845602661371222 101.16014723479748 18.404654830694199 29.580466419458389 44.507042661309242 63.951665997505188 7.984620064496994 109.59100048243999 5.2396245300769797 5.2200306206941596 10.700531899929045 46.091507241129875 96.764396071434021 98.914881274104118 8.442473888397215 9.1895262598991376 +leaf_count=71 20 121 115 145 106 242 194 166 278 121 534 474 127 186 20 412 74 119 179 257 32 439 21 21 43 185 397 407 34 38 +internal_value=0 0.0126616 -0.0161632 -0.0371529 0.0292793 -0.0138669 0.0173993 0.0109371 -0.012052 -0.00925369 -0.00289628 -0.0121561 0.00856731 -0.0215065 -0.0319963 0.0218584 -0.0179511 -0.0363333 -0.0599049 -0.0483224 -0.00591437 -0.0349566 -0.0406391 0.0128525 -0.00750976 -0.0217567 0.0421305 0.0384886 -0.0191879 0.0266431 +internal_weight=0 780.208 597.77 231.505 479.713 300.495 249.276 201.87 110.071 70.8623 366.265 202.607 163.657 240.621 137.541 131.007 174.139 56.4276 121.434 76.927 12.9753 132.556 114.831 41.1084 103.08 56.792 230.437 204.869 38.0229 105.954 +internal_count=5578 3169 2409 932 1962 1207 1014 820 444 287 1477 816 661 965 551 533 701 227 488 309 52 531 460 166 414 228 948 842 153 435 +is_linear=0 +shrinkage=0.05 + + +Tree=6 +num_leaves=31 +num_cat=0 +split_feature=25 26 27 25 25 25 26 25 24 5 24 27 5 24 0 5 24 9 7 13 18 24 17 25 3 27 9 5 24 2 +split_gain=195.06 122.332 93.5462 37.4682 31.8087 31.6167 31.5946 27.8562 23.4066 20.9967 19.9005 17.6704 24.8222 14.7201 14.1002 15.7783 13.5334 13.4817 12.2284 12.0552 11.7857 11.7206 11.6333 12.7044 11.1262 11.0203 10.5516 10.5009 11.0897 10.3636 +threshold=1.0675000000000001 0.79050000000000009 0.90450000000000019 0.64950000000000008 0.68650000000000011 1.5585000000000002 0.85650000000000015 0.89550000000000007 1.0265000000000002 1.3365000000000002 1.0435000000000001 0.9405 0.88650000000000007 0.75450000000000006 1.6975000000000002 1.4685000000000004 0.73550000000000015 1.6725000000000001 1.3325000000000002 0.9405 -0.56749999999999989 0.75750000000000017 0.61350000000000005 0.94150000000000011 1.8335000000000004 0.78650000000000009 0.88050000000000006 1.1045000000000003 1.7695000000000003 -1.3964999999999996 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 9 4 17 19 10 7 20 13 16 11 12 -2 -5 15 29 22 -4 26 21 -6 -3 -1 -24 -7 -9 -12 -10 -29 -15 +right_child=5 2 3 8 6 24 -8 25 27 -11 18 -13 -14 14 -16 -17 -18 -19 -20 -21 -22 -23 23 -25 -26 -27 -28 28 -30 -31 +leaf_value=-0.031915977425012204 -0.039423856003627716 0.041454586694434595 -0.03521616550388814 0.029641535482185538 0.0065552368980598616 -0.043342026954025371 0.056640182423539388 0.0019071864168167065 0.013957748102680934 0.036171740136895489 -0.028338709152202907 -0.054062658543288344 0.011693483742406642 0.040647237622715451 -0.071608205758749183 0.053756187682284143 -0.032514821504403234 0.035563488016867609 0.052119338974227485 0.041712573105434574 0.056890323163507221 -0.0082178492358165808 0.0060799627388417633 -0.069428268802176576 -0.089441589786200093 -0.066356330309635808 0.0067673456491376812 0.051450226676673719 -0.0061312291487980808 -0.02694439039490832 +leaf_weight=38.90173502266407 55.941954582929611 15.266997426748274 67.809079229831696 21.008513912558556 17.307536974549294 132.53962506353855 222.71993201971054 15.943509086966516 89.823914349079132 17.431778863072395 35.322476476430893 51.003891453146935 41.268672615289688 6.4359720051288596 10.451553180813788 8.6653027832508069 121.55202533304691 7.4687486737966529 9.6686866879463178 28.050298452377319 35.446651190519333 53.461716875433922 81.744765341281891 5.9780506640672675 14.522779390215872 9.3969088047742826 54.319409891963005 47.463399440050125 10.149839341640471 47.716902077198029 +leaf_count=156 225 62 272 85 71 534 928 65 364 71 142 206 167 26 42 35 488 30 39 114 146 216 328 24 59 38 219 193 41 192 +internal_value=0 0.0121009 0.0228699 0.00260943 0.0390232 -0.0295327 0.0470449 0.0196798 0.0122025 -0.016872 -0.0186234 -0.0302283 -0.0177231 -0.00725488 -0.0178341 -0.00888731 -0.0205977 -0.0281937 -0.00130368 0.0140898 0.0403764 0.0028161 -0.009158 0.0009343 -0.0478945 -0.0234068 -0.00706584 0.0246445 0.041306 -0.0189112 +internal_weight=0 980.195 714.587 316.993 397.594 394.587 300.815 78.0946 241.715 265.608 247.525 148.215 97.2106 94.2782 73.2697 62.8182 248.177 75.2778 99.3106 96.779 52.7542 68.7287 126.625 87.7228 147.062 25.3404 89.6419 147.437 57.6132 54.1529 +internal_count=5578 3987 2920 1280 1640 1591 1248 320 978 1067 998 598 392 380 295 253 996 302 400 392 217 278 508 352 593 103 361 598 234 218 +is_linear=0 +shrinkage=0.05 + + +Tree=7 +num_leaves=31 +num_cat=0 +split_feature=25 26 27 25 25 25 22 5 27 5 22 9 26 27 19 9 22 3 5 0 5 10 27 14 3 9 25 3 9 10 +split_gain=176.55 110.96 85.5057 33.853 30.0002 28.7691 28.3912 21.9611 20.1295 25.2526 19.4851 19.4435 13.7556 28.3632 12.4146 12.1715 11.2834 10.3822 10.3327 10.314 16.6629 14.0102 11.6225 11.289 9.9174 13.6551 10.1215 9.36328 9.3378 9.22055 +threshold=1.0675000000000001 0.79050000000000009 0.90450000000000019 0.64950000000000008 0.52350000000000019 1.5585000000000002 1.0265000000000002 0.88150000000000006 1.0545000000000002 0.89650000000000007 1.0515000000000001 0.99050000000000005 0.89250000000000018 0.82250000000000012 1.4500000000000004 1.6725000000000001 0.77550000000000008 1.8335000000000004 1.0025000000000002 1.0575000000000003 1.1275000000000002 -0.85299999999999987 1.0885000000000002 -0.77949999999999997 0.46150000000000008 0.6735000000000001 0.60450000000000015 1.3425000000000002 0.86550000000000005 0.21650000000000005 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 11 4 15 -3 6 8 12 9 -2 19 14 13 28 24 -4 -11 -7 29 20 21 -5 23 -21 25 -1 -27 -23 -6 -13 +right_child=5 2 3 10 7 17 -8 -9 -10 16 -12 18 -14 -15 -16 -17 -18 -19 -20 22 -22 27 -24 -25 -26 26 -28 -29 -30 -31 +leaf_value=0.028640583157163974 -0.04302399905646468 -0.005389620366443167 -0.033459026298851967 -0.051822207910879506 0.018444181136596609 -0.041283889000619724 0.0059398760691592003 0.055193611116796097 -0.061797566919008645 0.042286717013245864 0.027035983928207354 -0.027806342521490592 0.045521955072919118 -0.03320253098992923 -0.062623227804482914 0.033852570345690523 -0.0090874822738162709 -0.086075224746442136 0.040780815055802833 -0.047573431637427853 0.047357018244894598 0.029683082922098692 -0.051354842368961387 0.016056088299353021 -0.024567714151134033 0.016143132701942741 -0.060494345333766068 -0.016639385177462031 0.0522401236823576 0.030098484345289413 +leaf_weight=22.914329901337624 61.689603552222252 37.14466118812561 67.801655501127243 12.148322135210035 54.108448147773743 132.19823358952999 83.868305191397667 165.16049672663212 37.870305716991425 13.572033554315565 110.80884145200253 18.443714976310734 83.933271646499634 21.271060690283775 17.673215389251709 7.4542700499296179 50.292452931404114 14.340716689825056 19.410915330052376 9.670837849378584 21.633985266089439 24.225298121571541 17.872281849384308 24.966303244233131 158.12050122022629 7.2129099518060711 10.698387175798414 19.845874086022377 32.845986157655716 10.960425019264219 +leaf_count=92 248 150 272 49 222 534 339 698 153 55 451 74 349 86 71 30 203 59 79 39 88 98 72 101 635 29 43 80 135 44 +internal_value=0 0.0115465 0.0218464 0.00248518 0.0373774 -0.028112 -0.0177093 0.0418232 -0.0298459 -0.0202084 0.0116208 -0.0160388 0.0303313 0.0185503 -0.0224628 -0.0267917 0.0018302 -0.0456673 0.0124681 -0.00148214 0.010068 -0.00428133 -0.018607 -0.00170955 -0.0188952 0.00307471 -0.0296323 0.00882342 0.0312102 -0.00622226 +internal_weight=0 976.326 710.892 316.428 394.464 393.832 247.293 357.319 163.424 125.554 241.172 265.434 192.159 108.225 216.619 75.2559 63.8645 146.539 48.8151 130.363 77.8535 56.2195 52.5094 34.6371 198.946 40.8256 17.9113 44.0712 86.9544 29.4041 +internal_count=5578 3987 2920 1280 1640 1591 998 1490 659 506 978 1067 792 443 870 302 258 593 197 527 315 227 212 140 799 164 72 178 357 118 +is_linear=0 +shrinkage=0.05 + + +Tree=8 +num_leaves=31 +num_cat=0 +split_feature=25 26 27 25 26 25 25 22 24 22 25 27 5 5 25 24 13 9 17 22 4 22 4 23 3 3 24 5 24 22 +split_gain=159.87 100.675 78.2063 30.598 28.0177 28.3469 26.2384 25.6738 21.1064 36.5322 19.9848 18.3391 22.2416 17.9141 15.2078 11.9779 11.8287 10.9951 10.3398 15.0444 10.2173 10.9881 9.98549 9.81029 9.79813 9.76345 9.7256 9.57319 9.55803 14.6921 +threshold=1.0675000000000001 0.79050000000000009 0.90450000000000019 0.64950000000000008 0.85650000000000015 0.68650000000000011 1.5585000000000002 1.0265000000000002 1.0265000000000002 1.0605000000000002 0.89550000000000007 1.0475000000000001 0.89650000000000007 1.3365000000000002 0.52350000000000019 0.73550000000000015 0.9405 1.6725000000000001 0.61350000000000005 0.73150000000000015 1.4285000000000003 0.77550000000000008 -1.2844999999999998 1.1525000000000003 1.5655000000000001 1.8335000000000004 1.6165 0.87650000000000006 0.73250000000000004 0.8015000000000001 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 13 4 17 10 16 7 11 9 28 14 12 -2 15 -3 18 -6 -4 22 -20 21 -14 -1 -12 -10 -8 -13 -7 -5 -30 +right_child=6 2 3 8 5 27 25 -9 24 -11 23 26 20 -15 -16 -17 -18 -19 19 -21 -22 -23 -24 -25 -26 -27 -28 -29 29 -31 +leaf_value=0.034842212430321713 -0.040562842053157064 -0.01565430951082138 -0.031807980389737207 0.0082377371854935703 -0.002818061978865504 0.041824175183862673 -0.039353137885910744 0.0056448510263721174 0.030145275949924832 0.023429074040196042 -0.008049447579027303 -0.072480144928201803 0.036445928737503866 0.033931575681569542 0.035781594856720084 -0.029911858698728866 0.049555117913580631 0.032240119052204336 0.067013535461175444 -0.0049649900861844292 0.062820152307910312 -0.016512575694568842 -0.03938498392099591 -0.085492683687094395 -0.00020445041069041224 -0.083107132139189743 -0.013668122536714565 0.062813991103676595 0.020350882787430136 -0.063665604685019181 +leaf_weight=5.2361049503087989 61.135117098689079 17.640888065099716 67.755998700857162 8.7287861257791501 38.103665769100189 104.50977948307991 131.76095201075077 83.839789822697639 111.7398374080658 47.468321084976196 20.129164248704914 29.477953240275383 12.550292789936064 17.306021884083748 77.517718732357025 121.31065189838409 15.034950926899908 7.4361888617277137 7.9870034754276267 79.702208608388901 6.174235224723815 44.609063774347305 33.640922084450722 5.1319371759891501 34.899170964956284 14.115856304764746 9.2307115942239744 113.1206993162632 6.2308671474456778 31.558159992098808 +leaf_count=21 246 71 272 35 155 439 534 339 457 193 82 120 51 71 321 488 62 30 32 320 25 180 135 21 141 59 37 489 25 127 +internal_value=0 0.0110207 0.0208748 0.00236698 0.0358166 0.0447403 -0.026773 -0.0168434 0.0110669 -0.00743005 0.0157514 -0.0283978 -0.0190502 -0.0152514 0.0262462 -0.0186852 0.0120003 -0.0254739 -0.00792465 0.00159104 0.00171572 -0.00488465 -0.0293878 -0.0237825 0.0229222 -0.043587 -0.0584555 0.0527343 -0.0389197 -0.0498125 +internal_weight=0 972.189 707.006 315.817 391.189 270.769 392.894 247.017 240.625 93.9861 120.42 163.177 124.469 265.183 95.1586 247.877 53.1386 75.1922 126.566 87.6892 63.3336 57.1594 38.877 25.2611 146.639 145.877 38.7087 217.63 46.5178 37.789 +internal_count=5578 3987 2920 1280 1640 1145 1591 998 978 380 495 659 502 1067 392 996 217 302 508 352 256 231 156 103 598 593 157 928 187 152 +is_linear=0 +shrinkage=0.05 + + +Tree=9 +num_leaves=31 +num_cat=0 +split_feature=25 26 27 25 26 25 25 22 24 22 25 9 27 5 25 24 4 22 22 13 17 13 9 27 19 9 3 5 24 22 +split_gain=144.88 91.4108 71.5839 27.6728 25.9712 26.3808 23.953 23.4351 19.1192 33.1814 18.105 17.0938 14.4031 19.6307 13.8345 12.2135 11.2716 10.828 14.46 10.7901 10.7076 10.207 9.93729 9.403 9.2602 9.37738 9.24172 9.1545 9.14466 14.1405 +threshold=1.0675000000000001 0.79050000000000009 0.90450000000000019 0.64950000000000008 0.85650000000000015 0.68650000000000011 1.5585000000000002 1.0065000000000002 1.0265000000000002 1.0515000000000001 0.89550000000000007 1.1475000000000002 1.0655000000000001 0.88650000000000007 0.52350000000000019 0.73550000000000015 1.4285000000000003 1.0705000000000002 0.73150000000000015 0.9405 0.61750000000000005 0.84050000000000014 1.6725000000000001 0.78650000000000009 1.0525000000000002 1.4815000000000003 1.8335000000000004 0.87650000000000006 0.73250000000000004 0.8015000000000001 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 11 4 22 10 19 7 12 9 28 14 15 13 21 -3 17 24 18 20 -6 -1 -2 -4 -12 25 -15 -8 -7 -5 -30 +right_child=6 2 3 8 5 27 26 -9 -10 -11 23 -13 -14 16 -16 -17 -18 -19 -20 -21 -22 -23 -24 -25 -26 -27 -28 -29 29 -31 +leaf_value=-0.015686008958394497 -0.066003523099496461 -0.014858991172972506 -0.030253345371219261 0.0078262164177316882 -0.0026763084481383898 0.040116643052977352 -0.037536595669790312 0.003820314229153879 0.021852382991634924 0.021448163069045418 0.00091985505372128981 0.023350813597108527 -0.056847037956976577 0.011121273457745745 0.034211643073258795 -0.030182608220369663 0.062363963171904652 0.028370066715548904 -0.021977273678978969 0.047499082090815374 0.066161508492928109 -0.023247740294464501 0.030717409724918172 -0.062115752841109317 -0.048482281940180283 -0.057578556993570229 -0.080473275949499878 0.060781260066106714 0.019334183201742492 -0.063460033072101477 +leaf_weight=7.227047652006152 23.838900625705719 17.655457630753517 67.677808821201324 8.7283862680196744 38.115468755364418 103.53531043231487 131.24364191293716 92.73846647143364 146.14406068623066 48.82352751493454 15.899222418665888 26.801587328314781 33.773535862565041 39.308198720216751 77.033675760030746 118.09562779963017 6.4015009105205527 17.872832581400871 85.937645986676216 14.904786452651022 8.9378028362989408 33.679899945855141 7.4151082038879386 9.4220006912946683 11.137783944606779 5.685652643442153 13.855514720082281 111.10987973213196 6.2305966168642035 29.931840732693672 +leaf_count=29 96 71 272 35 155 439 534 375 598 199 65 109 138 159 321 476 26 72 345 62 36 136 30 38 45 23 59 489 25 121 +internal_value=0 0.0105255 0.0199618 0.00225547 0.0343465 0.0430121 -0.0255181 -0.0160325 0.0105482 -0.00708031 0.0150193 -0.014506 -0.0280014 -0.0198865 0.0250621 -0.0187679 -0.000495364 -0.00753194 -0.0138165 0.0114287 0.0295688 -0.040968 -0.0242327 -0.0225356 -0.00766412 0.00244001 -0.0416366 0.0508136 -0.0381081 -0.049195 +internal_weight=0 967.5 702.627 314.951 387.676 267.665 391.663 246.564 239.858 93.7144 120.01 264.873 153.825 120.052 94.6891 238.071 62.5331 119.975 102.102 53.0203 16.1649 57.5188 75.0929 25.3212 56.1316 44.9939 145.099 214.645 44.8908 36.1624 +internal_count=5578 3987 2920 1280 1640 1145 1591 998 978 380 495 1067 623 485 392 958 253 482 410 217 65 232 302 103 227 182 593 928 181 146 +is_linear=0 +shrinkage=0.05 + + +Tree=10 +num_leaves=31 +num_cat=0 +split_feature=25 25 25 26 3 9 5 5 5 25 13 26 3 5 13 10 22 20 13 24 10 23 2 26 19 19 3 5 17 24 +split_gain=115.295 72.6883 57.1215 45.3299 23.4437 21.0914 18.1368 16.1926 13.9635 13.3585 13.1206 12.4247 12.3213 11.8851 11.4516 11.031 10.7677 10.6879 10.6688 10.3858 11.1954 10.4328 10.7809 10.1666 9.91506 9.53809 12.3676 9.2112 9.19259 13.4886 +threshold=1.2815000000000001 0.65950000000000009 0.98450000000000015 0.77650000000000008 1.5465000000000002 0.90750000000000008 1.5755000000000001 0.81250000000000011 1.1815000000000002 1.8760000000000003 0.73250000000000004 1.0535000000000003 1.6175000000000004 0.76550000000000007 0.9405 1.1305000000000003 0.99050000000000005 1.0000000180025095e-35 1.0675000000000001 1.2355000000000003 -1.3474999999999999 1.0665000000000002 1.3225000000000002 1.1425000000000003 1.5915000000000001 0.8035000000000001 1.7525000000000002 0.63450000000000017 1.4375000000000002 1.2685000000000002 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 6 3 7 11 8 12 16 18 15 -6 13 14 -5 -1 24 -3 -9 -4 20 -16 22 -22 -10 25 26 -2 -20 -11 -30 +right_child=9 2 5 4 10 -7 -8 17 23 28 -12 -13 -14 -15 19 -17 -18 -19 27 -21 21 -23 -24 -25 -26 -27 -28 -29 29 -31 +leaf_value=-0.019025212141241785 -0.0090013548935851066 -0.037152891468685105 -0.039113519052048844 0.027681584325882837 0.034711905096192208 0.01032048200607223 0.032038321863391464 0.052764670797536189 0.050527538168660416 -0.058648116086206029 -0.011645693483967347 0.019603880310906242 -0.041304441890161296 0.048085769845807827 -0.043922457175136917 -0.058701605475553864 0.012220491919719086 -0.010319430191421307 -0.054365850095593853 -0.040981770304777829 0.015091996892222704 0.059333024701039044 -0.062510257662818064 -0.021925712808103792 0.034512992679552823 -0.043672586752768222 -0.061106558028423422 0.0084046208862476116 -0.056133540940473917 0.028230622472096869 +leaf_weight=176.14536780118942 107.3110515922308 42.598923102021217 65.763886258006096 116.80760487914085 22.728504702448845 113.47343811392784 21.224990725517273 14.059122711420059 11.058816224336626 53.449130609631538 46.471295893192291 97.48728147149086 40.871416732668877 183.45912338793278 8.4070941358804685 19.046644255518913 14.907110542058943 12.851660013198853 7.4201494157314292 11.400528728961943 47.376813590526581 12.068581044673918 4.9424366056919089 8.6123927831649763 8.3681356310844404 36.650874823331833 12.740521445870398 27.522688195109367 10.558540314435961 8.5946130901575071 +leaf_count=711 435 172 267 491 95 464 87 57 46 221 191 402 165 799 34 78 60 52 30 46 192 49 20 35 34 149 53 112 44 35 +internal_value=0 0.00735404 0.0155618 0.0243444 0.03044 -0.00514557 -0.0126341 -0.0093737 -0.0197245 -0.0298346 0.00358035 0.035113 -0.015782 0.0401483 -0.0117752 -0.0226724 -0.024354 0.0226379 -0.0272508 0.00339269 0.0103422 0.0174276 0.00776115 0.0188063 -0.0185151 -0.0213469 -0.014531 -0.00492476 -0.0479978 -0.0182767 +internal_weight=0 1107.66 785.222 551.371 466.954 233.851 322.437 84.4168 120.378 256.72 69.1998 397.754 301.212 300.267 260.341 184.117 57.506 26.9108 100.707 84.1955 72.7949 64.3878 52.3193 19.6712 165.071 156.702 120.052 34.9428 72.6023 19.1532 +internal_count=5626 4577 3273 2319 1978 954 1304 341 490 1049 286 1692 1217 1290 1052 749 232 109 409 341 295 261 212 81 671 637 488 142 300 79 +is_linear=0 +shrinkage=0.05 + + +Tree=11 +num_leaves=31 +num_cat=0 +split_feature=27 26 24 22 5 5 3 22 27 5 26 22 3 0 5 26 2 24 7 24 11 4 27 26 26 9 10 23 0 24 +split_gain=78.6236 85.5863 47.4259 55.3553 22.1885 21.8445 16.7674 14.393 13.1198 12.993 13.5916 11.0538 10.7229 10.3059 13.3458 11.5817 13.6222 10.5142 13.1992 10.2902 10.2763 12.4438 10.1675 16.7381 9.88715 12.9981 10.2469 9.82039 9.41292 9.28014 +threshold=0.90250000000000019 0.81150000000000011 1.0265000000000002 1.0445000000000002 0.89350000000000007 1.0195000000000003 2.0310000000000001 1.0605000000000002 1.0175000000000003 1.1425000000000003 1.1955000000000002 0.78450000000000009 0.79250000000000009 1.6975000000000002 1.7360000000000002 1.3665 -1.0085 0.85750000000000004 -0.17199999999999999 0.73950000000000016 1.0265000000000002 -0.34949999999999992 0.84050000000000014 0.90950000000000009 0.72850000000000015 0.70550000000000013 0.91150000000000009 1.0045000000000002 0.78550000000000009 0.75450000000000006 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 5 3 11 7 12 9 22 -8 -4 -11 -2 24 14 15 16 -5 18 -18 -13 -12 -22 28 -24 -1 -26 -27 -14 29 -3 +right_child=2 4 6 13 -6 -7 8 -9 -10 10 20 19 27 -15 -16 -17 17 -19 -20 -21 21 -23 23 -25 25 26 -28 -29 -30 -31 +leaf_value=-0.018054576511174068 -0.011445641236920857 0.035038912927064549 -0.0060833818742178809 0.054469393762585853 0.035957690897018273 0.022871374742625579 0.035731952036532857 0.04071273631363078 -0.047162280284872959 0.036135024737949821 0.011149833193815253 -0.024964835065822134 -0.038843848676108884 -0.043659419863977006 0.054946547868896481 -0.033217259790644237 0.068193878605635208 -0.024229522127083514 -0.013769178291055083 -0.062056935384201428 0.019977898022842416 -0.068879131574448887 -0.049496455355626939 0.0095837036762572037 0.035557644297642792 -0.023936776609062238 0.051097308949402814 -0.0091713667169669132 0.026384366421981949 -0.0095312372867860807 +leaf_weight=76.118592590093613 16.201783359050751 15.287891313433645 186.13635821640491 12.460278093814848 219.6335608959198 43.023461490869522 5.6836948394775382 41.953233137726784 29.800138294696808 46.62884758412838 66.032123371958733 22.845770865678787 69.022954642772675 13.53932476043701 10.9281999617815 23.91125825047493 9.010572552680971 27.597917139530182 10.798562645912169 102.997569039464 6.5969697237014797 9.7834247201681119 17.946398660540581 36.111596420407295 26.121066629886627 27.692899242043495 5.4446169137954703 46.784825697541237 83.592881426215172 49.474717766046524 +leaf_count=307 66 64 758 51 952 176 23 179 123 192 270 93 279 55 45 98 37 112 44 427 27 40 73 150 106 112 22 189 351 205 +internal_value=0 0.011048 -0.0131661 -0.0297918 0.0244246 -0.0100485 -0.00129923 0.0140588 -0.0338845 0.00236934 0.014562 -0.0503185 -0.0156871 -0.00285572 0.00297759 -0.00380131 0.00794754 -0.00428008 0.0235133 -0.0553232 0.00235604 -0.0330932 0.00853432 -0.01003 -0.00613219 0.0091823 -0.0116084 -0.0268566 0.0152988 0.000990013 +internal_weight=0 758.209 600.953 250.291 464 294.208 350.662 244.367 35.4838 315.178 129.041 142.045 251.185 108.246 94.7068 83.7786 59.8673 47.4071 19.8091 125.843 82.4125 16.3804 202.413 54.058 135.377 59.2586 33.1375 115.808 148.355 64.7626 +internal_count=5626 3165 2461 1028 1974 1191 1433 1022 146 1287 529 586 1015 442 387 342 244 193 81 520 337 67 843 223 547 240 134 468 620 269 +is_linear=0 +shrinkage=0.05 + + +Tree=12 +num_leaves=31 +num_cat=0 +split_feature=25 25 25 26 27 9 5 0 5 3 26 27 5 5 27 24 10 13 9 25 17 22 24 13 3 5 4 26 15 3 +split_gain=102.422 64.0964 43.5809 41.6727 49.7037 18.9564 18.5987 17.0768 21.1214 16.7384 16.2388 17.5247 13.843 12.516 12.3484 22.9794 12.3059 12.0464 10.6482 10.3371 11.0425 10.3113 10.1045 9.85723 9.94664 9.67652 9.1369 9.07395 8.90975 8.81543 +threshold=1.2815000000000001 0.59250000000000014 0.98450000000000015 0.77650000000000008 0.89550000000000007 0.90750000000000008 0.81250000000000011 1.6975000000000002 0.81250000000000011 2.5325000000000002 0.89850000000000019 0.82250000000000012 0.70450000000000013 0.6715000000000001 0.89550000000000007 1.2485000000000002 1.1075000000000002 0.93650000000000011 1.3035000000000003 1.5165000000000002 1.4605000000000001 0.96950000000000014 0.94450000000000012 1.3965000000000001 0.43450000000000005 0.59850000000000014 -0.97649999999999981 1.4265000000000001 -1.6535 1.2635000000000003 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 17 3 6 10 13 -3 8 18 -10 11 25 -13 -4 16 28 21 -1 27 -17 -21 -2 -9 24 -15 -5 -24 -6 -16 -22 +right_child=14 2 5 4 7 -7 -8 22 9 -11 -12 12 -14 23 15 19 -18 -19 -20 20 29 -23 26 -25 -26 -27 -28 -29 -30 -31 +leaf_value=-0.023095401024546481 -0.02024783676431877 -0.022244941787500822 -0.051530430159776486 0.012732777449155555 -0.021728623192088899 0.0097269457698213116 0.022702075003097386 -0.065300898218427175 0.030718838811227146 -0.057109606711218744 0.053838008027858923 -0.050754148568359039 0.021795151848530508 -0.058559066150232077 0.016904636071256082 0.014580462675189899 -0.08029951187807241 0.00031530705425184837 0.047596423568904589 -0.041554608273135361 0.04708879636811459 0.021718860644698426 0.055491101300201719 0.031119963423729993 -0.0098298286851612321 0.044302331608217338 -0.021643658828266549 0.049367090592841723 -0.051369425330005464 -0.031067770219429244 +leaf_weight=166.78574566543102 35.796463161706924 72.818364560604095 23.500820383429527 31.426179096102715 53.063269421458244 113.05968397855759 33.651793614029884 10.308191850781439 117.73767577111721 5.6868367046117774 122.70891264081001 10.779658585786821 16.857460647821426 12.258386775851248 4.9919244498014441 23.638869062066078 5.6412205696105948 81.949411183595657 7.5005236864089957 33.566325262188911 7.7409477978944761 24.761447042226791 4.8133596777915981 12.224337428808211 71.868353724479675 106.63751994073391 18.969145849347115 4.9026198834180823 111.78150451183319 6.7573240250349045 +leaf_count=674 144 295 96 132 217 464 137 42 488 23 553 44 72 50 21 95 23 333 31 139 31 100 20 50 294 464 78 20 468 28 +internal_value=0 0.00694437 0.0134719 0.0204199 0.0263449 -0.00495963 -0.00803863 0.00861698 0.0144953 0.0266721 0.0400511 0.0298413 -0.00650218 -0.0188139 -0.0282451 -0.0347701 -0.00966777 -0.0153824 -0.00846183 -0.0124902 -0.025804 -0.00308813 -0.0239537 -0.010834 -0.0169303 0.0371164 -0.0060323 -0.0157155 -0.0484508 0.0106617 +internal_weight=0 1099.51 850.773 617.862 511.391 232.912 106.47 222.982 188.891 123.425 288.41 165.701 27.6371 119.852 254.676 188.477 66.1991 248.735 65.4664 71.7035 48.0646 60.5579 34.0907 96.3511 84.1267 138.064 23.7825 57.9659 116.773 14.4983 +internal_count=5626 4577 3570 2616 2184 954 432 919 779 511 1265 712 116 490 1049 782 267 1007 268 293 198 244 140 394 344 596 98 237 489 59 +is_linear=0 +shrinkage=0.05 + + +Tree=13 +num_leaves=31 +num_cat=0 +split_feature=25 25 25 26 27 5 5 3 5 9 27 24 13 5 27 13 0 5 14 26 27 25 0 22 3 14 24 24 22 5 +split_gain=93.0387 58.5682 47.033 36.1554 41.479 18.0794 17.6193 16.6038 15.5261 13.9615 13.1116 13.4421 14.513 12.7544 11.6952 14.2392 12.8467 14.4721 14.2579 11.4716 12.321 11.4505 11.7929 10.9426 10.6886 10.6838 10.6265 10.2235 9.79214 9.6351 +threshold=1.2815000000000001 0.65950000000000009 0.98450000000000015 0.77650000000000008 0.90250000000000019 1.1815000000000002 0.52850000000000008 2.1315000000000004 1.5755000000000001 0.90750000000000008 0.95050000000000001 0.96550000000000014 0.68950000000000011 0.82050000000000012 0.84450000000000014 1.2465000000000004 0.90350000000000008 0.77950000000000019 -0.33549999999999996 0.87150000000000005 0.77850000000000008 1.8760000000000003 1.0785000000000002 1.1035000000000001 0.76950000000000018 0.79900000000000004 0.95050000000000001 1.1635000000000002 1.0045000000000002 1.0855000000000001 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 8 3 13 6 9 -5 29 14 -4 -7 -12 -13 25 15 16 17 -1 -18 20 -8 22 -2 27 -19 -3 28 -16 -20 -6 +right_child=21 2 5 4 7 10 19 -9 -10 -11 11 12 -14 -15 23 -17 18 24 26 -21 -22 -23 -24 -25 -26 -27 -28 -29 -30 -31 +leaf_value=-0.040162183152869332 -0.012184070285714606 -0.033143215437324916 -0.024886680013284711 0.0042679000658728886 0.0049395709434988545 0.048760794270065667 0.045529427635188441 -0.041647520841305852 0.030197046962292185 0.0035948116049641546 -0.057829209990661934 -0.055777291682123142 0.036111988221810998 0.020881731870462463 -0.049581000465579991 0.036849571655570783 0.031474211053090319 0.034916979388861215 -0.0087163997978055505 0.053648396320951142 0.0066235276099160167 -0.044053039687960843 -0.040134439037678722 -0.0020692464750332014 -0.022523473219695885 0.017547439394328474 0.044859785432070753 -0.011681650808826822 -0.064160014246511771 0.028701054927247741 +leaf_weight=54.647581875324249 128.83280558884144 44.01194030046463 100.23844455182552 29.625724717974663 108.78956399857998 23.132640495896339 53.411795064806938 14.345832183957098 21.038663178682327 75.388339087367058 7.7642625719308844 5.4190791994333294 20.752811998128891 26.242131844162941 53.216970860958099 17.105718851089478 28.863842666149139 13.99952173233032 37.518085852265358 147.86142705380917 32.874428182840347 70.908843457698822 53.372994109988213 31.386351466178894 19.214897036552429 13.608731448650358 7.1565418392419806 26.732791543006897 10.109582036733626 70.187338963150978 +leaf_count=221 528 179 409 127 447 98 233 58 87 308 32 22 85 107 217 70 117 57 152 680 140 300 221 127 78 55 29 108 41 293 +internal_value=0 0.0066309 0.0140806 0.0221661 0.0277029 -0.00471632 0.0405974 0.0101093 -0.0113244 -0.0126609 0.0197328 -5.41437e-05 0.0170856 -0.00801211 -0.0142367 -0.00665129 -0.0109899 -0.0243419 0.00303479 0.0451941 0.0307066 -0.0270058 -0.0203715 -0.0270872 0.00168706 -0.0211712 -0.0119489 -0.0369086 -0.020485 0.0142578 +internal_weight=0 1094.65 773.654 540.959 457.096 232.696 263.773 193.323 320.991 175.627 57.0688 33.9362 26.1719 83.8628 299.952 188.616 171.51 87.862 83.6481 234.148 86.2862 253.115 182.206 111.336 33.2144 57.6207 54.7842 79.9498 47.6277 178.977 +internal_count=5626 4577 3273 2319 1978 954 1180 798 1304 717 237 139 107 341 1217 765 695 356 339 1053 373 1049 749 452 135 234 222 325 193 740 +is_linear=0 +shrinkage=0.05 + + +Tree=14 +num_leaves=31 +num_cat=0 +split_feature=25 25 5 0 25 26 3 25 26 3 22 6 25 0 15 13 11 5 24 10 23 0 17 3 17 5 3 9 0 22 +split_gain=84.3854 53.3557 37.2793 33.5428 26.4061 27.8409 21.2959 20.2263 17.4376 15.65 13.0767 11.9211 10.5927 10.7637 10.623 10.4233 10.1612 14.9489 9.5927 9.48628 9.38187 9.11849 8.1858 11.8115 8.09947 11.6737 9.30421 7.6289 7.61314 8.52159 +threshold=1.2815000000000001 0.59250000000000014 0.88150000000000006 2.2265000000000006 0.96550000000000014 0.76750000000000018 1.2425000000000002 0.98450000000000015 0.88650000000000007 2.4510000000000005 1.0735000000000003 1.2645000000000002 1.8760000000000003 1.0785000000000002 -1.5714999999999997 0.93650000000000011 1.0525000000000002 1.1815000000000002 0.71050000000000002 0.68250000000000011 1.2425000000000002 1.1195000000000002 0.65550000000000008 0.68650000000000011 1.4375000000000002 1.1425000000000003 1.4695000000000003 0.91050000000000009 0.90350000000000008 0.89350000000000007 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 15 4 7 5 10 21 9 -6 -4 -3 16 13 14 -2 28 -9 -18 -10 -16 -15 22 23 -7 -14 -26 -27 -25 -1 -30 +right_child=12 2 3 -5 8 6 -8 11 18 -11 -12 -13 24 20 19 -17 17 -19 -20 -21 -22 -23 -24 27 25 26 -28 -29 29 -31 +leaf_value=-0.032502169724733951 0.054427525662764036 -0.024136264668254706 0.036274132394603247 -0.036357663691111229 -0.042215020066885739 0.058288736269987776 -0.0076570578504951831 0.021272476270168962 0.055946416812630767 -0.041930819347858604 0.043789511868600167 -0.047521965424231288 -0.052483792151555124 -0.047548341394129473 -0.0072059752387455284 0.00056567574885409394 -0.055685146908862837 0.030124077972153912 -0.0083919282390426952 -0.040422532392213655 0.0096700267072210092 0.010850302663400814 0.041878697110772772 -0.032159584489108523 -0.082506443408207675 0.038109074320195238 -0.047806693790208105 0.03348641812456947 0.0057149790164563114 -0.025589913962044894 +leaf_weight=78.826257854700089 5.8187470436096183 66.999230250716209 259.48564743995667 22.300483897328377 45.624905720353127 9.1925892531871813 60.976332515478134 88.07224015891552 6.3504770994186392 6.5588197559118262 7.9233959913253775 8.5246546715497953 51.552204385399818 44.540671393275261 95.122189596295357 81.818205267190933 11.481359526515009 9.0970457792282087 66.055783629417419 27.769445478916168 8.5371949970722181 61.622698813676834 91.111021235585213 13.254411533474924 4.6714886575937298 9.2257630527019483 4.7858602553606024 6.6443133950233451 40.535231903195381 46.880714595317841 +leaf_count=320 24 273 1146 93 186 40 254 364 26 27 32 35 221 186 389 333 47 38 271 115 35 262 392 56 20 38 21 28 164 190 +internal_value=0 0.00633441 0.0123432 0.0232539 0.00218963 0.00969159 0.0179134 0.0267228 -0.0180046 0.0343461 -0.0169528 0.00941414 -0.0257707 -0.0193992 -0.0115862 -0.014044 0.0138813 -0.0177517 -0.00274906 -0.0147118 -0.0383452 0.0264886 0.0345058 0.0114145 -0.0422621 -0.0140575 0.00876338 -0.01024 -0.0212343 -0.0110737 +internal_weight=0 1089.34 841.275 405.52 435.755 317.724 242.801 383.22 118.031 266.044 74.9226 117.175 252.024 181.788 128.71 248.06 108.651 20.5784 72.4063 122.892 53.0779 181.825 120.202 29.0913 70.2353 18.6831 14.0116 19.8987 166.242 87.4159 +internal_count=5626 4577 3570 1750 1820 1337 1032 1657 483 1173 305 484 1049 749 528 1007 449 85 297 504 221 778 516 124 300 79 59 84 674 354 +is_linear=0 +shrinkage=0.05 + + +Tree=15 +num_leaves=31 +num_cat=0 +split_feature=27 26 24 27 22 24 22 5 5 22 24 22 22 24 1 5 26 1 23 27 24 5 12 9 1 11 27 2 24 0 +split_gain=52.3329 46.7772 30.3176 27.242 30.7836 32.8082 20.2096 16.804 15.5155 12.5666 12.1112 11.7338 11.5386 10.3158 9.49368 9.42274 9.02054 8.90071 8.85284 8.83988 9.16389 9.07234 9.10382 9.26883 11.9889 8.82923 8.3736 8.30632 8.2479 8.15386 +threshold=1.0105000000000002 0.81150000000000011 0.99350000000000016 0.85750000000000004 1.0705000000000002 1.0755000000000001 1.0025000000000002 0.88150000000000006 1.3585000000000003 1.0325000000000002 0.66250000000000009 0.77950000000000019 0.87450000000000017 0.75750000000000017 1.2590000000000001 1.1515000000000002 1.0885000000000002 1.0555000000000001 1.0325000000000002 0.72450000000000014 0.96850000000000014 0.41850000000000004 1.0000000180025095e-35 0.75550000000000006 -0.87749999999999984 -1.0924999999999998 1.0965 0.30350000000000005 2.3415000000000004 1.1495000000000002 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 8 6 7 5 10 -2 13 19 25 -5 -12 16 -3 -6 -14 18 -13 -7 21 -21 -1 23 -23 -25 26 -4 -22 -11 -28 +right_child=2 3 9 4 14 12 -8 -9 -10 28 11 17 15 -15 -16 -17 -18 -19 -20 20 27 22 -24 24 -26 -27 29 -29 -30 -31 +leaf_value=-0.041995020441719592 -0.056497911821589565 0.03730907390931041 0.052514226379482588 0.032843533768769896 0.033779936541717868 -0.0058892215882771527 -0.017077821305794709 0.035476054304224298 0.035718812073581935 0.0091120297086663277 0.011456818210345689 -0.042446886322852255 -0.012203148059088023 0.0073763366803454499 -0.038849777118476335 0.037186778421508963 0.064418453462210062 0.0023083835533814719 0.051347193922941896 -0.028924245978745097 0.03823190665112286 -0.0036842462493337363 -0.016283478958922067 -0.024999141198594151 0.045463753719908004 -0.023700818967945288 0.010693053005875289 -0.031666999891207949 -0.03996136239168166 -0.06507446107368825 +leaf_weight=15.236041292548178 59.552283644676208 35.876722037792206 7.7862067967653301 8.4019522666931135 75.269761085510254 17.066332340240482 71.60968042910099 161.23997420072556 17.735592573881149 119.46241571009159 15.038747370243071 79.271402910351753 42.360101923346519 145.59392257034779 4.7853574007749549 12.508573219180105 15.317760020494459 12.919571802020071 11.182473778724669 99.538985893130302 10.574734404683115 58.170827448368073 62.5206588357687 7.8505115807056418 26.1280347853899 96.905352622270584 13.359040230512621 7.1063734441995612 9.2233947217464429 4.8364377319812766 +leaf_count=62 255 155 32 36 319 73 297 726 75 494 64 333 175 620 20 53 63 55 48 406 43 237 255 32 106 401 55 29 39 20 +internal_value=0 0.00643978 -0.0154867 0.0141501 0.00298719 -0.00690485 -0.034976 0.0237303 -0.00966643 -0.00532555 -0.0249651 -0.0294947 0.0143105 0.013294 0.0294384 -0.000943581 0.0335218 -0.0361749 0.0167682 -0.0124698 -0.0230322 -0.00518277 -0.00155652 0.00843529 0.0291838 -0.0167612 0.00912208 0.0101382 0.00559476 -0.00944628 +internal_weight=0 941.694 382.735 636.833 294.122 214.067 131.162 342.711 304.862 251.573 115.632 107.23 98.4352 181.471 80.0551 54.8687 43.5666 92.191 28.2488 287.126 117.22 169.906 154.67 92.1494 33.9785 122.887 25.9817 17.6811 128.686 18.1955 +internal_count=5578 3985 1593 2740 1239 900 552 1501 1245 1041 488 452 412 775 339 228 184 388 121 1170 478 692 630 375 138 508 107 72 533 75 +is_linear=0 +shrinkage=0.05 + + +Tree=16 +num_leaves=31 +num_cat=0 +split_feature=25 25 26 27 25 24 27 5 9 3 24 24 14 24 5 25 0 17 9 13 23 6 20 23 6 3 10 26 27 1 +split_gain=89.8896 55.3435 36.6142 43.8267 19.6812 18.0803 18.9348 15.4751 13.8187 13.5036 11.9423 12.1649 11.2814 11.1085 10.8587 10.4294 10.3687 9.78816 9.64963 9.55128 10.6157 10.1593 9.48833 9.26856 9.24962 9.51663 8.95659 8.81258 8.44279 8.44049 +threshold=1.0565000000000002 0.68250000000000011 0.85650000000000015 0.90450000000000019 0.94550000000000012 1.2485000000000002 1.0835000000000001 0.8015000000000001 1.0245000000000002 1.6175000000000004 1.0265000000000002 0.77950000000000019 0.81250000000000011 0.64550000000000007 1.6890000000000003 1.4755000000000003 1.2625000000000002 0.5635 0.76250000000000007 0.81950000000000012 1.1125000000000003 1.1515000000000002 2.3265000000000002 1.2485000000000002 -1.1524999999999999 1.2635000000000003 0.60650000000000015 0.76750000000000018 0.76050000000000006 1.4635000000000002 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 8 4 -4 7 6 13 12 9 19 11 -5 16 -2 -15 18 27 -6 -7 21 -21 -1 -13 -11 -17 -26 -9 -3 -29 -10 +right_child=5 2 3 10 17 15 -8 26 29 23 -12 22 -14 14 -16 24 -18 -19 -20 20 -22 -23 -24 -25 25 -27 -28 28 -30 -31 +leaf_value=-0.011851063860603984 0.023048289750367948 -0.02535641450952424 0.04309245020665755 0.025609179085038208 0.022382869984996931 -0.020535350038522884 -0.048194880829746628 0.013655281505903685 0.013707264876430994 -0.051235002069462736 0.019617151023869142 -0.0028494388362477092 0.027115517011847765 -0.023986171954058499 0.052061449734453064 0.036965785580328148 -0.056043949077503256 -0.052559396253618121 0.023546008792612347 -0.0035985058349406358 0.042835637596130946 -0.053715351241741122 -0.046173700674804398 0.02240633317076679 -0.0067073905816311327 -0.053505514655798753 0.056808337787196406 0.041695121888589967 -0.015830487319875616 -0.048451201532096699 +leaf_weight=111.27615439891815 14.680468156933783 29.725684493780136 197.73360984027386 23.111761897802353 5.3393494784832027 17.346639931201935 75.051790148019791 40.544451802968979 83.568747997283936 31.67081218957901 130.2696086615324 37.519860491156578 19.072342246770859 187.10602657496929 4.8148083537816992 6.283671259880065 13.273480311036108 23.681446880102158 43.66665218770504 76.4005246758461 14.672677144408224 16.66142039000988 19.056378647685051 4.9391106963157645 23.990036562085152 19.853826507925987 17.093814551830292 13.573356896638872 12.032486781477926 5.8433141112327567 +leaf_count=454 60 122 926 96 22 70 325 175 344 130 543 155 79 773 20 26 55 97 177 312 60 68 78 20 99 86 74 58 50 24 +internal_value=0 0.00859297 0.017999 0.0261997 -0.00117859 -0.0199469 -0.0266855 0.00632899 -0.0072739 -0.0131919 0.0102905 -0.00495609 -0.00690048 -0.0188718 -0.0220783 -0.0028699 -0.016357 -0.0387713 0.0110133 -0.00849332 0.00388243 -0.0173031 -0.0174422 -0.0412999 -0.019768 -0.027899 0.0264532 -0.0068365 0.0146632 0.00964505 +internal_weight=0 927.06 582.028 407.691 174.336 392.794 281.653 145.316 345.033 255.621 209.958 79.688 87.6774 206.601 191.921 111.141 68.605 29.0208 61.0133 219.011 91.0732 127.938 56.5762 36.6099 50.1275 43.8439 57.6383 55.3315 25.6058 89.4121 +internal_count=5578 3942 2530 1798 732 1636 1178 613 1412 1044 872 329 364 853 793 458 285 119 247 894 372 522 233 150 211 185 249 230 108 368 +is_linear=0 +shrinkage=0.05 + + +Tree=17 +num_leaves=31 +num_cat=0 +split_feature=25 25 26 27 22 25 27 5 25 13 27 9 5 25 14 22 17 3 27 22 0 13 9 17 18 27 15 5 6 14 +split_gain=81.5216 50.3747 33.4786 40.8543 18.8518 17.7952 14.6046 14.0545 13.57 12.7334 11.7672 12.8077 10.8157 15.8974 10.2067 10.1993 10.2456 9.94147 11.236 9.83632 9.34101 8.88951 10.8933 8.84613 8.74692 8.62585 10.6875 8.4974 12.4449 8.35098 +threshold=1.0565000000000002 0.68250000000000011 0.85650000000000015 0.90450000000000019 1.0265000000000002 0.94550000000000012 1.0475000000000001 0.8015000000000001 1.9405000000000003 0.88550000000000006 1.3970000000000002 1.1555000000000002 0.9275000000000001 1.4755000000000003 0.81250000000000011 0.64450000000000018 1.5565000000000002 0.33650000000000008 0.79050000000000009 1.0515000000000001 1.2625000000000002 0.81050000000000011 0.58950000000000002 0.5635 0.86550000000000005 0.9225000000000001 -1.3084999999999998 1.0365000000000002 0.15950000000000003 1.1705000000000003 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 9 5 -4 6 7 12 14 -6 10 11 15 21 -14 20 -1 17 18 -17 -5 -3 -2 -23 -7 -15 26 -11 -19 -29 -28 +right_child=4 2 3 19 8 23 -8 -9 -10 25 -12 -13 13 24 -16 16 -18 27 -20 -21 -22 22 -24 -25 -26 -27 29 28 -30 -31 +leaf_value=0.032423592437960995 -0.05527122065479504 -0.0065201221446992298 0.041625437878553113 -0.00029067916387081987 0.0027374769998898332 0.021292768512235844 -0.045463444872588986 0.025288660830101076 -0.036048808495040545 -0.029062380791981809 -0.073846930409302625 0.02016827805774896 0.010186230374007788 -0.042763988031833788 0.025799561955281849 0.047559249461534135 0.041138370469887928 -0.031760282933307668 -0.045059640213565948 0.02143664291200292 -0.053245440651082193 -0.072294888777282296 -0.0094378122459070641 -0.049999436274489203 0.020482422089107177 -0.012496731926730708 0.02637942948444252 -0.028279837599768307 0.045842457947442752 -0.033870470461528621 +leaf_weight=9.8342167288064939 28.352064162492752 55.10429185628891 194.54923251271248 112.13473884761333 117.14197789132595 5.3322478383779552 77.235942304134369 57.292052462697029 27.927190467715263 12.201419189572333 8.0465778857469541 26.572714731097221 52.993891790509224 32.065354481339455 19.043631285429001 9.8164334893226606 6.5880297571420661 122.03319425880909 4.9136265665292731 97.281635582447052 13.272504046559332 8.2992964982986432 40.670788943767548 23.649930089712143 6.5902130901813498 45.386708810925484 69.217179715633392 14.359252274036409 9.3502821028232557 6.2724642008543006 +leaf_count=40 117 230 926 464 481 22 336 249 121 50 33 109 217 134 79 40 27 499 20 408 55 34 168 97 28 185 286 59 38 26 +internal_value=0 0.00821 0.0172354 0.0251284 -0.019027 -0.00112137 -0.0274515 0.00604073 -0.00472925 -0.00691986 -0.0145437 -0.0121984 -0.0192183 -0.00759907 -0.00657363 -0.0170604 -0.0199734 -0.0224823 0.0166636 0.00980246 -0.0155899 -0.0329905 -0.0200906 -0.0368828 -0.0319814 0.00519749 0.0143556 -0.0264387 0.000951625 0.0213732 +internal_weight=0 922.252 577.66 403.966 391.277 173.695 246.208 144.712 145.069 344.592 211.514 203.468 168.972 91.6495 87.4204 176.895 167.061 160.473 14.7301 209.416 68.3768 77.3221 48.9701 28.9822 38.6556 133.078 87.6911 145.743 23.7095 75.4896 +internal_count=5578 3942 2530 1798 1636 732 1034 613 602 1412 865 832 698 379 364 723 683 656 60 872 285 319 202 119 162 547 362 596 97 312 +is_linear=0 +shrinkage=0.05 + + +Tree=18 +num_leaves=31 +num_cat=0 +split_feature=25 25 5 26 22 25 27 22 25 3 9 27 24 27 22 22 9 7 1 2 5 24 22 24 9 27 15 24 24 27 +split_gain=73.9588 45.898 30.0756 22.3419 17.195 17.1151 16.4971 14.3956 12.5973 12.5708 11.9503 11.7282 11.4647 11.3498 11.3024 11.2642 10.8187 10.7745 10.7241 11.0707 10.1688 9.93021 9.89939 19.723 9.56913 9.48875 8.57703 10.7811 8.44545 11.7655 +threshold=1.0565000000000002 0.6695000000000001 0.88150000000000006 0.77250000000000008 1.0265000000000002 0.96550000000000014 1.0545000000000002 0.77950000000000019 1.5585000000000002 2.1315000000000004 1.4075000000000002 1.0835000000000001 1.5945000000000003 0.82250000000000012 0.75750000000000017 0.95750000000000013 1.5605000000000002 -0.72549999999999992 1.3180000000000003 0.4915000000000001 0.86050000000000015 1.1965000000000001 1.0085000000000004 1.0265000000000002 1.0755000000000001 0.93250000000000011 -1.2929999999999997 0.96550000000000014 1.3385000000000002 0.91150000000000009 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 10 3 -3 7 13 -4 20 18 16 14 26 -13 21 -1 25 -8 -10 19 28 -2 -5 23 -15 -7 -16 27 -9 29 -6 +right_child=4 2 6 5 8 24 9 11 17 -11 -12 12 -14 22 15 -17 -18 -19 -20 -21 -22 -23 -24 -25 -26 -27 -28 -29 -30 -31 +leaf_value=0.011732809397679842 -0.043546514991553112 -0.02085717485827112 0.035510582554337866 0.03566190096248447 0.020545439814679656 -0.029982435786549601 0.0060817489167048992 -0.026009264015133815 0.012303721689369516 -0.045113577831964055 0.024950799723537864 -0.064364830736091228 -0.014998044270450936 -0.040428291125263131 -0.017907351062825396 -0.0025521237708556249 0.054144076007074174 -0.035942063277062807 -0.048332730562218512 0.037855370149875361 0.019691822742544378 -0.03794903587133211 0.024114961269839755 0.01761713381400937 0.025238953140885569 -0.052485089294806213 -0.027958478839716219 0.055670383558723537 0.038733154233029948 -0.034488757055332511 +leaf_weight=49.694020569324493 8.4637366384267789 64.435537919402122 202.78338044881821 84.354337334632874 16.649284183979034 32.200251072645187 56.677080139517784 9.0745349824428576 15.99975563585758 9.5342153161764127 26.548677295446396 41.304661318659782 16.442421391606331 24.581841304898262 114.63975119590759 111.63796412944794 14.757188171148298 41.819049000740051 7.821630433201789 28.666217833757401 25.538617536425591 4.8446931540966025 50.32250402867794 36.164413243532181 10.372078984975813 23.993140205740929 136.66622614860535 7.2817705869674674 10.553975671529768 23.305381700396538 +leaf_count=203 35 265 946 379 68 134 237 38 68 39 110 187 70 104 469 457 63 179 32 117 106 22 217 153 44 100 568 30 43 95 +internal_value=0 0.00784328 0.0161552 0.00531645 -0.0181588 0.0122614 0.0278925 -0.0262385 -0.00450225 0.00881315 -0.00720224 -0.0311088 -0.0503085 0.0183815 -0.010048 -0.0143728 0.0160107 -0.0225914 0.00751998 0.0130376 0.00395078 0.0316638 0.00771447 -0.00587178 -0.0165286 -0.0238917 -0.0238633 0.0103542 -0.0010477 -0.0115558 +internal_weight=0 917.541 591.028 307.276 389.587 242.84 283.752 244.772 144.815 80.9685 326.514 210.77 57.7471 200.268 299.965 250.271 71.4343 57.8188 86.9965 79.1749 34.0024 89.199 111.069 60.7463 42.5723 138.633 153.023 16.3563 50.5086 39.9547 +internal_count=5578 3942 2603 1318 1636 1053 1285 1034 602 339 1339 893 257 875 1229 1026 300 247 355 323 141 401 474 257 178 569 636 68 206 163 +is_linear=0 +shrinkage=0.05 + + +Tree=19 +num_leaves=31 +num_cat=0 +split_feature=25 26 27 25 26 24 27 24 25 24 5 19 5 25 22 10 22 25 3 6 25 23 15 9 26 13 17 18 13 24 +split_gain=67.1562 44.1188 42.7447 20.7631 15.8346 15.2316 15.4999 16.0859 13.1141 12.8335 12.7289 11.2127 11.1884 10.8419 10.357 10.1024 9.71819 9.62895 9.23752 9.2494 9.16684 9.0338 9.28451 10.2355 8.39963 15.6198 8.32305 9.5143 8.94181 9.053 +threshold=1.0675000000000001 0.79050000000000009 0.85950000000000015 0.76150000000000007 0.85650000000000015 0.98050000000000004 1.0835000000000001 0.72850000000000015 0.86750000000000005 0.73550000000000015 1.1275000000000002 0.8035000000000001 1.0615000000000003 2.1950000000000003 1.5945000000000003 0.027500000000000004 1.2115000000000002 0.6905 1.5555000000000001 -0.51849999999999985 0.21150000000000005 1.3815000000000002 0.66250000000000009 1.0665000000000002 0.65150000000000008 0.87750000000000006 0.57750000000000012 1.2015 0.72850000000000015 1.2135000000000002 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 9 4 21 8 6 7 -2 18 11 26 12 20 -7 -8 -11 -9 -6 19 -3 -1 22 23 -4 25 -13 27 -5 29 -28 +right_child=5 2 3 10 17 13 14 16 -10 15 -12 24 -14 -15 -16 -17 -18 -19 -20 -21 -22 -23 -24 -25 -26 -27 28 -29 -30 -31 +leaf_value=-0.058701507378353605 0.01570769481310243 0.059821656824519204 -0.018932895761267429 -0.0056821062947018516 0.015607001229043682 -0.0036701709414846601 -0.066970360472840121 -0.032148717398921806 -0.015826638434711861 -0.035482539150750017 0.028870176055884642 -0.081555535513115632 0.048491169685499137 -0.039285637775623092 -0.0092882078237589549 -0.0071763099764726029 0.027376597691707923 0.043668708504391869 -0.029843575842442373 0.018732311498099254 0.0073837955261197826 0.029226345933687177 -0.037334828048689775 0.015131711291511014 -0.0030159503644657248 0.02536909782870363 0.0095420442488656134 -0.084020117482720716 0.0011563482371165434 0.063512232307640817 +leaf_weight=5.6721688210964194 25.795902937650681 18.458618864417076 65.794660925865173 15.127533331513407 38.917746022343636 172.34545031189919 34.277966439723969 102.51283042132854 28.250462412834167 64.133605122566223 78.026849746704102 11.234980121254923 15.966266021132467 24.392390251159668 10.067608565092085 61.986637428402901 7.3483137339353553 142.51188133656979 7.264094427227973 53.082627385854721 70.083370342850685 12.396558210253714 35.45712174475193 33.168499365448952 25.664541110396385 4.9074705541133872 19.091452375054359 5.2110340595245352 98.552984565496445 13.102801650762556 +leaf_count=23 106 80 273 64 164 714 160 430 120 265 340 46 67 108 43 256 30 699 30 232 285 51 148 138 105 20 82 22 421 56 +internal_value=0 0.00734409 0.0141738 0.00306418 0.028651 -0.0177024 -0.028213 -0.0198242 0.0134013 -0.0101325 0.0124706 0.000670714 0.0104527 -0.00808593 -0.053875 -0.0215704 -0.0281672 0.0376493 0.0238791 0.0293339 0.00243568 -0.0116149 -0.0153814 -0.0075158 -0.0207903 -0.0490494 0.00400126 -0.0257534 0.00862979 0.0315075 +internal_weight=0 924.064 664.415 375.929 288.485 376.74 180.003 135.657 107.056 259.649 229.113 133.529 91.7218 196.738 44.3456 126.12 109.861 181.43 78.8053 71.5412 75.7555 146.817 134.42 98.9632 41.807 16.1425 151.086 20.3386 130.747 32.1943 +internal_count=5578 3987 2920 1595 1325 1591 769 566 462 1067 985 546 375 822 203 521 460 863 342 312 308 610 559 411 171 66 645 86 559 138 +is_linear=0 +shrinkage=0.05 + + +Tree=20 +num_leaves=31 +num_cat=0 +split_feature=25 5 3 22 22 5 25 25 7 23 3 17 9 3 4 14 17 10 25 11 9 22 11 26 17 17 14 8 18 24 +split_gain=52.194 30.9364 24.5699 17.9309 14.3238 13.6124 14.9708 15.7119 15.4545 11.3686 11.0226 10.7006 10.6795 10.5006 10.3221 9.81361 9.73489 10.4907 8.96833 8.92754 8.98395 8.87221 8.84026 8.62325 9.94454 8.37092 8.14285 7.95071 8.86039 7.79771 +threshold=1.4915 0.88650000000000007 1.7675000000000003 1.0705000000000002 0.82350000000000012 1.7625000000000002 0.58150000000000013 1.0115000000000001 1.3325000000000002 1.2045000000000001 0.88050000000000006 0.70250000000000012 0.94750000000000012 1.8335000000000004 1.6155000000000002 1.4745000000000001 0.55150000000000021 -0.13549999999999998 0.91350000000000009 1.0265000000000002 1.4455000000000002 1.7940000000000003 -1.2004999999999997 0.72850000000000015 0.59050000000000014 0.46450000000000008 1.1370000000000002 1.6300000000000001 -1.3189999999999997 1.7450000000000003 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 3 5 4 12 6 25 14 19 29 -6 16 18 -2 21 22 17 -5 23 20 -9 27 -13 24 -1 -3 -7 28 -8 -4 +right_child=13 2 9 11 10 26 7 8 -10 -11 -12 15 -14 -15 -16 -17 -18 -19 -20 -21 -22 -23 -24 -25 -26 -27 -28 -29 -30 -31 +leaf_value=-0.049921104430453354 -0.022824957283666389 0.040676703010630227 -0.014987999049794927 -0.033600987236252509 -0.0046268057748418152 0.049405528707982545 -0.028636255322764044 0.011757936855668645 0.047312465657250884 0.045724573153561016 -0.021977101539643374 -0.0072163093502610855 0.034306973860685035 -0.070750721226693652 -0.03242715974361781 -0.033869934914873549 -0.043248512234853785 0.044352369420106036 -0.029968928034705335 -0.029727256494153271 -0.033612055328549786 -0.028862751593091981 0.037604740359261292 0.018418285474149726 0.0069475191480310302 -0.013344680226858256 -0.017512451225808127 0.040188068825222648 0.024727911380050788 -0.063877009054297315 +leaf_weight=12.132105633616446 146.57135963439941 8.1066774278879148 47.513718634843826 7.1537799537181899 194.98568564653397 42.322796553373337 8.4065990298986417 69.771210849285126 17.647258505225182 6.6405553221702567 172.54328611493111 13.459391415119169 27.08958899974823 12.39575459063053 7.2954853624105445 6.6803732216358176 13.064847558736799 10.879892036318779 21.188278838992119 24.45063254237175 12.933784216642378 6.6424778848886481 60.235941380262375 54.908475518226624 20.983227804303169 62.131924733519554 5.0930774956941596 98.626184582710266 104.10145634412766 9.8463455438613874 +leaf_count=50 633 33 203 30 828 188 39 290 73 28 723 57 115 61 33 28 54 45 89 101 55 28 260 236 86 254 22 464 480 40 +internal_value=0 0.00400932 0.0128449 -0.0036233 -0.00763816 0.0168223 0.013956 0.0181851 0.00395599 -0.0162101 -0.0127722 0.0145227 0.00620554 -0.0265621 0.0260751 0.0241586 -0.0103819 0.013429 -0.000764904 -0.0031843 0.00466277 0.0280349 0.0294188 0.00626482 -0.0138868 -0.00710973 0.0422177 0.029825 0.0207405 -0.0233802 +internal_weight=0 1146.84 531.53 615.305 503.831 467.53 420.114 349.875 124.803 64.0006 367.529 111.474 136.302 158.967 225.072 80.3757 31.0985 18.0337 109.212 107.156 82.705 217.777 73.6953 88.0238 33.1153 70.2386 47.4159 211.134 112.508 57.3601 +internal_count=5626 4932 2331 2601 2127 2060 1850 1563 519 271 1551 474 576 694 1044 345 129 75 461 446 345 1011 317 372 136 287 210 983 519 243 +is_linear=0 +shrinkage=0.05 + + +Tree=21 +num_leaves=31 +num_cat=0 +split_feature=25 25 5 27 0 9 25 27 26 25 26 27 5 3 19 15 24 24 22 5 26 5 24 27 10 22 19 18 18 26 +split_gain=47.8734 34.2046 24.2934 26.4252 24.2332 16.1908 11.991 10.9255 32.5975 13.8864 11.1717 17.3779 10.7386 12.2783 10.3298 10.0497 11.1744 9.88368 12.306 9.69935 10.3659 9.28403 9.19434 18.3227 10.9317 9.56535 12.8142 9.05763 8.99603 8.8069 +threshold=1.2815000000000001 0.59250000000000014 0.81250000000000011 0.90250000000000019 1.7460000000000002 1.2475000000000003 1.0025000000000002 0.90650000000000008 0.89850000000000019 0.94550000000000012 0.76750000000000018 0.84050000000000014 2.0060000000000007 2.7455000000000003 -1.2444999999999997 -0.8929999999999999 0.88550000000000006 1.1525000000000003 1.0265000000000002 0.41850000000000004 1.4265000000000001 1.1885000000000001 1.2485000000000002 0.89350000000000007 1.1075000000000002 0.94650000000000012 -1.0214999999999999 -1.1969999999999998 0.5395000000000002 0.87750000000000006 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 -1 5 6 12 7 29 8 9 10 -3 14 13 17 -12 16 -16 18 27 -9 -21 28 23 24 25 -2 -27 -5 -8 -4 +right_child=22 2 3 4 -6 -7 21 19 -10 -11 11 -13 -14 -15 15 -17 -18 -19 -20 20 -22 -23 -24 -25 -26 26 -28 -29 -30 -31 +leaf_value=-0.011386266794489966 -0.01905339152580245 -0.016331989176381772 0.023611602754358973 0.044176806147695896 -0.032110129373096645 0.034729253297935553 0.010996787602762851 0.040759632973696731 0.035948901637450736 -0.033194911061801009 0.067138799887263442 -0.04401022801502865 0.055626658501627957 -0.060170717691537395 0.032981950133272875 0.024937194759959026 -0.057931842422846005 0.023519328350415456 0.017396493440094508 -0.029280001283316825 0.025723626715082406 0.042042096834754066 -0.0044448342268798178 -0.038020045144271063 -0.071985449486885053 -0.049635066075233776 0.035799005837329617 -0.02817161474950482 -0.041969860329238363 0.045419200028876769 +leaf_weight=245.11324267089367 28.27446936070919 61.156869515776634 87.770159512758255 4.7957198023796073 35.902642503380775 30.010798797011375 25.43977002799511 6.3362975567579261 54.207926735281944 40.86064325273037 10.259987622499464 11.670498579740523 13.008813261985777 6.0667351782321921 5.3597965538501731 43.722879618406296 8.6731151044368726 84.813526198267937 46.096134185791016 71.601271659135818 9.5103677511215192 13.963646709918974 70.260467484593391 108.93369992077351 5.4012623131275168 5.1999862045049694 24.90199539065361 36.590738162398338 11.367947146296499 93.939845725893974 +leaf_count=1007 115 253 397 20 150 129 107 26 248 171 45 48 56 25 24 193 37 358 194 297 39 62 297 492 23 21 101 152 47 492 +internal_value=0 0.00482254 0.00970861 0.0172097 0.00520721 -5.06969e-05 0.0289433 -0.0032786 0.00226106 -0.00778907 -0.000418468 0.0117947 0.0122082 0.0090415 0.02137 0.0132394 -0.0232078 0.0114785 -0.00019489 -0.0182232 -0.0228308 0.0076757 -0.0195419 -0.0256835 -0.00461245 0.00162121 0.0210406 -0.0197881 -0.00536179 0.0348856 +internal_weight=0 1058.24 813.126 459.756 227.274 353.37 232.481 323.36 235.912 181.704 140.843 79.6863 191.372 178.363 68.0158 57.7558 14.0329 172.296 87.4826 87.4479 81.1116 50.7714 242.972 172.711 63.7777 58.3765 30.102 41.3865 36.8077 181.71 +internal_count=5626 4577 3570 2060 955 1510 1105 1381 1019 771 600 347 805 749 299 254 61 724 366 362 336 216 1049 752 260 237 122 172 154 889 +is_linear=0 +shrinkage=0.0495 + + +Tree=22 +num_leaves=31 +num_cat=0 +split_feature=25 9 26 25 25 5 0 9 3 19 23 3 5 11 3 9 24 4 25 25 24 13 3 22 11 26 22 14 22 7 +split_gain=43.7533 27.2667 16.9996 21.9422 25.5566 16.5761 19.0301 14.3703 12.7394 11.1285 10.3067 10.2055 9.88294 9.54156 9.15045 11.6344 9.04685 9.90889 8.6079 11.5281 11.2861 10.8586 10.5737 10.4131 9.73838 8.56809 8.49555 8.12374 7.68249 8.85534 +threshold=1.4915 0.90750000000000008 0.72850000000000015 0.98450000000000015 0.65950000000000009 2.0060000000000007 1.2835000000000003 0.68950000000000011 1.7785000000000004 0.46850000000000003 1.0795000000000001 1.8335000000000004 0.6715000000000001 -1.2834999999999999 1.3845000000000003 0.43500000000000005 1.0035000000000001 -0.61849999999999994 0.62350000000000005 1.0455000000000003 1.3605000000000003 0.95650000000000013 0.42050000000000004 1.0485000000000004 1.1820000000000002 1.0735000000000003 1.6755000000000002 -0.54249999999999987 0.86850000000000016 -0.36649999999999999 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 2 27 4 -4 6 8 14 10 13 18 -2 -5 -9 -6 -16 -10 -18 23 26 21 25 -23 -3 -24 -21 -20 -1 -11 -30 +right_child=11 5 3 12 7 -7 -8 9 16 28 -12 -13 -14 -15 15 -17 17 -19 19 20 -22 22 24 -25 -26 -27 -28 -29 29 -31 +leaf_value=0.00036228591545656082 -0.020429576486766382 -0.018618061006025286 -0.011193629153782822 -0.044351186035907604 0.033047878240755786 0.045609711152102682 -0.0095685499618389878 -0.028913311946134387 -0.045856848335941065 0.017041132391926155 0.038024133585059745 -0.067616572690592208 -0.0095675776710271686 0.022678525938726293 0.054833840641953686 -0.016391967413518858 -0.03489809832624894 0.037570030233854003 0.028987298048914527 -0.01117935795348101 0.053346625265184404 0.052862088206518339 -0.018891214694746639 0.031426499518889442 0.04737264082408621 -0.076693446391591882 -0.020881523897004702 -0.026811961313094386 -0.0034188217740278681 -0.054016687299588598 +leaf_weight=37.239339157938957 144.77620546519756 35.038688167929649 122.58902618288994 23.306115165352821 110.60103334486485 33.656233370304108 94.650807306170464 10.008725702762602 13.014246493577959 12.66115979850292 52.140375763177872 11.91274583339691 123.90423382818699 61.544001087546349 7.4262305945158031 21.315017148852348 7.765933737158778 10.878402918577192 141.04354605078697 14.010502576828005 9.0669935643672925 10.169937983155249 24.711225375533107 13.964491322636603 6.78955353796482 7.287547141313552 8.710424453020094 90.927786126732826 17.230661198496819 16.038344487547874 +leaf_count=154 633 144 505 99 514 151 403 44 57 58 229 61 518 281 34 92 32 45 654 58 37 42 103 57 28 31 37 377 78 70 +internal_value=0 0.00360426 -0.00291084 0.000984507 0.00721529 0.0124385 0.00995337 0.0160023 0.0151643 0.00337799 0.0180726 -0.0240171 -0.0150745 0.0154619 0.0266462 0.00201152 -0.0145018 0.00738485 0.014231 0.0183379 0.00222912 -0.00513139 0.00941712 -0.00435681 -0.00460896 -0.0335963 0.0260867 -0.0189164 -0.0154471 -0.0278111 +internal_weight=0 1137.69 654.792 526.625 379.414 482.899 449.243 256.825 354.592 117.483 322.933 156.689 147.21 71.5527 139.342 28.7412 31.6586 18.6443 270.793 221.79 72.0358 62.9688 41.6707 49.0032 31.5008 21.298 149.754 128.167 45.9302 33.269 +internal_count=5626 4932 2824 2293 1676 2108 1957 1171 1554 531 1420 694 617 325 640 126 134 77 1191 990 299 262 173 201 131 89 691 531 206 148 +is_linear=0 +shrinkage=0.049005 + + +Tree=23 +num_leaves=31 +num_cat=0 +split_feature=25 25 5 27 0 9 25 27 26 25 26 27 19 3 26 15 24 5 10 3 24 27 5 25 10 17 15 17 26 25 +split_gain=40.1775 28.5391 21.2115 24.022 21.6999 14.437 10.6811 9.68098 29.4088 12.1683 9.49279 15.4288 9.5351 9.34546 9.05693 9.01654 9.99563 8.70532 9.50818 8.64526 9.95226 14.1481 9.77977 11.1937 9.7075 9.18406 8.78252 8.45746 8.40755 11.0532 +threshold=1.2815000000000001 0.59250000000000014 0.81250000000000011 0.90250000000000019 1.7460000000000002 1.2475000000000003 1.0025000000000002 0.90650000000000008 0.89850000000000019 0.94550000000000012 0.76750000000000018 0.84050000000000014 -1.2444999999999997 2.6165000000000007 0.93150000000000011 -0.8929999999999999 0.88550000000000006 0.41850000000000004 -0.44149999999999995 1.8795000000000002 1.2485000000000002 0.89350000000000007 1.1425000000000003 1.5165000000000002 1.1305000000000003 1.5170000000000001 -1.6384999999999998 1.3855000000000002 0.87750000000000006 0.78550000000000009 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 -1 5 6 13 7 28 8 9 10 -3 12 -12 -5 27 16 -14 -9 -19 20 21 24 23 -22 -2 -24 -23 -8 -4 -30 +right_child=19 2 3 4 -6 -7 14 17 -10 -11 11 -13 15 -15 -16 -17 -18 18 -20 -21 22 26 25 -25 -26 -27 -28 -29 29 -31 +leaf_value=-0.010168203561893019 0.0023255538873743018 -0.015007778537312244 0.02157889476122192 0.013324318264459576 -0.030125847412692336 0.032162810892825147 -0.026007001021302597 0.037910946866582293 0.033606707214353604 -0.030794661967753222 0.063100100011369689 -0.040986044297232294 0.030652049538282135 -0.038937788918553179 0.029425930969154159 0.022754763948165058 -0.053856649293757261 -0.043774642719017737 -0.0089791149672188049 -0.051032339405948472 0.011819766319540799 0.034666249221230232 0.0021633949326305868 -0.053592692251124237 -0.067726007756230985 0.056074182501275563 -0.035883463152513839 0.03948692234737379 0.014921359921440369 0.053007727624871347 +leaf_weight=244.53479592502117 57.503547966480255 60.912562370300293 86.656820818781853 181.47222055494785 35.897799178957939 29.688629761338234 21.409705698490146 6.3055790066719046 53.310577169060707 40.581554487347603 10.013145312666891 11.679157331585882 5.2863284945487967 8.4273653626441938 23.156178176403046 43.208941057324409 8.7419666051864606 28.583118781447411 52.316429689526558 16.97141994535923 11.881572172045709 4.3430553972721091 26.246937423944473 12.781330078840254 5.0663290321826926 10.378634184598921 94.992764174938202 5.9250764846801749 24.589222222566605 66.275164484977722 +leaf_count=1007 234 253 397 770 150 129 90 26 248 171 45 48 24 35 101 193 37 118 218 85 48 19 111 54 22 42 434 25 126 366 +internal_value=0 0.00434587 0.00875789 0.0156826 0.00446595 -0.000204588 0.0267903 -0.00319875 0.00194801 -0.00740633 -0.000619135 0.0104851 0.0194239 0.011005 0.00710133 0.0117831 -0.022011 -0.0169935 -0.0212729 -0.0176519 -0.0151137 -0.0214168 0.00153712 -0.0220797 -0.00334657 0.0174402 -0.032799 -0.0118106 0.0323903 0.042701 +internal_weight=0 1048.97 804.438 453.81 225.797 350.628 228.012 320.939 233.734 180.424 139.842 78.9295 67.2504 189.9 50.491 57.2372 14.0283 87.2051 80.8995 240.166 223.194 161.906 61.2885 24.6629 62.5699 36.6256 99.3358 27.3348 177.521 90.8644 +internal_count=5626 4577 3570 2060 955 1510 1105 1381 1019 771 600 347 299 805 216 254 61 362 336 1049 964 709 255 102 256 153 453 115 889 492 +is_linear=0 +shrinkage=0.048515 + + +Tree=24 +num_leaves=31 +num_cat=0 +split_feature=25 9 27 24 22 5 26 25 26 27 17 3 25 11 22 22 4 13 26 8 3 7 9 25 15 24 25 27 13 14 +split_gain=36.7163 24.0171 18.0969 17.8223 20.9357 14.863 21.7019 15.5331 14.5983 15.9668 13.3432 15.4604 12.8311 20.0328 12.0985 13.8668 10.7159 10.7995 10.3699 10.0929 9.52343 9.39589 13.3178 9.29715 9.2656 8.46897 8.46633 8.37942 8.07409 8.06275 +threshold=1.4915 0.90750000000000008 0.90250000000000019 0.99650000000000005 1.0485000000000004 0.88650000000000007 1.3605000000000003 0.61050000000000015 0.88650000000000007 0.83650000000000013 0.72750000000000015 1.3765000000000001 0.98450000000000015 1.0375000000000003 1.0675000000000001 0.72750000000000015 0.48850000000000005 0.6725000000000001 0.84050000000000014 1.6300000000000001 1.8335000000000004 1.3895000000000002 0.93750000000000011 1.1475000000000002 -1.2649999999999999 0.70250000000000012 1.1275000000000002 0.84050000000000014 1.3005000000000002 0.51750000000000018 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 5 8 4 25 10 7 -7 9 -3 23 14 19 -14 15 -12 18 -18 29 -9 -2 22 -5 28 -20 -4 27 -26 -1 -17 +right_child=20 2 3 21 -6 6 -8 12 -10 -11 11 -13 13 -15 -16 16 17 -19 24 -21 -22 -23 -24 -25 26 -27 -28 -29 -30 -31 +leaf_value=-0.02010671642763185 -0.018392404687009149 0.016377972159106566 0.0044617770791712929 0.07826270090390508 0.0080988224288466911 -0.012245975266813491 -0.041723241393993582 0.011926849290118115 0.034757000326544024 -0.036118640275680319 0.043223272343008781 -0.02799313503616406 0.013093313603721492 -0.057761748385132254 0.029384670737349405 -0.022047636671917129 -0.054580817353397038 -0.0085100007588562298 0.072268232297218113 0.041654227830556056 -0.06427312079439669 0.047869489806011224 0.0048526962845935658 -0.066616993672066596 0.04561446902918407 -0.04970880012289728 -0.044391256549266622 -0.0020920784632176411 0.021102427053410339 0.0147804927070814 +leaf_weight=130.69967643916607 143.02023722231388 122.50620187819004 8.2511390596628171 5.9552715271711341 43.45742155611515 51.490847051143646 19.677406698465347 48.318228825926781 100.1641036272049 15.001909047365187 14.688407883048056 42.847035482525826 54.427004247903824 11.078641414642332 35.129071265459061 40.707486495375633 17.000013366341591 37.916273981332779 6.7963699102401725 57.939303994178772 11.258013218641279 15.104004070162771 133.46933411061764 9.1400160044431669 16.067281663417816 34.475203990936279 5.3886317610740653 18.01779468357563 11.972744345664976 20.680034294724464 +leaf_count=555 633 538 34 25 183 212 83 225 491 63 63 181 228 46 154 171 73 163 29 291 61 64 561 39 75 149 23 76 51 86 +internal_value=0 0.00324093 0.0114088 0.00212632 -0.0153736 -0.00277058 0.00663088 0.0108928 0.02081 0.0106507 -0.00838146 -0.00167495 0.0178293 0.00110995 0.00363438 -0.0014687 -0.00550658 -0.0227718 0.00330043 0.0281364 -0.0217404 0.0118864 0.00798827 -0.0196569 0.0204702 -0.0392476 0.0115519 0.0203962 -0.0166485 -0.00964109 +internal_weight=0 1128.37 478.385 240.712 86.1838 649.982 242.931 223.254 237.672 137.508 407.051 255.238 171.763 65.5056 212.391 177.262 162.574 54.9163 107.658 106.258 154.278 154.529 139.425 151.812 46.2701 42.7263 39.4737 34.0851 142.672 61.3875 +internal_count=5626 4932 2108 1016 366 2824 1085 1002 1092 601 1739 1094 790 274 913 759 696 236 460 516 694 650 586 645 203 183 174 151 606 257 +is_linear=0 +shrinkage=0.0480298 + + +Tree=25 +num_leaves=31 +num_cat=0 +split_feature=25 26 27 25 24 26 25 0 3 24 27 5 27 5 24 19 0 10 25 24 5 17 25 2 17 6 5 25 23 15 +split_gain=43.1489 28.305 33.1203 15.7857 13.8376 12.6375 12.6924 13.522 11.84 11.7425 11.4465 10.5804 10.4435 10.1923 10.1718 9.9778 9.55943 9.41311 9.35088 8.73377 8.72096 8.71041 8.69478 8.33623 8.07056 7.97441 8.5068 7.92648 7.8517 7.7588 +threshold=1.0565000000000002 0.79050000000000009 0.85950000000000015 0.76150000000000007 0.98050000000000004 0.85650000000000015 0.86150000000000004 1.2435000000000003 1.0695000000000003 0.73550000000000015 0.93850000000000011 1.3365000000000002 0.86550000000000005 1.1275000000000002 0.64550000000000007 1.4845000000000004 0.99550000000000016 0.027500000000000004 0.53150000000000019 0.88050000000000006 0.88450000000000017 0.63950000000000007 2.1950000000000003 -0.17649999999999996 0.75150000000000006 0.65450000000000019 0.68950000000000011 0.7985000000000001 0.99150000000000016 -1.3984999999999999 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 9 5 12 10 6 16 8 -8 11 14 15 -4 -5 23 21 18 -11 -3 -20 24 -1 -6 -2 -16 26 -19 29 -15 -7 +right_child=4 2 3 13 22 27 7 -9 -10 17 -12 -13 -14 28 20 -17 -18 25 19 -21 -22 -23 -24 -25 -26 -27 -28 -29 -30 -31 +leaf_value=-0.01564933711570865 -0.016778898283611798 -0.036689751161873341 -0.087825094829588043 0.0024374998143945475 -0.0011601850171489329 0.070343470245288239 0.025889466716790863 -0.08019140782109295 -0.049015145646853109 -0.030971880591830016 -0.037204186806178118 0.053996959352009093 -0.0083100377694351728 0.038906809253144686 -0.055665883731615559 -0.047716271428509746 0.041790146727713209 -0.013312820159692786 0.037898302503953811 -0.0081649246695004504 -0.0027360173516106133 0.012209671051646947 -0.032198668137466233 0.066220399792126558 -0.016104159733460219 -0.028639565246865641 0.030507177462984023 0.040674971183262867 0.0079111697725962535 0.014967911211322705 +leaf_weight=38.455313518643379 4.8413996547460556 8.883796274662016 3.8359531611204138 143.3213869780302 174.99211065471172 6.2674815058708182 14.119372248649602 6.0063493996858588 7.2063541263341895 63.116637349128723 74.848563879728317 8.3814563006162626 141.26725855469704 38.836266651749611 19.391522854566574 9.6176771223545057 29.492704510688782 20.97701270878315 21.050248473882675 16.681467846035957 44.417418137192726 74.597407802939415 23.099160715937614 6.2913636267185193 29.235565423965454 20.843325287103653 19.170078799128532 96.166086539626122 35.249282747507095 65.575019761919975 +leaf_count=159 20 36 17 625 737 31 63 25 31 265 354 37 593 176 82 40 130 88 98 74 185 306 108 26 124 87 80 512 158 311 +internal_value=0 0.00575577 0.0111381 0.0017334 -0.0134385 0.0236978 0.0106225 -0.0171716 0.000577824 -0.00761706 -0.0230195 0.00230949 -0.0104121 0.00983963 -0.0128282 -0.00122206 0.0206039 -0.0180991 0.00719978 0.0175334 -0.0179676 0.00273332 -0.00477954 0.0301258 -0.0318806 -0.0047775 0.00761106 0.0317481 0.0241593 0.0197988 +internal_weight=0 889.118 633.959 362.51 377.117 271.449 103.44 27.3321 21.3257 255.159 179.026 131.052 145.103 217.407 104.177 122.67 76.1082 124.107 46.6155 37.7317 93.0445 113.053 198.091 11.1328 48.6271 60.9904 40.1471 168.009 74.0855 71.8425 +internal_count=5578 3942 2880 1569 1636 1311 457 119 94 1062 791 542 610 959 437 505 338 520 208 172 391 465 845 46 206 255 168 854 334 342 +is_linear=0 +shrinkage=0.0475495 + + +Tree=26 +num_leaves=31 +num_cat=1 +split_feature=25 26 25 25 24 11 3 10 25 5 24 3 13 9 9 21 19 23 11 0 9 14 5 24 14 6 23 10 24 17 +split_gain=39.4479 27.5485 15.8027 13.7386 13.3884 16.9985 13.0673 12.1215 11.656 15.665 10.7608 10.1356 13.2512 9.9692 9.83908 9.93662 9.79375 9.7506 9.64708 9.59213 9.97083 9.37909 9.3688 9.11329 9.08746 8.85588 8.74325 9.23451 8.65638 8.6021 +threshold=1.0895000000000004 0.79050000000000009 0.6785000000000001 0.94550000000000012 1.2895000000000003 -0.35349999999999993 1.6295000000000002 -1.3164999999999998 2.0800000000000005 1.7360000000000002 0.73550000000000015 1.5555000000000001 0.50050000000000006 0.57350000000000001 1.2815000000000001 0 1.4845000000000004 1.2085000000000001 -0.65249999999999997 1.3285000000000002 0.8005000000000001 -0.56549999999999989 0.63450000000000017 1.2215 0.045500000000000006 -0.5804999999999999 1.2555000000000003 0.027500000000000004 1.0935000000000004 0.63950000000000007 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 9 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 10 -3 11 5 -2 8 -5 9 -7 16 14 -13 -6 15 19 29 21 -15 -4 23 28 -9 -21 -24 -23 27 -12 -17 -1 +right_child=4 2 3 7 13 6 -8 22 -10 -11 26 12 -14 18 -16 17 -18 -19 -20 20 -22 25 24 -25 -26 -27 -28 -29 -30 -31 +leaf_value=-0.012524938344017605 -0.034117251266444187 -0.001951187380272068 0.031702204347222346 -0.039481867372114426 -0.058097681500575989 -0.0049004773422511487 -0.056318379433747935 -0.022305309530242675 -0.049984479050948494 0.069917179214025599 -0.035201312272414513 0.073550434619001778 -0.0072821243434013109 0.030230755590222886 0.041580979952600718 -0.059797039535318328 -0.042161380099712077 0.069648912986805853 -0.0043633789439959103 0.037181064843840352 -0.024109273761706209 0.048064727229187566 0.025578225228127551 -0.038577849874313147 -0.0011996449136978502 -0.0044045298072963824 0.019612576012121605 -0.0082561388573004716 0.0060237798977717995 0.013973314944730036 +leaf_weight=40.620874777436256 100.60264597833157 173.06806899607182 133.18080979585648 13.755707025527952 5.7302991300821295 123.02872264385223 12.029010087251661 20.525532066822052 11.80784137547016 6.5305197834968558 57.19541110098362 4.9770988374948493 46.311996936798096 25.559974387288094 53.067721575498581 10.637418672442438 10.512747451663015 4.2098773866891852 59.318626001477242 20.348229393363003 15.513836488127707 9.4909849464893323 56.558206811547279 4.2542418092489234 55.781515538692474 28.634200632572174 12.472383722662924 55.567110523581505 7.5845899283885947 81.848462149500847 +leaf_count=169 444 722 665 60 24 530 58 87 59 28 242 23 204 109 261 48 44 20 254 103 72 42 252 20 248 133 52 233 34 338 +internal_value=0 0.0051458 0.0102599 0.0146188 -0.013538 -0.0190798 -0.00921775 0.00258361 -0.00520993 -0.00112924 -0.00788414 0.0198363 0.000561875 0.00199705 0.0232817 0.0191291 0.00144146 0.000465957 0.00605415 0.024226 0.00544472 -0.00462023 0.0069387 0.0240809 0.0122819 0.00865731 -0.0177866 -0.0219233 -0.0324003 0.00518432 +internal_weight=0 916.117 657.9 484.832 344.608 253.999 153.396 146.621 141.367 129.559 258.217 338.211 51.2891 90.6089 286.922 233.854 132.982 60.5571 84.8786 173.297 40.1163 56.3472 132.865 24.6025 112.34 38.1252 125.235 112.763 18.222 122.469 +internal_count=5578 4072 2994 2272 1506 1119 675 647 617 558 1078 1625 227 387 1398 1137 551 277 363 860 195 257 587 123 500 175 527 475 82 507 +cat_boundaries=0 1 +cat_threshold=1 +is_linear=0 +shrinkage=0.047074 + + +Tree=27 +num_leaves=31 +num_cat=0 +split_feature=25 25 5 27 25 3 24 11 9 11 25 5 0 15 13 22 1 24 27 5 22 1 3 9 24 4 27 22 7 0 +split_gain=35.9765 20.9672 17.7994 16.3844 13.1579 12.9289 13.2642 16.3928 10.3878 10.2987 10.1655 13.415 9.96204 10.1419 9.71859 9.70413 9.5801 9.29424 9.08615 9.84757 10.2873 8.91674 8.61711 8.94497 9.53903 8.79448 8.23081 8.23862 8.32573 7.49562 +threshold=1.0895000000000004 0.68250000000000011 0.88150000000000006 0.90250000000000019 0.94550000000000012 1.7785000000000004 1.2895000000000003 -0.29749999999999993 1.2475000000000003 -0.96549999999999991 2.0390000000000006 1.6145000000000003 1.7805000000000002 -0.78049999999999986 0.9405 1.0045000000000002 1.3180000000000003 0.6705000000000001 1.3970000000000002 1.0445000000000002 0.72250000000000003 1.1505000000000003 0.33650000000000008 1.1555000000000002 0.90550000000000008 -0.16449999999999995 1.0835000000000001 0.98650000000000004 1.2635000000000003 0.97550000000000014 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 14 4 -4 8 6 7 17 15 -8 11 16 13 -5 18 -3 26 -2 19 20 29 -11 25 -24 -25 -22 27 28 -9 -1 +right_child=5 2 3 12 -6 -7 9 10 -10 21 -12 -13 -14 -15 -16 -17 -18 -19 -20 -21 22 -23 23 24 -26 -27 -28 -29 -30 -31 +leaf_value=-0.0082774275368873509 0.022666326770219066 -0.0019201158238575263 0.030748215691833121 0.038104752045793444 -0.013764623796663544 -0.041726017749476471 0.040063061144351202 -0.012638357869958042 0.038414391590425527 -0.0089770589851300153 -0.043797675806831714 0.054235479968268621 -0.020171587229541335 0.005740307621230554 0.0068407079305820451 0.020219669924389953 -0.049531912027859303 -0.033624993001082369 -0.058428208369605293 0.012150271601315767 0.053134028242003389 0.044810372004863284 -0.025338728598450686 0.047496452181267981 -0.028165017702065927 -0.019581348034713713 -0.030176484853881302 0.023714863789150557 0.041502141499524491 0.042997493490657783 +leaf_weight=13.815905869007112 6.8389190137386313 138.28003804385662 131.82050098478794 27.516236215829849 79.412883639335632 30.60953426361084 16.145383074879646 49.664186909794807 22.415192186832428 51.2257060110569 13.240570366382597 8.9152825921773893 23.024424374103546 89.1927620023489 112.90983502566814 62.40053790807724 9.6566172838211042 92.979368478059769 8.0817545205354673 42.055928945541382 7.2013084590435028 7.7000712007284156 121.43027685582638 7.9979846626520139 6.609875351190567 7.2482704073190671 17.577814027667046 31.82121716439724 7.0438860654830924 11.220987647771834 +leaf_count=57 29 618 709 120 341 148 67 212 104 215 67 39 97 388 471 283 41 411 34 176 30 32 508 33 27 30 82 133 30 46 +internal_value=0 0.00487631 0.0103011 0.0189623 0.00252615 -0.0128195 -0.00999085 -0.0153835 0.00832499 0.00708688 -0.00497268 -0.000849576 0.00784389 0.0133708 -0.00432165 0.00496413 -0.00509183 -0.0297683 -0.00990672 -0.00810445 -0.0129575 -0.00194844 -0.0175594 -0.0211939 0.0132606 0.0166582 -0.00104742 0.00473627 -0.0059134 0.0147029 +internal_weight=0 912.635 574.063 271.554 302.509 343.419 312.809 237.738 223.096 75.0712 137.92 124.679 139.733 116.709 338.572 200.681 115.764 99.8183 225.662 217.581 175.525 58.9258 150.488 136.038 14.6079 14.4496 106.107 88.5293 56.7081 25.0369 +internal_count=5578 4072 2660 1314 1346 1506 1358 1044 1005 314 604 537 605 508 1412 901 498 440 941 907 731 247 628 568 60 60 457 375 242 103 +is_linear=0 +shrinkage=0.0466033 + + +Tree=28 +num_leaves=31 +num_cat=0 +split_feature=27 5 0 24 3 26 27 26 0 5 5 19 0 27 26 23 1 3 23 11 5 14 5 6 6 4 27 24 13 10 +split_gain=26.2294 23.8617 18.6908 18.0322 11.6879 11.3966 10.8368 10.9777 10.798 10.2417 10.2368 8.99332 8.62304 8.27332 9.28095 8.11199 7.84934 9.22873 7.53345 7.50785 7.61081 7.49683 7.27803 7.15804 7.60588 7.78075 7.38092 13.3622 7.63835 7.7354 +threshold=1.0105000000000002 0.90050000000000008 1.9155000000000002 1.0035000000000001 1.8535000000000004 0.83850000000000013 0.82250000000000012 0.88650000000000007 1.3615000000000002 1.8805000000000003 1.8805000000000003 1.0525000000000002 1.9525000000000001 0.72450000000000014 0.72850000000000015 0.99250000000000005 -1.4269999999999998 1.2205000000000001 1.2555000000000003 -0.78449999999999986 1.0895000000000004 -0.30649999999999994 1.8210000000000004 1.6320000000000003 -1.4399999999999997 0.78250000000000008 0.84850000000000014 1.1375000000000002 1.1445000000000003 -1.2954999999999999 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 2 5 8 10 13 -7 -8 22 11 16 23 -12 14 -1 -9 17 -5 -13 20 -6 -21 -2 24 25 -3 -26 28 29 -28 +right_child=3 9 -4 4 19 6 7 15 -10 -11 12 18 -14 -15 -16 -17 -18 -19 -20 21 -22 -23 -24 -25 26 -27 27 -29 -30 -31 +leaf_value=-0.011813660562152465 -0.020341441701599527 0.0068354927543856081 0.038458460595218839 -0.059123936749970123 0.043934545420260311 0.014985835781536698 -0.037803488840417079 -0.009624746729379019 -0.047440429689102177 0.04474378474861445 0.048230196273309184 -0.0074329720773508171 -0.018434861736559827 -0.020102238298183996 0.013052901808897203 0.013581880044862287 0.00090106393161682699 0.0097134208245744352 0.053515938745641083 -0.077174839477316848 -0.029742029277331928 -0.023482385620970062 0.028179859720689614 -0.023309587151051577 0.02667530817820447 -0.06643166895476027 -0.062347157191050689 0.032626166857582142 0.02080192385084572 -0.0037709413297525429 +leaf_weight=93.576448366045952 84.066911250352859 9.9966579377651197 23.282120198011398 10.43544375896454 5.3788461536169034 99.456282943487167 18.618755668401718 76.984757140278816 32.71381787955761 20.950500994920731 16.222425490617756 64.47263902425766 5.5408337861299506 111.75762939453125 48.513184800744057 54.948516428470612 162.52538533508778 6.8781831562519065 4.6266136765480033 8.269796624779703 6.7047314196825027 16.741622760891914 7.1392263919115058 9.8544433861970884 122.74066457152367 4.462736263871192 5.2824820280075064 40.151657745242119 26.466223374009132 52.423792690038681 +leaf_count=392 380 47 102 44 22 465 78 338 152 103 71 298 24 473 205 245 695 29 21 38 30 75 33 46 594 20 24 179 119 236 +internal_value=0 0.00430367 -0.00195679 -0.0104207 -0.00300762 -0.0038243 0.0031676 -0.00463965 -0.0247 0.0134345 0.0013717 0.0115079 0.0312576 -0.0107105 -0.00332355 4.05157e-05 -0.00224494 -0.0317769 -0.00335207 -0.0268082 0.00305413 -0.0412353 -0.0165434 0.0152916 0.0167461 -0.0157776 0.0186496 0.0107261 0.00027935 -0.00913306 +internal_weight=0 888.566 527.138 362.617 238.697 503.856 250.008 150.552 123.92 361.428 201.602 340.478 21.7633 253.847 142.09 131.933 179.839 17.3136 69.0993 37.095 12.0836 25.0114 91.2061 271.379 261.524 14.4594 247.065 124.324 84.1725 57.7063 +internal_count=5578 3985 2298 1593 1028 2196 1126 661 565 1687 863 1584 95 1070 597 583 768 73 319 165 52 113 413 1265 1219 67 1152 558 379 260 +is_linear=0 +shrinkage=0.0461372 + + +Tree=29 +num_leaves=31 +num_cat=0 +split_feature=25 25 26 27 22 27 24 18 26 25 27 9 26 15 13 0 25 25 24 4 4 27 15 26 26 18 22 18 3 7 +split_gain=33.3099 27.7608 16.6503 16.8924 14.425 13.5949 13.1102 11.6698 9.74098 10.0539 8.8313 12.0191 8.94782 8.65725 8.3698 8.27005 12.9586 7.80217 8.23237 9.30505 7.77188 9.23196 7.49395 7.74075 7.40783 8.57429 7.5881 9.07766 7.29977 7.27379 +threshold=0.96550000000000014 0.68250000000000011 0.85650000000000015 0.90450000000000019 1.0355000000000001 1.0835000000000001 1.2355000000000003 -0.78599999999999992 0.82450000000000012 1.9405000000000003 0.84050000000000014 1.5245000000000002 0.79050000000000009 -1.6139999999999999 1.3735000000000004 1.2505000000000002 0.84750000000000003 1.6305000000000003 1.2895000000000003 1.6505000000000003 -0.94049999999999978 1.0145000000000002 -0.18399999999999997 1.4955000000000003 0.97050000000000003 0.17350000000000002 0.96950000000000014 0.88950000000000007 0.45550000000000007 -0.80599999999999994 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 10 7 -4 5 13 -7 -3 -6 -10 11 12 28 -2 -14 -9 -17 18 19 -15 -20 -22 -8 -24 25 -12 -27 -28 -1 -11 +right_child=4 2 3 -5 8 6 22 15 9 29 24 -13 14 17 -16 16 -18 -19 20 -21 21 -23 23 -25 -26 26 27 -29 -30 -31 +leaf_value=0.01611623180001304 0.038003226638486057 -0.023337488267766528 0.031382053709053448 0.0093469400187243031 -0.051581667448288855 -0.051801362059179741 0.010198655336172379 0.013733599140265281 0.0081361277619945334 0.02796498787110463 -0.038510737625984864 0.060597017414700749 0.0093095426128313695 -0.014271130573492597 0.071022042251514761 0.0094076637811092868 -0.064735486660311245 -0.032968452720241209 0.054266567519419912 0.049282155309018985 0.015955529879908774 -0.053590208141609558 -0.05781547897562337 -0.0019383157891720304 -0.0027932873325419881 -0.027206236111934148 0.061882561460463281 -0.016880543620244999 -0.011619341303908418 -0.035522262972903479 +leaf_weight=24.085657998919487 7.5807439237833014 32.347682058811188 137.95835581421852 153.16785015165806 7.0151420533657065 36.851910725235939 16.033158197999001 91.512086614966393 139.26538300514221 4.6406546086072948 37.202282518148422 7.0506708174943915 57.036433652043343 156.27574005723 4.9858320653438559 13.313930258154871 7.798839032649993 30.806724265217781 7.4110493659973171 4.9588741660118094 17.906719043850902 5.1211010515689841 10.932130366563799 9.8171667456626874 69.253518879413605 14.175396248698236 6.0161609351634961 6.1978352665901184 111.19574993848801 19.952163085341454 +leaf_count=99 33 143 774 661 29 190 69 406 595 22 157 31 241 678 22 59 33 140 31 21 75 21 46 44 287 60 25 26 464 96 +internal_value=0 0.00588092 0.0134908 0.0197889 -0.00949123 -0.0154645 -0.0325465 0.000843387 0.00112515 0.00338165 -0.00396096 0.00199891 -9.51033e-05 -0.00999719 0.0142705 0.00778853 -0.0179801 -0.0116327 -0.00820356 -0.0123165 0.0135827 0.000489422 -0.0132552 -0.0313782 -0.013129 -0.0243849 -0.00447098 0.0219152 -0.00668127 -0.0235422 +internal_weight=0 773.298 436.099 291.126 474.569 303.695 73.6344 144.973 170.873 163.858 337.2 204.354 197.304 230.061 62.0223 112.625 21.1128 222.48 191.673 161.235 30.4389 23.0278 36.7825 20.7493 132.845 63.5917 26.3894 12.214 135.281 24.5928 +internal_count=5578 3488 2076 1435 2090 1348 349 641 742 713 1412 857 826 999 263 498 92 966 826 699 127 96 159 90 555 268 111 51 563 118 +is_linear=0 +shrinkage=0.0456759 + + +Tree=30 +num_leaves=31 +num_cat=0 +split_feature=27 26 22 24 5 2 3 22 1 3 2 19 4 0 22 3 5 23 18 2 10 13 7 2 27 1 14 2 4 19 +split_gain=21.1715 27.199 21.2716 33.3534 15.4015 11.118 12.5501 10.3825 10.195 8.36267 9.51955 8.20399 7.64595 7.50277 7.35205 8.43809 10.1932 7.34618 7.32633 7.26915 8.71029 7.37012 9.23462 7.04987 9.74727 7.50722 8.88904 8.77184 10.2774 7.88244 +threshold=0.89550000000000007 0.86950000000000016 1.0445000000000002 1.0755000000000001 0.77050000000000007 0.43550000000000005 1.5655000000000001 0.78450000000000009 1.8120000000000003 0.76950000000000018 1.3615000000000002 -1.3724999999999998 -0.94049999999999978 0.51450000000000007 0.99050000000000005 0.60050000000000014 1.0075000000000003 1.0865000000000002 1.2545000000000002 0.70950000000000013 0.12450000000000001 1.1595000000000002 0.076500000000000012 -1.0085 0.98050000000000004 0.91050000000000009 0.61450000000000016 0.3775 0.64850000000000019 1.4970000000000003 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 4 3 7 11 -5 -7 -2 23 12 17 -1 -6 -14 15 -3 -17 19 -16 21 -21 22 -11 24 -4 26 29 -28 -29 -25 +right_child=2 14 8 5 9 6 -8 -9 -10 10 -12 -13 13 -15 18 16 -18 -19 -20 20 -22 -23 -24 25 -26 -27 27 28 -30 -31 +leaf_value=0.022873217903745288 0.0018080856711768995 -0.0036886346386059733 0.070036898055272898 0.0096625230012110201 -0.0091577228935665802 -0.0043524942186326304 -0.056314827187816101 -0.040305540853921636 -0.056898376656661323 -0.057568123205923666 -0.042898723905879337 -0.014220335909344524 0.079415275585443507 0.023976817781782355 0.037278298955658942 0.010484406072168537 0.042614396554131968 0.03631320062022593 -0.013159508289299061 -0.010887366824892995 0.07144012171160731 0.041891136781480369 -0.0013570183571999768 0.0087904928226967671 0.012083951266490311 0.027169952273501996 -0.051734972099786052 0.019307633450672709 -0.058046485784301487 -0.051700416263057804 +leaf_weight=16.25383360683918 16.845258757472038 48.272217109799385 9.5136086493730527 99.936923325061798 15.242574661970137 46.793883368372917 15.459009185433386 111.54948636889458 6.432753086090087 12.403650760650637 11.70637510716915 179.79148744046688 6.9420342147350302 50.491499409079552 72.708062991499901 72.777877077460289 37.354786187410355 15.329400867223738 7.9909748733043662 6.6843724548816663 6.1860880553722382 4.8596229702234259 17.780538767576218 97.076566025614738 30.569393664598465 25.941300272941589 15.552700683474539 15.340454846620561 5.9630924612283698 5.7017410695552817 +leaf_count=69 73 235 43 428 67 200 66 522 28 54 51 764 30 226 368 347 197 69 37 29 27 22 78 422 132 111 67 65 26 25 +internal_value=0 0.00704997 -0.00695416 -0.0157414 -0.00195988 -0.000669578 -0.0172561 -0.0347803 0.00508514 0.0102378 -0.00148069 -0.011145 0.0223229 0.0306777 0.0200001 0.0137422 0.0213823 0.00618577 0.0322838 -0.00345301 0.0286827 -0.0152554 -0.024456 0.0070239 0.025839 0.00246911 -0.00211981 -0.0231865 -0.00234462 0.00543469 +internal_weight=0 582.775 502.676 290.585 343.671 162.19 62.2529 128.395 212.092 147.626 74.95 196.045 72.6761 57.4335 239.104 158.405 110.133 63.2437 80.699 47.9143 12.8705 35.0438 30.1842 205.659 40.083 165.576 139.635 36.8562 21.3035 102.778 +internal_count=4878 2670 2208 1289 1486 694 266 595 919 653 330 833 323 256 1184 779 544 279 405 210 56 154 132 891 175 716 605 158 91 447 +is_linear=0 +shrinkage=0.05 + + +Tree=31 +num_leaves=31 +num_cat=0 +split_feature=25 25 27 26 25 27 17 24 22 22 27 26 22 0 0 5 5 5 22 9 25 8 9 0 24 17 24 15 8 7 +split_gain=24.2656 16.2558 13.7597 20.2184 23.3259 16.5546 12.4779 11.1387 11.8564 9.98513 9.51525 12.8765 9.24453 9.16653 8.56417 12.135 8.29134 11.9633 9.9956 8.58041 7.8114 7.77632 14.7641 7.81946 7.58515 8.17261 7.54119 7.45068 7.37291 7.28489 +threshold=1.3075000000000003 0.59250000000000014 1.1835000000000002 0.88650000000000007 0.94550000000000012 0.90850000000000009 1.3005000000000002 1.0035000000000001 0.99950000000000017 0.6805000000000001 0.79950000000000021 0.77650000000000008 1.0125000000000002 1.2505000000000002 2.4065000000000007 2.0995000000000004 0.71650000000000014 0.58450000000000013 0.98550000000000015 0.57950000000000002 0.76850000000000007 1.6300000000000001 0.88850000000000018 0.88950000000000007 0.79350000000000009 0.57250000000000012 0.86750000000000005 -1.5714999999999997 1.6300000000000001 -0.92449999999999999 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 -1 3 4 10 24 29 8 -7 -2 11 16 27 -12 15 -4 17 18 19 -3 -15 22 -9 -23 -5 -26 -10 -11 -14 -6 +right_child=9 2 14 5 6 7 -8 21 26 12 13 -13 28 20 -16 -17 -18 -19 -20 -21 -22 23 -24 -25 25 -27 -28 -29 -30 -31 +leaf_value=-0.0082471403096435036 0.056650023540302609 -0.063184885592260848 -0.011693577769410648 0.0498802555426828 -0.075437058096030379 -0.030114747959211204 0.017105062411645555 -0.029869597987373594 0.038843389116873857 0.029382871061621865 0.0039554470633161309 0.029518882215357225 0.012603644090410124 -0.018074249499834841 -0.069270882468694769 0.058112369663818955 0.019565550225034062 -0.046490340599742663 0.058139232493637755 0.01361363127988654 -0.095489926491498678 0.010795372361831717 0.024352197967825562 0.050037190435752513 -0.00037763968818458509 0.031012120694733931 -0.0090649615134642311 -0.030372825347097867 -0.017879523424329417 -0.027886612447851584 +leaf_weight=207.61027517914772 4.6588001847267142 5.6046099215745953 80.166696205735207 37.720884159207344 10.013497114181517 31.934142053127289 13.340485244989393 19.646151036024094 14.97713755071163 5.5048649013042441 34.166898414492607 75.237272217869759 34.829663708806038 10.112186357378958 5.7516588270664206 6.7500242292881003 30.261412501335144 17.291932135820389 7.0488086044788352 10.359699845314024 4.8076066821813574 23.558338031172752 34.779762387275696 27.528541013598442 26.441016480326653 96.105086222290993 18.190385952591896 99.575345322489738 46.079415246844292 41.178407445549965 +leaf_count=868 21 24 341 208 43 139 58 83 66 26 153 370 152 44 24 30 129 73 29 44 21 101 150 118 132 505 76 466 207 177 +internal_value=0 0.00400508 0.00772951 0.0105414 9.09107e-05 0.018735 -0.0259641 0.00789553 -0.00836877 -0.0156498 0.00871828 0.0151286 -0.0174609 -0.0103226 -0.0101825 -0.00627239 -0.000214093 -0.0150648 0.00854812 -0.0133481 -0.0430199 0.0179306 0.00477973 0.0319411 0.0302743 0.0242393 0.0125685 -0.0272424 -0.00475716 -0.0371878 +internal_weight=0 890.583 682.973 590.304 259.423 330.881 64.5324 170.614 65.1017 190.648 194.89 145.804 185.989 49.0867 92.6684 86.9167 70.5665 40.3051 23.0131 15.9643 14.9198 105.513 54.4259 51.0869 160.267 122.546 33.1675 105.08 80.9091 51.1919 +internal_count=4878 4006 3138 2743 1165 1578 278 733 281 872 887 669 851 218 395 371 299 170 97 68 65 452 233 219 845 637 142 492 359 220 +is_linear=0 +shrinkage=0.05 + + +Tree=32 +num_leaves=31 +num_cat=0 +split_feature=25 5 0 0 9 3 22 5 6 13 7 17 22 22 22 6 5 17 22 7 17 10 0 22 24 27 18 27 26 25 +split_gain=22.0242 15.2347 20.4881 11.2204 11.5256 10.9456 11.5622 9.33078 9.83621 9.28417 9.22159 12.3928 12.5914 10.3793 9.01528 8.67008 8.91259 8.6697 8.65218 8.86985 8.53405 8.33145 7.88376 7.63167 7.53615 13.9183 7.53511 7.27739 8.01751 7.30158 +threshold=1.3145000000000002 0.74850000000000017 1.4105000000000001 0.72950000000000015 1.1415000000000004 1.6175000000000004 0.77250000000000008 1.8805000000000003 -1.4399999999999997 0.32350000000000007 0.57150000000000023 1.2945000000000002 1.0705000000000002 0.79150000000000009 0.6805000000000001 1.3405000000000002 0.88450000000000017 1.6260000000000001 1.0125000000000002 -1.5104999999999997 0.69550000000000012 0.082500000000000004 2.7735000000000003 1.0675000000000001 0.93650000000000011 0.93550000000000011 -0.61749999999999983 0.82050000000000012 0.77250000000000008 0.43850000000000006 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 3 5 4 21 6 -3 8 -8 -5 13 12 27 26 -2 16 -10 -7 -16 -20 -17 -1 24 -23 25 -4 -11 28 29 -12 +right_child=14 2 22 9 -6 17 7 -9 15 10 11 -13 -14 -15 18 20 -18 -19 19 -21 -22 23 -24 -25 -26 -27 -28 -29 -30 -31 +leaf_value=-0.033289880195490104 0.053093439599224114 0.039381478112771595 -0.0019591983626231816 -0.067565125068709486 0.032271065703215723 0.0011451317370192384 -0.023351476127505742 0.050952583220336682 0.003346173515312992 -0.0076629194908145546 0.015226803747845916 0.033384703497867006 0.046248938653843635 0.0047756763093040246 -0.026544201353108574 -0.080045770491685792 0.023333714510785402 -0.063907835687503647 -0.065931855904929115 -1.6284285411140657e-06 0.00033573720775373475 -0.014938870086943194 -0.05245727366330586 0.034170494483787284 0.0062764395093731391 -0.058859798883083896 0.053241617524512619 -0.052118051997545427 0.012955580022226035 -0.057329337625967217 +leaf_weight=61.872092053294182 4.7206625044345847 52.358165875077248 34.182994201779366 4.610264539718627 11.303839117288588 62.794449180364609 18.548751756548882 16.124170273542404 83.580113276839256 6.6504601538181332 4.8170643746852901 13.209734112024305 6.3489341437816611 108.82028841972351 101.89549805969 4.3770885020494488 167.63898852467537 5.5764795541763297 5.4786033481359473 74.089061126112938 13.444417536258696 48.097366407513618 9.6644416898488981 9.4683340787887555 61.842209920287132 15.675584748387335 21.484398379921913 19.887179106473923 15.072501897811888 12.375875681638716 +leaf_count=270 21 260 162 20 50 275 82 82 371 29 20 58 27 476 482 20 795 25 25 329 61 209 42 42 274 69 94 86 69 53 +internal_value=0 0.00378879 0.00898284 -0.0044519 -0.015985 0.0141629 0.0176814 0.0139404 0.0118652 0.00261807 0.0041687 -0.0103572 -0.0202341 0.0117746 -0.0151218 0.0142932 0.0166839 -0.00416073 -0.0168964 -0.00454123 -0.0194065 -0.0205521 -0.00913321 -0.00686142 -0.00538478 -0.0198488 0.0388451 -0.0283276 -0.0136641 -0.0370008 +internal_weight=0 889.826 545.808 344.018 130.742 424.443 356.072 303.714 287.589 213.277 208.666 71.7113 58.5016 136.955 186.184 269.041 251.219 68.3709 181.463 79.5677 17.8215 119.438 121.365 57.5657 111.701 49.8586 28.1349 52.1526 32.2654 17.1929 +internal_count=4878 4021 2518 1503 571 1971 1671 1411 1329 932 912 313 255 599 857 1247 1166 300 836 354 81 521 547 251 505 231 123 228 142 73 +is_linear=0 +shrinkage=0.05 + + +Tree=33 +num_leaves=31 +num_cat=0 +split_feature=25 9 0 5 26 17 3 4 25 0 5 22 0 6 1 25 22 3 3 24 5 25 17 5 0 11 15 6 4 15 +split_gain=20.011 14.7055 11.6977 13.2881 13.412 11.2595 11.5882 10.095 9.51272 9.65923 9.11383 8.5879 8.37602 10.2557 7.87315 8.09355 7.87092 8.39911 7.68939 8.1137 11.2857 7.67325 10.813 9.6185 7.36731 7.10757 7.06601 8.85795 9.8688 7.04777 +threshold=1.3075000000000003 0.90750000000000008 2.7735000000000003 0.88650000000000007 1.3605000000000003 0.72750000000000015 1.4035000000000004 -0.69249999999999989 0.58150000000000013 2.2790000000000004 2.0060000000000007 0.72750000000000015 1.0575000000000003 1.3550000000000002 -1.6564999999999996 0.96550000000000014 0.6805000000000001 1.8795000000000002 1.7785000000000004 1.0035000000000001 0.95250000000000012 1.8525000000000003 1.4375000000000002 1.5245000000000002 0.98850000000000016 -1.4134999999999998 -0.51949999999999996 0.44350000000000006 -0.48049999999999998 -1.3084999999999998 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 2 3 5 8 -1 7 29 26 -10 11 -3 16 -14 -9 25 -2 21 24 -20 -21 23 -23 -18 -13 -16 -5 28 -28 -7 +right_child=12 10 -4 4 -6 6 -8 14 9 -11 -12 18 13 -15 15 -17 17 -19 19 20 -22 22 -24 -25 -26 -27 27 -29 -30 -31 +leaf_value=-0.018919776995504484 0.062214302903796793 0.033345055769476717 -0.079750627787562603 -0.037038337249115753 -0.037501529455479105 0.073387216320907986 -0.028370001067328867 -0.051193753808493149 0.022908240961750318 -0.046661012482661773 0.040356699431322612 0.015384638659300729 -0.036176257308401613 0.041090850239976828 -0.035629374414965435 -0.025982694951039394 -0.0023060360742669719 -0.056835198465583631 -0.054356625689718642 0.047257435490687096 -0.034189623368236964 -0.042489459795302838 0.020785417661602662 0.064677399894356821 -0.0012938212484147897 0.011534700740712915 0.04069392701794295 0.049884726406778268 -0.04598258023067528 0.016587435656042964 +leaf_weight=123.9153339266777 3.956542342901229 33.172959953546524 4.7660627812147132 13.769695505499838 13.792378485202788 6.1703371256589881 30.465788930654526 7.8834268450736991 124.81990365684032 5.1971401274204245 25.157543137669563 173.8767279535532 53.78568784147501 4.6671994775533667 8.8280025422573072 23.180797308683395 77.40226936340332 8.691464036703108 10.091644853353502 7.6724923551082638 9.5437465012073499 25.420954450964928 9.1936968266963941 5.7580449134111396 106.9313733279705 83.950658544898033 5.0867255181074134 8.197141230106352 9.2663199752569216 47.528935298323631 +leaf_count=540 17 167 21 57 58 27 132 34 613 23 124 798 258 21 38 101 334 49 46 32 40 126 42 25 476 377 21 34 39 208 +internal_value=0 0.00365191 -0.0017806 -0.00105487 0.00987891 -0.00698845 0.000119324 0.00500802 0.0138076 0.0201274 0.0113137 0.00917279 -0.0142788 -0.0300068 -0.00284289 0.000444206 -0.0072298 -0.00940238 0.00657031 -0.0187588 0.00210762 -0.00590197 -0.0256836 0.00233192 0.0090335 0.00704698 -0.00881569 0.00841774 -0.0152644 0.023114 +internal_weight=0 883.265 516.819 512.053 180.129 331.923 208.008 177.542 166.337 130.017 366.446 341.289 188.876 58.4529 123.843 115.959 130.423 126.466 308.116 27.3079 17.2162 117.775 34.6147 83.1603 280.808 92.7787 36.3199 22.5502 14.353 53.6993 +internal_count=4878 4006 2323 2302 845 1457 917 785 787 636 1683 1559 872 279 550 516 593 576 1392 118 72 527 168 359 1274 415 151 94 60 235 +is_linear=0 +shrinkage=0.05 + + +Tree=34 +num_leaves=31 +num_cat=0 +split_feature=27 26 22 24 5 2 2 1 22 22 10 17 6 22 23 1 15 24 17 14 26 6 0 23 9 18 27 6 0 12 +split_gain=16.9244 22.7048 17.4625 28.4192 11.9695 10.8133 9.96271 9.1882 8.74633 8.39891 7.56477 7.40935 9.02772 7.32336 9.0293 7.67397 10.7035 7.15736 6.9066 6.77806 7.2924 9.7572 6.65749 7.54005 6.64643 6.63364 6.37099 8.56417 7.91123 6.35757 +threshold=0.89550000000000007 0.86950000000000016 1.0445000000000002 1.0755000000000001 0.88650000000000007 -1.5285 0.43550000000000005 1.8120000000000003 0.72250000000000003 0.78450000000000009 -2.1794999999999995 0.71550000000000014 1.1945000000000003 1.0865000000000002 0.99850000000000017 0.9265000000000001 1.1770000000000003 0.73950000000000016 0.61350000000000005 0.78550000000000009 0.73850000000000016 0.12450000000000001 1.6975000000000002 1.2085000000000001 1.2065000000000003 -1.8059999999999998 0.76450000000000007 1.0215000000000003 1.5195000000000003 1.6610000000000003 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 4 3 9 8 -6 -5 -4 -1 -2 -3 -12 -13 15 -15 19 -17 18 -11 25 -21 -22 23 -19 -20 -10 28 -28 -27 -14 +right_child=2 10 7 6 5 -7 -8 -9 13 17 11 12 29 14 -16 16 -18 22 24 20 21 -23 -24 -25 -26 26 27 -29 -30 -31 +leaf_value=0.018246832084195596 0.00058310446597435543 -0.057138906959577011 0.0065018110151853301 0.0093954013651155882 -0.059892453811052342 0.017678071483756042 -0.016226358338140068 -0.054269259762263482 0.03437824305499175 -0.061715298679510644 0.007592920965641849 0.030485768386752966 0.027938846615041465 0.04448657287966698 -0.029231609377195957 -0.045582665619048328 0.024786219371134701 -0.040415606603472848 0.034047363208174267 -0.017725421171033328 0.076180054871375219 0.0016832358895515873 -0.070162115993250618 0.026884932060303554 -0.041544851266056386 -0.013528050961796432 -0.045808937950806816 0.02572223259958302 0.046169757018662771 -0.037551197700423783 +leaf_weight=28.959513694047928 16.858922243118286 3.2728760689496985 203.56507205963135 98.915383130311966 4.7402959316968909 86.001724973320961 61.547470107674599 6.4158391356468192 6.7666918635368338 4.538001716136935 84.044519007205963 130.51010355353355 6.3653554767370197 12.104279994964601 6.3239765912294379 32.175760343670845 6.4946232140064231 67.585403360426426 9.030858710408209 12.068092405796053 7.4851596504449871 10.647662311792372 18.14062812179327 4.4348501563072196 4.2888328135013571 86.940349757671356 28.302411705255508 4.9104011356830588 5.9280820190906516 8.8693541288375854 +leaf_count=124 73 17 891 428 21 395 266 28 29 20 414 675 35 52 27 137 29 333 40 51 33 46 89 20 20 375 121 21 25 43 +internal_value=0 0.00632147 -0.0062989 -0.0143525 -0.00192138 0.0136258 -0.000432135 0.00464499 -0.00758476 -0.0322396 0.0183411 0.0194162 0.0262341 -0.0109828 0.0191889 -0.0137392 -0.0337643 -0.0373623 -0.00844264 -0.00898979 0.0123914 0.0324352 -0.0430903 -0.0362714 0.00970728 -0.0138505 -0.0164389 -0.0352333 -0.00971735 -0.0101882 +internal_weight=0 572.911 495.321 285.34 339.849 90.742 160.463 209.981 249.107 124.877 233.062 229.789 145.745 220.147 18.4283 201.719 38.6704 108.019 17.8577 163.049 30.2009 18.1328 90.1609 72.0203 13.3197 132.848 126.081 33.2128 92.8684 15.2347 +internal_count=4878 2670 2208 1289 1486 416 694 919 1070 595 1184 1167 753 946 79 867 166 522 80 701 130 79 442 353 60 571 542 142 400 78 +is_linear=0 +shrinkage=0.05 + + +Tree=35 +num_leaves=31 +num_cat=0 +split_feature=25 26 0 27 26 26 25 27 3 27 17 22 14 5 18 6 15 22 27 22 12 22 15 2 2 7 8 22 17 18 +split_gain=16.729 17.9033 13.5723 10.0253 12.6497 11.7085 13.0876 11.6986 11.449 11.0722 9.39124 8.67646 8.22867 15.4723 8.98424 7.88446 7.1734 7.13405 7.98007 7.0828 7.08389 6.97502 6.83779 6.80384 7.08972 6.63789 6.60749 6.36762 7.05854 6.89581 +threshold=1.3075000000000003 0.76750000000000018 2.7735000000000003 0.85950000000000015 0.94950000000000012 0.89850000000000019 0.94550000000000012 1.0615000000000003 2.0675000000000003 0.96350000000000013 1.2945000000000002 0.6805000000000001 -0.73949999999999994 1.3365000000000002 0.65250000000000019 -1.8214999999999997 -0.56949999999999978 1.0705000000000002 0.69550000000000012 1.0485000000000004 1.6610000000000003 1.0125000000000002 -1.5714999999999997 -1.1544999999999999 -0.071499999999999994 -1.5104999999999997 1.6300000000000001 1.0515000000000001 1.1215000000000004 0.82650000000000012 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 17 3 5 9 6 -3 15 12 23 16 -2 13 14 -9 -6 -8 19 -19 20 -1 22 -13 -5 -25 -23 -27 -14 29 -29 +right_child=11 2 -4 4 7 -7 10 8 -10 -11 -12 21 27 -15 -16 -17 -18 18 -20 -21 -22 25 -24 24 -26 26 -28 28 -30 -31 +leaf_value=-0.0051034773118335706 0.057165412136011499 0.016071251462820766 -0.057366614122783981 0.021474688142757832 -0.050968249154749692 0.030905683621052806 0.0015467964798503899 -0.019589760198298976 -0.045657755736837474 0.0086896999322968391 0.028543595786825995 0.032019473172471412 -0.0038733627131408085 0.040798753188756164 -0.085644418716181614 0.019773220553204636 -0.047775226475465893 0.065377352520510162 -0.0044495753990647542 -0.069154012014168265 -0.029805724877865942 -0.062185357725237603 -0.028322860970683646 -0.068895787697454441 -0.022874076986419519 0.018468481207434051 -0.014062275727334964 0.05616900795517657 0.00027519974129896146 -0.006052782019182054 +leaf_weight=89.27649062871933 4.1502887010574332 125.91121646761894 7.9749069213867179 4.9030801355838767 4.0596900582313529 85.220606312155724 11.738078787922861 18.120867237448696 14.193256825208662 25.250258341431618 8.9717950969934446 4.9633994549512854 40.671848207712173 8.1656862050294858 7.1903134286403647 132.2725445330143 19.819174736738205 5.9027656316757229 13.335674643516539 5.8937074840068808 43.002321884036064 4.5588088035583487 86.733099035918713 14.027656644582747 20.742948666214943 27.921791821718216 35.399035379290581 18.645486876368526 18.316592782735825 5.8499410301446906 +leaf_count=380 18 608 35 23 18 467 52 78 61 110 39 24 175 36 30 590 86 25 57 25 186 21 418 63 94 122 161 81 79 25 +internal_value=0 0.00343574 0.00742051 0.00830511 0.00260535 0.0158337 0.0081166 0.00741069 -0.00325024 -0.0171926 -0.016596 -0.0142064 0.00189594 -0.0190473 -0.0383543 0.0176667 -0.0294293 -0.0115515 0.0169748 -0.0155234 -0.0131339 -0.0160626 -0.0250566 -0.0336654 -0.0414408 -0.00391294 0.000282405 0.0102941 0.0237534 0.0413093 +internal_weight=0 749.457 592.046 584.071 332.41 251.661 166.44 267.486 131.154 64.9239 40.529 163.726 116.961 33.4769 25.3112 136.332 31.5573 157.411 19.2384 138.173 132.279 159.576 91.6965 39.6737 34.7706 67.8796 63.3208 83.4839 42.812 24.4954 +internal_count=4187 3423 2750 2715 1463 1252 785 1173 565 290 177 764 504 144 108 608 138 673 82 591 566 746 442 180 157 304 283 360 185 106 +is_linear=0 +shrinkage=0.05 + + +Tree=36 +num_leaves=31 +num_cat=0 +split_feature=25 26 27 5 9 22 24 17 22 25 22 22 17 23 3 17 9 27 24 8 19 27 24 7 9 17 9 4 9 25 +split_gain=15.1834 16.2236 12.2715 11.027 8.60733 7.80215 7.74352 8.34468 7.4596 7.16106 7.70957 7.81303 7.08015 6.97593 7.376 6.68101 6.74889 7.38693 9.51653 6.68449 7.46249 6.6786 12.0801 7.79637 7.9933 6.31513 7.91929 7.50101 8.15261 7.89143 +threshold=1.3075000000000003 0.76750000000000018 1.1835000000000002 1.0895000000000004 1.2545000000000002 0.6805000000000001 0.71450000000000014 1.0505000000000002 0.95950000000000013 0.5495000000000001 1.0605000000000002 0.72750000000000015 1.5285000000000004 1.0255000000000003 0.8025000000000001 0.70550000000000013 0.90350000000000008 0.84850000000000014 1.1855000000000002 1.0000000180025095e-35 1.0235000000000001 0.87450000000000017 1.1685000000000001 0.18900000000000003 0.76250000000000007 0.72750000000000015 1.0505000000000002 0.48850000000000005 0.72950000000000015 0.6905 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 6 3 4 25 -2 -1 -8 -4 -5 11 -11 -10 14 -9 -7 -17 -18 -19 -20 -21 23 -23 -13 -25 26 -3 28 29 -27 +right_child=5 2 8 9 -6 15 7 13 12 10 -12 21 -14 -15 -16 16 17 18 19 20 -22 22 -24 24 -26 27 -28 -29 -30 -31 +leaf_value=0.00044038534708294833 0.05377473643950062 -0.011139311579751326 -0.030679020299693965 -0.0093234691671007213 0.026571832529299611 -0.030732593087421128 -0.032038897527340231 0.01902896157547353 0.0079917333727380548 0.054476537193832865 0.050892849085196791 0.054212161662117654 -0.033344052411181588 0.051566983031267458 -0.045470398568757897 -0.029791335975469083 0.039119737425180746 -0.023337971383166692 0.045390223448146257 -0.018253865190709023 0.052509538981884873 -0.027659284282883036 0.030703291724425787 0.066029825838286899 -0.02359586540961851 -0.0011525181459599815 0.024905404465474085 -0.0043099869044521582 0.0053372996612494478 0.041714290537406863 +leaf_weight=76.134445235133171 4.1902920454740515 103.56696499884129 28.752160117030144 14.621228978037832 44.870768710970879 48.844183281064034 57.429195389151573 9.1922264248132759 52.692964687943459 13.557932056486605 27.279063954949379 15.790180914103987 12.894274041056631 5.6850946694612494 8.5603278577327711 27.815551303327084 9.938313812017439 39.562382787466049 10.767078891396521 17.021625936031345 4.7696733027696601 19.867243275046349 16.01203741133213 3.4421429336071006 8.9719571918249112 14.622480303049086 17.867489263415337 73.929299995303154 80.314400568604469 40.396884694695473 +leaf_count=321 18 470 125 62 217 229 251 40 226 77 139 91 55 24 37 134 41 199 45 77 21 88 73 21 49 62 82 344 374 195 +internal_value=0 0.00327911 0.00708338 0.0102325 0.0060227 -0.0135689 -0.0110037 -0.0217781 -0.00944385 0.0234587 0.028027 0.0199932 -0.000134771 0.00336383 -0.0120728 -0.0153468 -0.00850716 -0.00129247 -0.00686131 0.0131598 -0.00276519 0.0126977 -0.00161351 0.0309032 0.00125527 0.00323448 -0.0058358 0.00849793 0.0154946 0.0303216 +internal_weight=0 746.451 589.449 495.11 375.568 162.909 157.001 80.8668 94.3394 119.542 104.921 77.6415 65.5872 23.4376 17.7526 158.719 109.875 82.0591 72.1208 32.5584 21.7913 64.0836 35.8793 28.2043 12.4141 330.698 121.434 209.263 135.334 55.0194 +internal_count=4187 3423 2750 2344 1744 764 673 352 406 600 538 399 281 101 77 746 517 383 342 143 98 322 161 161 70 1527 552 975 631 257 +is_linear=0 +shrinkage=0.05 + + +Tree=37 +num_leaves=31 +num_cat=0 +split_feature=25 26 27 5 9 24 17 22 22 25 22 22 17 23 4 22 15 18 25 27 24 7 9 4 9 17 9 19 27 7 +split_gain=13.7959 14.7061 11.1275 10.1984 7.84607 7.05016 7.61058 7.02814 6.76231 6.60208 7.19819 7.31788 6.37257 6.28148 6.77954 6.27936 6.27799 6.20947 6.77077 6.16636 11.0067 7.35657 7.40382 6.14544 6.13724 6.24573 9.00031 8.38777 6.90128 9.73077 +threshold=1.3075000000000003 0.76750000000000018 1.1835000000000002 1.0895000000000004 1.2545000000000002 0.71450000000000014 1.0505000000000002 0.6805000000000001 0.95950000000000013 0.5495000000000001 1.0605000000000002 0.72750000000000015 1.5285000000000004 1.0255000000000003 -0.23849999999999996 1.0125000000000002 -1.5714999999999997 1.2015 0.62350000000000005 0.87450000000000017 1.2215 0.18900000000000003 0.76250000000000007 -0.072499999999999995 1.2005000000000001 0.74450000000000016 1.0505000000000002 0.24350000000000002 0.81250000000000011 0.51550000000000018 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 5 3 4 24 -1 -7 -2 -4 -5 11 -11 -10 14 -8 16 -9 18 -6 21 -21 -13 -23 -14 25 26 28 -28 -3 -30 +right_child=7 2 8 9 17 6 13 15 12 10 -12 19 23 -15 -16 -17 -18 -19 -20 20 -22 22 -24 -25 -26 -27 27 -29 29 -31 +leaf_value=0.0004183558552721209 0.050681373485973097 0.0034947958760040091 -0.02924176798897778 -0.0088530558523219477 -0.0080155709073854754 -0.030666876531927314 0.029402551574782495 0.031304329081965593 0.007598809787135021 0.053077925172818022 0.049382202818391806 0.053014583371101098 0.0025021776252967098 0.048831603721391843 -0.034907706977956893 -0.0031359718441153019 -0.026488343971055713 -0.030946835294820764 0.042254036910443799 -0.025319045332753733 0.030850481408163627 0.065093508951352949 -0.022181154362673837 -0.066422369617825341 -0.036297425336503028 0.0097154435854494535 0.0049919849251499069 0.084969534265922853 -0.005693074548362544 -0.048902651340492542 +leaf_weight=76.136229619383812 4.2228601425886145 51.524240300059319 28.659465685486794 14.628050953149794 8.4967498779296857 57.009488686919212 6.4423502683639589 4.9731048792600623 52.647935211658478 13.227878794074057 26.722163468599319 15.350752823054792 6.5426532626152039 5.7028783708810797 11.261968091130255 67.42248623073101 85.28883558511734 4.4011847376823416 31.646875187754631 20.599046796560287 15.125945031642912 3.3201652616262427 9.0645129978656751 6.3951904475688917 9.6081424355506879 198.97351852059364 9.6608168929815275 4.9621872156858435 34.721361890435219 20.855789676308632 +leaf_count=321 18 239 125 62 36 251 28 24 226 77 139 91 28 24 49 304 418 22 159 92 69 21 49 27 44 929 46 22 156 91 +internal_value=0 0.00312995 0.00676061 0.00977053 0.00573459 -0.0104864 -0.0208107 -0.0129759 -0.00898087 0.0225873 0.0270347 0.0192477 -0.000127332 0.00319443 -0.0115061 -0.0146807 -0.0233042 0.0254328 0.031614 0.0121961 -0.00153689 0.029885 0.00121601 -0.0315673 0.00307811 0.00425781 -0.00466338 0.0321317 -0.00968716 -0.0219078 +internal_weight=0 743.688 587.135 492.889 374.851 156.553 80.4167 161.907 94.2452 118.039 103.41 76.6883 65.5858 23.4072 17.7043 157.684 90.2619 44.5448 40.1436 63.4604 35.725 27.7354 12.3847 12.9378 330.306 320.698 121.724 14.623 107.101 55.5772 +internal_count=4187 3423 2750 2344 1744 673 352 764 406 600 538 399 281 101 77 746 442 217 195 322 161 161 70 55 1527 1483 554 68 486 247 +is_linear=0 +shrinkage=0.05 + + +Tree=38 +num_leaves=31 +num_cat=1 +split_feature=25 25 9 3 26 25 10 21 27 27 0 0 23 26 27 24 25 24 1 6 19 2 19 9 5 17 3 17 5 0 +split_gain=12.6822 19.2044 9.58043 9.55828 9.81784 8.63941 8.73247 7.87472 10.1848 12.3055 13.4202 8.92645 7.87307 7.83967 9.77348 7.735 7.52282 7.44985 7.29999 8.88935 7.69441 7.24969 7.25018 7.75144 6.95077 6.84632 6.76134 6.69245 6.51159 6.46355 +threshold=0.98450000000000015 0.68650000000000011 0.91050000000000009 2.4510000000000005 0.77650000000000008 1.8125000000000002 0.85850000000000015 0 0.90650000000000008 0.91350000000000009 0.99550000000000016 0.42750000000000005 0.98350000000000015 0.89250000000000018 0.80650000000000011 1.1055000000000001 0.70850000000000013 0.94150000000000011 -0.019 -0.084499999999999992 -0.31149999999999994 1.5615000000000001 1.6285000000000003 0.9265000000000001 0.44950000000000007 0.9405 0.7975000000000001 1.4605000000000001 0.6715000000000001 0.40750000000000003 +decision_type=2 2 2 2 2 2 2 9 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 -1 28 4 16 21 27 11 13 -10 -11 -6 -13 14 15 24 -3 -8 19 -14 -21 22 23 -4 -9 -12 -16 -7 -2 -25 +right_child=2 3 5 -5 7 6 17 8 9 10 25 12 18 -15 26 -17 -18 -19 -20 20 -22 -23 -24 29 -26 -27 -28 -29 -30 -31 +leaf_value=-0.0056798331181626971 -0.043088599312835311 0.051860935879539993 0.06894899669815413 -0.050101085888228529 -0.05723771688705917 -0.043061051076430351 -0.035832161333620181 -0.024288092662722194 -0.071702137532009422 0.03219337049479052 0.012310281605165353 -0.039589673417561304 0.020672853931436905 0.044731261538977912 -0.068000467358823855 -0.036664608096768789 -0.013636192655909082 0.05568939570635148 0.033816907269247534 0.0029013214006907975 -0.083486808836910342 0.047354471807908992 0.058350582248631447 0.0331691034608581 0.041658405099713559 -0.033492245452239409 0.0074366554868728471 0.006230638221841946 -0.013008599539369945 -0.0053817055799757797 +leaf_weight=247.70884749293327 21.366348907351494 4.8862595111131659 3.9748243391513816 5.9186505973339072 6.0840591788291922 27.296137258410454 3.469034403562544 4.4140310436487189 4.4455775767564765 43.137421369552612 16.527498632669449 7.9485416114330283 14.133695274591446 61.340194933116436 4.556509554386138 4.0461473986506453 42.655389472842216 6.1929943412542343 23.813620984554291 5.1443384736776352 5.1659114956855774 9.5831433087587339 5.5684893727302542 11.948211207985876 42.157305188477039 16.112374842166901 8.5325538143515569 9.2095062583684904 113.91203467547894 120.81011279672384 +leaf_count=1062 97 21 17 26 28 142 21 20 19 194 72 36 70 388 22 20 183 28 117 24 24 42 25 53 230 70 42 44 514 536 +internal_value=0 0.00477972 -0.00750301 0.0128506 0.0140331 -0.000497352 -0.0194387 0.0177534 0.0219812 0.00914702 0.0138901 0.000251887 0.00651969 0.0319727 0.019688 0.0296468 -0.0069045 0.0228297 0.0141144 -0.00508004 -0.0403831 0.00526015 0.00242535 0.000147785 0.035408 -0.0102997 -0.0188242 -0.0306259 -0.0177595 -0.00191214 +internal_weight=0 568.729 333.331 321.02 315.101 198.052 46.1677 267.56 205.27 80.2229 75.7773 62.2902 56.2061 125.047 63.7065 50.6175 47.5416 9.66203 48.2576 24.4439 10.3102 151.885 142.302 136.733 46.5713 32.6399 13.0891 36.5056 135.278 132.758 +internal_count=4187 2668 1519 1606 1580 908 235 1376 1077 355 336 299 271 722 334 270 204 49 235 118 48 673 631 606 250 142 64 186 611 589 +cat_boundaries=0 1 +cat_threshold=26 +is_linear=0 +shrinkage=0.05 + + +Tree=39 +num_leaves=31 +num_cat=0 +split_feature=22 22 0 24 27 9 9 6 3 0 24 26 25 25 26 19 1 17 18 22 17 25 9 11 24 17 5 27 25 6 +split_gain=12.4438 19.263 13.3018 10.1406 18.7352 12.8361 9.08408 8.74393 8.55464 8.37656 8.88857 13.7438 7.62763 8.92817 8.17821 6.86414 8.29394 6.86268 6.84093 9.05304 6.99252 6.55639 7.74911 6.7746 6.54798 10.1226 10.0952 7.36717 8.05911 6.31543 +threshold=0.78450000000000009 0.97150000000000014 2.7735000000000003 1.0755000000000001 0.85250000000000015 1.4195000000000002 0.56550000000000011 1.9065000000000001 2.7455000000000003 0.55750000000000011 0.82450000000000012 0.72850000000000015 0.98450000000000015 0.47750000000000009 0.81450000000000011 -1.0724999999999998 -0.13549999999999998 0.69150000000000011 0.13550000000000004 0.86450000000000016 0.64450000000000018 1.1095000000000004 1.4005000000000003 -0.48749999999999999 0.90850000000000009 0.63950000000000007 0.86950000000000016 0.75650000000000006 0.9225000000000001 -0.84349999999999992 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=7 3 8 4 5 9 -5 17 12 10 11 -2 13 15 -14 -3 -17 -1 20 -20 -8 23 -23 -22 25 26 -15 -26 -29 -6 +right_child=1 2 -4 6 29 -7 18 -9 -10 -11 -12 -13 14 24 -16 16 -18 -19 19 -21 21 22 -24 -25 27 -27 -28 28 -30 -31 +leaf_value=0.0038623190835903169 -0.042310389170744228 0.033643939978358739 -0.071362294788157352 0.042372209987325722 -0.058387183310475356 0.051260864693937563 -0.024162859304207779 -0.056175144979254688 -0.045786189868965231 -0.0037689458728566109 -0.064457070032647432 0.043072832221271201 -0.054271714191397619 -0.037587283604090818 0.0013365661449286335 0.0039137128109445994 -0.049040714857907688 0.02675755030592418 0.012666536660251216 -0.035207327620033778 0.077214826178654716 0.0201131767870887 -0.053155410351343607 0.01836016285241247 -0.097105106635488991 0.034997513677847862 0.030387064187505336 0.0030088661081397556 0.040908472709948206 -0.02708390259807596 +leaf_weight=59.684246227145195 13.01060561835766 7.4863779991865149 5.5702256560325614 12.592578977346419 21.293894059956074 9.1752858832478505 11.752092078328131 4.2826232463121405 7.6837724745273581 129.33364272117615 12.860661566257475 7.3900716900825492 6.9266303926706305 10.906653717160227 145.46376140415668 16.445494860410694 13.43497261404991 72.47255066037178 15.595167770981787 26.922713056206703 7.2501084953546515 10.858364939689638 5.4051197022199622 15.016791716217996 1.6341580748558033 77.326991073787212 10.942061915993689 76.231835193932056 17.189705990254879 66.217487901449203 +leaf_count=281 57 31 26 59 106 48 53 20 37 595 58 34 30 49 647 69 57 346 72 120 34 48 26 69 7 388 57 352 84 327 +internal_value=0 -0.00225725 0.00536007 -0.0105549 -0.0158707 -0.00627729 0.00252278 0.0141391 0.00645119 -0.00952418 -0.0319029 -0.0113806 0.00749648 0.0132128 -0.00119101 -0.00916926 -0.0198959 0.0164177 -0.00288461 -0.0176476 0.00959872 0.0198963 -0.00423742 0.0375233 0.0175187 0.0265065 -0.00354503 0.00814145 0.00998245 -0.0347008 +internal_weight=0 761.917 397.243 364.675 259.282 171.77 105.393 136.439 391.672 162.595 33.2613 20.4007 383.989 231.598 152.39 37.3668 29.8805 132.157 92.8004 42.5179 50.2825 38.5304 16.2635 22.2669 194.231 99.1757 21.8487 95.0557 93.4215 87.5114 +internal_count=4187 3540 1834 1706 1225 792 481 647 1808 744 149 91 1771 1094 677 157 126 627 422 192 230 177 74 103 937 494 106 443 436 433 +is_linear=0 +shrinkage=0.05 + + +Tree=40 +num_leaves=31 +num_cat=0 +split_feature=27 24 22 26 5 27 22 22 19 13 3 27 0 11 11 24 4 3 26 5 7 15 18 18 22 0 5 11 0 13 +split_gain=17.6484 17.5234 21.0683 17.4701 11.084 9.75418 8.74664 10.3846 8.47104 8.40038 9.13122 8.31825 8.23476 7.26757 9.81381 6.9028 6.64161 6.62469 9.84893 8.76343 8.77877 7.43252 6.58485 9.12592 8.20627 7.60178 6.57779 6.46443 7.62388 6.33143 +threshold=0.90250000000000019 1.1375000000000002 1.0465000000000002 0.88650000000000007 1.0195000000000003 0.84050000000000014 0.94450000000000012 0.86250000000000016 -1.1574999999999998 0.9265000000000001 0.39450000000000002 1.0885000000000002 1.5645000000000002 1.5795000000000001 0.26850000000000002 1.1005000000000003 1.0155000000000001 1.9205000000000003 1.1955000000000002 1.1425000000000003 -1.5674999999999997 0.24750000000000003 -1.1969999999999998 0.75050000000000006 0.87850000000000017 0.85050000000000014 0.48450000000000004 1.1685000000000001 0.60250000000000015 0.56950000000000001 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=3 2 11 4 5 8 7 -5 12 10 -9 22 29 14 -10 -4 -6 19 21 -3 -21 -19 -2 -24 -25 -26 -8 -16 -29 -1 +right_child=1 17 15 6 16 -7 26 9 13 -11 -12 -13 -14 -15 27 -17 -18 18 -20 20 -22 -23 23 24 25 -27 -28 28 -30 -31 +leaf_value=-0.0300501575134158 0.01168043719792846 -0.0027295951416025682 0.0024218447333815033 0.01902503702699038 0.025440589096726796 -0.030418404960968277 -0.022451970824705094 -0.090407997903129533 0.00068313481027370638 0.012521756525043582 -0.015272689336216706 -0.044871768079474829 0.072098373415600991 0.028648099621925695 -0.027949664269034342 -0.060261442930112076 -0.013330499414582822 -0.014206308688894154 -0.037758081428743213 -0.034738839530659989 0.021214535464152577 0.064731321986693874 -0.034581470721505213 0.03626241369930569 0.012207264590192463 -0.062701123212739976 0.030264928394266484 -0.044774177020117351 0.0134958183342812 0.018108873577877844 +leaf_weight=8.244862347841261 14.246690079569815 137.58164751529694 115.79299184679985 77.854160621762276 56.014251194894314 31.800584942102432 6.2899864912033072 4.9591173231601742 160.97589731216431 22.009973958134651 21.906514659523964 49.171384930610657 5.9684541672468177 15.189634785056112 67.986801788210869 4.5651473253965369 13.759045667946337 7.3469342440366727 22.39849354326725 7.6020100563764563 90.023696929216385 5.0192221701145172 65.13644190132618 9.9441702067852038 7.1005854010581952 6.4755437523126602 99.854916095733643 7.3680393397808102 23.571740657091141 39.622943997383118 +leaf_count=37 67 589 516 420 272 137 31 24 712 109 111 263 25 66 302 20 66 31 106 34 401 21 302 46 34 31 534 33 108 178 +internal_value=0 -0.00663884 -0.0155852 0.00552064 -0.000447113 -0.00397557 0.0165529 0.00768459 -0.00141909 -0.0103797 -0.0291419 -0.027955 0.0167189 -0.00496875 -0.00693344 4.42868e-05 0.0177951 0.00238909 -0.0179837 0.00540027 0.0168575 0.0178332 -0.0198716 -0.0249418 0.00175399 -0.0235225 0.027141 -0.0193273 -0.000380674 0.00981385 +internal_weight=0 542.405 272.433 663.377 430.502 360.729 232.875 126.73 328.928 48.8756 26.8656 152.075 53.8363 275.092 259.902 120.358 69.7733 269.972 34.7646 235.207 97.6257 12.3662 102.903 88.6567 23.5203 13.5761 106.145 98.9266 30.9398 47.8678 +internal_count=5626 2461 1279 3165 1936 1598 1229 664 1461 244 135 743 240 1221 1155 536 338 1182 158 1024 435 52 480 413 111 65 565 443 141 215 +is_linear=0 +shrinkage=0.05 + + +Tree=41 +num_leaves=31 +num_cat=0 +split_feature=27 26 24 22 25 25 27 6 5 2 25 25 17 9 0 4 17 2 5 18 19 16 19 3 8 26 10 2 4 17 +split_gain=15.9932 15.9659 15.9258 19.5385 8.75368 12.4323 10.0318 9.50905 8.53874 7.74247 7.65251 7.62776 7.15957 7.21028 7.06996 6.97276 7.57224 6.61215 6.8192 6.51966 6.4877 7.63152 7.27807 6.64786 11.8185 10.35 7.13899 6.60053 8.2892 6.42099 +threshold=0.90250000000000019 0.86550000000000005 1.1375000000000002 0.98550000000000015 1.1275000000000002 0.70850000000000013 0.75250000000000006 1.2175000000000002 1.0195000000000003 -1.5134999999999998 0.94550000000000012 1.2815000000000001 0.64450000000000018 0.88850000000000018 1.3915000000000002 -1.0364999999999998 1.5035000000000003 1.5225000000000002 0.39950000000000002 -0.8284999999999999 -1.1714999999999998 1.9110000000000003 1.3935000000000002 0.42050000000000004 1.0000000180025095e-35 0.78450000000000009 0.027500000000000004 -0.60249999999999992 -0.19149999999999998 1.1015000000000004 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 8 3 14 5 -3 -7 -6 10 -10 20 -5 -11 -14 -2 -12 -17 18 -4 -15 29 23 -23 24 -22 26 -25 -28 -29 -1 +right_child=2 4 17 11 7 6 -8 -9 9 12 15 -13 13 19 -16 16 -18 -19 -20 -21 21 22 -24 25 -26 -27 27 28 -30 -31 +leaf_value=0.025028535941182373 -0.022041793696013119 -0.0021292401003434572 0.075846253464097624 0.0044253353884577797 0.0051112245118590813 -0.030814474618186413 0.030099413429694528 -0.063285780518178597 -0.04079637995650795 0.054992062694814936 -0.056822147646696387 -0.021698184333695067 -0.014740868257039614 -0.028674553838195251 -0.048637055043303193 -0.020132627743475282 0.04660611378671254 -0.027332649496196522 0.0033968020070590543 0.038136731433369708 -0.011058385256363705 -0.011446444858526592 -0.061587028545279046 -0.032159908421016105 0.054904722216796258 0.016503540350023185 -0.032678778982177137 0.04473453597236085 -0.014829908191124187 -0.023474358234919161 +leaf_weight=37.080905362963676 91.580651417374611 47.687237940728664 3.2908743023872367 107.25917388498783 73.35110267996788 7.0968444719910613 142.00794776529074 5.4598810970783225 5.4941337257623664 12.355613961815832 11.25293657183647 37.78737511485815 16.054101504385471 4.3432404100894919 34.366278521716595 37.155365884304047 4.7991621792316428 17.627768635749817 248.73676857352257 22.92463676631451 12.451285690069199 82.590674608945847 7.9324278533458701 31.768716961145401 14.935912892222404 42.61006660759449 10.186633646488188 11.920514017343521 11.452382951974869 8.3622881323099119 +leaf_count=163 449 220 14 469 312 40 859 24 25 58 49 185 72 21 176 163 21 76 1092 112 53 361 35 138 65 194 44 50 49 37 +internal_value=0 0.00526324 -0.00633061 -0.0148909 0.0144538 0.020093 0.0272001 0.000372805 -0.00130441 0.0158308 -0.00453459 -0.00238034 0.0214187 0.0118434 -0.0292987 -0.0218725 -0.0124984 0.00227215 0.00434282 0.027495 -0.00113417 -0.00460251 -0.0158402 0.0029147 0.0249153 -0.00266752 -0.0151718 0.00090985 0.0155488 0.0161032 +internal_weight=0 661.274 540.649 270.993 275.603 196.792 149.105 78.811 385.671 61.1717 324.499 145.047 55.6776 43.322 125.947 53.2075 41.9545 269.655 252.028 27.2679 271.292 225.849 90.5231 135.326 27.3872 107.938 65.3282 33.5595 23.3729 45.4432 +internal_count=5626 3165 2461 1279 1455 1119 899 336 1710 288 1422 654 263 205 625 233 184 1182 1106 133 1189 989 396 593 118 475 281 143 99 200 +is_linear=0 +shrinkage=0.05 + + +Tree=42 +num_leaves=31 +num_cat=0 +split_feature=27 5 24 22 26 13 5 27 9 19 27 11 17 23 7 17 4 10 6 25 17 25 0 13 4 1 22 24 25 4 +split_gain=14.5028 14.6145 14.4822 17.9196 11.0055 12.2805 11.1437 10.1959 7.95538 9.12492 7.90815 7.51367 7.53217 7.98496 7.34343 7.43767 7.24234 10.0817 7.02539 6.9318 6.72325 7.86698 6.60008 7.42086 6.53887 6.3805 6.54188 6.20856 6.20815 6.34971 +threshold=0.90250000000000019 1.0025000000000002 1.1375000000000002 1.0465000000000002 0.89850000000000019 0.70250000000000012 0.98850000000000016 0.84050000000000014 1.2065000000000003 -1.1484999999999996 1.0885000000000002 1.5795000000000001 1.0435000000000001 1.0865000000000002 -0.64049999999999985 1.4100000000000004 0.57050000000000012 -1.3474999999999999 1.0625000000000002 1.2450000000000003 0.42350000000000004 0.26050000000000006 0.52550000000000019 0.56950000000000001 1.5335000000000003 0.035500000000000011 0.9275000000000001 1.1005000000000003 1.2815000000000001 1.2535000000000001 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 4 3 10 6 19 7 8 9 22 20 12 -11 -14 -3 16 17 -16 -7 -6 -2 -22 -1 -24 -18 -25 -27 28 29 -5 +right_child=2 14 -4 27 5 18 -8 -9 -10 11 -12 -13 13 -15 15 -17 24 -19 -20 -21 21 -23 23 25 -26 26 -28 -29 -30 -31 +leaf_value=-0.023887817474034647 -0.071939379505797332 0.033421735906436538 0.0021593446905881961 0.014470603686489756 0.00094062045553163138 0.029800511622309147 -0.079703318431254541 -0.028400463864145048 0.027578409329433902 -0.013274655720261611 -0.042583638349088231 0.030201097703134051 -0.0010170051258033719 0.046378028253680842 -0.043665044064060979 0.039553389808752171 -0.029391991021888459 0.02154693158094929 -0.014356129964360082 -0.052234643795594116 0.10403750595724395 -0.016569170120362114 -0.015517251884197794 0.055786730634499876 0.031333189994962492 -0.017970067374287968 0.043042669554730913 -0.056866749401400102 -0.017558625443798957 -0.025346271437846075 +leaf_weight=8.3530168682336789 5.4491642117500296 53.126269638538361 269.58613903820515 74.836446642875671 31.304101958870888 74.461973950266838 4.7272222340106955 34.345221668481827 24.590854175388813 177.25612227618694 47.722534239292145 13.706878900527952 57.865602999925613 10.499283537268637 6.6738884076476088 18.328372374176979 21.565526418387893 52.943514131009579 10.247444346547125 7.6206346303224555 1.3716473728418339 94.82212208211422 9.1957797408103925 18.009704180061817 5.5801501348614684 8.5318525731563586 9.0574892908334714 4.5921335667371741 29.099974632263184 11.559519082307814 +leaf_count=38 26 285 1182 327 162 384 21 150 117 788 263 61 264 46 34 96 113 289 55 33 6 448 41 81 28 38 41 20 139 50 +internal_value=0 0.00502769 -0.00603417 -0.0142317 0.000834991 0.0137767 -0.00341887 -0.00244794 0.000196479 -0.00195839 -0.0257933 -0.00582646 -0.00783698 0.00626179 0.0182714 0.0106126 0.00449897 0.0142468 0.0244588 -0.00946996 -0.0179101 -0.0148494 0.0169154 0.024524 -0.0169091 0.0348673 0.0134479 0.000148579 0.00241552 0.00914323 +internal_weight=0 657.991 539.04 269.454 499.773 123.634 376.139 371.412 337.067 312.476 149.365 259.328 245.621 68.3649 158.218 105.091 86.7631 59.6174 84.7094 38.9247 101.643 96.1938 53.1478 44.7948 27.1457 35.599 17.5893 120.088 115.496 86.396 +internal_count=5626 3165 2461 1279 2320 634 1686 1665 1515 1398 743 1159 1098 310 845 560 464 323 439 195 480 454 239 201 141 160 79 536 516 377 +is_linear=0 +shrinkage=0.05 + + +Tree=43 +num_leaves=31 +num_cat=1 +split_feature=3 5 0 25 25 24 17 17 22 22 23 12 4 17 25 11 6 25 24 6 26 3 15 24 26 24 13 14 0 21 +split_gain=12.8533 14.9075 13.452 11.1491 15.8796 7.96314 7.84563 8.39275 8.24542 9.17056 7.70498 8.59342 7.34393 7.31427 8.90532 8.16305 8.11973 7.08929 6.93354 6.91436 6.87486 8.43025 8.09937 6.87674 9.47333 7.79475 7.44047 7.58931 7.40973 7.1787 +threshold=1.7675000000000003 1.7625000000000002 1.8945000000000003 0.98450000000000015 0.65950000000000009 1.2745000000000002 1.7795000000000003 1.5285000000000004 1.0045000000000002 0.72250000000000003 1.3585000000000003 1.0000000180025095e-35 1.6155000000000002 2.0440000000000005 1.5325000000000002 -1.1404999999999996 -1.1664999999999999 2.2960000000000007 1.7695000000000003 -1.8994999999999997 1.3345000000000002 1.4185000000000003 -1.6535 0.74850000000000017 0.84550000000000003 0.68350000000000011 1.4305000000000001 0.39950000000000002 0.57150000000000023 0 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 9 +left_child=1 3 17 4 -1 20 7 8 9 -6 11 -2 19 14 16 -16 -7 -3 -13 -10 22 -22 -5 24 25 -24 27 29 -28 -25 +right_child=10 2 -4 5 6 13 -8 -9 12 -11 -12 18 -14 -15 15 -17 -18 -19 -20 -21 21 -23 23 26 -26 -27 28 -29 -30 -31 +leaf_value=-0.0053186290972715433 -0.034310257726769169 0.04677853638603427 -0.022915549308363439 0.045195985999738862 0.030259746542720518 -0.041966371710349351 0.041732033405101787 -0.023083446086409491 -0.032487112226093462 0.0012909207948886669 0.027340609103183457 0.0040506717173674151 -0.038622406988911513 0.063371035890505897 0.035520765865701763 -0.03956739611375143 0.02044135482343188 -0.012983403621315249 -0.046610305554522467 0.026212881686006436 -0.039833011588430091 0.036688881364686517 -0.052479214419728783 0.012331851079813844 0.026359475685068752 0.019444495509831461 -0.031924791675576457 -0.032480390939550921 0.019990180621271732 -0.015745147812092887 +leaf_weight=262.71350379288197 52.50906628370285 38.811962574720383 10.866363391280172 7.0470534265041342 31.55508079379797 5.82833507657051 19.169116526842117 19.405782520771027 5.248831868171691 203.53447146713734 9.2251591533422452 38.524351708590984 4.9367973804473868 5.391252562403678 4.5769202560186413 17.303110137581825 49.287448301911354 5.6899202316999427 8.1895238161087018 113.42168755829334 31.587091110646725 4.0620833635330191 9.0185640156269056 23.806613981723785 27.799797996878624 6.4691659957170478 9.123557582497595 56.477452419698238 27.86540175974369 83.609711334109306 +leaf_count=1123 251 199 51 31 183 24 102 97 24 1016 41 181 22 22 20 78 207 29 39 585 164 23 39 106 126 28 41 259 132 383 +internal_value=0 0.00168577 0.0269592 0.00032618 0.00421866 -0.00663104 0.0105256 0.0089435 0.0106762 0.00517928 -0.0163677 -0.0204314 0.0211308 0.00707021 0.00312803 -0.0238603 0.0138419 0.0391375 -0.00483083 0.0236166 -0.010566 -0.0311136 -0.00765017 -0.00917537 0.00890073 -0.022437 -0.0130705 -0.017642 0.00718503 -0.00984022 +internal_weight=0 1084.61 55.3682 1029.24 659.985 369.254 397.272 378.103 358.697 235.09 108.448 99.2229 123.607 82.3871 76.9958 21.88 55.1158 44.5019 46.7139 118.671 286.866 35.6492 251.217 244.17 43.2875 15.4877 200.883 163.894 36.989 107.416 +internal_count=5626 5114 279 4835 3152 1683 2029 1927 1830 1199 512 471 631 351 329 98 231 228 220 609 1332 187 1145 1114 193 67 921 748 173 489 +cat_boundaries=0 1 +cat_threshold=2 +is_linear=0 +shrinkage=0.05 + + +Tree=44 +num_leaves=31 +num_cat=0 +split_feature=27 26 24 22 22 2 22 27 5 13 27 0 19 9 22 2 11 18 9 17 18 18 22 22 9 0 24 18 11 1 +split_gain=12.9993 13.8127 13.2625 17.1344 8.35597 9.56132 9.14553 12.1358 9.39346 8.37095 7.29881 7.15022 8.02984 7.65806 6.5378 7.71347 6.19981 9.33882 6.47644 6.14031 10.7463 9.64317 12.3321 7.21835 6.43818 6.35668 6.13161 9.02517 6.11761 6.03803 +threshold=0.89550000000000007 0.85650000000000015 1.1375000000000002 1.0465000000000002 0.94450000000000012 -0.75749999999999995 0.86250000000000016 0.73150000000000015 0.63850000000000018 0.93650000000000011 1.0885000000000002 0.52950000000000019 -1.6424999999999998 0.98050000000000004 0.76250000000000007 1.5225000000000002 1.5005000000000002 -0.040999999999999995 1.6925000000000001 0.56750000000000012 -1.6684999999999999 0.75050000000000006 0.87850000000000017 0.9275000000000001 0.64750000000000008 0.77750000000000019 1.8615000000000002 0.69750000000000012 1.4565000000000001 -0.67849999999999988 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 11 3 10 6 -6 7 -3 -8 29 19 13 -13 -1 26 16 18 -18 -16 -2 -21 24 -23 -24 -22 -25 27 -4 -14 -10 +right_child=2 4 14 -5 5 -7 8 -9 9 -11 -12 12 28 -15 15 -17 17 -19 -20 20 21 22 23 25 -26 -27 -28 -29 -30 -31 +leaf_value=-0.025679297227032723 -0.043670057115881525 -0.052219775493805715 0.060077398697697772 0.00065387790356667523 0.00010847108544742017 0.031439783065929892 -0.051804111626439879 0.019779194667525164 -0.061753411844349515 0.02193520206068772 -0.040948761551752269 0.052980974763359973 -0.0019898747740273231 0.017985811231864653 0.0010027857474510864 -0.033939910762984922 0.015737055635884626 -0.062371297836172561 0.027054621969791932 0.061074350394060228 0.0055708906070728436 0.059582573699442566 -0.067954045232111446 0.052366454855418722 -0.034010101518561563 -0.034334757015054868 -0.019429205991027515 -0.019847826757175082 0.022832202029098449 -0.006011921321989841 +leaf_weight=50.106499180197716 18.262384578585625 6.2604714855551711 14.307960301637655 122.26390342414379 33.392718859016895 89.920419365167618 10.892697632312773 89.859235174953938 6.4185574650764492 22.515764877200127 46.564320914447308 7.4280882924795142 264.66018548607826 12.557886019349096 188.26777340471745 15.862192153930662 6.7769974023103723 8.7907340675592387 27.317650571465492 4.7813107520341864 12.931851804256437 8.5365465581417102 4.6180506050586692 4.3030176460742933 49.982996396720409 4.155834436416626 5.5413042604923239 4.6897734552621833 27.391553424298763 19.984768599271774 +leaf_count=223 89 30 64 553 180 491 50 492 32 114 263 33 1171 57 827 69 30 38 126 22 60 39 23 20 238 20 24 20 123 105 +internal_value=0 0.00487332 -0.00561367 -0.0133239 0.0132293 0.0229554 0.00553775 0.0150898 -0.00981267 -0.000462536 -0.0244114 -0.00156987 0.0016439 -0.0169288 0.00223418 -0.00021108 0.00210346 -0.0283689 0.00430391 -0.0172529 -0.011851 -0.015976 0.0128373 -0.0176778 -0.0258744 0.00977015 0.0268487 0.0403471 0.00033819 -0.0195625 +internal_weight=0 641.389 547.955 276.4 279.245 123.313 155.931 96.1197 59.8118 48.9191 154.136 362.144 299.48 62.6644 271.554 247.015 231.153 15.5677 215.585 107.572 89.3096 84.5283 21.6134 13.0769 62.9148 8.45885 24.539 18.9977 292.052 26.4033 +internal_count=5626 3101 2525 1327 1494 671 823 522 301 251 774 1607 1327 280 1198 1090 1021 68 953 511 422 400 102 63 298 40 108 84 1294 137 +is_linear=0 +shrinkage=0.05 + + +Tree=45 +num_leaves=31 +num_cat=0 +split_feature=25 25 26 24 27 5 27 0 10 3 27 4 0 16 23 19 17 26 13 18 14 5 15 6 19 2 17 20 15 27 +split_gain=18.4135 15.8342 12.4702 11.5596 12.4106 11.3087 10.5322 10.9091 10.4865 9.71668 9.47216 9.03696 9.03533 8.58457 8.69139 8.59538 8.53265 8.45982 8.12839 7.77384 7.73663 7.57723 8.41269 9.76578 7.20105 7.18083 7.0759 9.09211 8.0435 7.35376 +threshold=0.94550000000000012 0.78550000000000009 0.86550000000000005 1.2895000000000003 1.1575000000000002 2.0995000000000004 0.85250000000000015 0.94250000000000012 -1.4834999999999998 1.8535000000000004 1.0105000000000002 1.6505000000000003 1.2435000000000003 1.0000000180025095e-35 1.1275000000000002 -0.93549999999999989 0.59450000000000014 1.1575000000000002 1.3085000000000002 -1.8059999999999998 1.7570000000000003 0.88650000000000007 -1.2404999999999997 1.1945000000000003 0.40250000000000002 1.5225000000000002 1.2765000000000002 2.3265000000000002 -0.91849999999999987 1.0105000000000002 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 5 12 4 11 6 7 8 -1 25 -4 21 -3 14 15 -8 -12 -17 19 -10 -9 -2 -23 26 -18 -5 27 28 -24 -28 +right_child=3 2 10 9 -6 -7 13 20 18 -11 16 -13 -14 -15 -16 17 24 -19 -20 -21 -22 22 23 -25 -26 -27 29 -29 -30 -31 +leaf_value=-0.049514359495045041 -0.01816139752444464 0.0062504638492237186 0.031376545050884774 0.014243708081693108 -0.033249064467805588 0.050290510592315131 -0.039884732242665671 0.018325155692294589 0.058516786277335323 -0.028883564587667155 -0.039324162059551311 0.043297006513741743 -0.040136075972507151 -0.024622109118945266 0.029783136255504657 -0.010921846786946925 0.00057995975359890659 0.032129365863642102 0.033711478551418775 -0.0066688049542784691 -0.045007400906406286 0.026556670767891984 -0.050758290073203927 -0.058427451855178551 0.039957500362403413 -0.049818427257611764 0.028566880565407005 -0.052219676729170633 0.0014416536163829586 -0.033194309862165754 +leaf_weight=11.795870468020437 136.24036657810211 54.268077544867992 110.42556840926409 98.866080515086651 59.042704328894615 10.756795801222323 17.423441886901855 115.5781307220459 4.7355034202337256 17.492645762860775 8.6343414932489377 8.3006693422794324 13.015638455748556 71.731312349438667 17.798202097415924 45.047334253787994 33.009730681777 15.282454714179037 15.522478260099886 133.90314126759768 5.0320645645260802 22.174290589988232 8.2795692682266218 8.5487585514783841 17.909185171127319 4.5768368542194358 25.913621403276924 11.33922955393791 67.908995747566223 5.9209128469228736 +leaf_count=52 621 260 668 430 317 53 77 520 21 86 38 38 59 319 79 201 148 65 74 613 23 110 40 40 82 20 121 53 319 31 +internal_value=0 0.00498755 0.0154967 -0.00776318 -0.0123262 -0.0003792 -0.00158013 0.00423936 -0.00407724 0.00558114 0.0227086 -0.0081333 -0.00272274 -0.0115493 -0.00173548 -0.00895029 0.00663628 -1.63187e-05 -0.000600552 -0.00444225 0.0156828 -0.00962428 -0.00187468 -0.00680346 0.0144298 0.0114093 -0.00310614 -0.010448 -0.00423102 0.0170799 +internal_weight=0 701.869 237.263 474.605 353.669 464.607 453.85 286.567 165.957 120.936 169.979 294.626 67.2837 167.283 95.5514 77.7532 59.5533 60.3298 154.161 138.639 120.61 286.326 150.085 127.911 50.9189 103.443 119.362 87.5278 76.1886 31.8345 +internal_count=5578 3352 1255 2226 1690 2097 2044 1303 760 536 936 1373 319 741 422 343 268 266 708 634 543 1335 714 604 230 450 564 412 359 152 +is_linear=0 +shrinkage=0.05 + + +Tree=46 +num_leaves=31 +num_cat=0 +split_feature=25 25 26 5 22 27 0 22 0 27 3 0 16 13 22 26 13 1 26 5 27 26 13 10 19 6 10 9 22 0 +split_gain=16.6807 14.4373 11.4412 10.3832 9.52048 9.51952 9.85936 10.0875 9.25543 8.82743 8.68551 8.1317 7.76255 7.69243 7.67406 11.4988 8.22045 7.47662 7.04835 6.93756 9.06696 8.94741 6.82556 7.4545 6.77358 6.63336 6.53864 7.04307 6.39607 6.48754 +threshold=0.94550000000000012 0.78550000000000009 0.86550000000000005 2.0995000000000004 1.0355000000000001 0.85250000000000015 0.94250000000000012 0.9255000000000001 0.48550000000000004 1.0105000000000002 0.44850000000000007 1.2435000000000003 1.0000000180025095e-35 1.8295000000000001 0.84350000000000014 0.65150000000000008 1.0635000000000001 1.0025000000000002 0.72850000000000015 0.69450000000000012 1.0835000000000001 1.4865000000000002 0.52250000000000008 -1.4834999999999998 -0.93549999999999989 -1.0614999999999999 1.0345000000000002 0.6785000000000001 0.87250000000000016 0.57150000000000023 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 3 11 5 19 6 7 10 -9 -4 -1 26 24 -11 15 -12 -16 -8 -19 25 28 -22 -10 -24 -7 -2 27 -3 29 -21 +right_child=4 2 9 -5 -6 12 17 8 22 13 14 -13 -14 -15 16 -17 -18 18 -20 20 21 -23 23 -25 -26 -27 -28 -29 -30 -31 +leaf_value=0.025133260488135419 0.0098834929010893132 0.023615776332496258 0.030281457462228996 0.048614305312891189 0.0019083224533272339 -0.025985378377051244 0.020051669479299723 -0.021932454335204042 -0.027271994461161408 0.0012749445753164402 -0.040545760399045012 -0.038013558648705766 -0.023430404366769839 0.070453323369417231 -0.050322892949462045 0.011439706291814697 0.013748052466455227 -0.057198350052818626 0.0087634335636049814 -0.020159049558070307 -0.043438689178682974 -0.0038145376145620399 -0.036092358414299475 0.032104510285695602 0.0056412366183151213 -0.036267164570573773 0.047625790929175432 -0.016594510892665875 -0.011325054957837956 0.01551947782656697 +leaf_weight=11.774657137691973 9.3333114385604841 17.581888109445572 108.74160602688789 10.575950175523756 173.90006023645401 22.003115311264992 102.96941983699799 17.5053800791502 6.8130772262811652 55.110474810004234 16.745265394449234 13.054208204150198 71.613709136843681 4.3345535844564429 27.953795105218887 29.162357896566391 6.0984295010566703 6.3795629143714931 11.090152099728583 16.348141692578793 33.071985110640526 25.028695732355118 4.3948925435543051 45.412432000041008 73.426009356975555 46.967010125517845 8.0174436867237073 28.611720986664295 110.93356884270906 57.745730727910995 +leaf_count=54 44 81 668 53 793 98 465 81 31 248 73 59 319 20 125 137 29 27 51 77 178 137 19 211 324 218 41 138 513 266 +internal_value=0 0.00475781 0.0148417 -0.000360075 -0.00739664 -0.00150259 0.00403178 -0.00387495 0.00984246 0.0218121 -0.0149593 -0.00258659 -0.0109881 0.00631922 -0.0208632 -0.00752251 -0.0388484 0.0149204 -0.0153244 -0.0128007 -0.00913833 -0.0263693 0.0196663 0.026087 -0.00165092 -0.0286164 0.00594435 -0.00128995 -0.0037276 0.00764733 +internal_weight=0 699.37 235.452 463.918 473.329 453.342 286.299 165.86 74.1258 168.187 91.7345 67.2653 167.043 59.445 79.9598 45.9076 34.0522 120.439 17.4697 299.428 243.128 58.1007 56.6204 49.8073 95.4291 56.3003 54.2111 46.1936 185.027 74.0939 +internal_count=5578 3352 1255 2097 2226 2044 1303 760 342 936 418 319 741 268 364 210 154 543 78 1433 1171 315 261 230 422 262 260 219 856 343 +is_linear=0 +shrinkage=0.05 + + +Tree=47 +num_leaves=31 +num_cat=0 +split_feature=25 25 26 24 27 22 5 23 22 27 3 22 6 26 4 6 24 5 6 13 3 16 11 27 19 15 25 25 26 17 +split_gain=15.11 13.1937 11.0283 10.4473 11.4242 11.7697 10.1749 10.1177 10.1756 10.0346 8.79741 8.30826 10.3011 8.34016 8.25412 8.61233 8.20647 8.06022 7.60395 7.55802 7.47588 7.70142 7.36574 7.36076 7.25526 7.04154 6.97277 7.55762 8.04035 8.03725 +threshold=0.94550000000000012 0.82450000000000012 0.86050000000000015 1.2895000000000003 1.1575000000000002 1.4150000000000003 2.0505000000000004 1.3315000000000001 0.72750000000000015 0.76850000000000007 1.8535000000000004 1.0355000000000001 1.1945000000000003 0.82450000000000012 -0.072499999999999995 -0.41149999999999998 0.75750000000000017 0.33450000000000008 -0.77799999999999991 0.98850000000000016 0.64550000000000007 1.9110000000000003 -0.96549999999999991 0.90450000000000019 0.27150000000000007 -1.6139999999999999 0.8025000000000001 0.53750000000000009 0.78750000000000009 1.1435000000000002 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 6 9 4 11 -6 7 8 14 -3 22 25 13 -13 20 -16 17 -10 -18 -20 -1 -22 -5 -4 -11 -2 27 29 -29 -19 +right_child=3 2 23 10 5 -7 -8 -9 16 24 -12 12 -14 -15 15 -17 18 26 19 -21 21 -23 -24 -25 -26 -27 -28 28 -30 -31 +leaf_value=0.032549062518798293 0.031913194373402509 0.0097974669772086433 0.036851829322348956 0.034979260624854631 -0.049375547524043231 -0.003082211068924692 0.044386018532857334 0.026380048391248818 -0.094057278923782281 -0.01361586170297709 -0.027278400842183276 -0.040227735353725376 -0.051315752933389192 0.015853820063151954 0.072880517095036498 0.016264433448772063 -0.025660947265256917 -0.012745873147407969 -0.012746007629310947 0.0074716226433272862 -0.045361324501685674 0.027805086453105067 0.0036937390174862578 0.013159130219719659 -0.090969971805385713 -0.014766385003698902 -0.043062534792767268 0.0055771331280428625 0.038755307167130944 0.035793967957165489 +leaf_weight=9.4844939708709735 8.4228383749723417 33.183687329292297 58.282289415597916 24.740953288972378 35.867203935980797 22.245411962270737 12.870867915451525 32.431144677102566 2.056467041373252 8.2786893025040609 17.361800499260426 7.2950857728719702 7.2988292798399916 72.649972856044769 10.128198914229872 19.944218382239342 62.728757083415985 52.28309066593647 133.77984064817429 70.632326178252697 11.721247702836992 5.1886509135365477 78.526901215314865 74.924244418740273 4.7823683619499198 197.86806324869394 7.0011604949831954 46.498111709952354 30.06877575814724 10.190238893032072 +leaf_count=44 39 155 415 106 213 104 65 146 9 40 86 31 33 331 46 96 289 223 618 324 54 24 344 342 21 939 38 201 159 43 +internal_value=0 0.00454115 0.0162222 -0.00704434 -0.0113999 -0.0316545 0.000486715 -0.000634057 -0.00249136 -0.00481476 0.00565264 -0.00739001 0.00554503 0.0107363 0.017423 0.0353324 -0.00519944 0.00424107 -0.0104331 -0.00576003 -0.00298204 -0.0229109 0.0111891 0.0235255 -0.0419394 -0.0128605 0.00562524 0.00807684 0.0186066 -0.00482837 +internal_weight=0 696.459 179.451 472.277 351.647 58.1126 517.008 504.137 471.706 46.2447 120.63 293.535 87.2439 79.9451 56.4668 30.0724 415.239 148.098 267.141 204.412 26.3944 16.9099 103.268 133.207 13.0611 206.291 146.041 139.04 76.5669 62.4733 +internal_count=5578 3352 973 2226 1690 317 2379 2314 2168 216 536 1373 395 362 264 142 1904 673 1231 942 122 78 450 757 61 978 664 626 360 266 +is_linear=0 +shrinkage=0.05 + + +Tree=48 +num_leaves=31 +num_cat=0 +split_feature=25 25 26 24 27 22 5 27 4 3 27 17 27 27 22 6 26 9 18 26 15 16 27 4 11 6 19 7 10 19 +split_gain=13.6952 12.3772 9.61308 9.46824 10.5624 11.0425 8.83267 8.36049 8.08608 7.9682 7.95591 7.56651 7.52919 9.30429 7.35042 9.49125 7.27041 9.49943 7.26307 7.10681 6.91766 6.82982 6.78888 8.15248 6.67173 6.64802 6.63437 7.02031 6.68256 6.57576 +threshold=0.94550000000000012 0.78550000000000009 0.86550000000000005 1.2895000000000003 1.1575000000000002 1.4150000000000003 2.0995000000000004 0.85250000000000015 1.6505000000000003 1.8535000000000004 1.0105000000000002 0.59450000000000014 0.86550000000000005 0.85950000000000015 1.0265000000000002 1.1945000000000003 0.72850000000000015 1.1375000000000002 -0.78599999999999992 0.82450000000000012 -1.6139999999999999 1.0000000180025095e-35 0.76850000000000007 -0.20899999999999999 -0.96549999999999991 0.53250000000000008 0.40250000000000002 1.1225000000000003 -0.84049999999999991 -0.93549999999999989 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 6 18 4 8 -6 7 16 14 24 -4 -12 13 -9 20 19 17 -1 -3 -16 -2 29 25 -24 -5 -20 27 -13 -28 -14 +right_child=3 2 10 9 5 -7 -8 12 -10 -11 11 26 21 -15 15 -17 -18 -19 22 -21 -22 -23 23 -25 -26 -27 28 -29 -30 -31 +leaf_value=-0.0097866925609544145 0.031791022182929146 -0.033793780251004074 0.028467126599138762 0.033310370628025963 -0.047966366074873201 -0.0029297793028438632 0.045552712832170363 -0.0099047926589927518 0.041661465619902693 -0.026062855945662419 -0.037577864477795701 0.01171569519247166 -0.023735000473996258 -0.10311044707698998 -0.038738991855914395 -0.050106743425491873 0.010661001754105792 0.039857764843682142 0.035178792017323511 0.012995863058979039 -0.015820631959088335 -0.019504538000789662 -0.050452645724768222 0.017634187459165004 0.0035088272818091177 -0.010183165437617627 -0.01442190563415517 -0.04471670399681045 0.055825502557000542 0.0089643410465573888 +leaf_weight=111.20013658702374 7.9527985751628867 14.306285478174685 105.7014714628458 24.682948507368565 35.094734385609627 22.232989132404327 10.224911175668238 6.1427945494651777 8.2845838740468007 17.265465721487999 8.670602545142172 25.879533290863037 19.825302690267563 4.7464840859174728 7.2873853147029868 7.5773965567350379 163.16426690667868 10.550199106335638 22.70757657289505 74.512926697731018 187.42609639465809 67.471772998571396 9.4937267825007456 8.1884774863719922 78.531799092888832 12.535959452390669 4.5642448961734798 7.0022680461406699 13.109003871679304 68.487916499376297 +leaf_count=480 37 68 668 106 213 104 53 29 38 86 38 116 88 22 31 34 777 46 109 340 893 301 44 39 344 59 20 32 62 301 +internal_value=0 0.00433304 0.0137508 -0.00671465 -0.0108724 -0.0305002 -0.000401401 -0.0014419 -0.00703262 0.00537653 0.0202469 0.00557608 -0.0103367 -0.0505318 -0.00844931 0.00342787 0.00376155 -0.00548478 -0.00218468 0.00838693 -0.0138826 -0.00752711 0.00635953 -0.0189222 0.0106356 0.0190438 0.0129773 -0.000301736 0.0376836 0.00162371 +internal_weight=0 693.973 232.159 470.849 350.369 57.3277 461.814 451.589 293.041 120.48 164.927 59.2257 166.674 10.8893 284.757 89.3777 284.915 121.75 67.232 81.8003 195.379 155.785 52.9257 17.6822 103.215 35.2435 50.5551 32.8818 17.6732 88.3132 +internal_count=5578 3352 1255 2226 1690 317 2097 2044 1373 536 936 268 741 51 1335 405 1303 526 319 371 930 690 251 83 450 168 230 148 82 389 +is_linear=0 +shrinkage=0.05 + + +Tree=49 +num_leaves=31 +num_cat=0 +split_feature=25 25 13 24 27 26 27 0 5 2 11 27 0 10 4 14 13 18 13 11 9 5 14 24 15 18 24 25 19 27 +split_gain=12.4134 11.2784 8.84138 8.58125 9.76874 8.47771 9.50635 8.24338 8.11556 7.72836 7.65657 7.56618 7.8332 9.28637 7.2393 6.8844 6.79757 6.76707 6.54316 8.69489 9.58495 6.53648 7.25315 7.28624 6.69955 6.92157 13.445 13.8436 6.50036 11.8639 +threshold=0.94550000000000012 0.78550000000000009 1.881 1.2895000000000003 1.1285000000000001 0.86550000000000005 1.0105000000000002 1.2435000000000003 2.0995000000000004 1.5225000000000002 0.95050000000000001 0.84050000000000014 0.94250000000000012 -1.4834999999999998 1.6505000000000003 1.7570000000000003 1.3085000000000002 -1.8059999999999998 1.1595000000000002 -0.17549999999999996 1.5605000000000002 0.88650000000000007 -0.12149999999999998 1.0435000000000001 -1.2404999999999997 0.78750000000000009 1.0155000000000001 1.3075000000000003 0.50950000000000017 0.62050000000000016 +decision_type=2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 +left_child=1 8 5 4 14 7 -7 -3 11 10 -5 12 13 -1 21 28 17 -15 -6 -20 -21 22 23 -2 -23 -26 27 -27 29 -14 +right_child=3 2 -4 9 18 6 -8 -9 -10 -11 -12 -13 15 16 -16 -17 -18 -19 19 20 -22 24 -24 -25 25 26 -28 -29 -30 -31 +leaf_value=-0.046188641129466856 -0.011763371969417048 0.0047093565753382107 0.060138390618746186 0.015812286513699605 -0.046063341939119151 0.02669508874832547 0.00083291827971500906 -0.040230635212806454 0.044065921056247202 -0.050126531138654395 -0.0134719798799448 -0.009465248857877433 0.097013697945118688 0.055440762437986006 0.03954026484185158 -0.043582516147909284 0.032375489032076592 -0.0056316881455204344 -0.041827913931864802 -0.016534492758465469 0.059523148563369578 0.025271056785421481 -0.026305303128616599 0.031563560100221488 -0.010623855370494598 -0.0021077921481683407 -0.041938137482137983 0.089012580893815252 -0.00046240905735625153 0.01946912043167319 +leaf_weight=11.713060140609739 47.13337004929781 53.172375544905663 9.6001919582486135 83.895775720477104 28.392425574362278 99.976456493139267 55.123733356595039 12.627528965473173 10.046011574566363 6.0149839520454398 30.411628305912018 176.0237720310688 5.3261921852827063 4.7008741796016684 8.2923459559679014 4.99973540008068 14.661194294691084 129.13433178514242 14.838452175259588 12.034467339515688 6.3164908587932578 21.430124022066593 74.029224321246147 12.219044506549833 101.34210221469402 8.3537996709346825 6.3906735181808463 8.3194947540760023 37.523756466805935 66.726785063743591 +leaf_count=52 217 254 54 372 158 641 249 57 53 27 137 785 22 21 38 23 71 595 84 67 35 107 341 54 479 41 30 39 170 305 +internal_value=0 0.00413493 0.013165 -0.00640066 -0.0103696 0.0111235 0.0175035 -0.00391499 -0.000381508 0.00511433 0.00802117 -0.00137199 0.00381243 -0.00332672 -0.0064986 0.0137949 5.41367e-05 -0.00348656 -0.0284421 -0.0133678 0.00964492 -0.00786588 -0.0158652 -0.00284354 -0.00054968 -0.00499755 0.0197242 0.0433587 0.0164129 0.0252013 +internal_weight=0 691.356 230.5 469.414 349.092 220.9 155.1 65.7999 460.856 120.322 114.307 450.81 274.786 160.209 287.51 114.576 148.496 133.835 61.5818 33.1894 18.351 279.218 133.382 59.3524 145.836 124.406 23.064 16.6733 109.577 72.053 +internal_count=5578 3352 1255 2226 1690 1201 890 311 2097 536 509 2044 1259 739 1346 520 687 616 344 186 102 1308 612 271 696 589 110 80 497 327 +is_linear=0 +shrinkage=0.05 + + +end of trees + +feature_importances: +feature_25=181 +feature_27=137 +feature_22=136 +feature_5=129 +feature_24=124 +feature_26=114 +feature_3=82 +feature_9=75 +feature_0=67 +feature_17=62 +feature_13=44 +feature_4=33 +feature_6=33 +feature_10=33 +feature_19=32 +feature_18=29 +feature_23=29 +feature_15=28 +feature_11=26 +feature_2=23 +feature_14=21 +feature_1=19 +feature_7=19 +feature_8=8 +feature_12=5 +feature_16=5 +feature_20=3 +feature_21=3 + +parameters: +[boosting: gbdt] +[objective: custom] +[metric: binary_logloss] +[tree_learner: serial] +[device_type: cpu] +[data: ] +[valid: ] +[num_iterations: 10] +[learning_rate: 0.05] +[num_leaves: 31] +[num_threads: 0] +[deterministic: 0] +[force_col_wise: 0] +[force_row_wise: 0] +[histogram_pool_size: -1] +[max_depth: -1] +[min_data_in_leaf: 20] +[min_sum_hessian_in_leaf: 0.001] +[bagging_fraction: 0.8] +[pos_bagging_fraction: 1] +[neg_bagging_fraction: 1] +[bagging_freq: 5] +[bagging_seed: 3] +[feature_fraction: 0.9] +[feature_fraction_bynode: 1] +[feature_fraction_seed: 2] +[extra_trees: 0] +[extra_seed: 6] +[early_stopping_round: 0] +[first_metric_only: 0] +[max_delta_step: 0] +[lambda_l1: 0] +[lambda_l2: 0] +[linear_lambda: 0] +[min_gain_to_split: 0] +[drop_rate: 0.1] +[max_drop: 50] +[skip_drop: 0.5] +[xgboost_dart_mode: 0] +[uniform_drop: 0] +[drop_seed: 4] +[top_rate: 0.2] +[other_rate: 0.1] +[min_data_per_group: 100] +[max_cat_threshold: 32] +[cat_l2: 10] +[cat_smooth: 10] +[max_cat_to_onehot: 4] +[top_k: 20] +[monotone_constraints: ] +[monotone_constraints_method: basic] +[monotone_penalty: 0] +[feature_contri: ] +[forcedsplits_filename: ] +[refit_decay_rate: 0.9] +[cegb_tradeoff: 1] +[cegb_penalty_split: 0] +[cegb_penalty_feature_lazy: ] +[cegb_penalty_feature_coupled: ] +[path_smooth: 0] +[interaction_constraints: ] +[verbosity: 0] +[saved_feature_importance_type: 0] +[linear_tree: 0] +[max_bin: 255] +[max_bin_by_feature: ] +[min_data_in_bin: 3] +[bin_construct_sample_cnt: 200000] +[data_random_seed: 1] +[is_enable_sparse: 1] +[enable_bundle: 1] +[use_missing: 1] +[zero_as_missing: 0] +[feature_pre_filter: 1] +[pre_partition: 0] +[two_round: 0] +[header: 0] +[label_column: ] +[weight_column: ] +[group_column: ] +[ignore_column: ] +[categorical_feature: 21] +[forcedbins_filename: ] +[precise_float_parser: 0] +[objective_seed: 5] +[num_class: 1] +[is_unbalance: 0] +[scale_pos_weight: 1] +[sigmoid: 1] +[boost_from_average: 1] +[reg_sqrt: 0] +[alpha: 0.9] +[fair_c: 1] +[poisson_max_delta_step: 0.7] +[tweedie_variance_power: 1.5] +[lambdarank_truncation_level: 30] +[lambdarank_norm: 1] +[label_gain: ] +[eval_at: ] +[multi_error_top_k: 1] +[auc_mu_weights: ] +[num_machines: 1] +[local_listen_port: 12400] +[time_out: 120] +[machine_list_filename: ] +[machines: ] +[gpu_platform_id: -1] +[gpu_device_id: -1] +[gpu_use_dp: 0] +[num_gpu: 1] + +end of parameters + +pandas_categorical:[] diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/requirements.txt b/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/requirements.txt new file mode 100644 index 000000000000..393ece6cd05f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/lightgbm_mlflow_model/requirements.txt @@ -0,0 +1,5 @@ +mlflow +lightgbm==3.3.2 +matplotlib==3.3.4 +pandas==1.1.5 +typing-extensions==4.0.1 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/model.pkl b/sdk/ml/azure-ai-ml/tests/test_configs/model/model.pkl new file mode 100644 index 000000000000..ce013625030b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/model.pkl @@ -0,0 +1 @@ +hello diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/model_bad.yml b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_bad.yml new file mode 100644 index 000000000000..8261b29510f1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_bad.yml @@ -0,0 +1,3 @@ +name: my-model +version: 3 +path: ./model.pkl diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/model_env1.yml b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_env1.yml new file mode 100644 index 000000000000..8261b29510f1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_env1.yml @@ -0,0 +1,3 @@ +name: my-model +version: 3 +path: ./model.pkl diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/model_env2.yml b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_env2.yml new file mode 100644 index 000000000000..8261b29510f1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_env2.yml @@ -0,0 +1,3 @@ +name: my-model +version: 3 +path: ./model.pkl diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/model_full.yml b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_full.yml new file mode 100644 index 000000000000..7fbd2c8c9a8f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_full.yml @@ -0,0 +1,15 @@ +name: my-model6 +type: mlflow_model +path: ./lightgbm_mlflow_model +version: 3 +description: "this is my test model" +tags: + foo: bar + abc: 123 +utc_time_created: '2020-10-19 17:44:02.096572' +flavors: + sklearn: + sklearn_version: 0.23.2 + python_function: + loader_module: office.plrmodel + python_version: 3.8.5 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/model_minimal.yml b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_minimal.yml new file mode 100644 index 000000000000..8261b29510f1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_minimal.yml @@ -0,0 +1,3 @@ +name: my-model +version: 3 +path: ./model.pkl diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/model_no_version.yml b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_no_version.yml new file mode 100644 index 000000000000..8b12f9f8a987 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_no_version.yml @@ -0,0 +1,2 @@ +name: my-model +path: ./model.pkl diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/model_path.yml b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_path.yml new file mode 100644 index 000000000000..29f409582256 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_path.yml @@ -0,0 +1,14 @@ +name: model-remote2 +path: azureml://datastores/workspaceblobstore/paths/az-ml-artifacts/b1946ac92492d2347c6235b4d2611184/model.pkl +version: 3 +description: "this is my test model" +tags: + foo: bar + abc: 123 +utc_time_created: '2020-10-19 17:44:02.096572' +flavors: + sklearn: + sklearn_version: 0.23.2 + python_function: + loader_module: office.plrmodel + python_version: 3.8.5 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/model/model_path_url.yml b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_path_url.yml new file mode 100644 index 000000000000..9516a1c5313e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/model/model_path_url.yml @@ -0,0 +1,14 @@ +name: model-remote2 +path: "azureml://subscriptions/4faaaf21-663f-4391-96fd-47197c630979/resourceGroups/test-rg-centraluseuap-v2-t-2021W34/workspaces/sdk_vnext_cli/datastores/workspaceblobstore/paths/LocalUpload/af5597c29467a96523a70787c319f4db/model.pkl" +version: 3 +description: "this is my test model" +tags: + foo: bar + abc: 123 +utc_time_created: '2020-10-19 17:44:02.096572' +flavors: + sklearn: + sklearn_version: 0.23.2 + python_function: + loader_module: office.plrmodel + python_version: 3.8.5 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/component_from_registry.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/component_from_registry.yml new file mode 100644 index 000000000000..4249cdeb1ca7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/component_from_registry.yml @@ -0,0 +1,19 @@ +type: pipeline + +# name: microsoft.samples.PipelineJobSampleToDefineScope #follow up on schema validation error +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +# Check if supported ... +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +jobs: + component_1: + type: command + component: azureml://registries/testFeed/components/my_hello_world_asset_2/versions/1 + compute: azureml:cpu-cluster diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job.yml new file mode 100644 index 000000000000..7d078866f1de --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job.yml @@ -0,0 +1,39 @@ +type: pipeline + +# name: microsoft.samples.PipelineJobSampleToDefineScope #follow up on schema validation error +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +# Check if supported ... +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_other_number: + value: 15 + job_in_path: + path: ../data + mode: ro_mount + +jobs: + hello_world_component: + type: command + component: azureml:microsoftsamplesCommandComponentBasic_second:1 + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} + + hello_world_component_2: + type: command + component: azureml:microsoftsamplesCommandComponentBasic_second:1 + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_other_number}} + component_in_path: ${{parent.inputs.job_in_path}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_comps_data_options.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_comps_data_options.yml new file mode 100644 index 000000000000..a32bafd91b8d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_comps_data_options.yml @@ -0,0 +1,30 @@ +type: pipeline + +name: simplePipelineJobMultipleDataforComps +description: The hello world pipeline job with multiple data options +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +jobs: + multiple_data_component: + component: azureml:microsoftsamplesCommandComponentMultipleData:1 + type: command + inputs: + # Hard coding input dataset, not mapping to job level input + component_in_1: + path: azureml:fakeData:1 + + outputs: + # Hard coding input dataset, not mapping to job level output + component_out_1: + data: + name: fakedata + + # Hard-coding input path here instead of mapping to output + component_out_2: + data: + path: /data_path + datastore: azureml:workspaceblobstore diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_comps_data_options_no_outputs.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_comps_data_options_no_outputs.yml new file mode 100644 index 000000000000..c1be63588609 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_comps_data_options_no_outputs.yml @@ -0,0 +1,20 @@ +type: pipeline + +name: simplePipelineJobMultipleDataforComps +description: The hello world pipeline job with multiple data options +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + inputvalue: 1 + +jobs: + multiple_data_component: + component: azureml:microsoftsamplesCommandComponentMultipleData:1 + type: command + # Hard-coding input path here instead of mapping to input + inputs: + component_in_3: ${{parent.inputs.inputvalue}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_cron_schedule.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_cron_schedule.yml new file mode 100644 index 000000000000..93098e7cf720 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_cron_schedule.yml @@ -0,0 +1,43 @@ +type: pipeline + +name: simplePipelineJobWithCommandJobInputs +description: The hello world pipeline job with inline command job having inputs +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +outputs: + job_out_path_1: + mode: mount + +schedule: + type: cron + expression: "15 16 * * 1" + start_time: "2022-05-10T10:15:00" + time_zone: Eastern Standard Time + status: enabled + +jobs: + + hello_world_inline_commandjob_1: + type: command + + command: echo "Hello World" > ${{outputs.component_out_path_1}}/helloworld.txt + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + compute: "azureml:cpu-cluster" + description: Simple job that writes hello world to file. + outputs: + component_out_path_1: ${{parent.outputs.job_out_path_1}} + + + hello_world_inline_commandjob_2: + type: command + + command: echo "Hello World" > ${{outputs.component_out_path_2}}/helloworld.txt + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + compute: "azureml:cpu-cluster" + description: Simple job that writes hello world to file. + outputs: + component_out_path_2: diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_data_options.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_data_options.yml new file mode 100644 index 000000000000..a589dc8e9271 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_data_options.yml @@ -0,0 +1,161 @@ +type: pipeline + +name: simplePipelineJobWithMultipleDataCases +description: The hello world pipeline job with multiple data cases +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + # examples of dataset inputs + + # registered dataset with version + # Mount is default if mode is not specified + job_in_data_name_version_def_mode: + path: azureml:fakeData:1 + + # registered dataset with version + # Mount mode specified + job_in_data_name_version_mode_mount: + path: azureml:fakeData:1 + mode: ro_mount + + # registered dataset with version + # Download mode specified + job_in_data_name_version_mode_download: + path: azureml:fakeData:1 + mode: download + + # registered dataset explicitly referenced by name + job_in_data_by_name: + path: azureml:fakeData:1 + + # registered dataset referenced by ARM id + job_in_data_by_armid: + path: azureml:/subscriptions/15ae9cb6-95c1-483d-a0e3-b1a1a3b06324/resourceGroups/ignite/providers/Microsoft.MachineLearningServices/workspaces/ignite/data/6560575d-fa06-4e7d-95fb-f962e74efd7a/versions/1 + + # examples of datapath and datastore inputs + # datapath and datastore + job_in_data_by_store_path: + path: azureml://datastores/workspaceblobstore/paths/path/on/datastore + + # datapath on default workspace datastore + job_in_data_by_path_default_store: + path: azureml://datastores/workspaceblobstore/paths/path/on/datastore + + # datapath and datastore with mount mode + job_in_data_by_store_path_and_mount: + path: azureml://datastores/workspaceblobstore/paths/path/on/datastore + mode: ro_mount + + # datapath and datastore with download mode + job_in_data_by_store_path_and_download: + path: azureml://datastores/workspaceblobstore/paths/path/on/datastore + mode: download + + # examples of blob store, url and local inputs + + # blob store directory + job_in_data_by_blob_dir: + path: https://sdkvnextcli1074156529.blob.core.windows.net/azureml-blobstore-b0ca17de-3224-4653-b870-7730be964b35/az-ml-artifacts/0439c9f5aa9068ee12f3c3245eb0f9a1/ + + job_in_data_by_blob_file: + path: https://sdkvnextcli1074156529.blob.core.windows.net/azureml-blobstore-b0ca17de-3224-4653-b870-7730be964b35/az-ml-artifacts/c3929d74644603edaef09efc0dd3274e/components/input_types_component.yml + + # local directory + job_in_data_local_dir: + path: ./ + + # local file + job_in_data_local_file: + path: ./helloworld_pipeline_job_inline_file_comps.yml + + + # referencing local data yaml file + job_in_data_local_yaml_definition: + type: uri_file + path: ../dataset/dataset_file_test.yml + + #uri inputs + job_in_data_uri: + type: uri_file + path: wasbs://azureml-blobstore-b0ca17de-3224-4653-b870-7730be964b35@sdkvnextcli1074156529.blob.core.windows.net/az-ml-artifacts/c3929d74644603edaef09efc0dd3274e/components/input_types_component.yml + +outputs: + # dataset output examples + + # output dataset. Default mode is upload. Output data path is chosen by backend and cannot be specified by user. + job_in_data_name: + mode: upload + + # dataset with upload mode + job_in_data_name_upload: + mode: upload + + # dataset with mount mode + job_in_data_name_mount: + mode: mount + + # this format seems more intuitive when you are creating a new dataset + job_out_data_name_apart: + mode: upload + + # datastore + datapath output examples + + # upload is the default mode for output to blob store. + # If datastore is not mentioned, workspace default datastore is used + job_out_data_path: + mode: upload + + # upload to blob store directory + job_out_data_store_path_upload: + mode: upload + + # write to mounted to blob store directory + job_out_data_store_path_mount: + mode: mount + + # direct blob store URL + job_out_data_store_url: + mode: upload + + # default path on default datastore is used output dataset or datapath+datastore is mentioned. + # But do we need to qualify this as data: to distinguish it from value? + # TODO (1057925): Test when default data is supported + # job_out_data_default: + +jobs: + multiple_data_component: + component: azureml:microsoftsamplesCommandComponentMultipleData:1 + type: command + inputs: + component_in_1: ${{parent.inputs.job_in_data_name_version_def_mode}} + component_in_2: ${{parent.inputs.job_in_data_name_version_mode_mount}} + component_in_3: ${{parent.inputs.job_in_data_name_version_mode_download}} + component_in_4: ${{parent.inputs.job_in_data_by_name}} + component_in_5: ${{parent.inputs.job_in_data_by_armid}} + component_in_6: ${{parent.inputs.job_in_data_by_store_path}} + component_in_7: ${{parent.inputs.job_in_data_by_path_default_store}} + component_in_8: ${{parent.inputs.job_in_data_by_store_path_and_mount}} + component_in_9: ${{parent.inputs.job_in_data_by_store_path_and_download}} + component_in_10: ${{parent.inputs.job_in_data_by_blob_dir}} + component_in_11: ${{parent.inputs.job_in_data_by_blob_file}} + component_in_12: ${{parent.inputs.job_in_data_local_dir}} + component_in_13: ${{parent.inputs.job_in_data_local_file}} + component_in_14: ${{parent.inputs.job_in_data_local_yaml_definition}} + component_in_15: ${{parent.inputs.job_in_data_uri}} + outputs: + component_out_1: ${{parent.outputs.job_in_data_name}} + component_out_2: ${{parent.outputs.job_in_data_name_upload}} + component_out_3: ${{parent.outputs.job_in_data_name_mount}} + component_out_4: ${{parent.outputs.job_out_data_name_apart}} + component_out_5: ${{parent.outputs.job_out_data_path}} + component_out_6: ${{parent.outputs.job_out_data_store_path_upload}} + component_out_7: ${{parent.outputs.job_out_data_store_path_mount}} + component_out_8: ${{parent.outputs.job_out_data_store_url}} + component_out_9: + mode: upload + # TODO (1057925): Test when default data is supported + #component_out_9: outputs.job_out_data_default diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_data_options_no_outputs.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_data_options_no_outputs.yml new file mode 100644 index 000000000000..30f538348ab8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_data_options_no_outputs.yml @@ -0,0 +1,101 @@ +type: pipeline + +name: simplePipelineJobWithMultipleDataCases +description: The hello world pipeline job with multiple data cases +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + # examples of dataset inputs + + # registered dataset with version + # Mount is default if mode is not specified + job_in_data_name_version_def_mode: + path: azureml:fakeData:1 + + # registered dataset with version + # Mount mode specified + job_in_data_name_version_mode_mount: + path: azureml:fakeData:1 + mode: ro_mount + + # registered dataset with version + # Download mode specified + job_in_data_name_version_mode_download: + path: azureml:fakeData:1 + mode: download + + # registered dataset explicitly referenced by name + job_in_data_by_name: + path: azureml:fakeData:1 + + # registered dataset referenced by ARM id + job_in_data_by_armid: + path: azureml:subscriptions/15ae9cb6-95c1-483d-a0e3-b1a1a3b06324/resourceGroups/ignite/providers/Microsoft.MachineLearningServices/workspaces/ignite/data/6560575d-fa06-4e7d-95fb-f962e74efd7a/versions/1 + + # examples of datapath and datastore inputs + # datapath and datastore + job_in_data_by_store_path: + path: azureml://datastores/adatastore/paths/path/on/datastore + + # datapath on default workspace datastore + job_in_data_by_path_default_store: + path: azureml://datastores/workspaceblobstore/paths/path/on/datastore + + # datapath and datastore with mount mode + job_in_data_by_store_path_and_mount: + path: azureml://datastores/workspaceblobstore/paths/path/on/datastore + mode: ro_mount + + # datapath and datastore with download mode + job_in_data_by_store_path_and_download: + path: azureml://datastores/workspaceblobstore/paths/path/on/datastore + mode: download + + # examples of blob store, url and local inputs + + # blob store directory + job_in_data_by_blob_dir: + path: https://sdkvnextcli1074156529.blob.core.windows.net/azureml-blobstore-b0ca17de-3224-4653-b870-7730be964b35/az-ml-artifacts/0439c9f5aa9068ee12f3c3245eb0f9a1/ + + job_in_data_by_blob_file: + type: uri_file + path: https://sdkvnextcli1074156529.blob.core.windows.net/azureml-blobstore-b0ca17de-3224-4653-b870-7730be964b35/az-ml-artifacts/c3929d74644603edaef09efc0dd3274e/components/input_types_component.yml + + # local directory + job_in_data_local_dir: + path: ./ + + # local file + job_in_data_local_file: + type: uri_file + path: ./helloworld_pipeline_job_inline_file_comps.yml + + + # referencing local data yaml file + job_in_data_local_yaml_definition: + type: uri_file + path: ../dataset/dataset_file_test.yml + +jobs: + multiple_data_component: + component: azureml:microsoftsamplesCommandComponentMultipleData:1 + type: command + inputs: + component_in_1: ${{parent.inputs.job_in_data_name_version_def_mode}} + component_in_2: ${{parent.inputs.job_in_data_name_version_mode_mount}} + component_in_3: ${{parent.inputs.job_in_data_name_version_mode_download}} + component_in_4: ${{parent.inputs.job_in_data_by_name}} + component_in_5: ${{parent.inputs.job_in_data_by_armid}} + component_in_6: ${{parent.inputs.job_in_data_by_store_path}} + component_in_7: ${{parent.inputs.job_in_data_by_path_default_store}} + component_in_8: ${{parent.inputs.job_in_data_by_store_path_and_mount}} + component_in_9: ${{parent.inputs.job_in_data_by_store_path_and_download}} + component_in_10: ${{parent.inputs.job_in_data_by_blob_dir}} + component_in_11: ${{parent.inputs.job_in_data_by_blob_file}} + component_in_12: ${{parent.inputs.job_in_data_local_dir}} + component_in_13: ${{parent.inputs.job_in_data_local_file}} + component_in_14: ${{parent.inputs.job_in_data_local_yaml_definition}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_dataset_options_no_outputs.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_dataset_options_no_outputs.yml new file mode 100644 index 000000000000..98bd1b188906 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_dataset_options_no_outputs.yml @@ -0,0 +1,47 @@ +type: pipeline + +name: simplePipelineJobWithMultipleDatasetCases +description: The hello world pipeline job with multiple data cases +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + # examples of dataset inputs + + # registered dataset with version + # Mount is default if mode is not specified + job_in_dataset_name_version_def_mode: + type: uri_file + path: https://sag3uw5aitwz5iw.blob.core.windows.net/azureml-blobstore-525ecb0d-ade1-4979-bed9-a80da71c5fba/LocalUpload/79dd8f7e00e2fe2d398effb65ff874e3/data/sample1.csv + + # registered dataset with version + # Mount mode specified + job_in_dataset_name_version_mode_mount: + mode: ro_mount + type: uri_file + path: https://sag3uw5aitwz5iw.blob.core.windows.net/azureml-blobstore-525ecb0d-ade1-4979-bed9-a80da71c5fba/LocalUpload/79dd8f7e00e2fe2d398effb65ff874e3/data/sample1.csv + + # registered dataset with version + # Download mode specified + job_in_dataset_name_version_mode_download: + mode: download + type: uri_file + path: https://sag3uw5aitwz5iw.blob.core.windows.net/azureml-blobstore-525ecb0d-ade1-4979-bed9-a80da71c5fba/LocalUpload/79dd8f7e00e2fe2d398effb65ff874e3/data/sample1.csv + + + # blob store directory + job_in_dataset_by_blob_dir: + path: azureml://datastores/workspaceblobstore/paths/LocalUpload/79dd8f7e00e2fe2d398effb65ff874e3/data + +jobs: + multiple_data_component: + component: azureml:microsoftsamplesCommandComponentMultipleData:1 + type: command + inputs: + component_in_1: ${{parent.inputs.job_in_dataset_name_version_def_mode}} + component_in_2: ${{parent.inputs.job_in_dataset_name_version_mode_mount}} + component_in_3: ${{parent.inputs.job_in_dataset_name_version_mode_download}} + component_in_4: ${{parent.inputs.job_in_dataset_by_blob_dir}} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults.yml new file mode 100644 index 000000000000..ffa129e3b990 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults.yml @@ -0,0 +1,72 @@ +type: pipeline + +name: simplePipelineJobWithInlineComps +description: The hello world pipeline job with inline components +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +settings: + default_datastore: azureml:workspacefilestore + default_compute: azureml:cpu-cluster-1 + continue_on_step_failure: True + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_other_number: + value: 15 + +jobs: + hello_world_component_inline_1: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + + component: + command: >- + echo Hello World & + echo ${{inputs.component_in_number}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + inputs: + component_in_number: + description: An integer + type: integer + default: 10 + optional: false + hello_world_component_inline_2: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + + component: + code: ../components + + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + command: >- + echo Hello World & + echo ${{inputs.component_in_number}} + inputs: + component_in_number: + description: Am integer + type: integer + default: 10 + optional: false + hello_world_component_inline_3: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + + component: + command: >- + echo Hello World & + echo ${{inputs.component_in_number}} + inputs: + component_in_number: + description: Am integer + type: integer + default: 10 + optional: false + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_e2e.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_e2e.yml new file mode 100644 index 000000000000..d540bef0c239 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_e2e.yml @@ -0,0 +1,54 @@ +type: pipeline + +name: simplePipelineJobWithInlineComps +description: The hello world pipeline job with inline components +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +settings: + default_datastore: azureml:workspacefilestore + default_compute: azureml:cpu-cluster + continue_on_step_failure: true + force_rerun: false + +jobs: + hello_world_component_inline_1: + type: command + + component: ../components/component_e2e.yml + + compute: azureml:cpu-cluster + + outputs: + output_path: + mode: mount + + hello_world_component_inline_2: + type: command + + component: ../components/component_e2e.yml + + outputs: + output_path: + mode: mount + + hello_world_component_inline_3: + type: command + + component: + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + + command: >- + echo Hello World Inline 3 + + hello_world_component_inline_4: + type: command + + component: + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + code: ../data + command: >- + echo Hello World Inline 4 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_command_job_e2e.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_command_job_e2e.yml new file mode 100644 index 000000000000..6fd920b5762b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_command_job_e2e.yml @@ -0,0 +1,58 @@ +type: pipeline + +name: simplePipelineJobWithInlineCommandJobe2e +description: The hello world pipeline job with inline command job +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +settings: + default_datastore: "azureml:workspacefilestore" + default_compute: "azureml:cpu-cluster" + continue_on_step_failure: true + +inputs: + job_data_path: + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + +outputs: + job_out_path_1: + mode: mount + +jobs: + hello_world_inline_commandjob_1: + type: command + + command: pip freeze && echo Hello World + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + code: ./ + + experiment_name: test-iris-example-1 + description: Train a model on the Iris dataset-1. + compute: "azureml:cpu-cluster" + inputs: + "test1": + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + "literal_input": 2 + environment_variables: + FOO: "bar" + + + hello_world_inline_commandjob_2: + type: command + + command: echo Hello World + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + name: "test2" + experiment_name: test-iris-example-2 + description: Train a model on the Iris dataset-2. + properties: + test_property: test_value + identity: + type: AMLToken diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_command_job_e2e_short_uri.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_command_job_e2e_short_uri.yml new file mode 100644 index 000000000000..e81c1c40f805 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_command_job_e2e_short_uri.yml @@ -0,0 +1,55 @@ +type: pipeline + +name: simplePipelineJobWithInlineCommandJob +description: The hello world pipeline job with inline command job +tags: + tag: tagvalue + owner: sdkteam + +inputs: + job_data_path: + type: uri_file + path: azureml://datastores/workspaceblobstore/paths/python/data.csv + +outputs: + job_out_path_1: + mode: mount + +jobs: + hello_world_inline_commandjob_1: + type: command + + command: pip freeze && echo Hello World + environment: azureml:AzureML-Minimal:1 + code: ./ + compute: "azureml:cpu-cluster" + experiment_name: test-iris-example-1 + description: Train a model on the Iris dataset-1. + inputs: + "test1": + type: uri_file + path: azureml://datastores/workspaceblobstore/paths/python/data.csv + mode: ro_mount + "literal_input": 2 + outputs: + job_output: ${{parent.outputs.job_out_path_1}} + + + hello_world_inline_commandjob_2: + type: command + + command: echo Hello World + environment: azureml:AzureML-Minimal:1 + name: "test2" + compute: "azureml:cpu-cluster" + experiment_name: test-iris-example-2 + description: Train a model on the Iris dataset-2. + inputs: + input_from_previous_node: + type: uri_file + path: azureml://datastores/workspaceblobstore/paths/python/data.csv + mode: ro_mount + properties: + test_property: test_value + identity: + type: AMLToken \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_component_input_e2e.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_component_input_e2e.yml new file mode 100644 index 000000000000..5ffed8dd4d7d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_component_input_e2e.yml @@ -0,0 +1,29 @@ +type: pipeline + +description: The hello world pipeline job with inline parallel job defined by parallel component +tags: + tag: tagvalue + owner: sdkteam + +settings: + default_compute: azureml:cpu-cluster + +inputs: + pipeline_job_data_path: + type: mltable + path: ../dataset/mnist-data/ + mode: eval_mount + +jobs: + hello_world_inline_paralleljob_1: + type: parallel + compute: azureml:cpu-cluster + component: file:../components/parallel_component_with_file_input.yml + inputs: + job_data_path: ${{parent.inputs.pipeline_job_data_path}} + outputs: + job_output_path: + + mini_batch_size: "1" + mini_batch_error_threshold: 1 + max_concurrency_per_instance: 1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_dataset_input_e2e.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_dataset_input_e2e.yml new file mode 100644 index 000000000000..69f9e950c65a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_dataset_input_e2e.yml @@ -0,0 +1,55 @@ +type: pipeline + +description: The hello world pipeline job with inline parallel job +tags: + tag: tagvalue + owner: sdkteam + +inputs: + job_data_path: + type: mltable + path: ../dataset/mnist-mltable/ + mode: eval_mount + score_model: + type: uri_folder + path: ../mnist_models + mode: download + +outputs: + job_out_file: + type: uri_file + mode: rw_mount + +jobs: + predict_digits_mnist: + type: parallel + compute: azureml:cpu-cluster + inputs: + job_data_path: ${{parent.inputs.job_data_path}} + score_model: ${{parent.inputs.score_model}} + outputs: + job_output_file: ${{parent.outputs.job_out_file}} + + mini_batch_size: "5" + mini_batch_error_threshold: 5 + logging_level: "DEBUG" + input_data: ${{inputs.job_data_path}} + max_concurrency_per_instance: 2 + environment_variables: + FOO: "bar" + retry_settings: + max_retries: 2 + timeout: 60 + + task: + type: function + code: "../script_parallel" + entry_script: digit_identification.py + environment: + name: "batch_environment" + version: 1 + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 + conda_file: ../environment/environment_parallel.yml + args: >- + --model ${{inputs.score_model}} + append_row_to: ${{outputs.job_output_file}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_input_e2e.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_input_e2e.yml new file mode 100644 index 000000000000..ca441d7fb685 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_file_input_e2e.yml @@ -0,0 +1,52 @@ +type: pipeline + +description: The hello world pipeline job with inline parallel job +tags: + tag: tagvalue + owner: sdkteam + +inputs: + job_data_path: + type: mltable + path: ../dataset/mnist-data/ + mode: eval_mount + +outputs: + job_out_path: + type: uri_folder + mode: mount + +jobs: + hello_world_inline_parallel_file_job_1: + type: parallel + compute: "azureml:cpu-cluster" + resources: + instance_count: 3 + inputs: + job_data_path: ${{parent.inputs.job_data_path}} + outputs: + job_output_path: ${{parent.outputs.job_out_path}} + + mini_batch_size: "1" + input_data: ${{inputs.job_data_path}} + mini_batch_error_threshold: 1 + max_concurrency_per_instance: 1 + logging_level: "WARNING" + error_threshold: -1 + environment_variables: + FOO: "bar" + retry_settings: + max_retries: 2 + timeout: 60 + + task: + type: function + code: ../script_parallel/ + entry_script: pass_through.py + environment: + name: "prs-env" + version: 1 + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 + conda_file: ../environment/environment_parallel.yml + args: >- + --job_output_path ${{outputs.job_output_path}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_tabular_input_e2e.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_tabular_input_e2e.yml new file mode 100644 index 000000000000..b1f2dbcb14de --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_defaults_with_parallel_job_tabular_input_e2e.yml @@ -0,0 +1,53 @@ +type: pipeline + +description: The hello world pipeline job with inline parallel job +tags: + tag: tagvalue + owner: sdkteam + +inputs: + job_data_path: + type: mltable + path: ../dataset/neural-iris-mltable/ + mode: direct + score_model: + type: uri_folder + path: ../model + mode: download + +outputs: + job_out_file: + type: uri_file + mode: rw_mount + +jobs: + hello_world_inline_parallel_tabular_job_1: + type: parallel + compute: azureml:cpu-cluster + inputs: + job_data_path: ${{parent.inputs.job_data_path}} + score_model: ${{parent.inputs.score_model}} + outputs: + job_output_file: ${{parent.outputs.job_out_file}} + + mini_batch_size: "100kb" + mini_batch_error_threshold: 5 + logging_level: "DEBUG" + input_data: ${{inputs.job_data_path}} + max_concurrency_per_instance: 2 + retry_settings: + max_retries: 2 + timeout: 60 + + task: + type: function + code: "../script_parallel" + entry_script: tabular_run_with_model.py + environment: + name: "prs-env" + version: 1 + image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 + conda_file: ../environment/environment_parallel.yml + args: >- + --model ${{inputs.score_model}} + append_row_to: ${{outputs.job_output_file}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_environment_variable.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_environment_variable.yml new file mode 100644 index 000000000000..cf8ef0f107c3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_environment_variable.yml @@ -0,0 +1,16 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline +jobs: + hello_job: + command: echo "hello" + environment: + image: python:latest + compute: azureml:cpu-cluster + world_job: + command: echo "world" + environment: + image: python + compute: azureml:cpu-cluster + environment_variables: + AZUREML_COMPUTE_USE_COMMON_RUNTIME : "false" + abc: def \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_comps.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_comps.yml new file mode 100644 index 000000000000..2342f8d7750b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_comps.yml @@ -0,0 +1,55 @@ +type: pipeline + +name: simplePipelineJobWithInlineComps +description: The hello world pipeline job with inline components +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10.01 + job_in_other_number: + value: 15 + +jobs: + hello_world_component_inline: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + compute: azureml:cpu-cluster + + component: + command: >- + echo Hello World & + echo ${{inputs.component_in_number}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + code: "./" + inputs: + component_in_number: + description: Am integer + type: integer + default: 10 + optional: false + + hello_world_component_inline_with_schema: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + compute: azureml:cpu-cluster + + component: + $schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json + command: >- + echo Hello World & + echo ${{inputs.component_in_number}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + code: "./" + inputs: + component_in_number: + description: Am integer + type: integer + default: 10 + optional: false diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_file_comps.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_file_comps.yml new file mode 100644 index 000000000000..1bb56a35299a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_file_comps.yml @@ -0,0 +1,27 @@ +type: pipeline + +# name: microsoft.samples.PipelineJobSampleToDefineScope #follow up on schema validation error +name: simplePipelineJobWithFileInlineComps +description: The hello world pipeline job with file inline components +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_path: + path: ../data + mode: ro_mount + +jobs: + hello_world_component_inline_file: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} + compute: azureml:cpu-cluster + + component: file:../components/helloworld_component.yml diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_file_parallel.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_file_parallel.yml new file mode 100644 index 000000000000..cd2cd55f9c61 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_file_parallel.yml @@ -0,0 +1,29 @@ +type: pipeline + +description: The hello world pipeline job with inline parallel job defined by parallel component +tags: + tag: tagvalue + owner: sdkteam + +settings: + default_compute: azureml:cpu-cluster + +inputs: + pipeline_job_data_path: + type: mltable + path: ../dataset/mnist-data/ + mode: eval_mount + +jobs: + hello_world_inline_paralleljob: + type: parallel + compute: azureml:cpu-cluster + component: file:../dsl_pipeline/parallel_component_with_file_input/score.yml + inputs: + job_data_path: ${{parent.inputs.pipeline_job_data_path}} + outputs: + job_output_path: + + mini_batch_size: "1" + mini_batch_error_threshold: 1 + max_concurrency_per_instance: 1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths.yml new file mode 100644 index 000000000000..a943ab1a8725 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths.yml @@ -0,0 +1,50 @@ +type: pipeline + +# name: microsoft.samples.PipelineJobSampleToDefineScope #follow up on schema validation error +name: simplepipelinejobnopath +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +# Check if supported ... +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_other_number: + value: 15 + job_in_string: a_random_string + +settings: + continue_on_step_failure: True + +jobs: + hello_world_component: + type: command + component: azureml:microsoftsamplescommandcomponentbasic_nopaths_test:1 + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + + hello_world_component_2: + type: command + component: azureml:microsoftsamplescommandcomponentbasic_nopaths_test:1 + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_other_number}} + resources: + instance_count: 2 + properties: + prop1: a_prop + prop2: another_prop + distribution: + type: "mpi" + process_count_per_instance: 2 + environment_variables: + FOO: "bar" + additional_override: + nested_override: 5 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths_e2e.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths_e2e.yml new file mode 100644 index 000000000000..418a6b57a075 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths_e2e.yml @@ -0,0 +1,74 @@ +type: pipeline + +# name: microsoft.samples.PipelineJobSampleToDefineScope #follow up on schema validation error +name: simplepipelinejobnopath +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +# Check if supported ... +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_other_number: + value: 15 + job_in_string: a_random_string + job_data_path: + type: mltable + path: ../dataset/iris-mltable/ + mode: direct + score_model: ../model/ + +outputs: + job_out_path_1: + mode: mount + +settings: + continue_on_step_failure: True + +jobs: + hello_world_component: + type: command + component: azureml:microsoftsamplescommandcomponentbasic_nopaths_test:1 + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + + hello_world_component_2: + type: command + component: azureml:microsoftsamplescommandcomponentbasic_nopaths_test:1 + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_other_number}} + + # hello_world_component_3: + # type: parallel + # component: + # compute: azureml:cpu-cluster + # inputs: + # job_data_path: ${{parent.inputs.job_data_path}} + # score_model: ${{parent.inputs.score_model}} + # outputs: + # job_output_path: + # type: mltable + + # mini_batch_size: "100kb" + # mini_batch_error_threshold: 5 + # logging_level: "debug" + # input_data: ${{inputs.job_data_path}} + # max_concurrency_per_instance: 2 + + # task: + # type: function + # code: "../python" + # entry_script: tabular_run_with_model.py + # environment: + # conda_file: ../environment/environment_parallel.yml + # args: >- + # --job_output_path ${{outputs.job_output_path}} + # --model ${{inputs.score_model}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths_expected_settings_override.json b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths_expected_settings_override.json new file mode 100644 index 000000000000..e2f62141578b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_no_paths_expected_settings_override.json @@ -0,0 +1,24 @@ +{ + "expected_rest_overrides": { + "resources": { + "instance_count": 2, + "properties": { + "prop1": "a_prop", + "prop2": "another_prop" + } + }, + "distribution": { + "distribution_type": "Mpi", + "process_count_per_instance": 2 + }, + "environment_variables": { + "FOO": "bar" + }, + "additional_override": { + "nested_override": 5 + } + }, + "expected_rest_settings": { + "continue_on_step_failure": true + } +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_quick_with_output.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_quick_with_output.yml new file mode 100644 index 000000000000..a8f57899df80 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_quick_with_output.yml @@ -0,0 +1,37 @@ +type: pipeline + +name: simplePipelineJobWithCommandJobInputs +description: The hello world pipeline job with inline command job having inputs +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +outputs: + job_out_path_1: + mode: mount + + +jobs: + + hello_world_inline_commandjob_1: + type: command + + command: echo "Hello World" > ${{outputs.component_out_path_1}}/helloworld.txt + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + compute: "azureml:cpu-cluster" + description: Simple job that writes hello world to file. + outputs: + component_out_path_1: ${{parent.outputs.job_out_path_1}} + + + hello_world_inline_commandjob_2: + type: command + + command: echo "Hello World" > ${{outputs.component_out_path_2}}/helloworld.txt + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + compute: "azureml:cpu-cluster" + description: Simple job that writes hello world to file. + outputs: + component_out_path_2: diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_no_recurrence_pattern.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_no_recurrence_pattern.yml new file mode 100644 index 000000000000..26fdfe988563 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_no_recurrence_pattern.yml @@ -0,0 +1,44 @@ +type: pipeline + +name: simplePipelineJobWithCommandJobInputs +description: The hello world pipeline job with inline command job having inputs +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +outputs: + job_out_path_1: + mode: mount + +schedule: + type: recurrence + frequency: day #can be minute, hour, day, week, month + interval: 1 #every day + start_time: "2022-05-10T10:15:00" + time_zone: Pacific Standard Time + status: enabled + +jobs: + + hello_world_inline_commandjob_1: + type: command + + command: echo "Hello World" > ${{outputs.component_out_path_1}}/helloworld.txt + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + compute: "azureml:cpu-cluster" + description: Simple job that writes hello world to file. + outputs: + component_out_path_1: ${{parent.outputs.job_out_path_1}} + + + hello_world_inline_commandjob_2: + type: command + + command: echo "Hello World" > ${{outputs.component_out_path_2}}/helloworld.txt + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + compute: "azureml:cpu-cluster" + description: Simple job that writes hello world to file. + outputs: + component_out_path_2: diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_recurrence_pattern_lists.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_recurrence_pattern_lists.yml new file mode 100644 index 000000000000..daa5ceca06ee --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_recurrence_pattern_lists.yml @@ -0,0 +1,47 @@ +type: pipeline + +name: simplePipelineJobWithCommandJobInputs +description: The hello world pipeline job with inline command job having inputs +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +outputs: + job_out_path_1: + mode: mount + +schedule: + type: recurrence + pattern: + hours: [10, 11, 12] + minutes: [15, 0, 30] + weekdays: [monday, wednesday, friday] + frequency: week + interval: 1 + start_time: "2022-05-10T10:15:00" + status: enabled + +jobs: + + hello_world_inline_commandjob_1: + type: command + + command: echo "Hello World" > ${{outputs.component_out_path_1}}/helloworld.txt + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + compute: "azureml:cpu-cluster" + description: Simple job that writes hello world to file. + outputs: + component_out_path_1: ${{parent.outputs.job_out_path_1}} + + + hello_world_inline_commandjob_2: + type: command + + command: echo "Hello World" > ${{outputs.component_out_path_2}}/helloworld.txt + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + compute: "azureml:cpu-cluster" + description: Simple job that writes hello world to file. + outputs: + component_out_path_2: diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_recurrence_pattern_literals.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_recurrence_pattern_literals.yml new file mode 100644 index 000000000000..ef6d8367013f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_recurrence_schedule_recurrence_pattern_literals.yml @@ -0,0 +1,48 @@ +type: pipeline + +name: simplePipelineJobWithCommandJobInputs +description: The hello world pipeline job with inline command job having inputs +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +outputs: + job_out_path_1: + mode: mount + +schedule: + type: recurrence + pattern: + hours: 10 + minutes: 15 + weekdays: monday + frequency: week + interval: 1 + start_time: "2022-05-10T10:15:00" + time_zone: Pacific Standard Time + status: enabled + +jobs: + + hello_world_inline_commandjob_1: + type: command + + command: echo "Hello World" > ${{outputs.component_out_path_1}}/helloworld.txt + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + compute: "azureml:cpu-cluster" + description: Simple job that writes hello world to file. + outputs: + component_out_path_1: ${{parent.outputs.job_out_path_1}} + + + hello_world_inline_commandjob_2: + type: command + + command: echo "Hello World" > ${{outputs.component_out_path_2}}/helloworld.txt + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + compute: "azureml:cpu-cluster" + description: Simple job that writes hello world to file. + outputs: + component_out_path_2: diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_resolve_reuse.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_resolve_reuse.yml new file mode 100644 index 000000000000..9fabd4b9a6d8 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_resolve_reuse.yml @@ -0,0 +1,50 @@ +type: pipeline + +# name: microsoft.samples.PipelineJobSampleToDefineScope #follow up on schema validation error +name: simplePipelineJobWithResolveReuse +description: The hello world pipeline job with resolve reuse +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_path: + path: ../data + mode: ro_mount + +jobs: + hello_world_component_inline_file_1: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} + compute: azureml:cpu-cluster + + component: file:../components/helloworld_component.yml + + hello_world_component_inline_file_2: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} + compute: azureml:cpu-cluster + + component: file:../components/helloworld_component.yml + + hello_world_component_1: + type: command + component: azureml:microsoftsamplescommandcomponentbasic_nopaths_test:1 + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + + hello_world_component_2: + type: command + component: azureml:microsoftsamplescommandcomponentbasic_nopaths_test:1 + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_deep_reference.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_deep_reference.yml new file mode 100644 index 000000000000..2de114d133e0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_deep_reference.yml @@ -0,0 +1,101 @@ +type: pipeline + +name: simplePipelineJobWithCommandJobInputs +description: The hello world pipeline job with inline command job having inputs +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +inputs: + job_data: + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + job_data_uri: + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + job_literal_input: 5 + +outputs: + job_out_path_1: + mode: mount + + +jobs: + hello_world_component_before: + type: command + component: + command: echo Hello World & + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + inputs: + component_in_number: + type: integer + component_in_path_1: + type: mltable + component_in_path_2: + type: uri_file + outputs: + test1: + type: uri_file + inputs: + component_in_number: ${{parent.inputs.job_literal_input}} + component_in_path_1: ${{parent.inputs.job_data}} + component_in_path_2: ${{parent.inputs.job_data_uri}} + + hello_world_inline_commandjob_1: + type: command + + command: pip freeze && echo ${{inputs.literal_input}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + inputs: + "test1": "${{parent.inputs.job_data}}" + "test2": "${{parent.inputs.job_data_uri}}" + "literal_input": "${{parent.inputs.job_literal_input}}" + outputs: + test1: "${{parent.outputs.job_out_path_1}}" + + hello_world_inline_commandjob_2: + type: command + + command: pip freeze && echo ${{inputs.test1}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + inputs: + "test1": "${{parent.inputs.job_data}}" + "test2": "${{parent.jobs.hello_world_inline_commandjob_1.outputs.test1}}" + "test3": "${{parent.jobs.hello_world_inline_commandjob_3.outputs.test1}}" + + hello_world_inline_commandjob_3: + type: command + + command: pip freeze && echo ${{inputs.test1}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + inputs: + "test1": "${{parent.inputs.job_data}}" + "test2": "${{parent.jobs.hello_world_component_before.outputs.test1}}" + "test3": "${{parent.jobs.hello_world_component_after.outputs.test1}}" + outputs: + test1: + type: uri_file + + hello_world_component_after: + type: command + component: + command: echo Hello World + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + inputs: + component_in_number: + type: integer + component_in_path_1: + type: uri_file + component_in_path_2: + type: uri_file + outputs: + test1: + type: mltable + inputs: + component_in_number: ${{parent.inputs.job_literal_input}} + component_in_path_1: ${{parent.inputs.job_data}} + component_in_path_2: ${{parent.inputs.job_data_uri}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_inputs_outputs.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_inputs_outputs.yml new file mode 100644 index 000000000000..cbcaeac8893c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_command_job_with_inputs_outputs.yml @@ -0,0 +1,84 @@ +type: pipeline + +name: simplePipelineJobWithCommandJobInputs +description: The hello world pipeline job with inline command job having inputs +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +inputs: + job_data: + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + job_data_uri: + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + job_literal_input: 5 + +outputs: + job_out_path_1: + mode: mount + + +jobs: + + hello_world_inline_commandjob_1: + type: command + + command: pip freeze && echo ${{inputs.literal_input}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + code: ./ + experiment_name: test-iris-example-1 + description: Train a model on the Iris dataset-1. + inputs: + "test1": + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + "test2": + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + "literal_input": 7 + outputs: + test1: + type: uri_file + + hello_world_inline_commandjob_2: + type: command + + command: echo Hello World + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + name: "test2" + compute: "azureml:cpu-cluster" + experiment_name: test-iris-example-2 + description: Train a model on the Iris dataset-2. + properties: + test_property: test_value + identity: + type: AMLToken + inputs: + "test1": "${{parent.inputs.job_data}}" + "test2": "${{parent.jobs.hello_world_inline_commandjob_1.outputs.test1}}" + "test3": "${{parent.jobs.hello_world_inline_commandjob_3.outputs.test1}}" + + hello_world_inline_commandjob_3: + type: command + + command: pip freeze && echo ${{inputs.test1}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + code: ./ + experiment_name: test-iris-example-1 + description: Train a model on the Iris dataset-1. + inputs: + "test1": + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + outputs: + test1: + type: uri_folder \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_component_output.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_component_output.yml new file mode 100644 index 000000000000..cc5b3b9e221e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_component_output.yml @@ -0,0 +1,94 @@ +type: pipeline + + +name: simplePipelineJobWithComponentOutput +description: The hello world pipeline job with component output +tags: + owner: sdkteam + tag: tagvalue + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_path: + path: ../data + mode: ro_mount + +outputs: + job_out_path_1: + mode: rw_mount + job_out_path_2: + mode: upload + +settings: + default_datastore: azureml:workspaceblobstore + +jobs: + hello_world_component_1: + type: command + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: + path: ../data + mode: ro_mount + outputs: + component_out_path_1: + mode: mount + + component: ../components/helloworld_component_with_input_and_output.yml + + hello_world_component_2: + type: command + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: + type: uri_file + path: https://web.stanford.edu/class/archive/cs/cs109/cs109.1166/stuff/titanic.csv + outputs: + component_out_path_1: + mode: mount + + component: ../components/helloworld_component_with_input_and_output.yml + + merge_component_outputs: + type: command + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path_1: ${{parent.jobs.hello_world_component_1.outputs.component_out_path_1}} + component_in_path_2: ${{parent.jobs.hello_world_component_2.outputs.component_out_path_1}} + outputs: + component_out_path_1: ${{parent.outputs.job_out_path_1}} + component_out_path_2: ${{parent.outputs.job_out_path_2}} + + component: + command: >- + echo Hello World && + echo ${{inputs.component_in_number}} && + mkdir -p ${{outputs.component_out_path_1}} && + mkdir -p ${{outputs.component_out_path_2}} && + cp -p -r ${{inputs.component_in_path_1}} ${{outputs.component_out_path_1}} && + cp -p -r ${{inputs.component_in_path_2}} ${{outputs.component_out_path_2}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + code: ./ + inputs: + component_in_number: + description: A number + type: number + default: 10.99 + component_in_path_1: + description: A path + type: uri_folder + component_in_path_2: + description: A path + type: uri_folder + + outputs: + component_out_path_1: + type: uri_folder + component_out_path_2: + type: uri_folder diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_distribution_component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_distribution_component.yml new file mode 100644 index 000000000000..01fbdbbd2b3f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_distribution_component.yml @@ -0,0 +1,63 @@ +type: pipeline + +# name: microsoft.samples.PipelineJobSampleToDefineScope #follow up on schema validation error +name: simplePipelineJobWithDistributionComps +description: The hello world pipeline job with distribution components +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:gpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_path: + path: ../data + mode: ro_mount + +jobs: + hello_world_component_mpi: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} + compute: azureml:gpu-cluster + + component: ../components/helloworld_component_mpi.yml + + resources: + instance_count: 3 + distribution: + type: mpi + process_count_per_instance: 3 + + hello_world_component_pytorch: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} + compute: azureml:gpu-cluster + + component: ../components/helloworld_component_pytorch.yml + + resources: + instance_count: 4 + distribution: + type: pytorch + process_count_per_instance: 4 + + hello_world_component_tensorflow: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} + compute: azureml:gpu-cluster + + resources: + instance_count: 5 + distribution: + type: tensorflow + worker_count: 5 + + component: ../components/helloworld_component_tensorflow.yml diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_paths.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_paths.yml new file mode 100644 index 000000000000..0331f716c621 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_paths.yml @@ -0,0 +1,44 @@ +type: pipeline + +# name: microsoft.samples.PipelineJobSampleToDefineScope #follow up on schema validation error +name: simplepipelinejobnopath +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +# Check if supported ... +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_other_number: + value: 15 + job_in_path: + path: ../data + mode: ro_mount + job_in_path_other: + path: + mode: download + +jobs: + hello_world_component: + type: command + component: azureml:microsoftsamples_command_component_basic_with_paths_test:1 + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path_1: ${{parent.inputs.job_in_path}} + component_in_path_2: ${{parent.inputs.job_in_path_other}} + + hello_world_component_2: + type: command + component: azureml:microsoftsamples_command_component_basic_with_paths_test:1 + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_other_number}} + component_in_path_1: ${{parent.inputs.job_in_path}} + component_in_path_2: ${{parent.inputs.job_in_path_other}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_sweep_node.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_sweep_node.yml new file mode 100644 index 000000000000..78b172e4c01e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_with_sweep_node.yml @@ -0,0 +1,120 @@ +type: pipeline + +name: simplePipelineJobWithInlineComps +description: The hello world pipeline job with inline components +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10.01 + job_in_other_number: + value: 15 + +jobs: + hello_sweep_inline_trial: + type: sweep + search_space: + component_in_number: + type: choice + values: [1, 2] + compute: azureml:gpu-cluster + + limits: + max_total_trials: 3 + sampling_algorithm: random + objective: + goal: maximize + primary_metric: accuracy + + trial: + command: >- + echo Hello World & + echo ${{inputs.component_in_number}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + code: "./" + inputs: + component_in_number: + description: Am integer + type: integer + default: 10 + optional: false + + hello_sweep_inline_file_trial: + type: sweep + search_space: + batch_size: + type: choice + values: [25, 35] + first_layer_neurons: + type: randint + upper: 50 + second_layer_neurons: + type: quniform + min_value: 10 + max_value: 50 + q: 5 + third_layer_neurons: + type: qlognormal + mu: 5 + sigma: 1 + q: 5 + epochs: + type: qloguniform + min_value: 1 + max_value: 5 + q: 5 + momentum: + type: qnormal + mu: 10 + sigma: 5 + q: 2 + weight_decay: + type: lognormal + mu: 0 + sigma: 1 + learning_rate: + type: loguniform + min_value: -6 + max_value: -1 + f1: + type: normal + mu: 0 + sigma: 1 + f2: + type: uniform + min_value: 10 + max_value: 20 + inputs: + data_folder: + type: mltable + mode: ro_mount + path: ../data + + limits: + max_total_trials: 3 + sampling_algorithm: random + objective: + goal: maximize + primary_metric: accuracy + + trial: file:../components/helloworld_component_for_sweep.yml + + hello_sweep_inline_remote_trial: + type: sweep + search_space: + component_in_number: + type: choice + values: [ 25, 35 ] + + limits: + max_total_trials: 3 + sampling_algorithm: random + objective: + goal: maximize + primary_metric: accuracy + + trial: azureml:microsoftsamplescommandcomponentbasic_nopaths_test:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_without_component_snapshot.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_without_component_snapshot.yml new file mode 100644 index 000000000000..7fb2257f7778 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/helloworld_pipeline_job_without_component_snapshot.yml @@ -0,0 +1,34 @@ +type: pipeline + +name: simplePipelineJobWithInlineComps +description: The hello world pipeline job with inline components +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_other_number: + value: 15 + +jobs: + hello_world_component_inline: + type: command + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + compute: azureml:cpu-cluster + + component: + command: >- + echo Hello World & + echo ${{inputs.component_in_number}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + inputs: + component_in_number: + description: Am integer + type: integer + default: 10 + optional: false diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_compute.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_compute.yml new file mode 100644 index 000000000000..cddd4c40a84f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_compute.yml @@ -0,0 +1,29 @@ +type: pipeline + +name: simplepipelinejobnopath +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster-non-existent + +inputs: + job_in_number: 10 + job_in_path: + path: ../../data + mode: ro_mount + +settings: + continue_on_step_failure: True + +jobs: + hello_world_component: + type: command + component: ../../components/helloworld_component.yml + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_remote_component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_remote_component.yml new file mode 100644 index 000000000000..63730ead7565 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_remote_component.yml @@ -0,0 +1,29 @@ +type: pipeline + +name: simplepipelinejobnopath +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 10 + job_in_path: + path: ../../data + mode: ro_mount + +settings: + continue_on_step_failure: True + +jobs: + hello_world_component: + type: command + component: azureml:microsoftsamplescommandcomponentbasic_non_existent@latest + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_remote_version.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_remote_version.yml new file mode 100644 index 000000000000..586781dc58a4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/non_existent_remote_version.yml @@ -0,0 +1,29 @@ +type: pipeline + +name: simplepipelinejobnopath +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 10 + job_in_path: + path: ../../data + mode: ro_mount + +settings: + continue_on_step_failure: True + +jobs: + hello_world_component: + type: command + component: azureml:microsoftsamplescommandcomponentbasic_nopaths_test:non_existent + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/with_invalid_component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/with_invalid_component.yml new file mode 100644 index 000000000000..c51bd8afebeb --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/invalid/with_invalid_component.yml @@ -0,0 +1,29 @@ +type: pipeline + +name: simplepipelinejobnopath +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +inputs: + job_in_number: 10 + job_in_path: + path: ../../data + mode: ro_mount + +settings: + continue_on_step_failure: True + +jobs: + hello_world_component: + type: command + component: ../../components/invalid/no_environment.yml + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/component.yml new file mode 100644 index 000000000000..3c3ebefa7bc4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/component.yml @@ -0,0 +1,15 @@ +$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json +type: command + +name: Hello_Python_World +display_name: Hello_Python_World +version: 1 + +code: + local_path: ./src + +environment: + image: python + +command: >- + python hello.py diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/pipeline.yml new file mode 100644 index 000000000000..0b8765b10231 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/pipeline.yml @@ -0,0 +1,10 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline +description: "Hello World component example" + +jobs: + hello_python_world_job: + type: command + component: file:./component.yml + compute: azureml:cpu-cluster + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/src/hello.py b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/src/hello.py new file mode 100644 index 000000000000..9ae3c150149a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/src/hello.py @@ -0,0 +1 @@ +print("Hello Python World") diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_node_with_command_node.json b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_node_with_command_node.json new file mode 100644 index 000000000000..4898b326db34 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_node_with_command_node.json @@ -0,0 +1,130 @@ +{ + "id": "/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/cli-examples/providers/Microsoft.MachineLearningServices/workspaces/main-master/jobs/goofy_morning_66w5vbsvjm_1", + "name": "goofy_morning_66w5vbsvjm_1", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "Example of using automl function inside pipeline", + "tags": {}, + "properties": { + "mlflow.source.git.repoURL": "https://msdata.visualstudio.com/DefaultCollection/Vienna/_git/sdk-cli-v2", + "mlflow.source.git.branch": "wanhan/automl_in_pipeline_cli", + "mlflow.source.git.commit": "848f33bc67cef02ef7a43a5a4a35c77e5165bf22", + "azureml.git.dirty": "True", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.enforceRerun": "False", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "automl_node_in_pipeline", + "status": "Preparing", + "experimentName": "sdk-cli-v2", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/cli-examples/providers/Microsoft.MachineLearningServices/workspaces/main-master?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/goofy_morning_66w5vbsvjm_1?wsid=/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourcegroups/cli-examples/workspaces/main-master", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/cli-examples/providers/Microsoft.MachineLearningServices/workspaces/main-master/computes/cpu-cluster", + "isArchived": false, + "schedule": null, + "identity": null, + "jobType": "Pipeline", + "settings": { + "force_rerun": false + }, + "jobs": { + "hello_automl_regression": { + "validation_data": "${{parent.inputs.automl_validate_data}}", + "test_data": "${{parent.inputs.automl_test_data}}", + "training_data": "${{parent.inputs.automl_train_data}}", + "target_column_name": "SalePrice", + "name": "hello_automl_regression", + "display_name": "612f4c35-284b-4d3d-8912-92b686d8e0f1", + "tags": {}, + "experiment_name": "sdk-cli-v2", + "properties": {}, + "type": "automl", + "outputs": { + "best_model": { + "mode": "ReadWriteMount", + "job_output_type": "MLFlowModel" + } + }, + "log_verbosity": "info", + "limits": { + "max_concurrent_trials": 1, + "max_trials": 1 + }, + "featurization": { + "mode": "off" + }, + "training": { + "enable_model_explainability": true, + "enable_stack_ensemble": false, + "enable_vote_ensemble": false + }, + "task": "regression", + "primary_metric": "r2_score" + }, + "show_output": { + "name": "show_output", + "display_name": null, + "tags": {}, + "computeId": null, + "componentId": "/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/cli-examples/providers/Microsoft.MachineLearningServices/workspaces/main-master/components/84f25e01-0410-8d37-f93c-f88360d9a673/versions/1", + "inputs": { + "automl_output": { + "job_input_type": "Literal", + "value": "${{parent.jobs.hello_automl_regression.outputs.best_model}}" + } + }, + "outputs": {}, + "environment_variables": {}, + "resources": null, + "distribution": null, + "limits": null + } + }, + "inputs": { + "automl_train_data": { + "description": null, + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/bd78e427f4dfc10f2287e268fc69a3b4/train", + "mode": "ReadOnlyMount", + "jobInputType": "MLTable" + }, + "automl_validate_data": { + "description": null, + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/eefbbf3722a18e7dcbfb0fb6ca14832d/valid", + "mode": "ReadOnlyMount", + "jobInputType": "MLTable" + }, + "automl_test_data": { + "description": null, + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/8ffa1e4dc82b3f3b17fabf07728f8e46/test", + "mode": "ReadOnlyMount", + "jobInputType": "MLTable" + } + }, + "outputs": {} + }, + "systemData": { + "createdAt": "2022-04-29T09:38:40.8702736Z", + "createdBy": "Han Wang", + "createdByType": "User" + } +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_command_node.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_command_node.yml new file mode 100644 index 000000000000..41fac638bb7b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_command_node.yml @@ -0,0 +1,54 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +settings: + continue_on_step_failure: false + +inputs: + # examples of inputs that take values such as int, string, etc. + automl_train_data: + type: mltable + path: ../../automl_job/test_datasets/pipeline_e2e_data/train + automl_valid_data: + type: mltable + path: ../../automl_job/test_datasets/pipeline_e2e_data/valid + automl_test_data: + type: mltable + path: ../../automl_job/test_datasets/pipeline_e2e_data/test + +jobs: + regression_node: + type: automl + task: regression + primary_metric: r2_score + limits: + max_trials: 1 + max_concurrent_trials: 1 + target_column_name: SalePrice + training_data: ${{parent.inputs.automl_train_data}} + validation_data: ${{parent.inputs.automl_valid_data}} + test_data: ${{parent.inputs.automl_test_data}} + featurization: + mode: "off" # In YAML 1.1, literal off equals boolean false, ref: https://yaml.org/type/bool.html + training: + enable_stack_ensemble: false + enable_vote_ensemble: false + outputs: + best_model: + type: mlflow_model + command_node: + type: command + inputs: + mltable_output: ${{parent.jobs.regression_node.outputs.best_model}} + command: ls ${{inputs.mltable_output}} + environment: azureml:AzureML-Minimal:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_pipeline_level_output.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_pipeline_level_output.yml new file mode 100644 index 000000000000..1a1cb7d5487a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/automl_regression_with_pipeline_level_output.yml @@ -0,0 +1,51 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +settings: + continue_on_step_failure: false + +inputs: + # examples of inputs that take values such as int, string, etc. + automl_train_data: + type: mltable + path: ../../automl_job/test_datasets/pipeline_e2e_data/train + automl_valid_data: + type: mltable + path: ../../automl_job/test_datasets/pipeline_e2e_data/valid + automl_test_data: + type: mltable + path: ../../automl_job/test_datasets/pipeline_e2e_data/test + +outputs: + best_model: + type: mlflow_model + +jobs: + regression_node: + type: automl + task: regression + primary_metric: r2_score + limits: + max_trials: 1 + max_concurrent_trials: 1 + target_column_name: SalePrice + training_data: ${{parent.inputs.automl_train_data}} + validation_data: ${{parent.inputs.automl_valid_data}} + test_data: ${{parent.inputs.automl_test_data}} + featurization: + mode: "off" # In YAML 1.1, literal off equals boolean false, ref: https://yaml.org/type/bool.html + training: + enable_stack_ensemble: false + enable_vote_ensemble: false + outputs: + best_model: ${{parent.outputs.best_model}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_classification.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_classification.yml new file mode 100644 index 000000000000..7094a019ddef --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_classification.yml @@ -0,0 +1,43 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +settings: + continue_on_step_failure: false +inputs: + classification_train_data: + type: mltable + path: ../../automl_job/test_datasets/bank_marketing/train + classification_validate_data: + type: mltable + path: ../../automl_job/test_datasets/bank_marketing/valid + classification_test_data: + type: mltable + path: ../../automl_job/test_datasets/bank_marketing/valid + +jobs: + hello_automl_classification: + type: automl + task: classification + primary_metric: accuracy + limits: + max_trials: 1 + max_concurrent_trials: 1 + target_column_name: y + training_data: ${{parent.inputs.classification_train_data}} + validation_data: ${{parent.inputs.classification_validate_data}} + test_data: ${{parent.inputs.classification_test_data}} + featurization: + mode: "auto" + training: + enable_stack_ensemble: false + enable_vote_ensemble: false diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_forecasting.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_forecasting.yml new file mode 100644 index 000000000000..12467238a960 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_forecasting.yml @@ -0,0 +1,40 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +settings: + continue_on_step_failure: false +inputs: + forecasting_train_data: + type: mltable + path: ../../automl_job/test_datasets/beer_forecasting/train + +jobs: + hello_automl_forecasting: + type: automl + task: forecasting + primary_metric: normalized_root_mean_squared_error + limits: + max_trials: 1 + max_concurrent_trials: 1 + target_column_name: BeerProduction + training_data: ${{parent.inputs.forecasting_train_data}} + n_cross_validations: 2 + featurization: + mode: "Auto" + training: + enable_stack_ensemble: false + enable_vote_ensemble: false + forecasting: + forecast_horizon: 12 + frequency: MS + time_column_name: DATE \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_instance_segmentation.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_instance_segmentation.yml new file mode 100644 index 000000000000..4afea80948d1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_instance_segmentation.yml @@ -0,0 +1,55 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment_image_instance_segmentation + +compute: azureml:gpu-cluster + +settings: + continue_on_step_failure: false +inputs: + image_instance_segmentation_train_data: + type: mltable + path: ../../automl_job/test_datasets/image_instance_segmentation/train + image_instance_segmentation_validate_data: + type: mltable + path: ../../automl_job/test_datasets/image_instance_segmentation/valid + + +jobs: + hello_automl_image_instance_segmentation: + type: automl + task: image_instance_segmentation + primary_metric: mean_average_precision + limits: + timeout_minutes: 60 + target_column_name: label + training_data: ${{parent.inputs.image_instance_segmentation_train_data}} + validation_data: ${{parent.inputs.image_instance_segmentation_validate_data}} + sweep: + limits: + max_trials: 20 + max_concurrent_trials: 4 + sampling_algorithm: Random + early_termination: + type: bandit + evaluation_interval: 10 + slack_factor: 0.2 + image_model: + checkpoint_frequency: 1 + early_stopping: true + early_stopping_delay: 2 + early_stopping_patience: 2 + evaluation_frequency: 1 + search_space: + - model_name: "choice('maskrcnn_resnet50_fpn')" + learning_rate: "uniform(0.005,0.05)" + warmup_cosine_lr_warmup_epochs: "choice(0,3)" + optimizer: "choice('sgd','adam','adamw')" + min_size: "choice(600,800)" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multiclass_classification.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multiclass_classification.yml new file mode 100644 index 000000000000..03ab50b7a4c1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multiclass_classification.yml @@ -0,0 +1,54 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment_image_multiclass_classification + +compute: azureml:gpu-cluster + +settings: + continue_on_step_failure: false +inputs: + image_multiclass_classification_train_data: + type: mltable + path: ../../automl_job/test_datasets/image_classification/train + image_multiclass_classification_validate_data: + type: mltable + path: ../../automl_job/test_datasets/image_classification/valid + + +jobs: + hello_automl_image_multiclass_classification: + type: automl + task: image_classification + primary_metric: accuracy + limits: + timeout_minutes: 60 + target_column_name: label + training_data: ${{parent.inputs.image_multiclass_classification_train_data}} + validation_data: ${{parent.inputs.image_multiclass_classification_validate_data}} + sweep: + limits: + max_trials: 20 + max_concurrent_trials: 4 + sampling_algorithm: Random + early_termination: + type: bandit + evaluation_interval: 10 + slack_factor: 0.2 + image_model: + checkpoint_frequency: 1 + early_stopping: true + early_stopping_delay: 2 + early_stopping_patience: 2 + evaluation_frequency: 1 + search_space: + - model_name: "choice('vitb16r224')" + learning_rate: "uniform(0.005,0.05)" + warmup_cosine_lr_warmup_epochs: "choice(0,3)" + optimizer: "choice('sgd','adam','adamw')" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multilabel_classification.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multilabel_classification.yml new file mode 100644 index 000000000000..89290002ab46 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_multilabel_classification.yml @@ -0,0 +1,54 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment_image_multilabel_classification + +compute: azureml:gpu-cluster + +settings: + continue_on_step_failure: false +inputs: + image_multilabel_classification_train_data: + type: mltable + path: ../../automl_job/test_datasets/image_classification_multilabel/train + image_multilabel_classification_validate_data: + type: mltable + path: ../../automl_job/test_datasets/image_classification_multilabel/valid + + +jobs: + hello_automl_image_multilabel_classification: + type: automl + task: image_classification_multilabel + primary_metric: iou + limits: + timeout_minutes: 60 + target_column_name: label + training_data: ${{parent.inputs.image_multilabel_classification_train_data}} + validation_data: ${{parent.inputs.image_multilabel_classification_validate_data}} + sweep: + limits: + max_trials: 20 + max_concurrent_trials: 4 + sampling_algorithm: Random + early_termination: + type: bandit + evaluation_interval: 10 + slack_factor: 0.2 + image_model: + checkpoint_frequency: 1 + early_stopping: true + early_stopping_delay: 2 + early_stopping_patience: 2 + evaluation_frequency: 1 + search_space: + - model_name: "choice('vitb16r224')" + learning_rate: "uniform(0.005,0.05)" + warmup_cosine_lr_warmup_epochs: "choice(0,3)" + optimizer: "choice('sgd','adam','adamw')" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_object_detection.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_object_detection.yml new file mode 100644 index 000000000000..c03cec1618b6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_image_object_detection.yml @@ -0,0 +1,55 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment_image_object_detection + +compute: azureml:gpu-cluster + +settings: + continue_on_step_failure: false +inputs: + image_object_detection_train_data: + type: mltable + path: ../../automl_job/test_datasets/image_object_detection/train + image_object_detection_validate_data: + type: mltable + path: ../../automl_job/test_datasets/image_object_detection/valid + + +jobs: + hello_automl_image_object_detection: + type: automl + task: image_object_detection + primary_metric: mean_average_precision + limits: + timeout_minutes: 60 + target_column_name: label + training_data: ${{parent.inputs.image_object_detection_train_data}} + validation_data: ${{parent.inputs.image_object_detection_validate_data}} + sweep: + limits: + max_trials: 20 + max_concurrent_trials: 4 + sampling_algorithm: Random + early_termination: + type: bandit + evaluation_interval: 10 + slack_factor: 0.2 + image_model: + checkpoint_frequency: 1 + early_stopping: true + early_stopping_delay: 2 + early_stopping_patience: 2 + evaluation_frequency: 1 + search_space: + - model_name: "choice('fasterrcnn_resnet50_fpn')" + learning_rate: "uniform(0.005,0.05)" + warmup_cosine_lr_warmup_epochs: "choice(0,3)" + optimizer: "choice('sgd','adam','adamw')" + min_size: "choice(600,800)" diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.json b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.json new file mode 100644 index 000000000000..95cfe393fac4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.json @@ -0,0 +1,102 @@ +{ + "id": "/subscriptions/b8c23406-f9b5-4ccb-8a65-a8cb5dcd6a5a/resourceGroups/rge2etests/providers/Microsoft.MachineLearningServices/workspaces/wse2etests/jobs/test_659111965622", + "name": "test_659111965622", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "mlflow.source.git.repoURL": "https://msdata.visualstudio.com/DefaultCollection/Vienna/_git/sdk-cli-v2", + "mlflow.source.git.branch": "wanhan/automl_in_pipeline_cli", + "mlflow.source.git.commit": "cd5cd6526169bc2d879ad03de3104a9ca86d0398", + "azureml.git.dirty": "True", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "SDKv2", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.enforceRerun": "False", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "test_659111965622", + "status": "Preparing", + "experimentName": "my_first_experiment", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/b8c23406-f9b5-4ccb-8a65-a8cb5dcd6a5a/resourceGroups/rge2etests/providers/Microsoft.MachineLearningServices/workspaces/wse2etests?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/test_659111965622?wsid=/subscriptions/b8c23406-f9b5-4ccb-8a65-a8cb5dcd6a5a/resourcegroups/rge2etests/workspaces/wse2etests", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/b8c23406-f9b5-4ccb-8a65-a8cb5dcd6a5a/resourceGroups/rge2etests/providers/Microsoft.MachineLearningServices/workspaces/wse2etests/computes/cpu-cluster", + "isArchived": false, + "schedule": null, + "identity": null, + "jobType": "Pipeline", + "settings": { + "ContinueOnStepFailure": false, + "ForceRerun": false + }, + "jobs": { + "hello_automl_regression": { + "validation_data": "azureml://datastores/workspaceblobstore/paths/LocalUpload/7c2ff10b-206b-401c-ad65-a4a9a637fb7a/valid", + "test_data": "${{parent.inputs.automl_test_data}}", + "training_data": "azureml://datastores/workspaceblobstore/paths/LocalUpload/7c2ff10b-206b-401c-ad65-a4a9a637fb7a/train", + "target_column_name": "SalePrice", + "name": "913ed862-0cc5-45df-87b9-4124320de868", + "display_name": "913ed862-0cc5-45df-87b9-4124320de868", + "tags": {}, + "experiment_name": "sdk-cli-v2", + "properties": { + "_automl_internal_label": "latest", + "_automl_internal_save_mlflow": "true" + }, + "compute": "azureml:/subscriptions/b8c23406-f9b5-4ccb-8a65-a8cb5dcd6a5a/resourceGroups/rge2etests/providers/Microsoft.MachineLearningServices/workspaces/wse2etests/computes/cpu-cluster", + "type": "automl", + "outputs": {}, + "log_verbosity": "info", + "limits": { + "max_concurrent_trials": 1, + "max_trials": 1 + }, + "featurization": { + "mode": "off" + }, + "training": { + "enable_stack_ensemble": false, + "enable_vote_ensemble": false + }, + "task": "regression", + "primary_metric": "r2_score" + } + }, + "inputs": { + "automl_test_data": { + "description": null, + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/7c2ff10b-206b-401c-ad65-a4a9a637fb7a/test", + "mode": "ReadOnlyMount", + "jobInputType": "MLTable" + } + }, + "outputs": {} + }, + "systemData": { + "createdAt": "2022-04-18T09:40:00.7459954Z", + "createdBy": "Han Wang", + "createdByType": "User" + } +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.yml new file mode 100644 index 000000000000..0892ffa0cd89 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.yml @@ -0,0 +1,46 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +settings: + continue_on_step_failure: false + +inputs: + # examples of inputs that take values such as int, string, etc. + automl_train_data: + type: mltable + path: ../../automl_job/test_datasets/house_pricing/train + automl_valid_data: + type: mltable + path: ../../automl_job/test_datasets/house_pricing/valid + automl_test_data: + type: mltable + path: ../../automl_job/test_datasets/house_pricing/test + +jobs: + hello_automl_regression: + log_verbosity: info + type: automl + task: regression + primary_metric: r2_score + limits: + max_trials: 1 + max_concurrent_trials: 1 + target_column_name: SalePrice + training_data: ${{parent.inputs.automl_train_data}} + validation_data: ${{parent.inputs.automl_valid_data}} + test_data: ${{parent.inputs.automl_test_data}} + featurization: + mode: "off" # In YAML 1.1, literal off equals boolean false, ref: https://yaml.org/type/bool.html + training: + enable_stack_ensemble: false + enable_vote_ensemble: false diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression_machine_data.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression_machine_data.yml new file mode 100644 index 000000000000..05bfe6c2c8f7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression_machine_data.yml @@ -0,0 +1,59 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +name: simplepipelinejob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:cpu-cluster + +settings: + continue_on_step_failure: false + +inputs: + # examples of inputs that take values such as int, string, etc. + automl_train_data: + type: mltable + path: ../../automl_job/test_datasets/machine_data/train + +jobs: + hello_automl_regression: + type: automl + + task: regression + log_verbosity: debug + primary_metric: r2_score + + properties: + _automl_internal_enable_mltable_quick_profile: "true" + _automl_internal_label: "latest" + _automl_internal_save_mlflow: "true" + + limits: + timeout_minutes: 180 + trial_timeout_minutes: 20 + max_trials: 2 + max_concurrent_trials: 2 + enable_early_termination: true + exit_score: 0.85 + + target_column_name: ERP + training_data: ${{parent.inputs.automl_train_data}} + + + featurization: + mode: custom + transformer_params: + imputer: + - fields: ["MYCT"] + parameters: + strategy: mean + + blocked_training_algorithms: + - elastic_net + - lasso_lars + - xg_boost_regressor diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification.yml new file mode 100644 index 000000000000..da7235a3e01a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification.yml @@ -0,0 +1,36 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:gpu-cluster + +settings: + continue_on_step_failure: false + +inputs: + text_classification_training_data: + type: mltable + path: ../../automl_job/test_datasets/newsgroup/train + text_classification_validation_data: + type: mltable + path: ../../automl_job/test_datasets/newsgroup/valid + +jobs: + automl_text_classification: + type: automl + task: text_classification + log_verbosity: info + primary_metric: accuracy + limits: + max_trials: 1 + timeout_minutes: 60 + target_column_name: y + training_data: ${{parent.inputs.text_classification_training_data}} + validation_data: ${{parent.inputs.text_classification_validation_data}} + featurization: + dataset_language: eng diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification_multilabel.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification_multilabel.yml new file mode 100644 index 000000000000..1e0758b3b46f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_classification_multilabel.yml @@ -0,0 +1,33 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:gpu-cluster + +settings: + continue_on_step_failure: false +inputs: + text_classification_multilabel_training_data: + type: mltable + path: ../../automl_job/test_datasets/paper_categorization/train + text_classification_multilabel_validation_data: + type: mltable + path: ../../automl_job/test_datasets/paper_categorization/valid + +jobs: + automl_text_classification_multilabel: + type: automl + task: text_classification_multilabel + log_verbosity: info + primary_metric: accuracy + limits: + max_trials: 1 + timeout_minutes: 60 + target_column_name: terms + training_data: ${{parent.inputs.text_classification_multilabel_training_data}} + validation_data: ${{parent.inputs.text_classification_multilabel_validation_data}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_ner.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_ner.yml new file mode 100644 index 000000000000..745ccf0ed39b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_text_ner.yml @@ -0,0 +1,34 @@ +$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json +type: pipeline + +tags: + tag: tagvalue + owner: sdkteam + +experiment_name: my_first_experiment + +compute: azureml:gpu-cluster + +settings: + continue_on_step_failure: false + +inputs: + text_ner_training_data: + type: mltable + path: ../../automl_job/test_datasets/conll2003/train + text_ner_validation_data: + type: mltable + path: ../../automl_job/test_datasets/conll2003/valid + +jobs: + + automl_text_ner: + type: automl + task: text_ner + log_verbosity: info + primary_metric: accuracy + limits: + max_trials: 1 + timeout_minutes: 60 + training_data: ${{parent.inputs.text_ner_training_data}} + validation_data: ${{parent.inputs.text_ner_validation_data}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/rest_pipeline_with_automl_output.json b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/rest_pipeline_with_automl_output.json new file mode 100644 index 000000000000..fb5df5635fd2 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/rest_pipeline_with_automl_output.json @@ -0,0 +1,92 @@ +{ + "properties": { + "description": "Example of using automl function inside pipeline", + "properties": { + "mlflow.source.git.repoURL": "https://msdata.visualstudio.com/DefaultCollection/Vienna/_git/sdk-cli-v2", + "mlflow.source.git.branch": "wanhan/support_automl_output_binding_in_pipeline", + "mlflow.source.git.commit": "687144cea581da056fe4f528488a4339d9b95768", + "azureml.git.dirty": "True" + }, + "tags": {}, + "computeId": "/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourceGroups/test-rg-eastus2euap-v2-t-2022W20/providers/Microsoft.MachineLearningServices/workspaces/sdk_vnext_cli/computes/cpu-cluster", + "displayName": "automl_node_in_pipeline", + "experimentName": "sdk-cli-v2", + "isArchived": false, + "jobType": "Pipeline", + "inputs": { + "automl_train_data": { + "mode": "ReadOnlyMount", + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/bd78e427f4dfc10f2287e268fc69a3b4/train", + "jobInputType": "MLTable" + }, + "automl_validate_data": { + "mode": "ReadOnlyMount", + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/eefbbf3722a18e7dcbfb0fb6ca14832d/valid", + "jobInputType": "MLTable" + }, + "automl_test_data": { + "mode": "ReadOnlyMount", + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/8ffa1e4dc82b3f3b17fabf07728f8e46/test", + "jobInputType": "MLTable" + } + }, + "jobs": { + "hello_automl_regression": { + "name": "hello_automl_regression", + "tags": {}, + "properties": { + "_automl_internal_label": "latest", + "_automl_internal_save_mlflow": "true" + }, + "type": "automl", + "outputs": { + "best_model": { + "mode": "ReadWriteMount", + "job_output_type": "MLFlowModel" + } + }, + "log_verbosity": "info", + "limits": { + "max_concurrent_trials": 1, + "max_trials": 1 + }, + "featurization": { + "mode": "off" + }, + "task": "regression", + "primary_metric": "r2_score", + "training": { + "enable_model_explainability": true, + "enable_stack_ensemble": false, + "enable_vote_ensemble": false + }, + "target_column_name": "SalePrice", + "test_data": "${{parent.inputs.automl_test_data}}", + "training_data": "${{parent.inputs.automl_train_data}}", + "validation_data": "${{parent.inputs.automl_validate_data}}" + }, + "show_output": { + "environment_variables": {}, + "name": "show_output", + "display_name": null, + "tags": {}, + "computeId": null, + "inputs": { + "automl_output": { + "job_input_type": "Literal", + "value": "${{parent.jobs.hello_automl_regression.outputs.best_model}}" + } + }, + "outputs": {}, + "resources": null, + "distribution": null, + "limits": null, + "componentId": "/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourceGroups/test-rg-eastus2euap-v2-t-2022W20/providers/Microsoft.MachineLearningServices/workspaces/sdk_vnext_cli/components/13586a35-d5f9-78a1-1fbf-f4a7d7d6f88c/versions/1" + } + }, + "outputs": {}, + "settings": { + "force_rerun": false + } + } +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/rest_pipeline_with_automl_output_binding.json b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/rest_pipeline_with_automl_output_binding.json new file mode 100644 index 000000000000..f714f4eb7051 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/rest_pipeline_with_automl_output_binding.json @@ -0,0 +1,116 @@ +{ + "id": "/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/sdk/providers/Microsoft.MachineLearningServices/workspaces/sdk-master/jobs/lemon_camera_67fwk0x1bb", + "name": "lemon_camera_67fwk0x1bb", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "system_data": { + "created_by": "Long Chen", + "created_by_type": "User", + "created_at": "2022-05-16T08:45:55.06798Z" + }, + "properties": { + "description": "AutoML Clasiification Pipeline", + "properties": { + "mlflow.source.git.repoURL": "https://github.com/Azure/azureml-examples.git", + "mlflow.source.git.branch": "may-sdk-preview", + "mlflow.source.git.commit": "3eb5c6b9d1839471bf53f6d2d1122519c5f366b9", + "azureml.git.dirty": "True", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.enforceRerun": "False", + "azureml.pipelineComponent": "pipelinerun" + }, + "tags": {}, + "compute_id": "/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/sdk/providers/Microsoft.MachineLearningServices/workspaces/sdk-master/computes/cpu-cluster", + "display_name": "automl_classification", + "experiment_name": "pipeline_samples", + "is_archived": false, + "job_type": "Pipeline", + "services": { + "Tracking": { + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/sdk/providers/Microsoft.MachineLearningServices/workspaces/sdk-master?", + "job_service_type": "Tracking" + }, + "Studio": { + "endpoint": "https://ml.azure.com/runs/lemon_camera_67fwk0x1bb?wsid=/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourcegroups/sdk/workspaces/sdk-master", + "job_service_type": "Studio" + } + }, + "status": "Completed", + "inputs": { + "classification_train_data": { + "mode": "ReadOnlyMount", + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/3421f176a64fab3cb7e9e32b7e587316/training-mltable-folder", + "job_input_type": "MLTable" + }, + "classification_validation_data": { + "mode": "ReadOnlyMount", + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/ab4439bc9830f7f9b56d14019492989c/validation-mltable-folder", + "job_input_type": "MLTable" + } + }, + "jobs": { + "classification_node": { + "name": "classification_node", + "tags": {}, + "properties": { + "_automl_internal_label": "latest", + "_automl_internal_save_mlflow": "true" + }, + "type": "automl", + "outputs": { + "best_model": { + "value": "${{parent.outputs.pipeline_job_out_best_model}}", + "type": "Literal" + } + }, + "log_verbosity": "info", + "limits": { + "max_trials": 1 + }, + "featurization": { + "mode": "auto" + }, + "task": "classification", + "primary_metric": "accuracy", + "training": { + "enable_model_explainability": true, + "enable_stack_ensemble": false, + "enable_vote_ensemble": false + }, + "target_column_name": "y", + "training_data": "${{parent.inputs.classification_train_data}}", + "validation_data": "${{parent.inputs.classification_validation_data}}" + }, + "show_output": { + "environment_variables": {}, + "name": "show_output", + "display_name": null, + "tags": {}, + "computeId": null, + "inputs": { + "automl_output": { + "job_input_type": "Literal", + "value": "${{parent.jobs.classification_node.outputs.best_model}}" + } + }, + "outputs": {}, + "resources": null, + "distribution": null, + "limits": null, + "componentId": "/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/sdk/providers/Microsoft.MachineLearningServices/workspaces/sdk-master/components/d3827ea4-34ba-4874-7a8e-6c2bc96f861e/versions/1" + } + }, + "outputs": { + "pipeline_job_out_best_model": { + "mode": "ReadWriteMount", + "job_output_type": "UriFolder" + } + }, + "settings": { + "force_rerun": false + } + } +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/pipeline_job_with_command_job_with_input_bindings.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/pipeline_job_with_command_job_with_input_bindings.yml new file mode 100644 index 000000000000..d396a3087cd4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/pipeline_job_with_command_job_with_input_bindings.yml @@ -0,0 +1,54 @@ +type: pipeline + +name: simplePipelineJobWithInlineCommandJobgit a +description: The hello world pipeline job with inline command job +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +inputs: + job_data_path: + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + +outputs: + job_out_path_1: + mode: mount + +jobs: + hello_world_inline_commandjob_1: + type: command + + command: pip freeze && echo Hello World + code: ./ + + experiment_name: test-iris-example-1 + description: Train a model on the Iris dataset-1. + compute: "azureml:cpu-cluster" + inputs: + "test1": ${{parent.inputs.job_data_path}} + "test2": ${{parent.inputs.job_data_path}} + "literal_input": 2 + outputs: + job_output: ${{parent.outputs.job_out_path_1}} + environment_variables: + FOO: "bar" + + hello_world_inline_commandjob_2: + type: command + + command: echo Hello World + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + name: "test2" + experiment_name: test-iris-example-2 + description: Train a model on the Iris dataset-2. + inputs: + "input_from_previous_node": ${{parent.jobs.hello_world_inline_commandjob_1.outputs.job_output}} + "test2": ${{parent.inputs.job_data_path}} + properties: + test_property: test_value + identity: + type: AMLToken diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/pipeline_job_with_parallel_job_with_input_bindings.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/pipeline_job_with_parallel_job_with_input_bindings.yml new file mode 100644 index 000000000000..67793cd20f8c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/pipeline_job_with_parallel_job_with_input_bindings.yml @@ -0,0 +1,45 @@ +type: pipeline + +name: simplePipelineJobWithInlineCommandJobgit a +description: The hello world pipeline job with inline command job +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +inputs: + job_data_path: + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv + mode: ro_mount + +outputs: + job_out_path_1: + mode: mount + +# here the jobs in the pipeline +jobs: + batch_inference: + # We pass the trained model from the train step to use to parallel inference + type: parallel + compute: "azureml:cpu-cluster" + inputs: + "score_input": ${{parent.inputs.job_data_path}} + outputs: + scored_result: ${{parent.outputs.job_out_path_1}} + + resources: + instance_count: 3 + mini_batch_size: "100kb" + mini_batch_error_threshold: 5 + logging_level: "DEBUG" + input_data: ${{inputs.job_data_path}} + max_concurrency_per_instance: 2 + + task: + type: function + code: "../python" + entry_script: pass_through.py + append_row_to: ${{outputs.scored_result}} # optional, If Null, equals to summary_only mode in v1. + environment: azureml:my-env:1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/rest_pipeline_with_automl_output.json b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/rest_pipeline_with_automl_output.json new file mode 100644 index 000000000000..f714f4eb7051 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/rest_pipeline_with_automl_output.json @@ -0,0 +1,116 @@ +{ + "id": "/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/sdk/providers/Microsoft.MachineLearningServices/workspaces/sdk-master/jobs/lemon_camera_67fwk0x1bb", + "name": "lemon_camera_67fwk0x1bb", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "system_data": { + "created_by": "Long Chen", + "created_by_type": "User", + "created_at": "2022-05-16T08:45:55.06798Z" + }, + "properties": { + "description": "AutoML Clasiification Pipeline", + "properties": { + "mlflow.source.git.repoURL": "https://github.com/Azure/azureml-examples.git", + "mlflow.source.git.branch": "may-sdk-preview", + "mlflow.source.git.commit": "3eb5c6b9d1839471bf53f6d2d1122519c5f366b9", + "azureml.git.dirty": "True", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.enforceRerun": "False", + "azureml.pipelineComponent": "pipelinerun" + }, + "tags": {}, + "compute_id": "/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/sdk/providers/Microsoft.MachineLearningServices/workspaces/sdk-master/computes/cpu-cluster", + "display_name": "automl_classification", + "experiment_name": "pipeline_samples", + "is_archived": false, + "job_type": "Pipeline", + "services": { + "Tracking": { + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/sdk/providers/Microsoft.MachineLearningServices/workspaces/sdk-master?", + "job_service_type": "Tracking" + }, + "Studio": { + "endpoint": "https://ml.azure.com/runs/lemon_camera_67fwk0x1bb?wsid=/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourcegroups/sdk/workspaces/sdk-master", + "job_service_type": "Studio" + } + }, + "status": "Completed", + "inputs": { + "classification_train_data": { + "mode": "ReadOnlyMount", + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/3421f176a64fab3cb7e9e32b7e587316/training-mltable-folder", + "job_input_type": "MLTable" + }, + "classification_validation_data": { + "mode": "ReadOnlyMount", + "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/ab4439bc9830f7f9b56d14019492989c/validation-mltable-folder", + "job_input_type": "MLTable" + } + }, + "jobs": { + "classification_node": { + "name": "classification_node", + "tags": {}, + "properties": { + "_automl_internal_label": "latest", + "_automl_internal_save_mlflow": "true" + }, + "type": "automl", + "outputs": { + "best_model": { + "value": "${{parent.outputs.pipeline_job_out_best_model}}", + "type": "Literal" + } + }, + "log_verbosity": "info", + "limits": { + "max_trials": 1 + }, + "featurization": { + "mode": "auto" + }, + "task": "classification", + "primary_metric": "accuracy", + "training": { + "enable_model_explainability": true, + "enable_stack_ensemble": false, + "enable_vote_ensemble": false + }, + "target_column_name": "y", + "training_data": "${{parent.inputs.classification_train_data}}", + "validation_data": "${{parent.inputs.classification_validation_data}}" + }, + "show_output": { + "environment_variables": {}, + "name": "show_output", + "display_name": null, + "tags": {}, + "computeId": null, + "inputs": { + "automl_output": { + "job_input_type": "Literal", + "value": "${{parent.jobs.classification_node.outputs.best_model}}" + } + }, + "outputs": {}, + "resources": null, + "distribution": null, + "limits": null, + "componentId": "/subscriptions/96aede12-2f73-41cb-b983-6d11a904839b/resourceGroups/sdk/providers/Microsoft.MachineLearningServices/workspaces/sdk-master/components/d3827ea4-34ba-4874-7a8e-6c2bc96f861e/versions/1" + } + }, + "outputs": { + "pipeline_job_out_best_model": { + "mode": "ReadWriteMount", + "job_output_type": "UriFolder" + } + }, + "settings": { + "force_rerun": false + } + } +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/sample_pipeline_job.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/sample_pipeline_job.yml new file mode 100644 index 000000000000..da0df3608dd1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/sample_pipeline_job.yml @@ -0,0 +1,61 @@ +type: pipeline + +name: SimplePipelineJob +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 + job_in_other_number: 15 + job_in_path: + path: ../data + +outputs: + job_out_data_1: + mode: mount + job_out_data_2: + mode: upload + +jobs: + hello_world_component_1: + type: command + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} + outputs: + component_out_path: + mode: upload + + component: file:../components/helloworld_component.yml + + hello_world_component_2: + type: command + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} + outputs: + component_out_path: + mode: upload + resources: + instance_count: 2 + component: file:../components/helloworld_component.yml + + merge_component_outputs: + type: command + compute: azureml:cpu-cluster + inputs: + component_in_number: ${{parent.inputs.job_in_other_number}} + component_in_path_1: ${{parent.jobs.hello_world_component_1.outputs.component_out_path}} + component_in_path_2: ${{parent.jobs.hello_world_component_2.outputs.component_out_path}} + outputs: + component_out_path_1: ${{parent.outputs.job_out_data_1}} + component_out_path_2: ${{parent.outputs.job_out_data_2}} + component: file:../components/merge_outputs_component.yml + diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/custom_model.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/custom_model.yml new file mode 100644 index 000000000000..abb124cc02a6 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/custom_model.yml @@ -0,0 +1,40 @@ +type: pipeline + +name: simplePipelineJobWithPathInputOutput +description: The hello world pipeline job with input/output type of custom model +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +inputs: + job_in_custom_model: + type: custom_model + path: azureml:great_model:2 + job_in_trition_model: + type: triton_model + path: https://azuremlexamples.blob.core.windows.net/datasets/ +outputs: + job_out_custom_model: + type: custom_model + job_out_trition_model: + type: triton_model + +jobs: + hello_world_component: + type: command + component: file:../../components/type_contract/custom_model.yml + compute: azureml:cpu-cluster + inputs: + component_in_custom_model: + type: custom_model + path: azureml:great_model:2 + component_in_trition_model: + type: triton_model + path: https://azuremlexamples.blob.core.windows.net/datasets/ + outputs: + component_out_custom_model: + type: custom_model + component_out_trition_model: + type: triton_model \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/mlflow_model.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/mlflow_model.yml new file mode 100644 index 000000000000..fffc1cc0f95c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/mlflow_model.yml @@ -0,0 +1,37 @@ +type: pipeline + +name: simplePipelineJobWithPathInputOutput +description: The hello world pipeline job with input/output type of path +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +inputs: + job_in_mlflow_model_azure: + type: mlflow_model + path: azureml:foo_model:2 + + job_in_mlflow_model_uri: + type: mlflow_model + path: https://azuremlexamples.blob.core.windows.net/datasets/ +outputs: + job_out_mlflow_model: + type: mlflow_model + +jobs: + hello_world_component: + type: command + component: file:../../components/type_contract/mlflow_model.yml + compute: azureml:cpu-cluster + inputs: + component_in_mlflow_model_azure: + type: mlflow_model + path: azureml:foo_model:2 + component_in_mlflow_model_uri: + type: mlflow_model + path: https://azuremlexamples.blob.core.windows.net/datasets/ + outputs: + component_out_mlflow_model: + type: mlflow_model diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/mltable.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/mltable.yml new file mode 100644 index 000000000000..614d7879ce5d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/mltable.yml @@ -0,0 +1,56 @@ +type: pipeline + +name: simplePipelineJobWithPathInputOutput +description: The hello world pipeline job with input/output type of path +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +inputs: + job_in_mltable_mount: + type: mltable + path: file:./data + mode: ro_mount + + job_in_mltable_url: + type: mltable + path: azureml://datastores/some_datastore/paths/data/public/mnist + mode: download + + job_in_mltable_eval: + type: mltable + path: azureml:mnist_files:1 + mode: download +outputs: + job_out_mltable_rw_mount: + type: mltable + mode: rw_mount + job_out_mltable_upload: + type: mltable + mode: upload # TODO: eval_mount not supported yet? + +jobs: + hello_world_component: + type: command + component: file:../../components/type_contract/mltable.yml + compute: azureml:cpu-cluster + inputs: + component_in_mltable_mount: + type: mltable + path: file:./data + mode: ro_mount + + component_in_mltable_url: + type: mltable + path: azureml://datastores/some_datastore/paths/data/public/mnist + mode: download + + component_in_mltable_eval: + type: mltable + path: azureml:mnist_files:1 + mode: download # eval_mount + outputs: + component_out_mltable_rw_mount: ${{parent.outputs.job_out_mltable_rw_mount}} + component_out_mltable_upload: ${{parent.outputs.job_out_mltable_upload}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/object.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/object.yml new file mode 100644 index 000000000000..5f711fa42bb1 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/object.yml @@ -0,0 +1,72 @@ +type: pipeline + +# not supported yet. + +name: simplePipelineJobWithObjectInputOutput +description: The hello world pipeline job with input/output type of object +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +inputs: + # object with explicit inline json schema annotation + job_in_object_with_inline_schema: + type: object + description: This is and object that must have first_name, last_name and id + schema: + $schema: https://json-schema.org/draft/2019-09/schema + type: object + properties: + first_name: { type: string } + last_name: { type: string } + id: { type: integer } + additionalProperties: false + + # object with explicit referenced schema annotation + job_in_object_with_schema: + type: object + description: This is and object that must have first_name, last_name and id + schema: https://ignite6981724196.blob.core.windows.net/schemas/my_json_schema.json#/definitions/person + + # object without schema annotation + job_in_object_without_schema: + type: object + description: This and object isn't backed by a schema + +outputs: + job_out_object_with_inline_schema: + type: object + description: This is and object that must have first_name, last_name and id + schema: + $schema: https://json-schema.org/draft/2019-09/schema + type: object + properties: + first_name: { type: string } + last_name: { type: string } + id: { type: integer } + additionalProperties: false + + job_out_object_with_schema: + type: object + description: This is and object that must have first_name, last_name and id + schema: https://ignite6981724196.blob.core.windows.net/schemas/my_json_schema.json#/definitions/person + + job_out_object_without_schema: + type: object + description: This and object isn't backed by a schema + +jobs: + hello_world_component: + type: command + component: file:../../components/type_contract/object.yml + compute: azureml:cpu-cluster + inputs: + component_in_object_with_inline_schema: ${{parent.inputs.job_in_object_with_inline_schema}} + component_in_object_with_schema: ${{parent.inputs.job_in_object_with_schema}} + component_in_object_without_schema: ${{parent.inputs.job_in_object_with_schema}} + outputs: + component_out_object_with_inline_schema: ${{parent.outputs.job_out_object_with_inline_schema}} + component_out_object_with_schema: ${{parent.outputs.job_out_object_with_schema}} + component_out_object_without_schema: ${{parent.outputs.job_out_object_with_schema}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/path.yml b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/path.yml new file mode 100644 index 000000000000..402c84bd1654 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/pipeline_jobs/type_contract/path.yml @@ -0,0 +1,50 @@ +type: pipeline + +name: simplePipelineJobWithPathInputOutput +description: The hello world pipeline job with input/output type of path +tags: + tag: tagvalue + owner: sdkteam + +compute: "azureml:cpu-cluster" + +inputs: + job_in_file: + type: uri_file + path: azureml://datastores/mydatastore/paths/data/iris.csv + job_in_folder: + type: uri_folder + path: azureml://datastores/mydatastore/paths/data/ +outputs: + job_out_file: + type: uri_file + job_out_folder: + type: uri_folder + +jobs: + hello_world_component: + type: command + component: file:../../components/type_contract/path.yml + compute: azureml:cpu-cluster + inputs: + component_in_file: + type: uri_file + path: azureml://datastores/mydatastore/paths/data/iris.csv + component_in_folder: + type: uri_folder + path: azureml://datastores/mydatastore/paths/data/ + component_in_path: + type: uri_file + path: azureml://datastores/mydatastore/paths/data/iris.csv + + hello_world_component_2: + type: command + component: file:../../components/type_contract/path.yml + compute: azureml:cpu-cluster + inputs: + component_in_file: ${{parent.jobs.outputs.component_out_file}} + component_in_folder: ${{parent.jobs.outputs.component_out_folder}} + component_in_path: ${{parent.jobs.outputs.component_out_folder}} + outputs: + component_out_file: ${{parent.outputs.job_out_file}} + component_out_folder: ${{parent.outputs.job_out_folder}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/python/sample1.csv b/sdk/ml/azure-ai-ml/tests/test_configs/python/sample1.csv new file mode 100644 index 000000000000..a27e6468c2c0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/python/sample1.csv @@ -0,0 +1,9 @@ +"Month", "Average", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" +"May", 0.1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0 +"Jun", 0.5, 2, 1, 1, 0, 0, 1, 1, 2, 2, 0, 1 +"Jul", 0.7, 5, 1, 1, 2, 0, 1, 3, 0, 2, 2, 1 +"Aug", 2.3, 6, 3, 2, 4, 4, 4, 7, 8, 2, 2, 3 +"Sep", 3.5, 6, 4, 7, 4, 2, 8, 5, 2, 5, 2, 5 +"Oct", 2.0, 8, 0, 1, 3, 2, 5, 1, 5, 2, 3, 0 +"Nov", 0.5, 3, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 +"Dec", 0.0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/python/simple_train.py b/sdk/ml/azure-ai-ml/tests/test_configs/python/simple_train.py new file mode 100644 index 000000000000..d11910b4a70d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/python/simple_train.py @@ -0,0 +1,38 @@ +import argparse +from sklearn.svm import SVC +import mlflow.sklearn +import numpy as np + + +def parse_args(): + parser = argparse.ArgumentParser(description="SVM example") + parser.add_argument( + "-c", + type=float, + default=1.0, + help="SVM Cost Parameter", + ) + return parser.parse_args() + + +def main(): + args = parse_args() + mlflow.sklearn.autolog() + X = np.array([[-1, -1], [-3, -1], [0, 1], [1, 1], [5, 4]]) + y = np.array([0, 0, 0, 1, 1]) + + # junk test data so we can log a metric. accuracy should be bad due to not many training points + test_data = np.random.rand(10, 2) + test_labels = np.random.randint(2, size=10) + clf = SVC(C=args.c) + with mlflow.start_run(): + clf.fit(X, y) + pred = clf.predict(test_data) + accuracy = np.sum(test_labels == pred) / 10 + mlflow.log_metric("accuracy", accuracy) + mlflow.log_param("a_param", 1) + mlflow.log_param("another_param", 2) + + +if __name__ == "__main__": + main() diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/python/sweep_script.py b/sdk/ml/azure-ai-ml/tests/test_configs/python/sweep_script.py new file mode 100644 index 000000000000..732c752169f7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/python/sweep_script.py @@ -0,0 +1,24 @@ +import argparse +from random import random + +from azureml.core import Run + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--lr", required=True) + parser.add_argument("--conv_size", required=True) + parser.add_argument("--dropout_rate", required=True) + + args = parser.parse_args() + print("validated") + print(args.lr) + print(args.conv_size) + print(args.dropout_rate) + + run = Run.get_context() + run.log("accuracy", random()) + + +if __name__ == "__main__": + main() diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/python/sweep_script_search.py b/sdk/ml/azure-ai-ml/tests/test_configs/python/sweep_script_search.py new file mode 100644 index 000000000000..93bff810bff9 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/python/sweep_script_search.py @@ -0,0 +1,109 @@ +# imports +import os +import mlflow +import argparse + +import pandas as pd +import lightgbm as lgbm +import matplotlib.pyplot as plt + +from sklearn.metrics import log_loss, accuracy_score +from sklearn.preprocessing import LabelEncoder +from sklearn.model_selection import train_test_split + +# define functions +def main(args): + # enable auto logging + mlflow.autolog() + + # setup parameters + num_boost_round = args.num_boost_round + params = { + "objective": "multiclass", + "num_class": 3, + "boosting": args.boosting, + "num_iterations": args.num_iterations, + "num_leaves": args.num_leaves, + "num_threads": args.num_threads, + "learning_rate": args.learning_rate, + "metric": args.metric, + "seed": args.seed, + "verbose": args.verbose, + } + + # read in data + df = pd.read_csv(args.iris_csv) + + # process data + X_train, X_test, y_train, y_test, enc = process_data(df) + + # train model + model = train_model(params, num_boost_round, X_train, X_test, y_train, y_test) + + +def process_data(df): + # split dataframe into X and y + X = df.drop(["species"], axis=1) + y = df["species"] + + # encode label + enc = LabelEncoder() + y = enc.fit_transform(y) + + # train/test split + X_train, X_test, y_train, y_test = train_test_split( + X, y, test_size=0.2, random_state=42 + ) + + # return splits and encoder + return X_train, X_test, y_train, y_test, enc + + +def train_model(params, num_boost_round, X_train, X_test, y_train, y_test): + # create lightgbm datasets + train_data = lgbm.Dataset(X_train, label=y_train) + test_data = lgbm.Dataset(X_test, label=y_test) + + # train model + model = lgbm.train( + params, + train_data, + num_boost_round=num_boost_round, + valid_sets=[test_data], + valid_names=["test"], + ) + + # return model + return model + + +def parse_args(): + # setup arg parser + parser = argparse.ArgumentParser() + + # add arguments + parser.add_argument("--iris-csv", type=str) + parser.add_argument("--num-boost-round", type=int, default=10) + parser.add_argument("--boosting", type=str, default="gbdt") + parser.add_argument("--num-iterations", type=int, default=16) + parser.add_argument("--num-leaves", type=int, default=31) + parser.add_argument("--num-threads", type=int, default=0) + parser.add_argument("--learning-rate", type=float, default=0.1) + parser.add_argument("--metric", type=str, default="multi_logloss") + parser.add_argument("--seed", type=int, default=42) + parser.add_argument("--verbose", type=int, default=0) + + # parse args + args = parser.parse_args() + + # return args + return args + + +# run script +if __name__ == "__main__": + # parse args + args = parse_args() + + # run main function + main(args) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/python/train.py b/sdk/ml/azure-ai-ml/tests/test_configs/python/train.py new file mode 100644 index 000000000000..497589b18f40 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/python/train.py @@ -0,0 +1,28 @@ +# Taken from SDK 1.5 Get Started +# https://github.com/Azure/DesignerPrivatePreviewFeatures/tree/master/azure-ml-components/samples/components/get-started-train +import argparse +from pathlib import Path +from uuid import uuid4 + +parser = argparse.ArgumentParser("train") +parser.add_argument("--training_data", type=str, help="Path to training data") +parser.add_argument("--max_epochs", type=int, help="Max # of epochs for the training") +parser.add_argument("--learning_rate", type=float, help="Learning rate") +parser.add_argument("--model_output", type=str, help="Path of output model") + +args = parser.parse_args() + +lines = [ + f"Training data path: {args.training_data}", + f"Max epochs: {args.max_epochs}", + f"Learning rate: {args.learning_rate}", + f"Model output path: {args.model_output}", +] + +for line in lines: + print(line) + +# Do the train and save the trained model as a file into the output folder. +# Here only output a dummy data for demo. +model = str(uuid4()) +(Path(args.model_output) / "model.txt").write_text(model) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/digit_identification.py b/sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/digit_identification.py new file mode 100644 index 000000000000..5379d983ab34 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/digit_identification.py @@ -0,0 +1,45 @@ +# Copyright (c) Microsoft. All rights reserved. +# Licensed under the MIT license. + +import os +import numpy as np +import argparse +import tensorflow as tf +from PIL import Image +from azureml.core import Model + + +def init(): + global g_tf_sess + + parser = argparse.ArgumentParser(allow_abbrev=False, description="ParallelRunStep Agent") + parser.add_argument("--model", type=str, default=0) + args, _ = parser.parse_known_args() + + # pull down model from workspace + model_path = args.model + + # contruct graph to execute + tf.reset_default_graph() + saver = tf.train.import_meta_graph(os.path.join(model_path, 'mnist-tf.model.meta')) + g_tf_sess = tf.Session(config=tf.ConfigProto(device_count={'GPU': 0})) + saver.restore(g_tf_sess, os.path.join(model_path, 'mnist-tf.model')) + + +def run(mini_batch): + print(f'run method start: {__file__}, run({mini_batch})') + resultList = [] + in_tensor = g_tf_sess.graph.get_tensor_by_name("network/X:0") + output = g_tf_sess.graph.get_tensor_by_name("network/output/MatMul:0") + + for image in mini_batch: + # prepare each image + data = Image.open(image) + np_im = np.array(data).reshape((1, 784)) + # perform inference + inference_result = output.eval(feed_dict={in_tensor: np_im}, session=g_tf_sess) + # find best probability, and add to result list + best_result = np.argmax(inference_result) + resultList.append("{}: {}".format(os.path.basename(image), best_result)) + + return resultList diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/pass_through.py b/sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/pass_through.py new file mode 100644 index 000000000000..8dfc9da9a39e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/pass_through.py @@ -0,0 +1,39 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- +"""This module simulate run() which can specify succeed every n items from argument.""" +import argparse + +from pathlib import Path + + +def init(): + """Init.""" + global OUTPUT_PATH + + parser = argparse.ArgumentParser(allow_abbrev=False, description="ParallelRunStep Agent") + parser.add_argument("--job_output_path", type=str, default=0) + args, _ = parser.parse_known_args() + OUTPUT_PATH = args.job_output_path + print("Pass through init done") + + + +def run(mini_batch): + """Run.""" + + for file_path in mini_batch: + file = Path(file_path) + print("Processing {}".format(file)) + assert file.exists() + + # Two customers reported transient error when using OutputFileDatasetConfig. + # It hits "FileNotFoundError" when writing to a file in the output_dir folder, + # even the folder did exist per logs. + # This is to simulate such case and hope we can repro in our gated build. + output_dir = Path(OUTPUT_PATH) + print("output_dir", output_dir) + print("output_dir exits", Path(output_dir).exists()) + (Path(output_dir) / file.name).write_text(file_path) + + return mini_batch diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/tabular_run_with_model.py b/sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/tabular_run_with_model.py new file mode 100644 index 000000000000..19a1ec7ff8fd --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/script_parallel/tabular_run_with_model.py @@ -0,0 +1,39 @@ +# --------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# --------------------------------------------------------- +"""This module will load mlflow model and do prediction.""" + +import argparse +import os +import pickle +from pathlib import Path + +from mlflow.sklearn import load_model + +MODEL_NAME = "iris_model" + +def init(): + print("Environment variables start ****") + for key, val in os.environ.items(): + print(key, val) + print("Environment variables end ****") + + parser = argparse.ArgumentParser(allow_abbrev=False, description="ParallelRunStep Agent") + parser.add_argument("--model", type=str, default=0) + args, _ = parser.parse_known_args() + + model_path = args.model + "/" + MODEL_NAME + global iris_model + + iris_model = load_model(model_path) + + +def run(input_data): + num_rows, num_cols = input_data.shape + pred = iris_model.predict(input_data).reshape((num_rows, 1)) + + # cleanup output + result = input_data.drop(input_data.columns[4:], axis=1) + result['variety'] = pred + + return result diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/storage/.amlignore b/sdk/ml/azure-ai-ml/tests/test_configs/storage/.amlignore new file mode 100644 index 000000000000..f719f7d9a7b3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/storage/.amlignore @@ -0,0 +1,3 @@ +/dont_include_us + +*_2.txt diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/storage/.gitignore b/sdk/ml/azure-ai-ml/tests/test_configs/storage/.gitignore new file mode 100644 index 000000000000..8143e15f9314 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/storage/.gitignore @@ -0,0 +1 @@ +*.cs diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/storage/dont_include_us/test_file.txt b/sdk/ml/azure-ai-ml/tests/test_configs/storage/dont_include_us/test_file.txt new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/storage/gitignore_only/.gitignore b/sdk/ml/azure-ai-ml/tests/test_configs/storage/gitignore_only/.gitignore new file mode 100644 index 000000000000..8143e15f9314 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/storage/gitignore_only/.gitignore @@ -0,0 +1 @@ +*.cs diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/storage/test_file.txt b/sdk/ml/azure-ai-ml/tests/test_configs/storage/test_file.txt new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/storage/test_file_2.txt b/sdk/ml/azure-ai-ml/tests/test_configs/storage/test_file_2.txt new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/corrupt_mfe_data_sweep_job.json b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/corrupt_mfe_data_sweep_job.json new file mode 100644 index 000000000000..5f401b66cfdc --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/corrupt_mfe_data_sweep_job.json @@ -0,0 +1,78 @@ +{ + "id": "/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourceGroups/paulshwestus4/providers/Microsoft.MachineLearningServices/workspaces/paulshwestus4/jobs/66a17733-bff1-11eb-81fe-dc4a3e6f89be", + "name": "66a17733-bff1-11eb-81fe-dc4a3e6f89be", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": null, + "tags": { + "_aml_system_max_concurrent_jobs": "10", + "final_best_metric_update_retry_count": "1" + }, + "properties": { + "primary_metric_config": "{\"name\": \"test-multi_logloss\", \"goal\": \"minimize\"}", + "resume_from": "null", + "runTemplate": "HyperDrive", + "azureml.runsource": "hyperdrive", + "platform": "AML", + "ContentSnapshotId": "e82a8ac5-587d-4161-b679-6f75d8069e86", + "azureml.datastoreId": "/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourceGroups/paulshwestus4/providers/Microsoft.MachineLearningServices/workspaces/paulshwestus4/datastores/paulshwestus48237393424_azureml" + }, + "provisioningState": "Succeeded", + "services": { + "Studio": { + "type": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/66a17733-bff1-11eb-81fe-dc4a3e6f89be?wsid=/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourcegroups/paulshwestus4/workspaces/paulshwestus4", + "properties": null + } + }, + "experimentName": "Default", + "output": { + "datastoreId": "/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourceGroups/paulshwestus4/providers/Microsoft.MachineLearningServices/workspaces/paulshwestus4/datastores/paulshwestus48237393424_azureml", + "path": "ExperimentRun/dcid.66a17733-bff1-11eb-81fe-dc4a3e6f89be" + }, + "compute": "/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourceGroups/paulshwestus4/providers/Microsoft.MachineLearningServices/workspaces/paulshwestus4/computes/goazurego", + "resources": { + "instanceCount": null, + "properties": null + }, + "priority": null, + "jobType": "Sweep", + "status": "Failed", + "searchSpace": { + "learning_rate": "[\"uniform\", [0.01, 0.9]]", + "boosting": "[\"choice\", [[\"gbdt\", \"dart\"]]" + }, + "sampling_algorithm": "Random", + "maxTotalTrials": 20, + "maxConcurrentTrials": 10, + "timeout": "PT2H", + "earlyTermination": null, + "objective": { + "primaryMetric": "test-multi_logloss", + "goal": "Minimize" + }, + "trial": { + "timeout": null, + "codeId": "/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourceGroups/paulshwestus4/providers/Microsoft.MachineLearningServices/workspaces/paulshwestus4/codes/652f0987-bff1-11eb-bb01-dc4a3e6f89be/versions/1", + "command": "python iris.py --iris-csv $AZURE_ML_INPUT_iris --learning-rate $AZUREML_SWEEP_learning_rate --boosting $AZUREML_SWEEP_boosting", + "environmentId": "/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourceGroups/paulshwestus4/providers/Microsoft.MachineLearningServices/workspaces/paulshwestus4/environments/AzureML-Dask-CPU/versions/28", + "inputDataBindings": { + "iris": { + "dataId": "/subscriptions/b17253fa-f327-42d6-9686-f3e553e24763/resourceGroups/paulshwestus4/providers/Microsoft.MachineLearningServices/workspaces/paulshwestus4/data/660cad0c-bff1-11eb-b124-dc4a3e6f89be/versions/1", + "pathOnCompute": null, + "mode": "Mount" + } + }, + "outputDataBindings": null, + "environmentVariables": {}, + "distribution": null + }, + "identity": null + }, + "systemData": { + "createdAt": "2021-05-28T20:15:10.2894919Z", + "createdBy": "Paul Shealy", + "createdByType": "User" + } +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/expected_recursive_search_space.json b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/expected_recursive_search_space.json new file mode 100644 index 000000000000..e620babd8f1c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/expected_recursive_search_space.json @@ -0,0 +1,250 @@ +{ + "lr": [ + "uniform", + [ + 0.001, + 0.1 + ] + ], + "conv_size": [ + "choice", + [ + [ + { + "const_val": 999, + "val1": [ + "choice", + [ + [ + { + "val11": [ + "uniform", + [ + 0.001, + 0.1 + ] + ] + }, + { + "val12": [ + "uniform", + [ + 0.001, + 0.1 + ] + ] + } + ] + ] + ] + }, + { + "val2": [ + "choice", + [ + [ + { + "val21": [ + "uniform", + [ + 0.001, + 0.1 + ] + ] + }, + { + "val22": [ + "uniform", + [ + 0.001, + 0.1 + ] + ] + } + ] + ] + ] + }, + { + "val3": [ + "choice", + [ + [ + { + "value31": [ + "choice", + [ + [ + { + "value3111": "hello!", + "value3112": 123, + "value3113": [ + "choice", + [ + [ + 1, + 2, + 3 + ] + ] + ], + "val3114": [ + "normal", + [ + 0, + 1 + ] + ], + "val3115": [ + "qnormal", + [ + 0, + 1, + 0.4 + ] + ], + "val3116": [ + "uniform", + [ + 0, + 1 + ] + ], + "val3117": [ + "quniform", + [ + 0, + 1, + 0.4 + ] + ], + "val3118": [ + "randint", + [ + 100 + ] + ] + }, + { + "value312": [ + "choice", + [ + [ + 1, + 2, + 3 + ] + ] + ] + }, + { + "val313": [ + "normal", + [ + 0, + 1 + ] + ] + }, + { + "val314": [ + "qnormal", + [ + 0, + 1, + 0.4 + ] + ] + }, + { + "val315": [ + "uniform", + [ + 0, + 1 + ] + ] + }, + { + "val316": [ + "quniform", + [ + 0, + 1, + 0.4 + ] + ] + }, + { + "val317": [ + "randint", + [ + 100 + ] + ] + } + ] + ] + ] + } + ] + ] + ] + }, + { + "val4": [ + "normal", + [ + 0, + 1 + ] + ] + }, + { + "val5": [ + "qnormal", + [ + 0, + 1, + 0.4 + ] + ] + }, + { + "val6": [ + "uniform", + [ + 0, + 1 + ] + ] + }, + { + "val7": [ + "quniform", + [ + 0, + 1, + 0.4 + ] + ] + }, + { + "val8": [ + "randint", + [ + 100 + ] + ] + } + ] + ] + ], + "dropout_rate": [ + "uniform", + [ + 0.1, + 0.5 + ] + ] +} \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_bayesian_sampling_algorithm_object.yml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_bayesian_sampling_algorithm_object.yml new file mode 100644 index 000000000000..6f53dba70593 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_bayesian_sampling_algorithm_object.yml @@ -0,0 +1,27 @@ +type: sweep +sampling_algorithm: + type: bayesian +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr ${{search_space.lr}} --conv_size ${{search_space.conv_size}} --dropout_rate ${{search_space.dropout_rate}} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:cpu-cluster +limits: + max_total_trials: 2 + max_concurrent_trials: 10 + timeout: 3000 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_grid_sampling_algorithm_object.yml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_grid_sampling_algorithm_object.yml new file mode 100644 index 000000000000..afac16e3c91d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_grid_sampling_algorithm_object.yml @@ -0,0 +1,27 @@ +type: sweep +sampling_algorithm: + type: grid +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr ${{search_space.lr}} --conv_size ${{search_space.conv_size}} --dropout_rate ${{search_space.dropout_rate}} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:cpu-cluster +limits: + max_total_trials: 2 + max_concurrent_trials: 10 + timeout: 3000 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_random_sampling_algorithm_object.yml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_random_sampling_algorithm_object.yml new file mode 100644 index 000000000000..08def2d5d34a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/object_sampling_algorithm/sweep_job_random_sampling_algorithm_object.yml @@ -0,0 +1,27 @@ +type: sweep +sampling_algorithm: + type: random +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr ${{search_space.lr}} --conv_size ${{search_space.conv_size}} --dropout_rate ${{search_space.dropout_rate}} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:cpu-cluster +limits: + max_total_trials: 2 + max_concurrent_trials: 10 + timeout: 3000 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sampling_algorithm_properties/sweep_job_random_rule.yml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sampling_algorithm_properties/sweep_job_random_rule.yml new file mode 100644 index 000000000000..13b8b7ce52f5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sampling_algorithm_properties/sweep_job_random_rule.yml @@ -0,0 +1,28 @@ +type: sweep +sampling_algorithm: + type: random + rule: sobol +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr ${{search_space.lr}} --conv_size ${{search_space.conv_size}} --dropout_rate ${{search_space.dropout_rate}} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:cpu-cluster +limits: + max_total_trials: 2 + max_concurrent_trials: 10 + timeout: 3000 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sampling_algorithm_properties/sweep_job_random_seed.yml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sampling_algorithm_properties/sweep_job_random_seed.yml new file mode 100644 index 000000000000..4c68d0c9b2f0 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sampling_algorithm_properties/sweep_job_random_seed.yml @@ -0,0 +1,28 @@ +type: sweep +sampling_algorithm: + type: random + seed: 999 +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr ${{search_space.lr}} --conv_size ${{search_space.conv_size}} --dropout_rate ${{search_space.dropout_rate}} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:cpu-cluster +limits: + max_total_trials: 2 + max_concurrent_trials: 10 + timeout: 3000 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/string_sampling_algorithm/sweep_job_bayesian_sampling_algorithm_string.yml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/string_sampling_algorithm/sweep_job_bayesian_sampling_algorithm_string.yml new file mode 100644 index 000000000000..299bc5553d61 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/string_sampling_algorithm/sweep_job_bayesian_sampling_algorithm_string.yml @@ -0,0 +1,26 @@ +type: sweep +sampling_algorithm: bayesian +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr ${{search_space.lr}} --conv_size ${{search_space.conv_size}} --dropout_rate ${{search_space.dropout_rate}} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:cpu-cluster +limits: + max_total_trials: 2 + max_concurrent_trials: 10 + timeout: 3000 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/string_sampling_algorithm/sweep_job_grid_sampling_algorithm_string.yml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/string_sampling_algorithm/sweep_job_grid_sampling_algorithm_string.yml new file mode 100644 index 000000000000..e96471401aa4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/string_sampling_algorithm/sweep_job_grid_sampling_algorithm_string.yml @@ -0,0 +1,26 @@ +type: sweep +sampling_algorithm: grid +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr ${{search_space.lr}} --conv_size ${{search_space.conv_size}} --dropout_rate ${{search_space.dropout_rate}} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:cpu-cluster +limits: + max_total_trials: 2 + max_concurrent_trials: 10 + timeout: 3000 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-bandit.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-bandit.yaml new file mode 100644 index 000000000000..dfa049d1047a --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-bandit.yaml @@ -0,0 +1,35 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/sweepJob.schema.json +experiment_name: "sweep-trial-v3" +sampling_algorithm: random +type: sweep +name: test_v3111 +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_test.py --lr {search_space.lr} --conv_size {search_space.conv_size} --dropout_rate {search_space.dropout_rate} + code: azureml:testCode:1 + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:testCompute +limits: + max_total_trials: 100 + max_concurrent_trials: 10 + timeout: 10000 +early_termination: + type: bandit + evaluation_interval: 100 + delay_evaluation: 200 + slack_factor: 40 + slack_amount: 3 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-median.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-median.yaml new file mode 100644 index 000000000000..e0d74986eb41 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-median.yaml @@ -0,0 +1,33 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/sweepJob.schema.json +experiment_name: "sweep-trial-v3" +sampling_algorithm: random +type: sweep +name: test_v3111 +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_test.py --lr {search_space.lr} --conv_size {search_space.conv_size} --dropout_rate {search_space.dropout_rate} + code: azureml:testCode:1 + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:testCompute +limits: + max_total_trials: 100 + max_concurrent_trials: 10 + timeout: 10000 +early_termination: + type: median_stopping + evaluation_interval: 100 + delay_evaluation: 200 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-search.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-search.yaml new file mode 100644 index 000000000000..d622239a31da --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-search.yaml @@ -0,0 +1,36 @@ +sampling_algorithm: random +experiment_name: "all-sweep" +type: sweep +search_space: + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 + dropout_rate2: + type: uniform + min_value: 0.2 + max_value: 0.6 + lr: + type: loguniform + max_value: 1 + min_value: 0 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_test.py --lr {search_space.lr} --conv_size {search_space.conv_size} --dropout_rate {search_space.dropout_rate} --dropout_rate2 {search_space.dropout_rate2} + code: ../python/sweep_test.py + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:rihorn-comp +limits: + max_total_trials: 100 + max_concurrent_trials: 10 + timeout: 10000 +early_termination: + type: truncation_selection + evaluation_interval: 100 + delay_evaluation: 200 + truncation_percentage: 40 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-truncation.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-truncation.yaml new file mode 100644 index 000000000000..ea193f453fc7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep-truncation.yaml @@ -0,0 +1,34 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/sweepJob.schema.json +experiment_name: "sweep-trial-v3" +sampling_algorithm: random +type: sweep +name: test_v3111 +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_test.py --lr {search_space.lr} --conv_size {search_space.conv_size} --dropout_rate {search_space.dropout_rate} + code: azureml:testCode:1 + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:testCompute +limits: + max_total_trials: 100 + max_concurrent_trials: 10 + timeout: 10000 +early_termination: + type: truncation_selection + evaluation_interval: 100 + delay_evaluation: 200 + truncation_percentage: 40 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_input_types.yml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_input_types.yml new file mode 100644 index 000000000000..32535393ffe3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_input_types.yml @@ -0,0 +1,31 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/sweepJob.schema.json +type: sweep +trial: + command: python foo.py --lr ${{search_space.lr}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: "azureml:testCompute" +sampling_algorithm: random +limits: + max_total_trials: 5 +objective: + primary_metric: accuracy + goal: maximize +name: "test1" +experiment_name: mfe-test1 +properties: + _azureml.ComputeTargetType: amlcompute +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 +inputs: + "test_dataset": + path: "/subscriptions/d511f82f-71ba-49a4-8233-d7be8a3650f4/resourceGroups/RLTesting/providers/Microsoft.MachineLearningServices/workspaces/AnkitWS/data/fake-dataset/versions/2" + "test_url": + mode: ro_mount + type: uri_file + path: "azureml://fake/url.json" + "test_string_literal": "literal string" + "test_literal_valued_int": + value: 42 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_outputs.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_outputs.yaml new file mode 100644 index 000000000000..4e57d5ad26f7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_outputs.yaml @@ -0,0 +1,32 @@ +type: sweep +sampling_algorithm: random +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +outputs: + output1: + type: uri_folder + path: azureml://datastores/${{default_datastore}}/paths/data_folder/${{name}}/cleaned_data/ +trial: + command: | + echo "Hello Default World" > ./outputs/output.txt; + echo "Hello World" > ${{outputs.output1}}/output.txt; + python -c 'import random; import mlflow; mlflow.log_metric("accuracy", random.random())' + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:testCompute +limits: + max_total_trials: 4 + max_concurrent_trials: 10 + timeout: 3000 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_test.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_test.yaml new file mode 100644 index 000000000000..6faeace76bcb --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_test.yaml @@ -0,0 +1,26 @@ +type: sweep +sampling_algorithm: random +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr {search_space.lr} --conv_size {search_space.conv_size} --dropout_rate ${{search_space.dropout_rate}} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:testCompute +limits: + max_total_trials: 2 + max_concurrent_trials: 10 + timeout: 300 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_test_input.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_test_input.yaml new file mode 100644 index 000000000000..f0657b542b58 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_minimal_test_input.yaml @@ -0,0 +1,35 @@ +type: sweep +sampling_algorithm: random +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: echo 1 && python ./sweep_script.py --lr {search_space.lr} --conv_size {search_space.conv_size} --dropout_rate {search_space.dropout_rate} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + environment_variables: + AZUREML_COMPUTE_USE_COMMON_RUNTIME: "true" +compute: azureml:cpu-cluster +inputs: + # examples of inputs that take values such as int, string, etc. + job_in_number: 10 +outputs: + job_out_path_1: + mode: mount +limits: + max_concurrent_trials: 10 + max_total_trials: 1 + timeout: 30 + trial_timeout: 5 \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_output_types.yml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_output_types.yml new file mode 100644 index 000000000000..7426544e637b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_output_types.yml @@ -0,0 +1,27 @@ +# yaml-language-server: $schema=https://azuremlsdk2.blob.core.windows.net/latest/sweepJob.schema.json +type: sweep +trial: + command: python foo.py --lr ${{search_space.lr}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: "azureml:testCompute" +sampling_algorithm: random +objective: + primary_metric: accuracy + goal: maximize +limits: + max_total_trials: 5 +name: "test1" +experiment_name: mfe-test1 +properties: + _azureml.ComputeTargetType: amlcompute +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 +outputs: + test1: + test2: + mode: upload + test3: + mode: rw_mount \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_recursive_search_space.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_recursive_search_space.yaml new file mode 100644 index 000000000000..65b28bbaac36 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_recursive_search_space.yaml @@ -0,0 +1,132 @@ +type: sweep +sampling_algorithm: random +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: + - const_val: 999 + val1: + type: choice + values: + - val11: + type: uniform + min_value: 0.001 + max_value: 0.1 + - val12: + type: uniform + min_value: 0.001 + max_value: 0.1 + - val2: + type: choice + values: + - val21: + type: uniform + min_value: 0.001 + max_value: 0.1 + - val22: + type: uniform + min_value: 0.001 + max_value: 0.1 + - val3: + type: choice + values: + - value31: + type: choice + values: + - value3111: hello! + value3112: 123 + value3113: + type: choice + values: + - 1 + - 2 + - 3 + val3114: + type: normal + mu: 0 + sigma: 1 + val3115: + type: qnormal + mu: 0 + sigma: 1 + q: 0.4 + val3116: + type: uniform + min_value: 0 + max_value: 1 + val3117: + type: quniform + min_value: 0 + max_value: 1 + q: 0.4 + val3118: + type: randint + upper: 100 + - value312: + type: choice + values: + - 1 + - 2 + - 3 + - val313: + type: normal + mu: 0 + sigma: 1 + - val314: + type: qnormal + mu: 0 + sigma: 1 + q: 0.4 + - val315: + type: uniform + min_value: 0 + max_value: 1 + - val316: + type: quniform + min_value: 0 + max_value: 1 + q: 0.4 + - val317: + type: randint + upper: 100 + - val4: + type: normal + mu: 0 + sigma: 1 + - val5: + type: qnormal + mu: 0 + sigma: 1 + q: 0.4 + - val6: + type: uniform + min_value: 0 + max_value: 1 + - val7: + type: quniform + min_value: 0 + max_value: 1 + q: 0.4 + - val8: + type: randint + upper: 100 + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr ${{search_space.lr}} --conv_size ${{search_space.conv_size}} --dropout_rate ${{search_space.dropout_rate}} + code: azureml:dummy_code:1 + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +compute: azureml:cpu-cluster +limits: + max_total_trials: 2 + max_concurrent_trials: 10 + timeout: 3000 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_search_space_choice_string.yml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_search_space_choice_string.yml new file mode 100644 index 000000000000..573d9521a1c7 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_search_space_choice_string.yml @@ -0,0 +1,40 @@ +$schema: https://azuremlschemas.azureedge.net/latest/sweepJob.schema.json +type: sweep +display_name: lightgbm-iris-sweep-example +experiment_name: lightgbm-iris-sweep-example +description: Run a hyperparameter sweep job for LightGBM on Iris dataset. +trial: + code: azureml:testCode:1 + command: >- + python ./sweep_script_search.py + --iris-csv ${{inputs.iris_csv}} + --learning-rate ${{search_space.learning_rate}} + --boosting ${{search_space.boosting}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + environment_variables: + AZUREML_COMPUTE_USE_COMMON_RUNTIME: "true" +compute: azureml:testCompute +inputs: + iris_csv: + type: uri_file + path: https://azuremlexamples.blob.core.windows.net/datasets/iris.csv +sampling_algorithm: random +search_space: + learning_rate: + type: uniform + min_value: 0.01 + max_value: 0.9 + boosting: + type: choice + values: ["gbdt", "dart"] +objective: + goal: minimize + primary_metric: test-multi_logloss +limits: + max_total_trials: 20 + max_concurrent_trials: 10 + timeout: 7200 +early_termination: + type: median_stopping + evaluation_interval: 100 + delay_evaluation: 200 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_test.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_test.yaml new file mode 100644 index 000000000000..8af9e7b2380c --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_test.yaml @@ -0,0 +1,35 @@ +sampling_algorithm: random +type: sweep +experiment_name: sdk-cli-v2 +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr {search_space.lr} --conv_size {search_space.conv_size} --dropout_rate ${{search_space.dropout_rate}} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 + environment_variables: + test_var1: "set" + AZUREML_COMPUTE_USE_COMMON_RUNTIME: "false" +compute: azureml:testCompute +limits: + max_total_trials: 1 + max_concurrent_trials: 10 + timeout: 5 +early_termination: + type: truncation_selection + evaluation_interval: 100 + delay_evaluation: 200 + truncation_percentage: 40 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_test_inputs.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_test_inputs.yaml new file mode 100644 index 000000000000..4a1d0a67d609 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/sweep_job/sweep_job_test_inputs.yaml @@ -0,0 +1,32 @@ +sampling_algorithm: random +type: sweep +experiment_name: sdk-cli-v2 +search_space: + lr: + type: uniform + min_value: 0.001 + max_value: 0.1 + conv_size: + type: choice + values: [2, 5, 7] + dropout_rate: + type: uniform + min_value: 0.1 + max_value: 0.5 +objective: + primary_metric: accuracy + goal: maximize +trial: + command: python ./sweep_script.py --lr ${{search_space.lr}} --conv_size ${{inputs.some_number}} --dropout_rate ${{inputs.iris_csv}} + code: ../python + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1 +inputs: + some_number: 999 + iris_csv: + type: uri_file + path: wasbs://datasets@azuremlexamples.blob.core.windows.net/iris.csv +compute: azureml:testCompute +limits: + max_total_trials: 1 + max_concurrent_trials: 10 + timeout: 3000 From 61630a40ef30f198fa8c2711d130339402e0c3e6 Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Thu, 26 May 2022 16:47:13 -0400 Subject: [PATCH 02/18] add an init to tests --- sdk/ml/azure-ai-ml/tests/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 sdk/ml/azure-ai-ml/tests/__init__.py diff --git a/sdk/ml/azure-ai-ml/tests/__init__.py b/sdk/ml/azure-ai-ml/tests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 From 90c22ba505c291fda616e069e639fafe0ed91e88 Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Thu, 26 May 2022 17:09:42 -0400 Subject: [PATCH 03/18] fix test_utils import --- sdk/ml/azure-ai-ml/tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/ml/azure-ai-ml/tests/conftest.py b/sdk/ml/azure-ai-ml/tests/conftest.py index 92eacd37d011..9c49001bad60 100644 --- a/sdk/ml/azure-ai-ml/tests/conftest.py +++ b/sdk/ml/azure-ai-ml/tests/conftest.py @@ -13,7 +13,7 @@ from unittest.mock import Mock from azure.identity import DefaultAzureCredential, ClientSecretCredential from azure.ai.ml import MLClient -from test_utilities.constants import Test_Subscription, Test_Resource_Group, Test_Workspace_Name +from tests.test_utilities.constants import Test_Subscription, Test_Resource_Group, Test_Workspace_Name from datetime import datetime from azure.ai.ml._restclient.registry_discovery import AzureMachineLearningWorkspaces as ServiceClientRegistryDiscovery from azure.mgmt.storage import StorageManagementClient From 0d4421c565025431b84265fdf0c2c5cfaa534462 Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Fri, 27 May 2022 11:29:37 -0400 Subject: [PATCH 04/18] add env yml files --- .gitignore | 3 ++- .../test_configs/environment/endpoint_conda.yml | 16 ++++++++++++++++ .../environment/endpoint_conda_update.yml | 17 +++++++++++++++++ .../environment/environment_colon_version.yml | 4 ++++ .../environment/environment_conda.yml | 5 +++++ .../environment/environment_conda_bad.yml | 6 ++++++ .../environment/environment_conda_inline.yml | 17 +++++++++++++++++ .../environment_conda_name_version.yml | 4 ++++ .../environment/environment_docker_context.yml | 8 ++++++++ .../environment_docker_context_remote_path.yml | 8 ++++++++ .../environment/environment_docker_image.yml | 3 +++ .../environment_docker_inference.yml | 15 +++++++++++++++ .../environment/environment_no_version.yml | 4 ++++ .../environment/environment_parallel.yml | 16 ++++++++++++++++ 14 files changed, 125 insertions(+), 1 deletion(-) create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/endpoint_conda.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/endpoint_conda_update.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_colon_version.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_bad.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_inline.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_name_version.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_context.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_context_remote_path.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_image.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_inference.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_no_version.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_parallel.yml diff --git a/.gitignore b/.gitignore index 6ca25c21c4b0..0ef1e487398f 100644 --- a/.gitignore +++ b/.gitignore @@ -103,7 +103,8 @@ sdk/storage/azure-storage-file-share/tests/settings/settings_real.py sdk/storage/azure-storage-file-datalake/tests/settings/settings_real.py # azure-ai-ml test configs -!sdk/ml/azure-ai-ml/tests/test_configs/environment/* +!sdk/ml/azure-ai-ml/tests/test_configs/* +!sdk/ml/azur # The locations below are deprecated - keep to prevent any accidental secrets leakage ========== diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/endpoint_conda.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/endpoint_conda.yml new file mode 100644 index 000000000000..0a39b2134407 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/endpoint_conda.yml @@ -0,0 +1,16 @@ +name: sklearn-aks-env +channels: + - conda-forge +dependencies: + - python=3.7.10 + - numpy + - pip + - scikit-learn==0.19.1 + - scipy + - pip: + - azureml-defaults + - inference-schema[numpy-support] + - joblib + - numpy + - scikit-learn==0.19.1 + - scipy diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/endpoint_conda_update.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/endpoint_conda_update.yml new file mode 100644 index 000000000000..f536a921d092 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/endpoint_conda_update.yml @@ -0,0 +1,17 @@ +name: sklearn-aks-env +channels: + - conda-forge +dependencies: + - python=3.7.10 + - numpy + - pip + - scikit-learn==0.19.1 + - scipy + - pip: + - azureml-defaults + - inference-schema[numpy-support] + - joblib + - numpy + - scikit-learn==0.19.1 + - scipy + - pandas diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_colon_version.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_colon_version.yml new file mode 100644 index 000000000000..f96330c3599b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_colon_version.yml @@ -0,0 +1,4 @@ +image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 +name: myTestEnv +version: 18.04:2022 +description: This is it \ No newline at end of file diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda.yml new file mode 100644 index 000000000000..a7a5290f3c3e --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda.yml @@ -0,0 +1,5 @@ +conda_file: environment_files/environment.yml +image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 +name: myTestEnv +version: 1 +description: This is description diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_bad.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_bad.yml new file mode 100644 index 000000000000..37e067ea3461 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_bad.yml @@ -0,0 +1,6 @@ +conda_file: environment_files/environment.yml +image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 +name: myTestEnv +version: 1 +description: This is description +path: . diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_inline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_inline.yml new file mode 100644 index 000000000000..02e9c1c16d19 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_inline.yml @@ -0,0 +1,17 @@ +image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 +name: myTestEnv +version: 1 +description: Environment with inline conda definition +conda_file: + name: example-environment + channels: + - conda-forge + dependencies: + - python=3.6.1 + - pip + - pip: + - nbgitpuller + - sphinx-gallery + - pandas + - matplotlib + - mlflow diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_name_version.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_name_version.yml new file mode 100644 index 000000000000..383878ef0b5d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_conda_name_version.yml @@ -0,0 +1,4 @@ +conda_file: environment_files/environment.yml +image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 +name: my-env +version: 1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_context.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_context.yml new file mode 100644 index 000000000000..3595c0929542 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_context.yml @@ -0,0 +1,8 @@ +name: TestEnv +version: 1 +build: + path: ./environment_files + dockerfile_path: DockerfileNonDefault +tags: + test: test +description: Docker context environment diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_context_remote_path.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_context_remote_path.yml new file mode 100644 index 000000000000..15bea12af754 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_context_remote_path.yml @@ -0,0 +1,8 @@ +name: TestEnv +version: 1 +build: + path: https://ankitws8854091092.blob.core.windows.net/azureml-blobstore-579340a1-d0fd-43a7-a49c-2bb8c39c2c95/LocalUpload/c46f59fa5f499ec3cb27a7445c9a7733/environment_files/ + dockerfile_path: Dockerfile +tags: + test: test +description: Docker context environment diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_image.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_image.yml new file mode 100644 index 000000000000..1d6a56a8d677 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_image.yml @@ -0,0 +1,3 @@ +name: TestEnv +version: 1 +image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_inference.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_inference.yml new file mode 100644 index 000000000000..41d93eba5c53 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_docker_inference.yml @@ -0,0 +1,15 @@ +name: TestEnv +version: 1 +conda_file: environment_files/environment.yml +os_type: Linux +image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 +inference_config: + scoring_route: + port: 5001 + path: /predict + liveness_route: + port: 5002 + path: /health/live + readiness_route: + port: 5003 + path: /health/ready diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_no_version.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_no_version.yml new file mode 100644 index 000000000000..cb26f3f3eff4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_no_version.yml @@ -0,0 +1,4 @@ +conda_file: environment_files/environment.yml +image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 +name: existing-env +description: This is description diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_parallel.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_parallel.yml new file mode 100644 index 000000000000..242438eb2d1f --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_parallel.yml @@ -0,0 +1,16 @@ +name: prs-env +channels: + - conda-forge +dependencies: + - python=3.6.1 + - pip + - pip: + - mlflow + - azureml-dataset-runtime[pandas,fuse] + - azureml-telemetry + - pandas + - pillow + - azureml-core + - scikit-learn~=0.20.0 + - cloudpickle==1.1.1 + - tensorflow==1.15.2 From 281005add7522ce252d372999e27bcfebd008554 Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Fri, 27 May 2022 11:31:01 -0400 Subject: [PATCH 05/18] add knack dependency --- sdk/ml/azure-ai-ml/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/ml/azure-ai-ml/setup.py b/sdk/ml/azure-ai-ml/setup.py index 9791a5c98cbd..32ecf789e899 100644 --- a/sdk/ml/azure-ai-ml/setup.py +++ b/sdk/ml/azure-ai-ml/setup.py @@ -87,6 +87,7 @@ "docker>=2.0.0", "typing-extensions>=4.0.1", "applicationinsights<=0.11.10", + "knack" ], extras_require={ # user can run `pip install azure-ai-ml[designer]` to install mldesigner alone with this package From 46ba7b44bc72500ddfac62b6fbaeb1e68df6b398 Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Fri, 27 May 2022 11:58:38 -0400 Subject: [PATCH 06/18] fix more tests --- .gitignore | 2 +- sdk/ml/azure-ai-ml/setup.py | 1 + .../environment/environment_files/Dockerfile | 32 +++++++++++++++++++ .../environment_files/DockerfileNonDefault | 32 +++++++++++++++++++ .../environment_files/environment.yml | 11 +++++++ .../environment_files/requirements.txt | 11 +++++++ .../environment/environment_files/runtime.txt | 1 + 7 files changed, 89 insertions(+), 1 deletion(-) create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/Dockerfile create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/DockerfileNonDefault create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/environment.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/requirements.txt create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/runtime.txt diff --git a/.gitignore b/.gitignore index 0ef1e487398f..75e4dec73161 100644 --- a/.gitignore +++ b/.gitignore @@ -104,7 +104,7 @@ sdk/storage/azure-storage-file-datalake/tests/settings/settings_real.py # azure-ai-ml test configs !sdk/ml/azure-ai-ml/tests/test_configs/* -!sdk/ml/azur +!sdk/ml/azure-ai-ml/tests/test_configs/environment/* # The locations below are deprecated - keep to prevent any accidental secrets leakage ========== diff --git a/sdk/ml/azure-ai-ml/setup.py b/sdk/ml/azure-ai-ml/setup.py index 32ecf789e899..442d2a80fa79 100644 --- a/sdk/ml/azure-ai-ml/setup.py +++ b/sdk/ml/azure-ai-ml/setup.py @@ -87,6 +87,7 @@ "docker>=2.0.0", "typing-extensions>=4.0.1", "applicationinsights<=0.11.10", + # temp fix for mltable validation "knack" ], extras_require={ diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/Dockerfile b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/Dockerfile new file mode 100644 index 000000000000..99beedbb337d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/Dockerfile @@ -0,0 +1,32 @@ +FROM ubuntu:16.04 + +ARG CONDA_VERSION=4.7.12 +ARG PYTHON_VERSION=3.7 +ARG AZUREML_SDK_VERSION=1.33.0 +ARG INFERENCE_SCHEMA_VERSION=1.3.0 + +ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 +ENV PATH /opt/miniconda/bin:$PATH +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt-get update --fix-missing && \ + apt-get install -y wget bzip2 && \ + apt-get install -y fuse && \ + apt-get clean -y && \ + rm -rf /var/lib/apt/lists/* + +RUN useradd --create-home dockeruser +WORKDIR /home/dockeruser +USER dockeruser + +RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh -O ~/miniconda.sh && \ + /bin/bash ~/miniconda.sh -b -p ~/miniconda && \ + rm ~/miniconda.sh && \ + ~/miniconda/bin/conda clean -tipsy +ENV PATH="/home/dockeruser/miniconda/bin/:${PATH}" + +RUN conda install -y conda=${CONDA_VERSION} python=${PYTHON_VERSION} && \ + pip install azureml-defaults==${AZUREML_SDK_VERSION} inference-schema==${INFERENCE_SCHEMA_VERSION} &&\ + conda clean -aqy && \ + rm -rf ~/miniconda/pkgs && \ + find ~/miniconda/ -type d -name __pycache__ -prune -exec rm -rf {} \; diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/DockerfileNonDefault b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/DockerfileNonDefault new file mode 100644 index 000000000000..99beedbb337d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/DockerfileNonDefault @@ -0,0 +1,32 @@ +FROM ubuntu:16.04 + +ARG CONDA_VERSION=4.7.12 +ARG PYTHON_VERSION=3.7 +ARG AZUREML_SDK_VERSION=1.33.0 +ARG INFERENCE_SCHEMA_VERSION=1.3.0 + +ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 +ENV PATH /opt/miniconda/bin:$PATH +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt-get update --fix-missing && \ + apt-get install -y wget bzip2 && \ + apt-get install -y fuse && \ + apt-get clean -y && \ + rm -rf /var/lib/apt/lists/* + +RUN useradd --create-home dockeruser +WORKDIR /home/dockeruser +USER dockeruser + +RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh -O ~/miniconda.sh && \ + /bin/bash ~/miniconda.sh -b -p ~/miniconda && \ + rm ~/miniconda.sh && \ + ~/miniconda/bin/conda clean -tipsy +ENV PATH="/home/dockeruser/miniconda/bin/:${PATH}" + +RUN conda install -y conda=${CONDA_VERSION} python=${PYTHON_VERSION} && \ + pip install azureml-defaults==${AZUREML_SDK_VERSION} inference-schema==${INFERENCE_SCHEMA_VERSION} &&\ + conda clean -aqy && \ + rm -rf ~/miniconda/pkgs && \ + find ~/miniconda/ -type d -name __pycache__ -prune -exec rm -rf {} \; diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/environment.yml b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/environment.yml new file mode 100644 index 000000000000..244b1c23e0a4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/environment.yml @@ -0,0 +1,11 @@ +name: example-environment +channels: + - conda-forge +dependencies: + - python=3.6.1 + - pip + - pip: + - nbgitpuller + - sphinx-gallery + - pandas + - matplotlib diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/requirements.txt b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/requirements.txt new file mode 100644 index 000000000000..6b7a71d4cdac --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/requirements.txt @@ -0,0 +1,11 @@ +cycler==0.10.0 # via matplotlib +kiwisolver==1.2.0 # via matplotlib +matplotlib==3.2.1 +numpy==1.18.5 +pandas==1.0.4 +pyparsing==2.4.7 # via matplotlib +python-dateutil==2.8.1 # via matplotlib, pandas +pytz==2020.1 # via pandas +scipy==1.4.1 # via seaborn +seaborn==0.10.1 +six==1.15.0 # via cycler, python-dateutil diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/runtime.txt b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/runtime.txt new file mode 100644 index 000000000000..8fdd90711cf3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/environment/environment_files/runtime.txt @@ -0,0 +1 @@ +python-3.9 From f888f03e905542dbe0f89b384d61f6cea3c0ad6e Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Fri, 27 May 2022 12:39:34 -0400 Subject: [PATCH 07/18] fix gitignore --- .gitignore | 2 +- .../unittests/test_ml_client.py | 1 - .../batch/environment_files/Dockerfile | 32 +++++++++++++++++++ .../environment_files/DockerfileNonDefault | 32 +++++++++++++++++++ .../batch/environment_files/environment.yml | 11 +++++++ .../batch/environment_files/requirements.txt | 11 +++++++ .../batch/environment_files/runtime.txt | 1 + .../deployments/model-1/environment/conda.yml | 16 ++++++++++ .../deployments/model-2/environment/conda.yml | 16 ++++++++++ 9 files changed, 120 insertions(+), 2 deletions(-) create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/Dockerfile create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/DockerfileNonDefault create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/environment.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/requirements.txt create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/runtime.txt create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-1/environment/conda.yml create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-2/environment/conda.yml diff --git a/.gitignore b/.gitignore index 75e4dec73161..129bf0c436f1 100644 --- a/.gitignore +++ b/.gitignore @@ -103,8 +103,8 @@ sdk/storage/azure-storage-file-share/tests/settings/settings_real.py sdk/storage/azure-storage-file-datalake/tests/settings/settings_real.py # azure-ai-ml test configs -!sdk/ml/azure-ai-ml/tests/test_configs/* !sdk/ml/azure-ai-ml/tests/test_configs/environment/* +!sdk/ml/azure-ai-ml/tests/test_configs/*/*/environment* # The locations below are deprecated - keep to prevent any accidental secrets leakage ========== diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py index bcb89cd51bad..fd4319094028 100644 --- a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py @@ -285,7 +285,6 @@ def test_load_config_not_found(self, tmp_path): for i in range(5): start = start / f"sub{i}" start.mkdir() - print(start) with pytest.raises(Exception) as e: MLClient.from_config(start) assert "could not find config.json in:" in str(e) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/Dockerfile b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/Dockerfile new file mode 100644 index 000000000000..99beedbb337d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/Dockerfile @@ -0,0 +1,32 @@ +FROM ubuntu:16.04 + +ARG CONDA_VERSION=4.7.12 +ARG PYTHON_VERSION=3.7 +ARG AZUREML_SDK_VERSION=1.33.0 +ARG INFERENCE_SCHEMA_VERSION=1.3.0 + +ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 +ENV PATH /opt/miniconda/bin:$PATH +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt-get update --fix-missing && \ + apt-get install -y wget bzip2 && \ + apt-get install -y fuse && \ + apt-get clean -y && \ + rm -rf /var/lib/apt/lists/* + +RUN useradd --create-home dockeruser +WORKDIR /home/dockeruser +USER dockeruser + +RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh -O ~/miniconda.sh && \ + /bin/bash ~/miniconda.sh -b -p ~/miniconda && \ + rm ~/miniconda.sh && \ + ~/miniconda/bin/conda clean -tipsy +ENV PATH="/home/dockeruser/miniconda/bin/:${PATH}" + +RUN conda install -y conda=${CONDA_VERSION} python=${PYTHON_VERSION} && \ + pip install azureml-defaults==${AZUREML_SDK_VERSION} inference-schema==${INFERENCE_SCHEMA_VERSION} &&\ + conda clean -aqy && \ + rm -rf ~/miniconda/pkgs && \ + find ~/miniconda/ -type d -name __pycache__ -prune -exec rm -rf {} \; diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/DockerfileNonDefault b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/DockerfileNonDefault new file mode 100644 index 000000000000..99beedbb337d --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/DockerfileNonDefault @@ -0,0 +1,32 @@ +FROM ubuntu:16.04 + +ARG CONDA_VERSION=4.7.12 +ARG PYTHON_VERSION=3.7 +ARG AZUREML_SDK_VERSION=1.33.0 +ARG INFERENCE_SCHEMA_VERSION=1.3.0 + +ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 +ENV PATH /opt/miniconda/bin:$PATH +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt-get update --fix-missing && \ + apt-get install -y wget bzip2 && \ + apt-get install -y fuse && \ + apt-get clean -y && \ + rm -rf /var/lib/apt/lists/* + +RUN useradd --create-home dockeruser +WORKDIR /home/dockeruser +USER dockeruser + +RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh -O ~/miniconda.sh && \ + /bin/bash ~/miniconda.sh -b -p ~/miniconda && \ + rm ~/miniconda.sh && \ + ~/miniconda/bin/conda clean -tipsy +ENV PATH="/home/dockeruser/miniconda/bin/:${PATH}" + +RUN conda install -y conda=${CONDA_VERSION} python=${PYTHON_VERSION} && \ + pip install azureml-defaults==${AZUREML_SDK_VERSION} inference-schema==${INFERENCE_SCHEMA_VERSION} &&\ + conda clean -aqy && \ + rm -rf ~/miniconda/pkgs && \ + find ~/miniconda/ -type d -name __pycache__ -prune -exec rm -rf {} \; diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/environment.yml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/environment.yml new file mode 100644 index 000000000000..244b1c23e0a4 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/environment.yml @@ -0,0 +1,11 @@ +name: example-environment +channels: + - conda-forge +dependencies: + - python=3.6.1 + - pip + - pip: + - nbgitpuller + - sphinx-gallery + - pandas + - matplotlib diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/requirements.txt b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/requirements.txt new file mode 100644 index 000000000000..6b7a71d4cdac --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/requirements.txt @@ -0,0 +1,11 @@ +cycler==0.10.0 # via matplotlib +kiwisolver==1.2.0 # via matplotlib +matplotlib==3.2.1 +numpy==1.18.5 +pandas==1.0.4 +pyparsing==2.4.7 # via matplotlib +python-dateutil==2.8.1 # via matplotlib, pandas +pytz==2020.1 # via pandas +scipy==1.4.1 # via seaborn +seaborn==0.10.1 +six==1.15.0 # via cycler, python-dateutil diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/runtime.txt b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/runtime.txt new file mode 100644 index 000000000000..8fdd90711cf3 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/batch/environment_files/runtime.txt @@ -0,0 +1 @@ +python-3.9 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-1/environment/conda.yml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-1/environment/conda.yml new file mode 100644 index 000000000000..f686e4654928 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-1/environment/conda.yml @@ -0,0 +1,16 @@ +name: model-env +channels: + - conda-forge +dependencies: + - python=3.6.1 + - numpy=1.19.4 + - pip=21.2.4 + - scikit-learn=0.19.1 + - scipy=1.5.1 + - pip: + - azureml-defaults==1.33.0 + - inference-schema[numpy-support]==1.3.0 + - joblib==1.0.1 + - numpy==1.19.4 + - scikit-learn==0.19.1 + - scipy==1.5.1 diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-2/environment/conda.yml b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-2/environment/conda.yml new file mode 100644 index 000000000000..ba7d68d2cb74 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/deployments/model-2/environment/conda.yml @@ -0,0 +1,16 @@ +name: model-env +channels: + - conda-forge +dependencies: + - python=3.6.1 + - numpy + - pip + - scikit-learn==0.19.1 + - scipy + - pip: + - azureml-defaults + - inference-schema[numpy-support] + - joblib + - numpy + - scikit-learn==0.19.1 + - scipy From 42004f958e9723fee59b260d99e4b97263d5000d Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Fri, 27 May 2022 13:12:37 -0400 Subject: [PATCH 08/18] add test_file --- .../tests/test_configs/storage/dont_include_us/test_file.cs | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/storage/dont_include_us/test_file.cs diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/storage/dont_include_us/test_file.cs b/sdk/ml/azure-ai-ml/tests/test_configs/storage/dont_include_us/test_file.cs new file mode 100644 index 000000000000..e69de29bb2d1 From c888b67e0e6ff9961be7dae9cebba2c5d9b9ab03 Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Fri, 27 May 2022 13:40:11 -0400 Subject: [PATCH 09/18] add tests to ignore doc settings --- eng/.docsettings.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/eng/.docsettings.yml b/eng/.docsettings.yml index 280fb1133edd..f4e9d81bdd17 100644 --- a/eng/.docsettings.yml +++ b/eng/.docsettings.yml @@ -11,6 +11,7 @@ omitted_paths: - sdk/**/tests/perfstress_tests/* - sdk/nspkg/* - sdk/**/swagger/* + - sdk/ml/azure-ai-ml/tests/* language: python root_check_enabled: True From db462bdb056a6c25af832a3375d0fd06ec93a583 Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Fri, 27 May 2022 14:40:42 -0400 Subject: [PATCH 10/18] exclude more tests --- sdk/ml/azure-ai-ml/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/ml/azure-ai-ml/setup.py b/sdk/ml/azure-ai-ml/setup.py index 442d2a80fa79..c580919d362e 100644 --- a/sdk/ml/azure-ai-ml/setup.py +++ b/sdk/ml/azure-ai-ml/setup.py @@ -59,6 +59,7 @@ packages=find_packages(exclude=[ 'samples', 'tests', + 'tests.*' # Exclude packages that will be covered by PEP420 or nspkg 'azure', 'azure.ai', From 5a8381ff4c8965756a52c396e985afbf75850f1a Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Fri, 27 May 2022 14:53:02 -0400 Subject: [PATCH 11/18] fix tests ignore thing --- sdk/ml/azure-ai-ml/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/ml/azure-ai-ml/setup.py b/sdk/ml/azure-ai-ml/setup.py index c580919d362e..d59fc4423c21 100644 --- a/sdk/ml/azure-ai-ml/setup.py +++ b/sdk/ml/azure-ai-ml/setup.py @@ -59,7 +59,7 @@ packages=find_packages(exclude=[ 'samples', 'tests', - 'tests.*' + 'tests.*', # Exclude packages that will be covered by PEP420 or nspkg 'azure', 'azure.ai', From 0a2b517eafad2ad1bc99687b490b4b81fe4d1ad2 Mon Sep 17 00:00:00 2001 From: scbedd <45376673+scbedd@users.noreply.github.com> Date: Fri, 27 May 2022 14:06:56 -0700 Subject: [PATCH 12/18] update cspell ignore list to ignore a couple names in azure-ai-ml. update azure-ai-ml dev_requirements to install in a good state within our tox environments --- .vscode/cspell.json | 4 ++++ sdk/ml/azure-ai-ml/dev_requirements.txt | 1 + 2 files changed, 5 insertions(+) diff --git a/.vscode/cspell.json b/.vscode/cspell.json index ef956cced460..aac13dcf8a5b 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -111,6 +111,10 @@ ".gitignore" ], "words": [ + "pyyaml", + "CONLL", + "pyjwt", + "conll", "aad", "aadclient", "AADSTS", diff --git a/sdk/ml/azure-ai-ml/dev_requirements.txt b/sdk/ml/azure-ai-ml/dev_requirements.txt index 14fc6d86440e..8973eaa64094 100644 --- a/sdk/ml/azure-ai-ml/dev_requirements.txt +++ b/sdk/ml/azure-ai-ml/dev_requirements.txt @@ -13,3 +13,4 @@ pytest pydash pytest-vcr azure-mgmt-storage~=19.1.0 +pywin32==227 ; sys_platform == 'win32' From f9f219049daf599ffedc42d576c0b2ca0d2f64d9 Mon Sep 17 00:00:00 2001 From: scbedd <45376673+scbedd@users.noreply.github.com> Date: Fri, 27 May 2022 16:04:47 -0700 Subject: [PATCH 13/18] ignore conftest, not user facing regardless --- .vscode/cspell.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/cspell.json b/.vscode/cspell.json index aac13dcf8a5b..9a53d21c4629 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -103,6 +103,7 @@ "sdk/storage/azure-storage-blob/**", "sdk/ml/azure-ai-ml/azure/ai/ml/_restclient/**", "sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/job_name_generator.py", + "sdk/ml/azure-ai-ml/tests/automl_job/conftest.py", "eng/**/*.json", "eng/*.txt", "eng/tox/tox.ini", From bc64e6268a1a05325b0cc899887bd5e671fdc1f8 Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Tue, 31 May 2022 10:55:59 -0400 Subject: [PATCH 14/18] ignore tests dir for cspell --- .vscode/cspell.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/cspell.json b/.vscode/cspell.json index 9a53d21c4629..cf8fb666ce31 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -103,7 +103,7 @@ "sdk/storage/azure-storage-blob/**", "sdk/ml/azure-ai-ml/azure/ai/ml/_restclient/**", "sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/job_name_generator.py", - "sdk/ml/azure-ai-ml/tests/automl_job/conftest.py", + "sdk/ml/azure-ai-ml/tests/**", "eng/**/*.json", "eng/*.txt", "eng/tox/tox.ini", From d193437467dd4e03dda669d2c0ec6046e8353dbe Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Tue, 31 May 2022 14:01:49 -0400 Subject: [PATCH 15/18] remove init --- sdk/ml/azure-ai-ml/setup.py | 1 - sdk/ml/azure-ai-ml/tests/__init__.py | 0 2 files changed, 1 deletion(-) delete mode 100644 sdk/ml/azure-ai-ml/tests/__init__.py diff --git a/sdk/ml/azure-ai-ml/setup.py b/sdk/ml/azure-ai-ml/setup.py index d59fc4423c21..442d2a80fa79 100644 --- a/sdk/ml/azure-ai-ml/setup.py +++ b/sdk/ml/azure-ai-ml/setup.py @@ -59,7 +59,6 @@ packages=find_packages(exclude=[ 'samples', 'tests', - 'tests.*', # Exclude packages that will be covered by PEP420 or nspkg 'azure', 'azure.ai', diff --git a/sdk/ml/azure-ai-ml/tests/__init__.py b/sdk/ml/azure-ai-ml/tests/__init__.py deleted file mode 100644 index e69de29bb2d1..000000000000 From 42349e7cd831f7eb51d707dd0f9af754fb58d11a Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Tue, 31 May 2022 14:32:21 -0400 Subject: [PATCH 16/18] change test import --- sdk/ml/azure-ai-ml/tests/conftest.py | 2 +- .../azure-ai-ml/tests/dataset/unittests/test_data_operations.py | 2 +- .../tests/dataset/unittests/test_dataset_operations.py | 2 +- .../tests/internal_utils/unittests/test_ml_client.py | 2 +- .../internal_utils/unittests/test_operation_orchestrator.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sdk/ml/azure-ai-ml/tests/conftest.py b/sdk/ml/azure-ai-ml/tests/conftest.py index 9c49001bad60..92eacd37d011 100644 --- a/sdk/ml/azure-ai-ml/tests/conftest.py +++ b/sdk/ml/azure-ai-ml/tests/conftest.py @@ -13,7 +13,7 @@ from unittest.mock import Mock from azure.identity import DefaultAzureCredential, ClientSecretCredential from azure.ai.ml import MLClient -from tests.test_utilities.constants import Test_Subscription, Test_Resource_Group, Test_Workspace_Name +from test_utilities.constants import Test_Subscription, Test_Resource_Group, Test_Workspace_Name from datetime import datetime from azure.ai.ml._restclient.registry_discovery import AzureMachineLearningWorkspaces as ServiceClientRegistryDiscovery from azure.mgmt.storage import StorageManagementClient diff --git a/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_operations.py b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_operations.py index 868cae5108a9..219a78680419 100644 --- a/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_operations.py +++ b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_data_operations.py @@ -14,7 +14,7 @@ import pytest from unittest.mock import Mock, patch from pathlib import Path -from tests.test_utilities.constants import Test_Resource_Group, Test_Workspace_Name +from test_utilities.constants import Test_Resource_Group, Test_Workspace_Name from typing import Callable, Iterable diff --git a/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_operations.py b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_operations.py index 0bcf19f55218..9ccc4ca0b4d1 100644 --- a/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_operations.py +++ b/sdk/ml/azure-ai-ml/tests/dataset/unittests/test_dataset_operations.py @@ -9,7 +9,7 @@ import pytest from unittest.mock import Mock, patch from pathlib import Path -from tests.test_utilities.constants import Test_Resource_Group, Test_Workspace_Name +from test_utilities.constants import Test_Resource_Group, Test_Workspace_Name from typing import Callable, Iterable diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py index fd4319094028..c49ee57995d5 100644 --- a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_ml_client.py @@ -17,7 +17,7 @@ Workspace, ) from azure.ai.ml.sweep import SweepJob -from tests.test_utilities.constants import Test_Resource_Group, Test_Subscription +from test_utilities.constants import Test_Resource_Group, Test_Subscription @pytest.mark.unittest diff --git a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_operation_orchestrator.py b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_operation_orchestrator.py index bd35d8e8070c..688f69e97c44 100644 --- a/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_operation_orchestrator.py +++ b/sdk/ml/azure-ai-ml/tests/internal_utils/unittests/test_operation_orchestrator.py @@ -21,7 +21,7 @@ VERSIONED_RESOURCE_ID_FORMAT, AzureMLResourceType, ) -from tests.test_utilities.constants import Test_Resource_Group, Test_Subscription, Test_Workspace_Name +from test_utilities.constants import Test_Resource_Group, Test_Subscription, Test_Workspace_Name from pytest_mock import MockFixture from azure.ai.ml.entities._assets._artifacts.artifact import ArtifactStorageInfo from azure.ai.ml.entities._assets import Model, Code, Data, Environment, Dataset From 528ea316188725bd32fbba4f5e862c64b06d825f Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Tue, 31 May 2022 14:48:16 -0400 Subject: [PATCH 17/18] fix import thing --- sdk/ml/azure-ai-ml/tests/automl_job/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py b/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py index a77ed0787ed1..3417934424fa 100644 --- a/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py +++ b/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py @@ -3,7 +3,7 @@ from azure.ai.ml.constants import AssetTypes from azure.ai.ml.entities._inputs_outputs import Input from azure.ai.ml.entities._job.automl.tabular.forecasting_settings import ForecastingSettings -from tests.automl_job.test_utilities import download_dataset +from test_utilities import download_dataset from typing import Tuple import os From a62167d21dafb2e2a13f7504cb6d5dc3cd349de3 Mon Sep 17 00:00:00 2001 From: Neehar Duvvuri Date: Tue, 31 May 2022 15:09:35 -0400 Subject: [PATCH 18/18] rename utils --- .../tests/automl_job/{test_utilities.py => _utiil.py} | 0 sdk/ml/azure-ai-ml/tests/automl_job/conftest.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename sdk/ml/azure-ai-ml/tests/automl_job/{test_utilities.py => _utiil.py} (100%) diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/test_utilities.py b/sdk/ml/azure-ai-ml/tests/automl_job/_utiil.py similarity index 100% rename from sdk/ml/azure-ai-ml/tests/automl_job/test_utilities.py rename to sdk/ml/azure-ai-ml/tests/automl_job/_utiil.py diff --git a/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py b/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py index 3417934424fa..c42e0001e36c 100644 --- a/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py +++ b/sdk/ml/azure-ai-ml/tests/automl_job/conftest.py @@ -3,7 +3,7 @@ from azure.ai.ml.constants import AssetTypes from azure.ai.ml.entities._inputs_outputs import Input from azure.ai.ml.entities._job.automl.tabular.forecasting_settings import ForecastingSettings -from test_utilities import download_dataset +from ._utiil import download_dataset from typing import Tuple import os

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≫ctf)ud(8EL3SX$G*sC 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≫ctf)ud(8EL3SX$G*sC zq@mdjZQjm-&f!w<@v@@dYK39#+$ea~;t%zNb@5nd@07+8a5gsPlX7brWk>{#l^#>c z3Ta%>c89Ti_2FR69J1_Infan8l|=WIs)hO-W!67k3O-l9lMhzsNu*o@DSFS5GbuVK z{;&YfD$IrIAOoT@M+EL~%f_5s8~l;>hWN(S(7fZv$;ER;cxJQ|25ikpO_M>x1G14$ z8BRvOiLG>DvIZI~I7n_;z9dCz%r*2Pl27<94%dyWa19@baresc%!x(x`BUaGWMN)y zZw{BJo+rwQ$>_L&v0>T&?GsF=iB;;82d9(@LI&%lhHHXWgn z3zJd1K^bp$G?H(6#dto=0KRhC^xH};zUg%iPH1K9vYP2+$0t`*-KhavUl-tXnE{JB z>6sYwehKV-{F{ie-PNgvGyMM6_f+9lD!jRsE?eIlj`muXC9AU3R7Zy|D@@!b|kQb{9U_}aFR8@W^gxml0N+hzTPi%f_66_e5T z`y;+JxvpW_*Fw%fFAW4OH6l58AlyF|-QHZH$IV}p=FE+F$?Fz(OCuNENEyu7#WFp#pIALz zLyr4<<0YvA?2+CKNhJwDFQ>t*kfnIpT$y%9=c4;TGkj~PLVDCP@yx4icoC2T7TN;% zRA3>0Vy!5ZKaNB+kaazFp5Vz2mJiErCcagsT$G#uxK26133@lu{R_sxESZ($~71UDoTfG+g}g(sN)Wue{CT7 zEk~kef20lp%)q9dYH|7aVzO!4AepIjkJd@EyqCsGuy0_DVm~R=mUbbMtGqDj#$Phz zkVryvM~R8QFFcrCN?qnBVsEbmHY9!_3!6W2VxDF2S7?a*Oglu*d$-We`o|5jM!!i0 zOeXVpsnPJqNgyOsL}iYMB=}vfd$PnhJPQWSbd2zg^4E10gd-t1;5p&()cjQ#&B#^=D0oTZ; zAD6hV$;r5N#duCUCJMsML$G%KJ+9@83f#WAmTaqeMmr>abMvznK!}J37_BaV_{ccM zDHVhZbElB}WozK()phs-pVJ@fnd72=95p)9M8{PT(25Jed7p&Qaa|^;f6ahy_j7#z zXL~-rW0-XLO$N7BGw6xBI!-ccJA5CP2Dg^&;JbRZ;Fz`~G-l_;$)L@obKf)^(^LX$ zrI33`dIew&W{A+ z!?LJv;RYg~WH7*59gi6ogo8+O?V)gcVKhi3$C59=AK`%Y}oZP0D@RuH>TS%4kb`#)I)h{FbU3l&6?eXVEqZGV5oPV0{Q4GW zl<3$V*%InSX5+8mPqgXTBsk=#i@_0j_&Me^^;Ysk z!vzkoMJ5&+7#l+DQlhE*N*u++1dM$9mUYjr8;ALa%3rWWHA zlh<@=#RwgD%AD%$W@l5G6YvUMq^_X9LBIAZ=kLA+b;1i#c(93#{B0qNSchdp!v%8H z@gfP#T}bB7p9-db5778OlVSbyJg}D6fw;d~;OX<8Ce*zmw=xLKliLS8pgTgg5TwIbap(-%axX**~B-*^w3wLXF3IX+4;F`h7Y{^ zTTG7pw59PK+hDM#iwNkI;hCYgRCh%Ur}(~-oZcsic}}a)Ui>5RpW}@M+uNz^v1)E; z^;Nq6M zwdCDxaadybkCLDb&~VNGOogK{P(capz2m6z+rLz~f;j^Nuk%qG3Q=9h2g=vT!Tgpw zdhbv(FKFOQou_J(irLvXZAKv^jX6#Xf|79cpg1ISJ)$+*Lgr8B22-al6{ONb+`o&$ zFl$UDIk|H&n*QfYO?I}?g%Xo-iUU$L`I#uI6^aqX6X9MzyCZPUXrknfjZJn$j?KY! zCeJ|srfK-9Sr2w&47^KE0{H`pIQvy9mPTA7PmJD>=+gJpymvMJJ2n;**UONvuL#r_ zXTnYA0KQl>i$3~qB6N#pz@q!H_<_CiscteR=j^wmU-|^tk(P;}LPbzBUK|wm{%JTP zxDpgA^JvcI`CR2>bGp<00-cn>=(cPo{`}=X?sQKU2znKx>iBBnJ-QN?NVQP;VH*